diff --git a/.github/workflows/flaky-detection.yml b/.github/workflows/flaky-detection.yml index c5a5708..59c475a 100644 --- a/.github/workflows/flaky-detection.yml +++ b/.github/workflows/flaky-detection.yml @@ -1,8 +1,8 @@ # GitHub Actions Workflow for Flaky Test Detection -# +# # This workflow automatically runs flaky detection on: # - Nightly schedule -# - Pull requests +# - Pull requests # - Manual trigger # # Learning Goals: @@ -14,7 +14,7 @@ name: Flaky Test Detection with CTRF # TODO #1: Define workflow triggers -# +# # The 'on' section defines when this workflow runs. # You need to implement three triggers: # @@ -34,42 +34,74 @@ name: Flaky Test Detection with CTRF # - Only when test files change (use 'paths' filter) # - Watch: src/tests/**, playwright.config.ts, package.json on: - # TODO: Implement the three triggers here - # Hint: Each trigger is a top-level key under 'on' + # Nightly runs for continuous monitoring + schedule: + - cron: '0 2 * * *' + + # Manual trigger with parameters + workflow_dispatch: + inputs: + runs: + description: 'Number of test runs' + required: false + default: '10' + type: choice + options: + - '5' + - '10' + - '15' + - '20' + - '30' + + # Run on pull requests + pull_request: + branches: [ main, develop ] + paths: + - 'src/tests/**' + - 'playwright.config.ts' + - 'package.json' jobs: # TODO #2: Define the main job - # + # # Job name: detect-flaky-tests # Runner: ubuntu-latest (GitHub-hosted Linux runner) # Timeout: 60 minutes (tests can take time) detect-flaky-tests: - # TODO: Add runs-on and timeout-minutes + runs-on: ubuntu-latest + timeout-minutes: 60 steps: # TODO #3: Implement checkout step - # + # # Purpose: Clone the repository code # Action: actions/checkout@v4 - # + # # Why v4? Latest stable version with improved performance # Name: Use emoji šŸ“„ for visual clarity + - name: šŸ“„ Checkout repository + uses: actions/checkout@v4 # TODO #4: Implement Node.js setup - # + # # Purpose: Install Node.js and npm # Action: actions/setup-node@v4 - # + # # Configuration: # - node-version: '20' (LTS version) # - cache: 'npm' (speeds up dependency installation) # # The cache option reuses node_modules between runs + - name: šŸ”§ Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: '20' + cache: 'npm' # TODO #5: Implement dependency installation - # + # # Purpose: Install npm packages and Playwright browsers - # + # # Commands to run: # 1. npm ci (faster than npm install for CI) # 2. npx playwright install --with-deps chromium @@ -78,11 +110,15 @@ jobs: # - Installs from package-lock.json # - Faster and more reliable for CI # - Fails if lock file is outdated + - name: šŸ“¦ Install dependencies + run: | + npm ci + npx playwright install --with-deps chromium # TODO #6: Implement flaky detection execution - # + # # Purpose: Run the main detection script - # + # # Key points: # - id: detection (allows referencing in other steps) # - continue-on-error: true (process results even if tests fail) @@ -92,11 +128,16 @@ jobs: # Command: npm run detect-flaky -- # # The ${{ }} syntax is GitHub Actions expression syntax + - name: šŸ” Run flaky detection + id: detection + run: | + npm run detect-flaky -- ${{ github.event.inputs.runs || '10' }} + continue-on-error: true # TODO #7: Implement results parsing - # + # # Purpose: Extract metrics from JSON report - # + # # Implementation details: # - if: always() (run even if previous steps failed) # - id: parse (for referencing outputs) @@ -111,12 +152,33 @@ jobs: # # Example jq usage: # jq '.summary.flakyTests' reports/analysis/flaky-report.json + - name: šŸ“Š Parse results + id: parse + if: always() + run: | + # Extract summary from JSON report + if [ -f "reports/analysis/flaky-report.json" ]; then + FLAKY_COUNT=$(jq '.summary.flakyTests' reports/analysis/flaky-report.json) + TOTAL_COUNT=$(jq '.summary.totalTests' reports/analysis/flaky-report.json) + HEALTH_SCORE=$(jq '.summary.healthScore' reports/analysis/flaky-report.json) + + echo "flaky_count=$FLAKY_COUNT" >> $GITHUB_OUTPUT + echo "total_count=$TOTAL_COUNT" >> $GITHUB_OUTPUT + echo "health_score=$HEALTH_SCORE" >> $GITHUB_OUTPUT + + # Set status emoji + if [ "$FLAKY_COUNT" -eq 0 ]; then + echo "status_emoji=āœ…" >> $GITHUB_OUTPUT + else + echo "status_emoji=šŸ”“" >> $GITHUB_OUTPUT + fi + fi # TODO #8: Implement artifact upload for CTRF reports - # + # # Purpose: Save CTRF JSON reports for debugging # Action: actions/upload-artifact@v4 - # + # # Configuration: # - name: ctrf-reports-${{ github.run_number }} # - path: reports/ctrf/ @@ -126,26 +188,47 @@ jobs: # - Debug test failures # - Historical analysis # - Share results with team + - name: šŸ“¤ Upload CTRF reports + if: always() + uses: actions/upload-artifact@v4 + with: + name: ctrf-reports-${{ github.run_number }} + path: reports/ctrf/ + retention-days: 30 # TODO #9: Implement artifact upload for analysis reports - # + # # Similar to #8 but for: # - path: reports/analysis/ # - Contains HTML, MD, JSON, CSV reports # - These are the main output files + - name: šŸ“¤ Upload analysis reports + if: always() + uses: actions/upload-artifact@v4 + with: + name: flaky-analysis-${{ github.run_number }} + path: reports/analysis/ + retention-days: 30 # TODO #10: Implement artifact upload for raw test data - # + # # Upload individual run results: # - path: reports/runs/ # - retention-days: 7 (shorter, these are large) # - Useful for deep debugging + - name: šŸ“¤ Upload test runs data + if: always() + uses: actions/upload-artifact@v4 + with: + name: test-runs-${{ github.run_number }} + path: reports/runs/ + retention-days: 7 # TODO #11: Implement PR comment functionality - # + # # Purpose: Post results as PR comment # Action: actions/github-script@v7 - # + # # Conditions: # - Only run for pull_request events # - Use if: github.event_name == 'pull_request' && always() @@ -165,12 +248,73 @@ jobs: # - context.repo.owner: Repository owner # - context.repo.repo: Repository name # - context.issue.number: PR number + - name: šŸ’¬ Comment on PR + if: github.event_name == 'pull_request' && always() + uses: actions/github-script@v7 + with: + script: | + const fs = require('fs'); + + // Read the markdown report + let comment = '## šŸ” Flaky Test Detection Results\n\n'; + + if (fs.existsSync('reports/analysis/flaky-report.md')) { + const report = fs.readFileSync('reports/analysis/flaky-report.md', 'utf8'); + + // Extract key sections for PR comment + const lines = report.split('\n'); + let inSummary = false; + let summaryContent = []; + + for (const line of lines) { + if (line.includes('Executive Summary')) { + inSummary = true; + } else if (inSummary && line.startsWith('##')) { + break; + } else if (inSummary) { + summaryContent.push(line); + } + } + + comment += summaryContent.join('\n'); + comment += '\n\n[View Full Report](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})'; + } else { + comment += 'āŒ No report generated. Check the workflow logs for errors.'; + } + + // Find existing comment or create new one + const { data: comments } = await github.rest.issues.listComments({ + owner: context.repo.owner, + repo: context.repo.repo, + issue_number: context.issue.number, + }); + + const botComment = comments.find(comment => + comment.user.type === 'Bot' && + comment.body.includes('Flaky Test Detection Results') + ); + + if (botComment) { + await github.rest.issues.updateComment({ + owner: context.repo.owner, + repo: context.repo.repo, + comment_id: botComment.id, + body: comment + }); + } else { + await github.rest.issues.createComment({ + owner: context.repo.owner, + repo: context.repo.repo, + issue_number: context.issue.number, + body: comment + }); + } # TODO #12: Implement check run creation - # + # # Purpose: Create visual status check on PR # Action: actions/github-script@v7 - # + # # Check run details: # - name: 'Flaky Test Detection' # - conclusion: 'success' or 'failure' based on flaky_count @@ -179,6 +323,102 @@ jobs: # API method: github.rest.checks.create() # # This creates the āœ“ or āœ— mark on the PR + - name: šŸ“ˆ Create check run + if: always() + uses: actions/github-script@v7 + with: + script: | + const flaky_count = ${{ steps.parse.outputs.flaky_count || 0 }}; + const total_count = ${{ steps.parse.outputs.total_count || 0 }}; + const health_score = ${{ steps.parse.outputs.health_score || 0 }}; + const status_emoji = '${{ steps.parse.outputs.status_emoji || "ā“" }}'; + + const conclusion = flaky_count === 0 ? 'success' : 'failure'; + const title = `${status_emoji} Flaky Test Detection: ${flaky_count} flaky tests found`; + const summary = ` + ### Test Suite Health Score: ${health_score}/100 + + - **Total Tests**: ${total_count} + - **Flaky Tests**: ${flaky_count} + - **Detection Runs**: ${{ github.event.inputs.runs || '10' }} + + ${flaky_count > 0 ? 'āš ļø Flaky tests detected. Please review the detailed report.' : 'āœ… No flaky tests detected!'} + `; + + await github.rest.checks.create({ + owner: context.repo.owner, + repo: context.repo.repo, + name: 'Flaky Test Detection', + head_sha: context.sha, + status: 'completed', + conclusion: conclusion, + output: { + title: title, + summary: summary + } + }); + + # TODO #13: Implement Slack notification (optional) + # + # Purpose: Alert team when flaky tests are detected + # Only sends notification when: + # - The detection job fails (has flaky tests) + # - AND flaky_count > 0 + # + # Requires: SLACK_WEBHOOK_URL secret to be configured + - name: šŸ“¢ Send Slack notification + if: failure() && steps.parse.outputs.flaky_count > 0 + uses: slackapi/slack-github-action@v1 + with: + payload: | + { + "text": "${{ steps.parse.outputs.status_emoji }} Flaky Test Detection Alert", + "blocks": [ + { + "type": "header", + "text": { + "type": "plain_text", + "text": "šŸ”“ Flaky Tests Detected" + } + }, + { + "type": "section", + "fields": [ + { + "type": "mrkdwn", + "text": "*Repository:*\n${{ github.repository }}" + }, + { + "type": "mrkdwn", + "text": "*Branch:*\n${{ github.ref_name }}" + }, + { + "type": "mrkdwn", + "text": "*Flaky Tests:*\n${{ steps.parse.outputs.flaky_count }} / ${{ steps.parse.outputs.total_count }}" + }, + { + "type": "mrkdwn", + "text": "*Health Score:*\n${{ steps.parse.outputs.health_score }}/100" + } + ] + }, + { + "type": "actions", + "elements": [ + { + "type": "button", + "text": { + "type": "plain_text", + "text": "View Report" + }, + "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" + } + ] + } + ] + } + env: + SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} # ============================================ # Workflow Variables Reference diff --git a/.gitignore b/.gitignore index 18612e7..bd4c3b9 100644 --- a/.gitignore +++ b/.gitignore @@ -29,3 +29,7 @@ node_modules/ .DS_Store .last-run.json .cursorrules +index.html +ctrf-report.json +#examples +examples/ \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..95e816c --- /dev/null +++ b/README.md @@ -0,0 +1,183 @@ +# Playwright Flaky Test Detector + +For [Coffee Store](https://coffee-e2e.vercel.app/) demo project ā˜•ļø + +--- + +## Why I Built It + +Flaky tests waste time and hide bugs. This provides a deterministic target and a repeatable way to measure stability and expose sync issues. + +## What It Does + +A Playwright-based detector that runs tests repeatedly, classifies them as Stable, Flaky, or Failing using simple statistics, and outputs HTML, JSON, and CSV reports. + +- Runs Playwright tests N times (10, 20, 50, 100+) +- Analyzes results using statistical methods +- Generates interactive reports (HTML, JSON, CSV) +- Demonstrates best practices vs anti-patterns +- Provides actionable insights with confidence scores +- Calculates test suite health scores + +## Data Flow + +```mermaid +flowchart TB + Start([Start]) --> Config[Load config] + Config --> Loop{Run tests N times} + Loop -->|each run| Exec["Run Playwright + Write CTRF JSON + Store results"] + Exec --> Loop + Loop -->|done| Process["Aggregate by test + Compute rates, variance, patterns"] + Process --> Classify{Classify} + Classify --> Results["FLAKY / STABLE / FAILING + + Confidence score"] + Results --> Reports["Generate reports + HTML | JSON | CSV"] + Reports --> End([End]) +``` + +## Technical Description + +### Features + +**Detection Engine** + +- Statistical analysis (failure rates, duration variance, patterns) +- CTRF integration for standardized parsing +- Confidence scoring based on evidence strength +- Configurable thresholds + +**Reporting Suite** + +- Interactive HTML +- CSV for spreadsheets + +**Educational Value** + +- Side-by-side stable vs flaky examples +- 20+ documented anti-patterns +- Reusable helpers following Page Object Model + +## Stack + +- Playwright, TypeScript, Node.js +- CTRF reporter and JSON artifacts +- Demo app: [coffee-e2e.vercel.app](http://coffee-e2e.vercel.app) + +--- + +## Understanding Reports + +### Detection Confidence + +Shows confidence in test classification accuracy. + +| Score | Meaning | +|-------|---------| +| 80-100% | Very high confidence | +| 50-80% | High confidence | +| 20-50% | Moderate confidence | +| 0-20% | Low confidence | + +Calculated from: number of runs (40%), failure rate patterns (30%), duration variance (30%). + +### Test Status + +| Status | Criteria | +|--------|----------| +| STABLE | Pass rate = 100% | +| FLAKY | Failure rate 10-90% | +| FAILING | Failure rate ≄90% | + +### Health Score + +``` +Health = (Stability Ɨ 40%) + (Reliability Ɨ 40%) + (Maintainability Ɨ 20%) +``` + +| Score | Action | +|-------|--------| +| 90-100 | Continue monitoring | +| 70-89 | Address flaky tests | +| 50-69 | Urgent attention needed | +| 0-49 | Critical - refactor suite | + +--- + +## Resources + +**Inspiration:** + +1. [Detecting Flaky Tests in Playwright](https://ray.run/blog/detecting-and-handling-flaky-tests-in-playwright) +2. [Avoiding Flaky Playwright Tests](https://betterstack.com/community/guides/testing/avoid-flaky-playwright-tests/) +3. [Stability Over Luck - Run Tests 100 Times](https://medium.com/@daniel.wentland_49864/stability-over-luck-why-every-new-playwright-test-should-run-at-least-100-times-d85f67ff2845) + +**References:** + +- [Playwright Best Practices](https://playwright.dev/docs/best-practices) +- [Test Pyramid](https://martinfowler.com/articles/practical-test-pyramid.html) +- [CTRF Specification](https://ctrf.io/) + + +**Test App:** + +- Live: [Coffee E2E - Vercel](https://coffee-e2e.vercel.app/) +- Controlled deployment with logs/database access +- Stable, deterministic test subject + +--- + +## Usage + +### Installation + +**Prerequisites**: Node.js ≄18, npm, Git + +```bash +# Clone +git clone https://github.com/yourusername/flaky-test-detector.git +cd flaky-test-detector + +# Install +npm install + +# Install browsers +npx playwright install + +# Build +npm run build + +# Verify +npm test +``` + +--- + +### Quick Start + +```bash +npm run detect-flaky +``` + +### Commands + +```bash +npm run detect-flaky:quick # 10 runs +npm run detect-flaky:thorough # 20 runs +ts-node src/run-flaky-detection.ts 100 # Custom runs + +npm run report:open # Open HTML (macOS) +npm run report:serve # HTTP server +``` + +### Individual Tests + +```bash +npx playwright test coffee.stable.refactored.spec.ts # Stable only +npx playwright test coffee.flaky.spec.ts # Flaky only +npm run test:headed # Headed mode +npm run test:debug # Debug +``` diff --git a/package.json b/package.json index cc36284..cbd031b 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "test:headed": "playwright test --headed", "test:debug": "playwright test --debug", "detect-flaky": "ts-node src/run-flaky-detection.ts", - "detect-flaky:quick": "ts-node src/run-flaky-detection.ts 5", + "detect-flaky:quick": "ts-node src/run-flaky-detection.ts 10", "detect-flaky:thorough": "ts-node src/run-flaky-detection.ts 20", "report:open": "open reports/analysis/flaky-report.html", "report:serve": "npx http-server reports/analysis -o", diff --git a/playwright-report/index.html b/playwright-report/index.html index 296bc89..9758ca8 100644 --- a/playwright-report/index.html +++ b/playwright-report/index.html @@ -74,4 +74,4 @@ \ No newline at end of file +window.playwrightReportBase64 = "data:application/zip;base64,UEsDBBQAAAgIAEWYLluzeOFSzQ8AAGFyAAAZAAAAMjllNTY4NjQ0ZTBmNDc2MWRkZjUuanNvbu1cbXPbuLX+K7j8sJKnskRQfFUn7SSOvcnUN94bK9uZrrMzNAlZrGlCJSEnbuz/fgcEKIIQJQG0lE079qdEJA/B85w3nHNwvhmzJEXvY2NiWAFyXN+1bWTObM+FcTxzjEF5/UN4h4yJUZDwOkXHBBXk+N4aFgsUDUlhDAz6S2FMfvtW/msjtWM4RlGAZsibhfbYdWdWENj08YSklP4JvlukiCAQ4dkMIbBY5tE8LBD4J17mGXowBsYix/9EEeELiuY5vkuWd8bASHEUkgRnxuRbueRty02TDBkT2x4YEU6Xd5kx8Z4GRrzMOQUIx/RimGWYlD/xb3tYlC8NCbrBOV1NjIooTxbsKf4+4+nzwCDhDX3m88DASxLhcrHo6wJFBMX0K0IyNya/GWd5guJ3ISnACfviX6ovPkvxF3AMLkuSYFry9/PAyFGxTDmr19ZbkDAn06R8mWVazrEZHEN7Cr2JCSdOMPRM+x8GpUHyB2Ni0gfQgn8aR+ANmuEcgXcY31JG7aboUIr1SsamE7TRvS7pnobRHMwxvlUi7a6R9tpInyVfyTJH4Mq4zvGXAuVXhhJ5v0keWk4b9fNwmUVzwEkrEQ5kwnZN+PPACAkJo/kdygj/IcLLjBgTODCK22SxQLExmYVpgZ60bh60cSTCGUFfiRJH/LHdXHg7Q05yFJYaWlJWoisBCf84fizCG6TGDNdsLtp3tzCDklUiKmmLD78zJz6E98kNXTHB4MoYKbEisD1JLuzA375ufVs8dmpbDN2nzV8zMIqM/p8YEwMAMLbBI6B/oxEQP26O71AJdkZvcvhN4ZcwISVawxtMcL83J2RRTEajGbXD85AUwwjf9Y7+XD4GAH9M+PudEXT5FUNk7mlp38GVQfAb9GtSJNfpTmGzJqY1tG3Z1O2Qiw789Wv+2qYGf72av3+nzJvhvGQgZfI1AjkK4wfGE7/BZObs+iWvy+XivN+7xvFD7+hoKDCov4XZm/44CEEbCO8LcM8ogxtE3jx8xCnq98IU5SROwhTf9AbgG8jCOzQBoy8I3IfpEoEHvMzBIk/uw+hhlICnIxXUfMlEQFMbteFwtCRJWtQCeDxH6QLlhQgeFJTD0gAP2uCxZBVkCpDMQJ+hcx1mGcqHSbFC4Qh824oD4zmsBD/CWUFAjCK6QvCqIiiw/HpJCM5EbvO7S/7++RCgqb9eBd5g3IQ3OBS6gYDuWANdv0K3UoQaX/6tOgCvMLbM1Q1NYlGaRLd9CboT+uOPg5pjSs4Kjg+llZYp4AY1cNOCayca20HlkEJ++QmgtEDCm8MoQgsivXizV3uXxDHKlJyaO94WYO8XCdE+agQPVmUfLafNdzGbxrwV+3A1Z8V5zkzlk9EarOl7cMurP9LX+Ea6DEpzyPaq16jf09p19gagfwRe/aWSRxYQlBTrTV0/LB6yCPS/sdjgaVDe8D6bYeFRkWucR34dXbyOY3Ay/XgG7hAJ45CE7YxTiXJ/RXkye1jFgArC6rnS3ge27mIFXXgX3qMp/VlJGdboe/sO8Gy3mw7YTdEvcaUr6/ckLvYGgIMsQGq7knUSwj6qOCsu9UdnlQaPEg0tsr3VPfuJtT3PkpDee6ztCI5h7GhAEay+lYVX9wn68jpN35ROEbziG5faW6ZJdiv4yt6v70//Dl6fn4OTi7Oz09PLHg20SjY6shfhODXeIMflQCcwZ3A5K0dDw4Q9SXbHraFtryxVv7crs1hLd2XCRCl/lo5s3kZ21R5j05aef1yE0xRFJZcVFMKXTZ8pJmj2oXK+8502SmIWQUfzeBah1jrmF4s9aB7PPaxpXeMNz9kRNzIS7DVr9BVDd5WvUsE7kNIZzvhQeItOz9PAuzMoinxWAZADxxzcJudGTcCnj+dKeubbUuY5OFjEPRb3rJYG41nAJyaT1mwWqPN2wTpMom389PG8P7q6GtXPFuX/SkRGO1HgRtjcCoCOqRsPPU8yddahRN+2BK9oamw/bVhBwJ1X6e7KdH5GQFKAFIcxisExiOYoui0xCglIUVgQgDMEFjmOlxEB1FowDlrtMG0xmBQyfHedhI+3KHsIHxGZJ3iRhI8LlC8fb5YhQXdhGrL8wCzJC9J/ftrwWX9cWMbgcX9bOmoXu0Q2jsU/msVc403RydbQQDNWcWwpVsk48SlmJvBkRZnpaNPXXCJ6EYT3YZKWe0u2HhWVCuR6GnRbC1P/t0T5AyhZuMWp6Uiewup8E8pZDv3aiJrGO4LGj3WkBQrBDVfe8yS7LXbHNTrM4hsNS3gZw+JVVXYRXj0sL+nuMSpRHK9b7P2DX5mdunoxHPZ4snKKvpL+6PLi/C24+DQdJSqSEowlSXF3lEG7C4rgnN1AQ1CqbAwXlTBHGTnBGQmTDOVUWmoEm1zh2AeN5+dhcYnT+GIpiECT5AZmVsIB/gLMPVt5JkButRtuiNDPiBrPr2TlC/crRyoiEsiVVvdAIuIKnsfW2Ci51gqI0QhQjlXRAGUMiJMcRSR9ALMc35UBQslRxvTx6tGGKaKdPG02YkifPGFQ9I/A4yPoMUfT6ygTHPvaj2lthg4CuT00LSlgdA4GubhX0oHcESFnbMIZIPOWSNCVExoinup7I47U7tSf+u7IHpq+lPjzfetQrA665WJdX2R1XW7nbF7ti9xAYvOWvRF/mG6Mdu+IauZ7psD8PUW7fsdo12tEu/6maHdDiKkb58pJ2KIki2JeKqksFfv5jCr66+qN7BYe/krmBWez5IY2IVVo4gVrLNwtuYFcPBAFd0sIVDrW3seL15fTnhTGKL1VskyHMky+IBeWrS4XPpOLEjXflxocchwW5OccLxdiNKFQA+di4FdiMBqBaf5Ad1AMcUa5Qg8kGcB5jHKAZ2CRoxnKURah7aHpFly21sJ7p5e/fDy9vLxQysPZw0AudegXndQQDOxuabhgLGp2UHnmGkVULHJUFPgNyUQYwU8/gfUbkuI0o1oYK/U61FAHjmxNxbe2JU73h+jZ+/Pp6UdVPOWGo0NpZCCECmON7J4SJxnPq0BhrSFhlqQE5RsBry/rwy1i7kkrFV57WMQv/vfDe2W83e+kv4IFHmv0lylwkXHb34Q2vsuSjVhXFzshzXGWI6XVCzVQvnz/j9MuDlRuIDtUMh6aYmiv3kEGTWflQaHpSh60SP6NujjQ3xm5SjR4EJX8G1mO+YbQYlpNeaumWI75c2kaO4OkSF8Jy+D7qCKEZqe9AzQDwZdCaK750hqCdm0TrmsrHMMcQknZxFc+U9+2QwlNUxVLZ2jKLYIH00soZmzVI1slRjKOW5sMK32CcmUr3NUNHV3pCvdxy3JXL1cC/jy8Rml/9K9lmJGEPDzyWLv6P00K4rwvyECxSDIuB0fltZW0JNliSX6jR7VeXRnZ8u6aHgj63DtSEg347DYtRdGwrE4hM1x1cpactyzJaFcMO0tQGuvufFaAWs2KUpPoLEnTfs/qSZCeJWkKrgzryvixELXk7pZDZd2hNe6UYNMHURUfxUQbtOwGOZ5MalCtskq/0hbuFvSlnFx5m0JWzhma4+/lWC1hkzrWCJI0mN2Rk+oGl+Pl7Lez2OtYhvYaZWhvYxl6Y+5LMzXnySVoZlN+YUQvGM224jNtLaYl8DDfcV6RiaR8GguWAfaOhjjuQdWEXj5RZx8qEw3FDikdqecdUqMROM0KCh0zzbQ/BLEvBaz7G5QOPsluStFstEdx8Q/jeIpPwpyIbVWrgENb+tsaptaKN+vnSF6/fQumF+Dk9cepWm3fGUL5cDM0zYN5j0ZHlYb3qDuqGBO4rFN+M3aJPVQSFLolGbjHXil3CKFUED9YtxoUT/pb6ocnoC0mKCFvKG4IN7Upb/PwS3VORLM9ibPV2Sdb187dHKoFDdrCkZRAQ2Z537PQgsb9wpewoDJadp+lGLPms8p9giSLkzIkBEJRLMlmmDHR24aO2GpwdRX/aVSGmO3X/0UeHoU49Q9vQONC4u+z9czrWIzzGsU4b2MxTnC5ul5eTtmFccxdPLNdbR7+lxxHCLFX0q5FvNzt6d0hdKQCiW2LJ/L3oYyOlAO0AvNwp4T9Tml76NSFNMjLq00t4hx9Zq86E2NH9EdNyopd6uu+/eTiw/T9h0+npYN/d3ryt4tP08fqH6wjo7nXlHs7dhPYHS8EQ1MG2w4OtpsRe7w0iqYd8VVCTa2yCt3tMYR6S0cwdBz5BP6hKmLQFfM1Grrlrrqt64Z3zj7WeH1M02ApjabB5RwvqDek9ywLgu9WtzLGbWizljs+VngWf726Gj1SE3yk2AwP3ZbWyo7GLxg6rnwW23QPB5Bw9MfTCPF4P1gdizThQSkqlwfCcvuKCpRxNFqOkNTdtCyQKBsdI/J4+rUsg65IP75FaXKP8jIL9n2DCw6zu89Ywu+YP/Ab+QN/Y/6gxblrxhS+nDlYMJJTfMIJtqYNZgTlKqOwrAk0h+5YLvfZrWeI9YYRcdJSRmJHCHGQGVH7XYnuzSjPcc7vK0hIloUxMRZhUZTj1J4xqE1aBf0J3xoTki8Zu7aPs/PN0I2hGQXXjg9j2/XcmTDO7l2YxSkCBU5jUFoU3osHbvIwQrNlmu55op0vRAXNiXaOSVt+/2MG2rHl7h61Nj70PDsrMP02unuYZ2cF7WnFvc2zaz3Fu495djsSCj/MPDvJILfPdOgwz06SkR2DgX6IcXby1iQYb+GF6jg7R4rv/O/NiT2Nsxvrj3Z6GWe3+RzyOJASuy/j7HbH5H/8ODtrbbf2Ms7uv2icnW1+p0L7yzi7faK2Ns7uUBXIl3F22wcL+muZ/Jdpdi/T7Bo8Osw0u85xmCt3M9qHyr6+zF36EeYuua4Ud7/MXdoC3P7mLnlQHuseHEzRXuYutU5OcKFUybf0t5wvc5d+/LlLOw+PaA5lWSvaQP1OzB2RTiD6Rg15WR2HbR5SFY54sOEqvDdmNVIHvHr1Srnfv+ZwUI9uYKW322TRp1WQAeh9wC01DILLG3trJ91bvRuVJno2sP+NzoWZbEBMb1yKKzfqOnsHD5piMK5RVjZF9KqDdvUxybwgfDaO5miM+oDdrpydugcbD91ALh6YcO8TiqHZ7aB/fZZw21AMaG5M2D1zJAbnd2t6rqPDsocelFvA9Ztfd/GbTjZezYHSOGO0OjxY+6pKRwGtvSLqrYo5/pI1j/1tdUTrqZBa72l/1QGdzO/Ns3LKQ5+2NpE/NpavgrgrD57Wj853Iu52SotD6IjWSsqKMjZQW70afhLGMQ+8G0OaOqa+IfQE5ya87qefwP/U/x0mWZQuY1T0exXve9vTO2+TQvVQhj30PFerrNcFHr9TKPBM/jAW16OF5MMZ4q6r4pgGlhzCyjw+dW2hoRDIAw+gOJy9ewtNSdr7EVpo9rmS/4gWms9P/w9QSwMEFAAACAgARZguW8iEp4i+AQAAhwQAAAsAAAByZXBvcnQuanNvbtVTO2/bMBD+K8LNtKEnZWkNEKRLUaABOgQaGPJoK6ZEgTy2NQz994KSAqdD0iVLt7uj7nvcB11hQBJKkID2CkJSEOaHdWd0Htp8ZuBJOHrsB4Q2q6v6wJsia4qsZqCCE9TbEdosa9Jqn/Kcge4Nemifrkv1RUELeYMVP/CyxFSXNc+U0hWsX34VETdyPBvcEXra/cz3fkK5Jw8M4mRFi9W7aLusQNmgxlqLsuBc501TxvWeTMS/s8NkkDCRVmvEZApOnoTH5MUGN+IFGEzOvqCkTZA8OTv0YQAGxsrN5WrpI7mmHxHasmQgrQnDCG09/32nIj6KcbS0jDZvl2khFYRH66IahV66flq3Nj6YOwYkjnGnY2ADSbuIxd8TSkIVXQg6QfsE965H9SDIJ3er42+vju+N/ZXsku8LZPK43DeinaElF5CBQx/MdnRBJORpwHHpu7mb2T+TOKSCqyyVzXN1yFTJa67fJPEgRmUw8daoxAZKJmdVkOSToxMSdTDmk8M4NO+FUaW8+K+z6JafM7ZXIEvCQJuzm4LYhPHWpgy0EefLUvlzP03b9JVvjohvTh95bsf/dDYG6Jx1q5s/UEsBAj8DFAAACAgARZguW7N44VLNDwAAYXIAABkAAAAAAAAAAAAAALSBAAAAADI5ZTU2ODY0NGUwZjQ3NjFkZGY1Lmpzb25QSwECPwMUAAAICABFmC5byISniL4BAACHBAAACwAAAAAAAAAAAAAAtIEEEAAAcmVwb3J0Lmpzb25QSwUGAAAAAAIAAgCAAAAA6xEAAAAA"; \ No newline at end of file diff --git a/playwright.config.ts b/playwright.config.ts index 8047e46..1695ca5 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -13,13 +13,13 @@ export default defineConfig({ retries: 0, // More workers = faster execution - workers: process.env.CI ? 2 : 4, + workers: process.env.CI ? 1 : 1, // Timeout for each test timeout: 30000, // Global test timeout - globalTimeout: 600000, + globalTimeout: 1800000, // Reporter configuration with CTRF reporter: [ @@ -27,7 +27,6 @@ export default defineConfig({ [ 'playwright-ctrf-json-reporter', { - outputFile: 'reports/ctrf/ctrf-report.json', // CTRF specific options minimal: false, // Full details for analysis testType: 'e2e', // Categorize as end-to-end tests @@ -44,17 +43,19 @@ export default defineConfig({ use: { // Base URL for testing - baseURL: 'https://friedhats.com', - + baseURL: 'https://coffee-e2e.vercel.app', + // Collect trace on failure for debugging trace: 'retain-on-failure', - + // Screenshot on failure screenshot: 'only-on-failure', - + // Video on failure video: 'retain-on-failure', - }, + + + }, // Configure browsers projects: [ diff --git a/reports/html/index.html b/reports/html/index.html deleted file mode 100644 index c1cd7e1..0000000 --- a/reports/html/index.html +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - Playwright Test Report - - - - -
- - - \ No newline at end of file diff --git a/reports/html/trace/assets/codeMirrorModule-rKSJ91kC.js b/reports/html/trace/assets/codeMirrorModule-rKSJ91kC.js deleted file mode 100644 index acf3d1b..0000000 --- a/reports/html/trace/assets/codeMirrorModule-rKSJ91kC.js +++ /dev/null @@ -1,24 +0,0 @@ -import{n as Wu}from"./defaultSettingsView-CUd-tHFm.js";var vi={exports:{}},_u=vi.exports,ha;function It(){return ha||(ha=1,function(Et,zt){(function(C,De){Et.exports=De()})(_u,function(){var C=navigator.userAgent,De=navigator.platform,I=/gecko\/\d/i.test(C),K=/MSIE \d/.test(C),$=/Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(C),V=/Edge\/(\d+)/.exec(C),b=K||$||V,N=b&&(K?document.documentMode||6:+(V||$)[1]),_=!V&&/WebKit\//.test(C),ie=_&&/Qt\/\d+\.\d+/.test(C),O=!V&&/Chrome\/(\d+)/.exec(C),q=O&&+O[1],z=/Opera\//.test(C),X=/Apple Computer/.test(navigator.vendor),ke=/Mac OS X 1\d\D([8-9]|\d\d)\D/.test(C),we=/PhantomJS/.test(C),te=X&&(/Mobile\/\w+/.test(C)||navigator.maxTouchPoints>2),re=/Android/.test(C),ne=te||re||/webOS|BlackBerry|Opera Mini|Opera Mobi|IEMobile/i.test(C),se=te||/Mac/.test(De),Ae=/\bCrOS\b/.test(C),ye=/win/i.test(De),de=z&&C.match(/Version\/(\d*\.\d*)/);de&&(de=Number(de[1])),de&&de>=15&&(z=!1,_=!0);var ze=se&&(ie||z&&(de==null||de<12.11)),fe=I||b&&N>=9;function H(e){return new RegExp("(^|\\s)"+e+"(?:$|\\s)\\s*")}var Ee=function(e,t){var n=e.className,r=H(t).exec(n);if(r){var i=n.slice(r.index+r[0].length);e.className=n.slice(0,r.index)+(i?r[1]+i:"")}};function D(e){for(var t=e.childNodes.length;t>0;--t)e.removeChild(e.firstChild);return e}function J(e,t){return D(e).appendChild(t)}function d(e,t,n,r){var i=document.createElement(e);if(n&&(i.className=n),r&&(i.style.cssText=r),typeof t=="string")i.appendChild(document.createTextNode(t));else if(t)for(var o=0;o=t)return l+(t-o);l+=a-o,l+=n-l%n,o=a+1}}var be=function(){this.id=null,this.f=null,this.time=0,this.handler=ue(this.onTimeout,this)};be.prototype.onTimeout=function(e){e.id=0,e.time<=+new Date?e.f():setTimeout(e.handler,e.time-+new Date)},be.prototype.set=function(e,t){this.f=t;var n=+new Date+e;(!this.id||n=t)return r+Math.min(l,t-i);if(i+=o-r,i+=n-i%n,r=o+1,i>=t)return r}}var Ue=[""];function et(e){for(;Ue.length<=e;)Ue.push(ge(Ue)+" ");return Ue[e]}function ge(e){return e[e.length-1]}function Pe(e,t){for(var n=[],r=0;r"Ā€"&&(e.toUpperCase()!=e.toLowerCase()||Ie.test(e))}function Se(e,t){return t?t.source.indexOf("\\w")>-1&&ae(e)?!0:t.test(e):ae(e)}function he(e){for(var t in e)if(e.hasOwnProperty(t)&&e[t])return!1;return!0}var Be=/[\u0300-\u036f\u0483-\u0489\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u065e\u0670\u06d6-\u06dc\u06de-\u06e4\u06e7\u06e8\u06ea-\u06ed\u0711\u0730-\u074a\u07a6-\u07b0\u07eb-\u07f3\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0900-\u0902\u093c\u0941-\u0948\u094d\u0951-\u0955\u0962\u0963\u0981\u09bc\u09be\u09c1-\u09c4\u09cd\u09d7\u09e2\u09e3\u0a01\u0a02\u0a3c\u0a41\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a70\u0a71\u0a75\u0a81\u0a82\u0abc\u0ac1-\u0ac5\u0ac7\u0ac8\u0acd\u0ae2\u0ae3\u0b01\u0b3c\u0b3e\u0b3f\u0b41-\u0b44\u0b4d\u0b56\u0b57\u0b62\u0b63\u0b82\u0bbe\u0bc0\u0bcd\u0bd7\u0c3e-\u0c40\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0cbc\u0cbf\u0cc2\u0cc6\u0ccc\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0d3e\u0d41-\u0d44\u0d4d\u0d57\u0d62\u0d63\u0dca\u0dcf\u0dd2-\u0dd4\u0dd6\u0ddf\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0eb1\u0eb4-\u0eb9\u0ebb\u0ebc\u0ec8-\u0ecd\u0f18\u0f19\u0f35\u0f37\u0f39\u0f71-\u0f7e\u0f80-\u0f84\u0f86\u0f87\u0f90-\u0f97\u0f99-\u0fbc\u0fc6\u102d-\u1030\u1032-\u1037\u1039\u103a\u103d\u103e\u1058\u1059\u105e-\u1060\u1071-\u1074\u1082\u1085\u1086\u108d\u109d\u135f\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b7-\u17bd\u17c6\u17c9-\u17d3\u17dd\u180b-\u180d\u18a9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193b\u1a17\u1a18\u1a56\u1a58-\u1a5e\u1a60\u1a62\u1a65-\u1a6c\u1a73-\u1a7c\u1a7f\u1b00-\u1b03\u1b34\u1b36-\u1b3a\u1b3c\u1b42\u1b6b-\u1b73\u1b80\u1b81\u1ba2-\u1ba5\u1ba8\u1ba9\u1c2c-\u1c33\u1c36\u1c37\u1cd0-\u1cd2\u1cd4-\u1ce0\u1ce2-\u1ce8\u1ced\u1dc0-\u1de6\u1dfd-\u1dff\u200c\u200d\u20d0-\u20f0\u2cef-\u2cf1\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua66f-\ua672\ua67c\ua67d\ua6f0\ua6f1\ua802\ua806\ua80b\ua825\ua826\ua8c4\ua8e0-\ua8f1\ua926-\ua92d\ua947-\ua951\ua980-\ua982\ua9b3\ua9b6-\ua9b9\ua9bc\uaa29-\uaa2e\uaa31\uaa32\uaa35\uaa36\uaa43\uaa4c\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uabe5\uabe8\uabed\udc00-\udfff\ufb1e\ufe00-\ufe0f\ufe20-\ufe26\uff9e\uff9f]/;function Me(e){return e.charCodeAt(0)>=768&&Be.test(e)}function Lt(e,t,n){for(;(n<0?t>0:tn?-1:1;;){if(t==n)return t;var i=(t+n)/2,o=r<0?Math.ceil(i):Math.floor(i);if(o==t)return e(o)?t:n;e(o)?n=o:t=o+r}}function or(e,t,n,r){if(!e)return r(t,n,"ltr",0);for(var i=!1,o=0;ot||t==n&&l.to==t)&&(r(Math.max(l.from,t),Math.min(l.to,n),l.level==1?"rtl":"ltr",o),i=!0)}i||r(t,n,"ltr")}var br=null;function lr(e,t,n){var r;br=null;for(var i=0;it)return i;o.to==t&&(o.from!=o.to&&n=="before"?r=i:br=i),o.from==t&&(o.from!=o.to&&n!="before"?r=i:br=i)}return r??br}var mi=function(){var e="bbbbbbbbbtstwsbbbbbbbbbbbbbbssstwNN%%%NNNNNN,N,N1111111111NNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNbbbbbbsbbbbbbbbbbbbbbbbbbbbbbbbbb,N%%%%NNNNLNNNNN%%11NLNNN1LNNNNNLLLLLLLLLLLLLLLLLLLLLLLNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLN",t="nnnnnnNNr%%r,rNNmmmmmmmmmmmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmmmmmmmmnnnnnnnnnn%nnrrrmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmnNmmmmmmrrmmNmmmmrr1111111111";function n(u){return u<=247?e.charAt(u):1424<=u&&u<=1524?"R":1536<=u&&u<=1785?t.charAt(u-1536):1774<=u&&u<=2220?"r":8192<=u&&u<=8203?"w":u==8204?"b":"L"}var r=/[\u0590-\u05f4\u0600-\u06ff\u0700-\u08ac]/,i=/[stwN]/,o=/[LRr]/,l=/[Lb1n]/,a=/[1n]/;function s(u,h,v){this.level=u,this.from=h,this.to=v}return function(u,h){var v=h=="ltr"?"L":"R";if(u.length==0||h=="ltr"&&!r.test(u))return!1;for(var k=u.length,x=[],M=0;M-1&&(r[t]=i.slice(0,o).concat(i.slice(o+1)))}}}function Ye(e,t){var n=Qt(e,t);if(n.length)for(var r=Array.prototype.slice.call(arguments,2),i=0;i0}function Bt(e){e.prototype.on=function(t,n){ve(this,t,n)},e.prototype.off=function(t,n){dt(this,t,n)}}function ht(e){e.preventDefault?e.preventDefault():e.returnValue=!1}function Nr(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0}function yt(e){return e.defaultPrevented!=null?e.defaultPrevented:e.returnValue==!1}function ar(e){ht(e),Nr(e)}function ln(e){return e.target||e.srcElement}function Wt(e){var t=e.which;return t==null&&(e.button&1?t=1:e.button&2?t=3:e.button&4&&(t=2)),se&&e.ctrlKey&&t==1&&(t=3),t}var yi=function(){if(b&&N<9)return!1;var e=d("div");return"draggable"in e||"dragDrop"in e}(),Or;function Wn(e){if(Or==null){var t=d("span","​");J(e,d("span",[t,document.createTextNode("x")])),e.firstChild.offsetHeight!=0&&(Or=t.offsetWidth<=1&&t.offsetHeight>2&&!(b&&N<8))}var n=Or?d("span","​"):d("span","Ā ",null,"display: inline-block; width: 1px; margin-right: -1px");return n.setAttribute("cm-text",""),n}var an;function sr(e){if(an!=null)return an;var t=J(e,document.createTextNode("AŲ®A")),n=w(t,0,1).getBoundingClientRect(),r=w(t,1,2).getBoundingClientRect();return D(e),!n||n.left==n.right?!1:an=r.right-n.right<3}var Pt=` - -b`.split(/\n/).length!=3?function(e){for(var t=0,n=[],r=e.length;t<=r;){var i=e.indexOf(` -`,t);i==-1&&(i=e.length);var o=e.slice(t,e.charAt(i-1)=="\r"?i-1:i),l=o.indexOf("\r");l!=-1?(n.push(o.slice(0,l)),t+=l+1):(n.push(o),t=i+1)}return n}:function(e){return e.split(/\r\n?|\n/)},ur=window.getSelection?function(e){try{return e.selectionStart!=e.selectionEnd}catch{return!1}}:function(e){var t;try{t=e.ownerDocument.selection.createRange()}catch{}return!t||t.parentElement()!=e?!1:t.compareEndPoints("StartToEnd",t)!=0},_n=function(){var e=d("div");return"oncopy"in e?!0:(e.setAttribute("oncopy","return;"),typeof e.oncopy=="function")}(),_t=null;function xi(e){if(_t!=null)return _t;var t=J(e,d("span","x")),n=t.getBoundingClientRect(),r=w(t,0,1).getBoundingClientRect();return _t=Math.abs(n.left-r.left)>1}var Pr={},Ht={};function Rt(e,t){arguments.length>2&&(t.dependencies=Array.prototype.slice.call(arguments,2)),Pr[e]=t}function kr(e,t){Ht[e]=t}function Ir(e){if(typeof e=="string"&&Ht.hasOwnProperty(e))e=Ht[e];else if(e&&typeof e.name=="string"&&Ht.hasOwnProperty(e.name)){var t=Ht[e.name];typeof t=="string"&&(t={name:t}),e=F(t,e),e.name=t.name}else{if(typeof e=="string"&&/^[\w\-]+\/[\w\-]+\+xml$/.test(e))return Ir("application/xml");if(typeof e=="string"&&/^[\w\-]+\/[\w\-]+\+json$/.test(e))return Ir("application/json")}return typeof e=="string"?{name:e}:e||{name:"null"}}function zr(e,t){t=Ir(t);var n=Pr[t.name];if(!n)return zr(e,"text/plain");var r=n(e,t);if(fr.hasOwnProperty(t.name)){var i=fr[t.name];for(var o in i)i.hasOwnProperty(o)&&(r.hasOwnProperty(o)&&(r["_"+o]=r[o]),r[o]=i[o])}if(r.name=t.name,t.helperType&&(r.helperType=t.helperType),t.modeProps)for(var l in t.modeProps)r[l]=t.modeProps[l];return r}var fr={};function Br(e,t){var n=fr.hasOwnProperty(e)?fr[e]:fr[e]={};Te(t,n)}function Gt(e,t){if(t===!0)return t;if(e.copyState)return e.copyState(t);var n={};for(var r in t){var i=t[r];i instanceof Array&&(i=i.concat([])),n[r]=i}return n}function sn(e,t){for(var n;e.innerMode&&(n=e.innerMode(t),!(!n||n.mode==e));)t=n.state,e=n.mode;return n||{mode:e,state:t}}function Wr(e,t,n){return e.startState?e.startState(t,n):!0}var Je=function(e,t,n){this.pos=this.start=0,this.string=e,this.tabSize=t||8,this.lastColumnPos=this.lastColumnValue=0,this.lineStart=0,this.lineOracle=n};Je.prototype.eol=function(){return this.pos>=this.string.length},Je.prototype.sol=function(){return this.pos==this.lineStart},Je.prototype.peek=function(){return this.string.charAt(this.pos)||void 0},Je.prototype.next=function(){if(this.post},Je.prototype.eatSpace=function(){for(var e=this.pos;/[\s\u00a0]/.test(this.string.charAt(this.pos));)++this.pos;return this.pos>e},Je.prototype.skipToEnd=function(){this.pos=this.string.length},Je.prototype.skipTo=function(e){var t=this.string.indexOf(e,this.pos);if(t>-1)return this.pos=t,!0},Je.prototype.backUp=function(e){this.pos-=e},Je.prototype.column=function(){return this.lastColumnPos0?null:(o&&t!==!1&&(this.pos+=o[0].length),o)}},Je.prototype.current=function(){return this.string.slice(this.start,this.pos)},Je.prototype.hideFirstChars=function(e,t){this.lineStart+=e;try{return t()}finally{this.lineStart-=e}},Je.prototype.lookAhead=function(e){var t=this.lineOracle;return t&&t.lookAhead(e)},Je.prototype.baseToken=function(){var e=this.lineOracle;return e&&e.baseToken(this.pos)};function ce(e,t){if(t-=e.first,t<0||t>=e.size)throw new Error("There is no line "+(t+e.first)+" in the document.");for(var n=e;!n.lines;)for(var r=0;;++r){var i=n.children[r],o=i.chunkSize();if(t=e.first&&tn?L(n,ce(e,n).text.length):_a(t,ce(e,t.line).text.length)}function _a(e,t){var n=e.ch;return n==null||n>t?L(e.line,t):n<0?L(e.line,0):e}function go(e,t){for(var n=[],r=0;rthis.maxLookAhead&&(this.maxLookAhead=e),t},Xt.prototype.baseToken=function(e){if(!this.baseTokens)return null;for(;this.baseTokens[this.baseTokenPos]<=e;)this.baseTokenPos+=2;var t=this.baseTokens[this.baseTokenPos+1];return{type:t&&t.replace(/( |^)overlay .*/,""),size:this.baseTokens[this.baseTokenPos]-e}},Xt.prototype.nextLine=function(){this.line++,this.maxLookAhead>0&&this.maxLookAhead--},Xt.fromSaved=function(e,t,n){return t instanceof Hn?new Xt(e,Gt(e.mode,t.state),n,t.lookAhead):new Xt(e,Gt(e.mode,t),n)},Xt.prototype.save=function(e){var t=e!==!1?Gt(this.doc.mode,this.state):this.state;return this.maxLookAhead>0?new Hn(t,this.maxLookAhead):t};function vo(e,t,n,r){var i=[e.state.modeGen],o={};wo(e,t.text,e.doc.mode,n,function(u,h){return i.push(u,h)},o,r);for(var l=n.state,a=function(u){n.baseTokens=i;var h=e.state.overlays[u],v=1,k=0;n.state=!0,wo(e,t.text,h.mode,n,function(x,M){for(var E=v;kx&&i.splice(v,1,x,i[v+1],R),v+=2,k=Math.min(x,R)}if(M)if(h.opaque)i.splice(E,v-E,x,"overlay "+M),v=E+2;else for(;Ee.options.maxHighlightLength&&Gt(e.doc.mode,r.state),o=vo(e,t,r);i&&(r.state=i),t.stateAfter=r.save(!i),t.styles=o.styles,o.classes?t.styleClasses=o.classes:t.styleClasses&&(t.styleClasses=null),n===e.doc.highlightFrontier&&(e.doc.modeFrontier=Math.max(e.doc.modeFrontier,++e.doc.highlightFrontier))}return t.styles}function fn(e,t,n){var r=e.doc,i=e.display;if(!r.mode.startState)return new Xt(r,!0,t);var o=Ha(e,t,n),l=o>r.first&&ce(r,o-1).stateAfter,a=l?Xt.fromSaved(r,l,o):new Xt(r,Wr(r.mode),o);return r.iter(o,t,function(s){bi(e,s.text,a);var u=a.line;s.stateAfter=u==t-1||u%5==0||u>=i.viewFrom&&ut.start)return o}throw new Error("Mode "+e.name+" failed to advance stream.")}var xo=function(e,t,n){this.start=e.start,this.end=e.pos,this.string=e.current(),this.type=t||null,this.state=n};function bo(e,t,n,r){var i=e.doc,o=i.mode,l;t=Ce(i,t);var a=ce(i,t.line),s=fn(e,t.line,n),u=new Je(a.text,e.options.tabSize,s),h;for(r&&(h=[]);(r||u.pose.options.maxHighlightLength?(a=!1,l&&bi(e,t,r,h.pos),h.pos=t.length,v=null):v=ko(ki(n,h,r.state,k),o),k){var x=k[0].name;x&&(v="m-"+(v?x+" "+v:x))}if(!a||u!=v){for(;sl;--a){if(a<=o.first)return o.first;var s=ce(o,a-1),u=s.stateAfter;if(u&&(!n||a+(u instanceof Hn?u.lookAhead:0)<=o.modeFrontier))return a;var h=Le(s.text,null,e.options.tabSize);(i==null||r>h)&&(i=a-1,r=h)}return i}function Ra(e,t){if(e.modeFrontier=Math.min(e.modeFrontier,t),!(e.highlightFrontiern;r--){var i=ce(e,r).stateAfter;if(i&&(!(i instanceof Hn)||r+i.lookAhead=t:o.to>t);(r||(r=[])).push(new Rn(l,o.from,s?null:o.to))}}return r}function Xa(e,t,n){var r;if(e)for(var i=0;i=t:o.to>t);if(a||o.from==t&&l.type=="bookmark"&&(!n||o.marker.insertLeft)){var s=o.from==null||(l.inclusiveLeft?o.from<=t:o.from0&&a)for(var ee=0;ee0)){var h=[s,1],v=Z(u.from,a.from),k=Z(u.to,a.to);(v<0||!l.inclusiveLeft&&!v)&&h.push({from:u.from,to:a.from}),(k>0||!l.inclusiveRight&&!k)&&h.push({from:a.to,to:u.to}),i.splice.apply(i,h),s+=h.length-3}}return i}function Lo(e){var t=e.markedSpans;if(t){for(var n=0;nt)&&(!r||Si(r,o.marker)<0)&&(r=o.marker)}return r}function Fo(e,t,n,r,i){var o=ce(e,t),l=$t&&o.markedSpans;if(l)for(var a=0;a=0&&v<=0||h<=0&&v>=0)&&(h<=0&&(s.marker.inclusiveRight&&i.inclusiveLeft?Z(u.to,n)>=0:Z(u.to,n)>0)||h>=0&&(s.marker.inclusiveRight&&i.inclusiveLeft?Z(u.from,r)<=0:Z(u.from,r)<0)))return!0}}}function qt(e){for(var t;t=Mo(e);)e=t.find(-1,!0).line;return e}function Ja(e){for(var t;t=Kn(e);)e=t.find(1,!0).line;return e}function Qa(e){for(var t,n;t=Kn(e);)e=t.find(1,!0).line,(n||(n=[])).push(e);return n}function Ti(e,t){var n=ce(e,t),r=qt(n);return n==r?t:f(r)}function Ao(e,t){if(t>e.lastLine())return t;var n=ce(e,t),r;if(!cr(e,n))return t;for(;r=Kn(n);)n=r.find(1,!0).line;return f(n)+1}function cr(e,t){var n=$t&&t.markedSpans;if(n){for(var r=void 0,i=0;it.maxLineLength&&(t.maxLineLength=i,t.maxLine=r)})}var Hr=function(e,t,n){this.text=e,Co(this,t),this.height=n?n(this):1};Hr.prototype.lineNo=function(){return f(this)},Bt(Hr);function Va(e,t,n,r){e.text=t,e.stateAfter&&(e.stateAfter=null),e.styles&&(e.styles=null),e.order!=null&&(e.order=null),Lo(e),Co(e,n);var i=r?r(e):1;i!=e.height&&Ft(e,i)}function $a(e){e.parent=null,Lo(e)}var es={},ts={};function Eo(e,t){if(!e||/^\s*$/.test(e))return null;var n=t.addModeClass?ts:es;return n[e]||(n[e]=e.replace(/\S+/g,"cm-$&"))}function No(e,t){var n=S("span",null,null,_?"padding-right: .1px":null),r={pre:S("pre",[n],"CodeMirror-line"),content:n,col:0,pos:0,cm:e,trailingSpace:!1,splitSpaces:e.getOption("lineWrapping")};t.measure={};for(var i=0;i<=(t.rest?t.rest.length:0);i++){var o=i?t.rest[i-1]:t.line,l=void 0;r.pos=0,r.addToken=ns,sr(e.display.measure)&&(l=We(o,e.doc.direction))&&(r.addToken=os(r.addToken,l)),r.map=[];var a=t!=e.display.externalMeasured&&f(o);ls(o,r,mo(e,o,a)),o.styleClasses&&(o.styleClasses.bgClass&&(r.bgClass=le(o.styleClasses.bgClass,r.bgClass||"")),o.styleClasses.textClass&&(r.textClass=le(o.styleClasses.textClass,r.textClass||""))),r.map.length==0&&r.map.push(0,0,r.content.appendChild(Wn(e.display.measure))),i==0?(t.measure.map=r.map,t.measure.cache={}):((t.measure.maps||(t.measure.maps=[])).push(r.map),(t.measure.caches||(t.measure.caches=[])).push({}))}if(_){var s=r.content.lastChild;(/\bcm-tab\b/.test(s.className)||s.querySelector&&s.querySelector(".cm-tab"))&&(r.content.className="cm-tab-wrap-hack")}return Ye(e,"renderLine",e,t.line,r.pre),r.pre.className&&(r.textClass=le(r.pre.className,r.textClass||"")),r}function rs(e){var t=d("span","•","cm-invalidchar");return t.title="\\u"+e.charCodeAt(0).toString(16),t.setAttribute("aria-label",t.title),t}function ns(e,t,n,r,i,o,l){if(t){var a=e.splitSpaces?is(t,e.trailingSpace):t,s=e.cm.state.specialChars,u=!1,h;if(!s.test(t))e.col+=t.length,h=document.createTextNode(a),e.map.push(e.pos,e.pos+t.length,h),b&&N<9&&(u=!0),e.pos+=t.length;else{h=document.createDocumentFragment();for(var v=0;;){s.lastIndex=v;var k=s.exec(t),x=k?k.index-v:t.length-v;if(x){var M=document.createTextNode(a.slice(v,v+x));b&&N<9?h.appendChild(d("span",[M])):h.appendChild(M),e.map.push(e.pos,e.pos+x,M),e.col+=x,e.pos+=x}if(!k)break;v+=x+1;var E=void 0;if(k[0]==" "){var R=e.cm.options.tabSize,U=R-e.col%R;E=h.appendChild(d("span",et(U),"cm-tab")),E.setAttribute("role","presentation"),E.setAttribute("cm-text"," "),e.col+=U}else k[0]=="\r"||k[0]==` -`?(E=h.appendChild(d("span",k[0]=="\r"?"ā":"␤","cm-invalidchar")),E.setAttribute("cm-text",k[0]),e.col+=1):(E=e.cm.options.specialCharPlaceholder(k[0]),E.setAttribute("cm-text",k[0]),b&&N<9?h.appendChild(d("span",[E])):h.appendChild(E),e.col+=1);e.map.push(e.pos,e.pos+1,E),e.pos++}}if(e.trailingSpace=a.charCodeAt(t.length-1)==32,n||r||i||u||o||l){var Q=n||"";r&&(Q+=r),i&&(Q+=i);var G=d("span",[h],Q,o);if(l)for(var ee in l)l.hasOwnProperty(ee)&&ee!="style"&&ee!="class"&&G.setAttribute(ee,l[ee]);return e.content.appendChild(G)}e.content.appendChild(h)}}function is(e,t){if(e.length>1&&!/ /.test(e))return e;for(var n=t,r="",i=0;iu&&v.from<=u));k++);if(v.to>=h)return e(n,r,i,o,l,a,s);e(n,r.slice(0,v.to-u),i,o,null,a,s),o=null,r=r.slice(v.to-u),u=v.to}}}function Oo(e,t,n,r){var i=!r&&n.widgetNode;i&&e.map.push(e.pos,e.pos+t,i),!r&&e.cm.display.input.needsContentAttribute&&(i||(i=e.content.appendChild(document.createElement("span"))),i.setAttribute("cm-marker",n.id)),i&&(e.cm.display.input.setUneditable(i),e.content.appendChild(i)),e.pos+=t,e.trailingSpace=!1}function ls(e,t,n){var r=e.markedSpans,i=e.text,o=0;if(!r){for(var l=1;ls||Fe.collapsed&&pe.to==s&&pe.from==s)){if(pe.to!=null&&pe.to!=s&&x>pe.to&&(x=pe.to,E=""),Fe.className&&(M+=" "+Fe.className),Fe.css&&(k=(k?k+";":"")+Fe.css),Fe.startStyle&&pe.from==s&&(R+=" "+Fe.startStyle),Fe.endStyle&&pe.to==x&&(ee||(ee=[])).push(Fe.endStyle,pe.to),Fe.title&&((Q||(Q={})).title=Fe.title),Fe.attributes)for(var Ke in Fe.attributes)(Q||(Q={}))[Ke]=Fe.attributes[Ke];Fe.collapsed&&(!U||Si(U.marker,Fe)<0)&&(U=pe)}else pe.from>s&&x>pe.from&&(x=pe.from)}if(ee)for(var st=0;st=a)break;for(var Mt=Math.min(a,x);;){if(h){var wt=s+h.length;if(!U){var tt=wt>Mt?h.slice(0,Mt-s):h;t.addToken(t,tt,v?v+M:M,R,s+tt.length==x?E:"",k,Q)}if(wt>=Mt){h=h.slice(Mt-s),s=Mt;break}s=wt,R=""}h=i.slice(o,o=n[u++]),v=Eo(n[u++],t.cm.options)}}}function Po(e,t,n){this.line=t,this.rest=Qa(t),this.size=this.rest?f(ge(this.rest))-n+1:1,this.node=this.text=null,this.hidden=cr(e,t)}function Gn(e,t,n){for(var r=[],i,o=t;o2&&o.push((s.bottom+u.top)/2-n.top)}}o.push(n.bottom-n.top)}}function Ro(e,t,n){if(e.line==t)return{map:e.measure.map,cache:e.measure.cache};if(e.rest){for(var r=0;rn)return{map:e.measure.maps[i],cache:e.measure.caches[i],before:!0}}}function ms(e,t){t=qt(t);var n=f(t),r=e.display.externalMeasured=new Po(e.doc,t,n);r.lineN=n;var i=r.built=No(e,r);return r.text=i.pre,J(e.display.lineMeasure,i.pre),r}function qo(e,t,n,r){return Zt(e,qr(e,t),n,r)}function Ai(e,t){if(t>=e.display.viewFrom&&t=n.lineN&&tt)&&(o=s-a,i=o-1,t>=s&&(l="right")),i!=null){if(r=e[u+2],a==s&&n==(r.insertLeft?"left":"right")&&(l=n),n=="left"&&i==0)for(;u&&e[u-2]==e[u-3]&&e[u-1].insertLeft;)r=e[(u-=3)+2],l="left";if(n=="right"&&i==s-a)for(;u=0&&(n=e[i]).left==n.right;i--);return n}function xs(e,t,n,r){var i=Ko(t.map,n,r),o=i.node,l=i.start,a=i.end,s=i.collapse,u;if(o.nodeType==3){for(var h=0;h<4;h++){for(;l&&Me(t.line.text.charAt(i.coverStart+l));)--l;for(;i.coverStart+a0&&(s=r="right");var v;e.options.lineWrapping&&(v=o.getClientRects()).length>1?u=v[r=="right"?v.length-1:0]:u=o.getBoundingClientRect()}if(b&&N<9&&!l&&(!u||!u.left&&!u.right)){var k=o.parentNode.getClientRects()[0];k?u={left:k.left,right:k.left+Kr(e.display),top:k.top,bottom:k.bottom}:u=jo}for(var x=u.top-t.rect.top,M=u.bottom-t.rect.top,E=(x+M)/2,R=t.view.measure.heights,U=0;U=r.text.length?(s=r.text.length,u="before"):s<=0&&(s=0,u="after"),!a)return l(u=="before"?s-1:s,u=="before");function h(M,E,R){var U=a[E],Q=U.level==1;return l(R?M-1:M,Q!=R)}var v=lr(a,s,u),k=br,x=h(s,v,u=="before");return k!=null&&(x.other=h(s,k,u!="before")),x}function Jo(e,t){var n=0;t=Ce(e.doc,t),e.options.lineWrapping||(n=Kr(e.display)*t.ch);var r=ce(e.doc,t.line),i=er(r)+Xn(e.display);return{left:n,right:n,top:i,bottom:i+r.height}}function Ni(e,t,n,r,i){var o=L(e,t,n);return o.xRel=i,r&&(o.outside=r),o}function Oi(e,t,n){var r=e.doc;if(n+=e.display.viewOffset,n<0)return Ni(r.first,0,null,-1,-1);var i=g(r,n),o=r.first+r.size-1;if(i>o)return Ni(r.first+r.size-1,ce(r,o).text.length,null,1,1);t<0&&(t=0);for(var l=ce(r,i);;){var a=ks(e,l,i,t,n),s=Za(l,a.ch+(a.xRel>0||a.outside>0?1:0));if(!s)return a;var u=s.find(1);if(u.line==i)return u;l=ce(r,i=u.line)}}function Qo(e,t,n,r){r-=Ei(t);var i=t.text.length,o=Nt(function(l){return Zt(e,n,l-1).bottom<=r},i,0);return i=Nt(function(l){return Zt(e,n,l).top>r},o,i),{begin:o,end:i}}function Vo(e,t,n,r){n||(n=qr(e,t));var i=Yn(e,t,Zt(e,n,r),"line").top;return Qo(e,t,n,i)}function Pi(e,t,n,r){return e.bottom<=n?!1:e.top>n?!0:(r?e.left:e.right)>t}function ks(e,t,n,r,i){i-=er(t);var o=qr(e,t),l=Ei(t),a=0,s=t.text.length,u=!0,h=We(t,e.doc.direction);if(h){var v=(e.options.lineWrapping?Ss:ws)(e,t,n,o,h,r,i);u=v.level!=1,a=u?v.from:v.to-1,s=u?v.to:v.from-1}var k=null,x=null,M=Nt(function(me){var pe=Zt(e,o,me);return pe.top+=l,pe.bottom+=l,Pi(pe,r,i,!1)?(pe.top<=i&&pe.left<=r&&(k=me,x=pe),!0):!1},a,s),E,R,U=!1;if(x){var Q=r-x.left=ee.bottom?1:0}return M=Lt(t.text,M,1),Ni(n,M,R,U,r-E)}function ws(e,t,n,r,i,o,l){var a=Nt(function(v){var k=i[v],x=k.level!=1;return Pi(jt(e,L(n,x?k.to:k.from,x?"before":"after"),"line",t,r),o,l,!0)},0,i.length-1),s=i[a];if(a>0){var u=s.level!=1,h=jt(e,L(n,u?s.from:s.to,u?"after":"before"),"line",t,r);Pi(h,o,l,!0)&&h.top>l&&(s=i[a-1])}return s}function Ss(e,t,n,r,i,o,l){var a=Qo(e,t,r,l),s=a.begin,u=a.end;/\s/.test(t.text.charAt(u-1))&&u--;for(var h=null,v=null,k=0;k=u||x.to<=s)){var M=x.level!=1,E=Zt(e,r,M?Math.min(u,x.to)-1:Math.max(s,x.from)).right,R=ER)&&(h=x,v=R)}}return h||(h=i[i.length-1]),h.fromu&&(h={from:h.from,to:u,level:h.level}),h}var Sr;function jr(e){if(e.cachedTextHeight!=null)return e.cachedTextHeight;if(Sr==null){Sr=d("pre",null,"CodeMirror-line-like");for(var t=0;t<49;++t)Sr.appendChild(document.createTextNode("x")),Sr.appendChild(d("br"));Sr.appendChild(document.createTextNode("x"))}J(e.measure,Sr);var n=Sr.offsetHeight/50;return n>3&&(e.cachedTextHeight=n),D(e.measure),n||1}function Kr(e){if(e.cachedCharWidth!=null)return e.cachedCharWidth;var t=d("span","xxxxxxxxxx"),n=d("pre",[t],"CodeMirror-line-like");J(e.measure,n);var r=t.getBoundingClientRect(),i=(r.right-r.left)/10;return i>2&&(e.cachedCharWidth=i),i||10}function Ii(e){for(var t=e.display,n={},r={},i=t.gutters.clientLeft,o=t.gutters.firstChild,l=0;o;o=o.nextSibling,++l){var a=e.display.gutterSpecs[l].className;n[a]=o.offsetLeft+o.clientLeft+i,r[a]=o.clientWidth}return{fixedPos:zi(t),gutterTotalWidth:t.gutters.offsetWidth,gutterLeft:n,gutterWidth:r,wrapperWidth:t.wrapper.clientWidth}}function zi(e){return e.scroller.getBoundingClientRect().left-e.sizer.getBoundingClientRect().left}function $o(e){var t=jr(e.display),n=e.options.lineWrapping,r=n&&Math.max(5,e.display.scroller.clientWidth/Kr(e.display)-3);return function(i){if(cr(e.doc,i))return 0;var o=0;if(i.widgets)for(var l=0;l0&&(u=ce(e.doc,s.line).text).length==s.ch){var h=Le(u,u.length,e.options.tabSize)-u.length;s=L(s.line,Math.max(0,Math.round((o-Ho(e.display).left)/Kr(e.display))-h))}return s}function Lr(e,t){if(t>=e.display.viewTo||(t-=e.display.viewFrom,t<0))return null;for(var n=e.display.view,r=0;rt)&&(i.updateLineNumbers=t),e.curOp.viewChanged=!0,t>=i.viewTo)$t&&Ti(e.doc,t)i.viewFrom?hr(e):(i.viewFrom+=r,i.viewTo+=r);else if(t<=i.viewFrom&&n>=i.viewTo)hr(e);else if(t<=i.viewFrom){var o=Jn(e,n,n+r,1);o?(i.view=i.view.slice(o.index),i.viewFrom=o.lineN,i.viewTo+=r):hr(e)}else if(n>=i.viewTo){var l=Jn(e,t,t,-1);l?(i.view=i.view.slice(0,l.index),i.viewTo=l.lineN):hr(e)}else{var a=Jn(e,t,t,-1),s=Jn(e,n,n+r,1);a&&s?(i.view=i.view.slice(0,a.index).concat(Gn(e,a.lineN,s.lineN)).concat(i.view.slice(s.index)),i.viewTo+=r):hr(e)}var u=i.externalMeasured;u&&(n=i.lineN&&t=r.viewTo)){var o=r.view[Lr(e,t)];if(o.node!=null){var l=o.changes||(o.changes=[]);oe(l,n)==-1&&l.push(n)}}}function hr(e){e.display.viewFrom=e.display.viewTo=e.doc.first,e.display.view=[],e.display.viewOffset=0}function Jn(e,t,n,r){var i=Lr(e,t),o,l=e.display.view;if(!$t||n==e.doc.first+e.doc.size)return{index:i,lineN:n};for(var a=e.display.viewFrom,s=0;s0){if(i==l.length-1)return null;o=a+l[i].size-t,i++}else o=a-t;t+=o,n+=o}for(;Ti(e.doc,n)!=n;){if(i==(r<0?0:l.length-1))return null;n+=r*l[i-(r<0?1:0)].size,i+=r}return{index:i,lineN:n}}function Ts(e,t,n){var r=e.display,i=r.view;i.length==0||t>=r.viewTo||n<=r.viewFrom?(r.view=Gn(e,t,n),r.viewFrom=t):(r.viewFrom>t?r.view=Gn(e,t,r.viewFrom).concat(r.view):r.viewFromn&&(r.view=r.view.slice(0,Lr(e,n)))),r.viewTo=n}function el(e){for(var t=e.display.view,n=0,r=0;r=e.display.viewTo||s.to().line0?l:e.defaultCharWidth())+"px"}if(r.other){var a=n.appendChild(d("div","Ā ","CodeMirror-cursor CodeMirror-secondarycursor"));a.style.display="",a.style.left=r.other.left+"px",a.style.top=r.other.top+"px",a.style.height=(r.other.bottom-r.other.top)*.85+"px"}}function Qn(e,t){return e.top-t.top||e.left-t.left}function Ls(e,t,n){var r=e.display,i=e.doc,o=document.createDocumentFragment(),l=Ho(e.display),a=l.left,s=Math.max(r.sizerWidth,wr(e)-r.sizer.offsetLeft)-l.right,u=i.direction=="ltr";function h(G,ee,me,pe){ee<0&&(ee=0),ee=Math.round(ee),pe=Math.round(pe),o.appendChild(d("div",null,"CodeMirror-selected","position: absolute; left: "+G+`px; - top: `+ee+"px; width: "+(me??s-G)+`px; - height: `+(pe-ee)+"px"))}function v(G,ee,me){var pe=ce(i,G),Fe=pe.text.length,Ke,st;function Xe(tt,St){return Zn(e,L(G,tt),"div",pe,St)}function Mt(tt,St,ft){var nt=Vo(e,pe,null,tt),rt=St=="ltr"==(ft=="after")?"left":"right",Qe=ft=="after"?nt.begin:nt.end-(/\s/.test(pe.text.charAt(nt.end-1))?2:1);return Xe(Qe,rt)[rt]}var wt=We(pe,i.direction);return or(wt,ee||0,me??Fe,function(tt,St,ft,nt){var rt=ft=="ltr",Qe=Xe(tt,rt?"left":"right"),Tt=Xe(St-1,rt?"right":"left"),nn=ee==null&&tt==0,xr=me==null&&St==Fe,gt=nt==0,Jt=!wt||nt==wt.length-1;if(Tt.top-Qe.top<=3){var ut=(u?nn:xr)&>,co=(u?xr:nn)&&Jt,ir=ut?a:(rt?Qe:Tt).left,Ar=co?s:(rt?Tt:Qe).right;h(ir,Qe.top,Ar-ir,Qe.bottom)}else{var Er,mt,on,ho;rt?(Er=u&&nn&>?a:Qe.left,mt=u?s:Mt(tt,ft,"before"),on=u?a:Mt(St,ft,"after"),ho=u&&xr&&Jt?s:Tt.right):(Er=u?Mt(tt,ft,"before"):a,mt=!u&&nn&>?s:Qe.right,on=!u&&xr&&Jt?a:Tt.left,ho=u?Mt(St,ft,"after"):s),h(Er,Qe.top,mt-Er,Qe.bottom),Qe.bottom0?t.blinker=setInterval(function(){e.hasFocus()||Ur(e),t.cursorDiv.style.visibility=(n=!n)?"":"hidden"},e.options.cursorBlinkRate):e.options.cursorBlinkRate<0&&(t.cursorDiv.style.visibility="hidden")}}function rl(e){e.hasFocus()||(e.display.input.focus(),e.state.focused||Ri(e))}function Hi(e){e.state.delayingBlurEvent=!0,setTimeout(function(){e.state.delayingBlurEvent&&(e.state.delayingBlurEvent=!1,e.state.focused&&Ur(e))},100)}function Ri(e,t){e.state.delayingBlurEvent&&!e.state.draggingText&&(e.state.delayingBlurEvent=!1),e.options.readOnly!="nocursor"&&(e.state.focused||(Ye(e,"focus",e,t),e.state.focused=!0,P(e.display.wrapper,"CodeMirror-focused"),!e.curOp&&e.display.selForContextMenu!=e.doc.sel&&(e.display.input.reset(),_&&setTimeout(function(){return e.display.input.reset(!0)},20)),e.display.input.receivedFocus()),_i(e))}function Ur(e,t){e.state.delayingBlurEvent||(e.state.focused&&(Ye(e,"blur",e,t),e.state.focused=!1,Ee(e.display.wrapper,"CodeMirror-focused")),clearInterval(e.display.blinker),setTimeout(function(){e.state.focused||(e.display.shift=!1)},150))}function Vn(e){for(var t=e.display,n=t.lineDiv.offsetTop,r=Math.max(0,t.scroller.getBoundingClientRect().top),i=t.lineDiv.getBoundingClientRect().top,o=0,l=0;l.005||x<-.005)&&(ie.display.sizerWidth){var E=Math.ceil(h/Kr(e.display));E>e.display.maxLineLength&&(e.display.maxLineLength=E,e.display.maxLine=a.line,e.display.maxLineChanged=!0)}}}Math.abs(o)>2&&(t.scroller.scrollTop+=o)}function nl(e){if(e.widgets)for(var t=0;t=l&&(o=g(t,er(ce(t,s))-e.wrapper.clientHeight),l=s)}return{from:o,to:Math.max(l,o+1)}}function Cs(e,t){if(!Ze(e,"scrollCursorIntoView")){var n=e.display,r=n.sizer.getBoundingClientRect(),i=null,o=n.wrapper.ownerDocument;if(t.top+r.top<0?i=!0:t.bottom+r.top>(o.defaultView.innerHeight||o.documentElement.clientHeight)&&(i=!1),i!=null&&!we){var l=d("div","​",null,`position: absolute; - top: `+(t.top-n.viewOffset-Xn(e.display))+`px; - height: `+(t.bottom-t.top+Yt(e)+n.barHeight)+`px; - left: `+t.left+"px; width: "+Math.max(2,t.right-t.left)+"px;");e.display.lineSpace.appendChild(l),l.scrollIntoView(i),e.display.lineSpace.removeChild(l)}}}function Ds(e,t,n,r){r==null&&(r=0);var i;!e.options.lineWrapping&&t==n&&(n=t.sticky=="before"?L(t.line,t.ch+1,"before"):t,t=t.ch?L(t.line,t.sticky=="before"?t.ch-1:t.ch,"after"):t);for(var o=0;o<5;o++){var l=!1,a=jt(e,t),s=!n||n==t?a:jt(e,n);i={left:Math.min(a.left,s.left),top:Math.min(a.top,s.top)-r,right:Math.max(a.left,s.left),bottom:Math.max(a.bottom,s.bottom)+r};var u=qi(e,i),h=e.doc.scrollTop,v=e.doc.scrollLeft;if(u.scrollTop!=null&&(yn(e,u.scrollTop),Math.abs(e.doc.scrollTop-h)>1&&(l=!0)),u.scrollLeft!=null&&(Cr(e,u.scrollLeft),Math.abs(e.doc.scrollLeft-v)>1&&(l=!0)),!l)break}return i}function Ms(e,t){var n=qi(e,t);n.scrollTop!=null&&yn(e,n.scrollTop),n.scrollLeft!=null&&Cr(e,n.scrollLeft)}function qi(e,t){var n=e.display,r=jr(e.display);t.top<0&&(t.top=0);var i=e.curOp&&e.curOp.scrollTop!=null?e.curOp.scrollTop:n.scroller.scrollTop,o=Fi(e),l={};t.bottom-t.top>o&&(t.bottom=t.top+o);var a=e.doc.height+Mi(n),s=t.topa-r;if(t.topi+o){var h=Math.min(t.top,(u?a:t.bottom)-o);h!=i&&(l.scrollTop=h)}var v=e.options.fixedGutter?0:n.gutters.offsetWidth,k=e.curOp&&e.curOp.scrollLeft!=null?e.curOp.scrollLeft:n.scroller.scrollLeft-v,x=wr(e)-n.gutters.offsetWidth,M=t.right-t.left>x;return M&&(t.right=t.left+x),t.left<10?l.scrollLeft=0:t.leftx+k-3&&(l.scrollLeft=t.right+(M?0:10)-x),l}function ji(e,t){t!=null&&(ei(e),e.curOp.scrollTop=(e.curOp.scrollTop==null?e.doc.scrollTop:e.curOp.scrollTop)+t)}function Gr(e){ei(e);var t=e.getCursor();e.curOp.scrollToPos={from:t,to:t,margin:e.options.cursorScrollMargin}}function mn(e,t,n){(t!=null||n!=null)&&ei(e),t!=null&&(e.curOp.scrollLeft=t),n!=null&&(e.curOp.scrollTop=n)}function Fs(e,t){ei(e),e.curOp.scrollToPos=t}function ei(e){var t=e.curOp.scrollToPos;if(t){e.curOp.scrollToPos=null;var n=Jo(e,t.from),r=Jo(e,t.to);il(e,n,r,t.margin)}}function il(e,t,n,r){var i=qi(e,{left:Math.min(t.left,n.left),top:Math.min(t.top,n.top)-r,right:Math.max(t.right,n.right),bottom:Math.max(t.bottom,n.bottom)+r});mn(e,i.scrollLeft,i.scrollTop)}function yn(e,t){Math.abs(e.doc.scrollTop-t)<2||(I||Ui(e,{top:t}),ol(e,t,!0),I&&Ui(e),kn(e,100))}function ol(e,t,n){t=Math.max(0,Math.min(e.display.scroller.scrollHeight-e.display.scroller.clientHeight,t)),!(e.display.scroller.scrollTop==t&&!n)&&(e.doc.scrollTop=t,e.display.scrollbars.setScrollTop(t),e.display.scroller.scrollTop!=t&&(e.display.scroller.scrollTop=t))}function Cr(e,t,n,r){t=Math.max(0,Math.min(t,e.display.scroller.scrollWidth-e.display.scroller.clientWidth)),!((n?t==e.doc.scrollLeft:Math.abs(e.doc.scrollLeft-t)<2)&&!r)&&(e.doc.scrollLeft=t,fl(e),e.display.scroller.scrollLeft!=t&&(e.display.scroller.scrollLeft=t),e.display.scrollbars.setScrollLeft(t))}function xn(e){var t=e.display,n=t.gutters.offsetWidth,r=Math.round(e.doc.height+Mi(e.display));return{clientHeight:t.scroller.clientHeight,viewHeight:t.wrapper.clientHeight,scrollWidth:t.scroller.scrollWidth,clientWidth:t.scroller.clientWidth,viewWidth:t.wrapper.clientWidth,barLeft:e.options.fixedGutter?n:0,docHeight:r,scrollHeight:r+Yt(e)+t.barHeight,nativeBarWidth:t.nativeBarWidth,gutterWidth:n}}var Dr=function(e,t,n){this.cm=n;var r=this.vert=d("div",[d("div",null,null,"min-width: 1px")],"CodeMirror-vscrollbar"),i=this.horiz=d("div",[d("div",null,null,"height: 100%; min-height: 1px")],"CodeMirror-hscrollbar");r.tabIndex=i.tabIndex=-1,e(r),e(i),ve(r,"scroll",function(){r.clientHeight&&t(r.scrollTop,"vertical")}),ve(i,"scroll",function(){i.clientWidth&&t(i.scrollLeft,"horizontal")}),this.checkedZeroWidth=!1,b&&N<8&&(this.horiz.style.minHeight=this.vert.style.minWidth="18px")};Dr.prototype.update=function(e){var t=e.scrollWidth>e.clientWidth+1,n=e.scrollHeight>e.clientHeight+1,r=e.nativeBarWidth;if(n){this.vert.style.display="block",this.vert.style.bottom=t?r+"px":"0";var i=e.viewHeight-(t?r:0);this.vert.firstChild.style.height=Math.max(0,e.scrollHeight-e.clientHeight+i)+"px"}else this.vert.scrollTop=0,this.vert.style.display="",this.vert.firstChild.style.height="0";if(t){this.horiz.style.display="block",this.horiz.style.right=n?r+"px":"0",this.horiz.style.left=e.barLeft+"px";var o=e.viewWidth-e.barLeft-(n?r:0);this.horiz.firstChild.style.width=Math.max(0,e.scrollWidth-e.clientWidth+o)+"px"}else this.horiz.style.display="",this.horiz.firstChild.style.width="0";return!this.checkedZeroWidth&&e.clientHeight>0&&(r==0&&this.zeroWidthHack(),this.checkedZeroWidth=!0),{right:n?r:0,bottom:t?r:0}},Dr.prototype.setScrollLeft=function(e){this.horiz.scrollLeft!=e&&(this.horiz.scrollLeft=e),this.disableHoriz&&this.enableZeroWidthBar(this.horiz,this.disableHoriz,"horiz")},Dr.prototype.setScrollTop=function(e){this.vert.scrollTop!=e&&(this.vert.scrollTop=e),this.disableVert&&this.enableZeroWidthBar(this.vert,this.disableVert,"vert")},Dr.prototype.zeroWidthHack=function(){var e=se&&!ke?"12px":"18px";this.horiz.style.height=this.vert.style.width=e,this.horiz.style.visibility=this.vert.style.visibility="hidden",this.disableHoriz=new be,this.disableVert=new be},Dr.prototype.enableZeroWidthBar=function(e,t,n){e.style.visibility="";function r(){var i=e.getBoundingClientRect(),o=n=="vert"?document.elementFromPoint(i.right-1,(i.top+i.bottom)/2):document.elementFromPoint((i.right+i.left)/2,i.bottom-1);o!=e?e.style.visibility="hidden":t.set(1e3,r)}t.set(1e3,r)},Dr.prototype.clear=function(){var e=this.horiz.parentNode;e.removeChild(this.horiz),e.removeChild(this.vert)};var bn=function(){};bn.prototype.update=function(){return{bottom:0,right:0}},bn.prototype.setScrollLeft=function(){},bn.prototype.setScrollTop=function(){},bn.prototype.clear=function(){};function Xr(e,t){t||(t=xn(e));var n=e.display.barWidth,r=e.display.barHeight;ll(e,t);for(var i=0;i<4&&n!=e.display.barWidth||r!=e.display.barHeight;i++)n!=e.display.barWidth&&e.options.lineWrapping&&Vn(e),ll(e,xn(e)),n=e.display.barWidth,r=e.display.barHeight}function ll(e,t){var n=e.display,r=n.scrollbars.update(t);n.sizer.style.paddingRight=(n.barWidth=r.right)+"px",n.sizer.style.paddingBottom=(n.barHeight=r.bottom)+"px",n.heightForcer.style.borderBottom=r.bottom+"px solid transparent",r.right&&r.bottom?(n.scrollbarFiller.style.display="block",n.scrollbarFiller.style.height=r.bottom+"px",n.scrollbarFiller.style.width=r.right+"px"):n.scrollbarFiller.style.display="",r.bottom&&e.options.coverGutterNextToScrollbar&&e.options.fixedGutter?(n.gutterFiller.style.display="block",n.gutterFiller.style.height=r.bottom+"px",n.gutterFiller.style.width=t.gutterWidth+"px"):n.gutterFiller.style.display=""}var al={native:Dr,null:bn};function sl(e){e.display.scrollbars&&(e.display.scrollbars.clear(),e.display.scrollbars.addClass&&Ee(e.display.wrapper,e.display.scrollbars.addClass)),e.display.scrollbars=new al[e.options.scrollbarStyle](function(t){e.display.wrapper.insertBefore(t,e.display.scrollbarFiller),ve(t,"mousedown",function(){e.state.focused&&setTimeout(function(){return e.display.input.focus()},0)}),t.setAttribute("cm-not-content","true")},function(t,n){n=="horizontal"?Cr(e,t):yn(e,t)},e),e.display.scrollbars.addClass&&P(e.display.wrapper,e.display.scrollbars.addClass)}var As=0;function Mr(e){e.curOp={cm:e,viewChanged:!1,startHeight:e.doc.height,forceUpdate:!1,updateInput:0,typing:!1,changeObjs:null,cursorActivityHandlers:null,cursorActivityCalled:0,selectionChanged:!1,updateMaxLine:!1,scrollLeft:null,scrollTop:null,scrollToPos:null,focus:!1,id:++As,markArrays:null},as(e.curOp)}function Fr(e){var t=e.curOp;t&&us(t,function(n){for(var r=0;r=n.viewTo)||n.maxLineChanged&&t.options.lineWrapping,e.update=e.mustUpdate&&new ti(t,e.mustUpdate&&{top:e.scrollTop,ensure:e.scrollToPos},e.forceUpdate)}function Os(e){e.updatedDisplay=e.mustUpdate&&Ki(e.cm,e.update)}function Ps(e){var t=e.cm,n=t.display;e.updatedDisplay&&Vn(t),e.barMeasure=xn(t),n.maxLineChanged&&!t.options.lineWrapping&&(e.adjustWidthTo=qo(t,n.maxLine,n.maxLine.text.length).left+3,t.display.sizerWidth=e.adjustWidthTo,e.barMeasure.scrollWidth=Math.max(n.scroller.clientWidth,n.sizer.offsetLeft+e.adjustWidthTo+Yt(t)+t.display.barWidth),e.maxScrollLeft=Math.max(0,n.sizer.offsetLeft+e.adjustWidthTo-wr(t))),(e.updatedDisplay||e.selectionChanged)&&(e.preparedSelection=n.input.prepareSelection())}function Is(e){var t=e.cm;e.adjustWidthTo!=null&&(t.display.sizer.style.minWidth=e.adjustWidthTo+"px",e.maxScrollLeft=e.display.viewTo)){var n=+new Date+e.options.workTime,r=fn(e,t.highlightFrontier),i=[];t.iter(r.line,Math.min(t.first+t.size,e.display.viewTo+500),function(o){if(r.line>=e.display.viewFrom){var l=o.styles,a=o.text.length>e.options.maxHighlightLength?Gt(t.mode,r.state):null,s=vo(e,o,r,!0);a&&(r.state=a),o.styles=s.styles;var u=o.styleClasses,h=s.classes;h?o.styleClasses=h:u&&(o.styleClasses=null);for(var v=!l||l.length!=o.styles.length||u!=h&&(!u||!h||u.bgClass!=h.bgClass||u.textClass!=h.textClass),k=0;!v&&kn)return kn(e,e.options.workDelay),!0}),t.highlightFrontier=r.line,t.modeFrontier=Math.max(t.modeFrontier,r.line),i.length&&Dt(e,function(){for(var o=0;o=n.viewFrom&&t.visible.to<=n.viewTo&&(n.updateLineNumbers==null||n.updateLineNumbers>=n.viewTo)&&n.renderedView==n.view&&el(e)==0)return!1;cl(e)&&(hr(e),t.dims=Ii(e));var i=r.first+r.size,o=Math.max(t.visible.from-e.options.viewportMargin,r.first),l=Math.min(i,t.visible.to+e.options.viewportMargin);n.viewFroml&&n.viewTo-l<20&&(l=Math.min(i,n.viewTo)),$t&&(o=Ti(e.doc,o),l=Ao(e.doc,l));var a=o!=n.viewFrom||l!=n.viewTo||n.lastWrapHeight!=t.wrapperHeight||n.lastWrapWidth!=t.wrapperWidth;Ts(e,o,l),n.viewOffset=er(ce(e.doc,n.viewFrom)),e.display.mover.style.top=n.viewOffset+"px";var s=el(e);if(!a&&s==0&&!t.force&&n.renderedView==n.view&&(n.updateLineNumbers==null||n.updateLineNumbers>=n.viewTo))return!1;var u=_s(e);return s>4&&(n.lineDiv.style.display="none"),Rs(e,n.updateLineNumbers,t.dims),s>4&&(n.lineDiv.style.display=""),n.renderedView=n.view,Hs(u),D(n.cursorDiv),D(n.selectionDiv),n.gutters.style.height=n.sizer.style.minHeight=0,a&&(n.lastWrapHeight=t.wrapperHeight,n.lastWrapWidth=t.wrapperWidth,kn(e,400)),n.updateLineNumbers=null,!0}function ul(e,t){for(var n=t.viewport,r=!0;;r=!1){if(!r||!e.options.lineWrapping||t.oldDisplayWidth==wr(e)){if(n&&n.top!=null&&(n={top:Math.min(e.doc.height+Mi(e.display)-Fi(e),n.top)}),t.visible=$n(e.display,e.doc,n),t.visible.from>=e.display.viewFrom&&t.visible.to<=e.display.viewTo)break}else r&&(t.visible=$n(e.display,e.doc,n));if(!Ki(e,t))break;Vn(e);var i=xn(e);vn(e),Xr(e,i),Xi(e,i),t.force=!1}t.signal(e,"update",e),(e.display.viewFrom!=e.display.reportedViewFrom||e.display.viewTo!=e.display.reportedViewTo)&&(t.signal(e,"viewportChange",e,e.display.viewFrom,e.display.viewTo),e.display.reportedViewFrom=e.display.viewFrom,e.display.reportedViewTo=e.display.viewTo)}function Ui(e,t){var n=new ti(e,t);if(Ki(e,n)){Vn(e),ul(e,n);var r=xn(e);vn(e),Xr(e,r),Xi(e,r),n.finish()}}function Rs(e,t,n){var r=e.display,i=e.options.lineNumbers,o=r.lineDiv,l=o.firstChild;function a(M){var E=M.nextSibling;return _&&se&&e.display.currentWheelTarget==M?M.style.display="none":M.parentNode.removeChild(M),E}for(var s=r.view,u=r.viewFrom,h=0;h-1&&(x=!1),Io(e,v,u,n)),x&&(D(v.lineNumber),v.lineNumber.appendChild(document.createTextNode(W(e.options,u)))),l=v.node.nextSibling}u+=v.size}for(;l;)l=a(l)}function Gi(e){var t=e.gutters.offsetWidth;e.sizer.style.marginLeft=t+"px",ot(e,"gutterChanged",e)}function Xi(e,t){e.display.sizer.style.minHeight=t.docHeight+"px",e.display.heightForcer.style.top=t.docHeight+"px",e.display.gutters.style.height=t.docHeight+e.display.barHeight+Yt(e)+"px"}function fl(e){var t=e.display,n=t.view;if(!(!t.alignWidgets&&(!t.gutters.firstChild||!e.options.fixedGutter))){for(var r=zi(t)-t.scroller.scrollLeft+e.doc.scrollLeft,i=t.gutters.offsetWidth,o=r+"px",l=0;l=105&&(i.wrapper.style.clipPath="inset(0px)"),i.wrapper.setAttribute("translate","no"),b&&N<8&&(i.gutters.style.zIndex=-1,i.scroller.style.paddingRight=0),!_&&!(I&&ne)&&(i.scroller.draggable=!0),e&&(e.appendChild?e.appendChild(i.wrapper):e(i.wrapper)),i.viewFrom=i.viewTo=t.first,i.reportedViewFrom=i.reportedViewTo=t.first,i.view=[],i.renderedView=null,i.externalMeasured=null,i.viewOffset=0,i.lastWrapHeight=i.lastWrapWidth=0,i.updateLineNumbers=null,i.nativeBarWidth=i.barHeight=i.barWidth=0,i.scrollbarsClipped=!1,i.lineNumWidth=i.lineNumInnerWidth=i.lineNumChars=null,i.alignWidgets=!1,i.cachedCharWidth=i.cachedTextHeight=i.cachedPaddingH=null,i.maxLine=null,i.maxLineLength=0,i.maxLineChanged=!1,i.wheelDX=i.wheelDY=i.wheelStartX=i.wheelStartY=null,i.shift=!1,i.selForContextMenu=null,i.activeTouch=null,i.gutterSpecs=Yi(r.gutters,r.lineNumbers),dl(i),n.init(i)}var ri=0,rr=null;b?rr=-.53:I?rr=15:O?rr=-.7:X&&(rr=-1/3);function hl(e){var t=e.wheelDeltaX,n=e.wheelDeltaY;return t==null&&e.detail&&e.axis==e.HORIZONTAL_AXIS&&(t=e.detail),n==null&&e.detail&&e.axis==e.VERTICAL_AXIS?n=e.detail:n==null&&(n=e.wheelDelta),{x:t,y:n}}function js(e){var t=hl(e);return t.x*=rr,t.y*=rr,t}function pl(e,t){O&&q==102&&(e.display.chromeScrollHack==null?e.display.sizer.style.pointerEvents="none":clearTimeout(e.display.chromeScrollHack),e.display.chromeScrollHack=setTimeout(function(){e.display.chromeScrollHack=null,e.display.sizer.style.pointerEvents=""},100));var n=hl(t),r=n.x,i=n.y,o=rr;t.deltaMode===0&&(r=t.deltaX,i=t.deltaY,o=1);var l=e.display,a=l.scroller,s=a.scrollWidth>a.clientWidth,u=a.scrollHeight>a.clientHeight;if(r&&s||i&&u){if(i&&se&&_){e:for(var h=t.target,v=l.view;h!=a;h=h.parentNode)for(var k=0;k=0&&Z(e,r.to())<=0)return n}return-1};var He=function(e,t){this.anchor=e,this.head=t};He.prototype.from=function(){return _r(this.anchor,this.head)},He.prototype.to=function(){return xt(this.anchor,this.head)},He.prototype.empty=function(){return this.head.line==this.anchor.line&&this.head.ch==this.anchor.ch};function Kt(e,t,n){var r=e&&e.options.selectionsMayTouch,i=t[n];t.sort(function(k,x){return Z(k.from(),x.from())}),n=oe(t,i);for(var o=1;o0:s>=0){var u=_r(a.from(),l.from()),h=xt(a.to(),l.to()),v=a.empty()?l.from()==l.head:a.from()==a.head;o<=n&&--n,t.splice(--o,2,new He(v?h:u,v?u:h))}}return new At(t,n)}function pr(e,t){return new At([new He(e,t||e)],0)}function gr(e){return e.text?L(e.from.line+e.text.length-1,ge(e.text).length+(e.text.length==1?e.from.ch:0)):e.to}function gl(e,t){if(Z(e,t.from)<0)return e;if(Z(e,t.to)<=0)return gr(t);var n=e.line+t.text.length-(t.to.line-t.from.line)-1,r=e.ch;return e.line==t.to.line&&(r+=gr(t).ch-t.to.ch),L(n,r)}function Zi(e,t){for(var n=[],r=0;r1&&e.remove(a.line+1,M-1),e.insert(a.line+1,U)}ot(e,"change",e,t)}function vr(e,t,n){function r(i,o,l){if(i.linked)for(var a=0;a1&&!e.done[e.done.length-2].ranges)return e.done.pop(),ge(e.done)}function kl(e,t,n,r){var i=e.history;i.undone.length=0;var o=+new Date,l,a;if((i.lastOp==r||i.lastOrigin==t.origin&&t.origin&&(t.origin.charAt(0)=="+"&&i.lastModTime>o-(e.cm?e.cm.options.historyEventDelay:500)||t.origin.charAt(0)=="*"))&&(l=Gs(i,i.lastOp==r)))a=ge(l.changes),Z(t.from,t.to)==0&&Z(t.from,a.to)==0?a.to=gr(t):l.changes.push(Vi(e,t));else{var s=ge(i.done);for((!s||!s.ranges)&&ii(e.sel,i.done),l={changes:[Vi(e,t)],generation:i.generation},i.done.push(l);i.done.length>i.undoDepth;)i.done.shift(),i.done[0].ranges||i.done.shift()}i.done.push(n),i.generation=++i.maxGeneration,i.lastModTime=i.lastSelTime=o,i.lastOp=i.lastSelOp=r,i.lastOrigin=i.lastSelOrigin=t.origin,a||Ye(e,"historyAdded")}function Xs(e,t,n,r){var i=t.charAt(0);return i=="*"||i=="+"&&n.ranges.length==r.ranges.length&&n.somethingSelected()==r.somethingSelected()&&new Date-e.history.lastSelTime<=(e.cm?e.cm.options.historyEventDelay:500)}function Ys(e,t,n,r){var i=e.history,o=r&&r.origin;n==i.lastSelOp||o&&i.lastSelOrigin==o&&(i.lastModTime==i.lastSelTime&&i.lastOrigin==o||Xs(e,o,ge(i.done),t))?i.done[i.done.length-1]=t:ii(t,i.done),i.lastSelTime=+new Date,i.lastSelOrigin=o,i.lastSelOp=n,r&&r.clearRedo!==!1&&bl(i.undone)}function ii(e,t){var n=ge(t);n&&n.ranges&&n.equals(e)||t.push(e)}function wl(e,t,n,r){var i=t["spans_"+e.id],o=0;e.iter(Math.max(e.first,n),Math.min(e.first+e.size,r),function(l){l.markedSpans&&((i||(i=t["spans_"+e.id]={}))[o]=l.markedSpans),++o})}function Zs(e){if(!e)return null;for(var t,n=0;n-1&&(ge(a)[v]=u[v],delete u[v])}}return r}function $i(e,t,n,r){if(r){var i=e.anchor;if(n){var o=Z(t,i)<0;o!=Z(n,i)<0?(i=t,t=n):o!=Z(t,n)<0&&(t=n)}return new He(i,t)}else return new He(n||t,t)}function oi(e,t,n,r,i){i==null&&(i=e.cm&&(e.cm.display.shift||e.extend)),pt(e,new At([$i(e.sel.primary(),t,n,i)],0),r)}function Tl(e,t,n){for(var r=[],i=e.cm&&(e.cm.display.shift||e.extend),o=0;o=t.ch:a.to>t.ch))){if(i&&(Ye(s,"beforeCursorEnter"),s.explicitlyCleared))if(o.markedSpans){--l;continue}else break;if(!s.atomic)continue;if(n){var v=s.find(r<0?1:-1),k=void 0;if((r<0?h:u)&&(v=Al(e,v,-r,v&&v.line==t.line?o:null)),v&&v.line==t.line&&(k=Z(v,n))&&(r<0?k<0:k>0))return Zr(e,v,t,r,i)}var x=s.find(r<0?-1:1);return(r<0?u:h)&&(x=Al(e,x,r,x.line==t.line?o:null)),x?Zr(e,x,t,r,i):null}}return t}function ai(e,t,n,r,i){var o=r||1,l=Zr(e,t,n,o,i)||!i&&Zr(e,t,n,o,!0)||Zr(e,t,n,-o,i)||!i&&Zr(e,t,n,-o,!0);return l||(e.cantEdit=!0,L(e.first,0))}function Al(e,t,n,r){return n<0&&t.ch==0?t.line>e.first?Ce(e,L(t.line-1)):null:n>0&&t.ch==(r||ce(e,t.line)).text.length?t.line=0;--i)Ol(e,{from:r[i].from,to:r[i].to,text:i?[""]:t.text,origin:t.origin});else Ol(e,t)}}function Ol(e,t){if(!(t.text.length==1&&t.text[0]==""&&Z(t.from,t.to)==0)){var n=Zi(e,t);kl(e,t,n,e.cm?e.cm.curOp.id:NaN),Tn(e,t,n,wi(e,t));var r=[];vr(e,function(i,o){!o&&oe(r,i.history)==-1&&(Bl(i.history,t),r.push(i.history)),Tn(i,t,null,wi(i,t))})}}function si(e,t,n){var r=e.cm&&e.cm.state.suppressEdits;if(!(r&&!n)){for(var i=e.history,o,l=e.sel,a=t=="undo"?i.done:i.undone,s=t=="undo"?i.undone:i.done,u=0;u=0;--x){var M=k(x);if(M)return M.v}}}}function Pl(e,t){if(t!=0&&(e.first+=t,e.sel=new At(Pe(e.sel.ranges,function(i){return new He(L(i.anchor.line+t,i.anchor.ch),L(i.head.line+t,i.head.ch))}),e.sel.primIndex),e.cm)){bt(e.cm,e.first,e.first-t,t);for(var n=e.cm.display,r=n.viewFrom;re.lastLine())){if(t.from.lineo&&(t={from:t.from,to:L(o,ce(e,o).text.length),text:[t.text[0]],origin:t.origin}),t.removed=Vt(e,t.from,t.to),n||(n=Zi(e,t)),e.cm?Vs(e.cm,t,r):Qi(e,t,r),li(e,n,Ve),e.cantEdit&&ai(e,L(e.firstLine(),0))&&(e.cantEdit=!1)}}function Vs(e,t,n){var r=e.doc,i=e.display,o=t.from,l=t.to,a=!1,s=o.line;e.options.lineWrapping||(s=f(qt(ce(r,o.line))),r.iter(s,l.line+1,function(x){if(x==i.maxLine)return a=!0,!0})),r.sel.contains(t.from,t.to)>-1&&Ot(e),Qi(r,t,n,$o(e)),e.options.lineWrapping||(r.iter(s,o.line+t.text.length,function(x){var M=Un(x);M>i.maxLineLength&&(i.maxLine=x,i.maxLineLength=M,i.maxLineChanged=!0,a=!1)}),a&&(e.curOp.updateMaxLine=!0)),Ra(r,o.line),kn(e,400);var u=t.text.length-(l.line-o.line)-1;t.full?bt(e):o.line==l.line&&t.text.length==1&&!ml(e.doc,t)?dr(e,o.line,"text"):bt(e,o.line,l.line+1,u);var h=Ct(e,"changes"),v=Ct(e,"change");if(v||h){var k={from:o,to:l,text:t.text,removed:t.removed,origin:t.origin};v&&ot(e,"change",e,k),h&&(e.curOp.changeObjs||(e.curOp.changeObjs=[])).push(k)}e.display.selForContextMenu=null}function Qr(e,t,n,r,i){var o;r||(r=n),Z(r,n)<0&&(o=[r,n],n=o[0],r=o[1]),typeof t=="string"&&(t=e.splitLines(t)),Jr(e,{from:n,to:r,text:t,origin:i})}function Il(e,t,n,r){n1||!(this.children[0]instanceof Cn))){var a=[];this.collapse(a),this.children=[new Cn(a)],this.children[0].parent=this}},collapse:function(e){for(var t=0;t50){for(var l=i.lines.length%25+25,a=l;a10);e.parent.maybeSpill()}},iterN:function(e,t,n){for(var r=0;re.display.maxLineLength&&(e.display.maxLine=u,e.display.maxLineLength=h,e.display.maxLineChanged=!0)}r!=null&&e&&this.collapsed&&bt(e,r,i+1),this.lines.length=0,this.explicitlyCleared=!0,this.atomic&&this.doc.cantEdit&&(this.doc.cantEdit=!1,e&&Ml(e.doc)),e&&ot(e,"markerCleared",e,this,r,i),t&&Fr(e),this.parent&&this.parent.clear()}},mr.prototype.find=function(e,t){e==null&&this.type=="bookmark"&&(e=1);for(var n,r,i=0;i0||l==0&&o.clearWhenEmpty!==!1)return o;if(o.replacedWith&&(o.collapsed=!0,o.widgetNode=S("span",[o.replacedWith],"CodeMirror-widget"),r.handleMouseEvents||o.widgetNode.setAttribute("cm-ignore-events","true"),r.insertLeft&&(o.widgetNode.insertLeft=!0)),o.collapsed){if(Fo(e,t.line,t,n,o)||t.line!=n.line&&Fo(e,n.line,t,n,o))throw new Error("Inserting collapsed marker partially overlapping an existing one");ja()}o.addToHistory&&kl(e,{from:t,to:n,origin:"markText"},e.sel,NaN);var a=t.line,s=e.cm,u;if(e.iter(a,n.line+1,function(v){s&&o.collapsed&&!s.options.lineWrapping&&qt(v)==s.display.maxLine&&(u=!0),o.collapsed&&a!=t.line&&Ft(v,0),Ua(v,new Rn(o,a==t.line?t.ch:null,a==n.line?n.ch:null),e.cm&&e.cm.curOp),++a}),o.collapsed&&e.iter(t.line,n.line+1,function(v){cr(e,v)&&Ft(v,0)}),o.clearOnEnter&&ve(o,"beforeCursorEnter",function(){return o.clear()}),o.readOnly&&(qa(),(e.history.done.length||e.history.undone.length)&&e.clearHistory()),o.collapsed&&(o.id=++_l,o.atomic=!0),s){if(u&&(s.curOp.updateMaxLine=!0),o.collapsed)bt(s,t.line,n.line+1);else if(o.className||o.startStyle||o.endStyle||o.css||o.attributes||o.title)for(var h=t.line;h<=n.line;h++)dr(s,h,"text");o.atomic&&Ml(s.doc),ot(s,"markerAdded",s,o)}return o}var Fn=function(e,t){this.markers=e,this.primary=t;for(var n=0;n=0;s--)Jr(this,r[s]);a?Cl(this,a):this.cm&&Gr(this.cm)}),undo:at(function(){si(this,"undo")}),redo:at(function(){si(this,"redo")}),undoSelection:at(function(){si(this,"undo",!0)}),redoSelection:at(function(){si(this,"redo",!0)}),setExtending:function(e){this.extend=e},getExtending:function(){return this.extend},historySize:function(){for(var e=this.history,t=0,n=0,r=0;r=e.ch)&&t.push(i.marker.parent||i.marker)}return t},findMarks:function(e,t,n){e=Ce(this,e),t=Ce(this,t);var r=[],i=e.line;return this.iter(e.line,t.line+1,function(o){var l=o.markedSpans;if(l)for(var a=0;a=s.to||s.from==null&&i!=e.line||s.from!=null&&i==t.line&&s.from>=t.ch)&&(!n||n(s.marker))&&r.push(s.marker.parent||s.marker)}++i}),r},getAllMarks:function(){var e=[];return this.iter(function(t){var n=t.markedSpans;if(n)for(var r=0;re)return t=e,!0;e-=o,++n}),Ce(this,L(n,t))},indexFromPos:function(e){e=Ce(this,e);var t=e.ch;if(e.linet&&(t=e.from),e.to!=null&&e.to-1){t.state.draggingText(e),setTimeout(function(){return t.display.input.focus()},20);return}try{var h=e.dataTransfer.getData("Text");if(h){var v;if(t.state.draggingText&&!t.state.draggingText.copy&&(v=t.listSelections()),li(t.doc,pr(n,n)),v)for(var k=0;k=0;a--)Qr(e.doc,"",r[a].from,r[a].to,"+delete");Gr(e)})}function to(e,t,n){var r=Lt(e.text,t+n,n);return r<0||r>e.text.length?null:r}function ro(e,t,n){var r=to(e,t.ch,n);return r==null?null:new L(t.line,r,n<0?"after":"before")}function no(e,t,n,r,i){if(e){t.doc.direction=="rtl"&&(i=-i);var o=We(n,t.doc.direction);if(o){var l=i<0?ge(o):o[0],a=i<0==(l.level==1),s=a?"after":"before",u;if(l.level>0||t.doc.direction=="rtl"){var h=qr(t,n);u=i<0?n.text.length-1:0;var v=Zt(t,h,u).top;u=Nt(function(k){return Zt(t,h,k).top==v},i<0==(l.level==1)?l.from:l.to-1,u),s=="before"&&(u=to(n,u,1))}else u=i<0?l.to:l.from;return new L(r,u,s)}}return new L(r,i<0?n.text.length:0,i<0?"before":"after")}function du(e,t,n,r){var i=We(t,e.doc.direction);if(!i)return ro(t,n,r);n.ch>=t.text.length?(n.ch=t.text.length,n.sticky="before"):n.ch<=0&&(n.ch=0,n.sticky="after");var o=lr(i,n.ch,n.sticky),l=i[o];if(e.doc.direction=="ltr"&&l.level%2==0&&(r>0?l.to>n.ch:l.from=l.from&&k>=h.begin)){var x=v?"before":"after";return new L(n.line,k,x)}}var M=function(U,Q,G){for(var ee=function(Ke,st){return st?new L(n.line,a(Ke,1),"before"):new L(n.line,Ke,"after")};U>=0&&U0==(me.level!=1),Fe=pe?G.begin:a(G.end,-1);if(me.from<=Fe&&Fe0?h.end:a(h.begin,-1);return R!=null&&!(r>0&&R==t.text.length)&&(E=M(r>0?0:i.length-1,r,u(R)),E)?E:null}var Nn={selectAll:El,singleSelection:function(e){return e.setSelection(e.getCursor("anchor"),e.getCursor("head"),Ve)},killLine:function(e){return en(e,function(t){if(t.empty()){var n=ce(e.doc,t.head.line).text.length;return t.head.ch==n&&t.head.line0)i=new L(i.line,i.ch+1),e.replaceRange(o.charAt(i.ch-1)+o.charAt(i.ch-2),L(i.line,i.ch-2),i,"+transpose");else if(i.line>e.doc.first){var l=ce(e.doc,i.line-1).text;l&&(i=new L(i.line,1),e.replaceRange(o.charAt(0)+e.doc.lineSeparator()+l.charAt(l.length-1),L(i.line-1,l.length-1),i,"+transpose"))}}n.push(new He(i,i))}e.setSelections(n)})},newlineAndIndent:function(e){return Dt(e,function(){for(var t=e.listSelections(),n=t.length-1;n>=0;n--)e.replaceRange(e.doc.lineSeparator(),t[n].anchor,t[n].head,"+input");t=e.listSelections();for(var r=0;re&&Z(t,this.pos)==0&&n==this.button};var Pn,In;function xu(e,t){var n=+new Date;return In&&In.compare(n,e,t)?(Pn=In=null,"triple"):Pn&&Pn.compare(n,e,t)?(In=new oo(n,e,t),Pn=null,"double"):(Pn=new oo(n,e,t),In=null,"single")}function ta(e){var t=this,n=t.display;if(!(Ze(t,e)||n.activeTouch&&n.input.supportsTouch())){if(n.input.ensurePolled(),n.shift=e.shiftKey,tr(n,e)){_||(n.scroller.draggable=!1,setTimeout(function(){return n.scroller.draggable=!0},100));return}if(!lo(t,e)){var r=Tr(t,e),i=Wt(e),o=r?xu(r,i):"single";j(t).focus(),i==1&&t.state.selectingText&&t.state.selectingText(e),!(r&&bu(t,i,r,o,e))&&(i==1?r?wu(t,r,o,e):ln(e)==n.scroller&&ht(e):i==2?(r&&oi(t.doc,r),setTimeout(function(){return n.input.focus()},20)):i==3&&(fe?t.display.input.onContextMenu(e):Hi(t)))}}}function bu(e,t,n,r,i){var o="Click";return r=="double"?o="Double"+o:r=="triple"&&(o="Triple"+o),o=(t==1?"Left":t==2?"Middle":"Right")+o,On(e,Gl(o,i),i,function(l){if(typeof l=="string"&&(l=Nn[l]),!l)return!1;var a=!1;try{e.isReadOnly()&&(e.state.suppressEdits=!0),a=l(e,n)!=qe}finally{e.state.suppressEdits=!1}return a})}function ku(e,t,n){var r=e.getOption("configureMouse"),i=r?r(e,t,n):{};if(i.unit==null){var o=Ae?n.shiftKey&&n.metaKey:n.altKey;i.unit=o?"rectangle":t=="single"?"char":t=="double"?"word":"line"}return(i.extend==null||e.doc.extend)&&(i.extend=e.doc.extend||n.shiftKey),i.addNew==null&&(i.addNew=se?n.metaKey:n.ctrlKey),i.moveOnDrag==null&&(i.moveOnDrag=!(se?n.altKey:n.ctrlKey)),i}function wu(e,t,n,r){b?setTimeout(ue(rl,e),0):e.curOp.focus=y(Y(e));var i=ku(e,n,r),o=e.doc.sel,l;e.options.dragDrop&&yi&&!e.isReadOnly()&&n=="single"&&(l=o.contains(t))>-1&&(Z((l=o.ranges[l]).from(),t)<0||t.xRel>0)&&(Z(l.to(),t)>0||t.xRel<0)?Su(e,r,t,i):Tu(e,r,t,i)}function Su(e,t,n,r){var i=e.display,o=!1,l=lt(e,function(u){_&&(i.scroller.draggable=!1),e.state.draggingText=!1,e.state.delayingBlurEvent&&(e.hasFocus()?e.state.delayingBlurEvent=!1:Hi(e)),dt(i.wrapper.ownerDocument,"mouseup",l),dt(i.wrapper.ownerDocument,"mousemove",a),dt(i.scroller,"dragstart",s),dt(i.scroller,"drop",l),o||(ht(u),r.addNew||oi(e.doc,n,null,null,r.extend),_&&!X||b&&N==9?setTimeout(function(){i.wrapper.ownerDocument.body.focus({preventScroll:!0}),i.input.focus()},20):i.input.focus())}),a=function(u){o=o||Math.abs(t.clientX-u.clientX)+Math.abs(t.clientY-u.clientY)>=10},s=function(){return o=!0};_&&(i.scroller.draggable=!0),e.state.draggingText=l,l.copy=!r.moveOnDrag,ve(i.wrapper.ownerDocument,"mouseup",l),ve(i.wrapper.ownerDocument,"mousemove",a),ve(i.scroller,"dragstart",s),ve(i.scroller,"drop",l),e.state.delayingBlurEvent=!0,setTimeout(function(){return i.input.focus()},20),i.scroller.dragDrop&&i.scroller.dragDrop()}function ra(e,t,n){if(n=="char")return new He(t,t);if(n=="word")return e.findWordAt(t);if(n=="line")return new He(L(t.line,0),Ce(e.doc,L(t.line+1,0)));var r=n(e,t);return new He(r.from,r.to)}function Tu(e,t,n,r){b&&Hi(e);var i=e.display,o=e.doc;ht(t);var l,a,s=o.sel,u=s.ranges;if(r.addNew&&!r.extend?(a=o.sel.contains(n),a>-1?l=u[a]:l=new He(n,n)):(l=o.sel.primary(),a=o.sel.primIndex),r.unit=="rectangle")r.addNew||(l=new He(n,n)),n=Tr(e,t,!0,!0),a=-1;else{var h=ra(e,n,r.unit);r.extend?l=$i(l,h.anchor,h.head,r.extend):l=h}r.addNew?a==-1?(a=u.length,pt(o,Kt(e,u.concat([l]),a),{scroll:!1,origin:"*mouse"})):u.length>1&&u[a].empty()&&r.unit=="char"&&!r.extend?(pt(o,Kt(e,u.slice(0,a).concat(u.slice(a+1)),0),{scroll:!1,origin:"*mouse"}),s=o.sel):eo(o,a,l,ct):(a=0,pt(o,new At([l],0),ct),s=o.sel);var v=n;function k(G){if(Z(v,G)!=0)if(v=G,r.unit=="rectangle"){for(var ee=[],me=e.options.tabSize,pe=Le(ce(o,n.line).text,n.ch,me),Fe=Le(ce(o,G.line).text,G.ch,me),Ke=Math.min(pe,Fe),st=Math.max(pe,Fe),Xe=Math.min(n.line,G.line),Mt=Math.min(e.lastLine(),Math.max(n.line,G.line));Xe<=Mt;Xe++){var wt=ce(o,Xe).text,tt=Re(wt,Ke,me);Ke==st?ee.push(new He(L(Xe,tt),L(Xe,tt))):wt.length>tt&&ee.push(new He(L(Xe,tt),L(Xe,Re(wt,st,me))))}ee.length||ee.push(new He(n,n)),pt(o,Kt(e,s.ranges.slice(0,a).concat(ee),a),{origin:"*mouse",scroll:!1}),e.scrollIntoView(G)}else{var St=l,ft=ra(e,G,r.unit),nt=St.anchor,rt;Z(ft.anchor,nt)>0?(rt=ft.head,nt=_r(St.from(),ft.anchor)):(rt=ft.anchor,nt=xt(St.to(),ft.head));var Qe=s.ranges.slice(0);Qe[a]=Lu(e,new He(Ce(o,nt),rt)),pt(o,Kt(e,Qe,a),ct)}}var x=i.wrapper.getBoundingClientRect(),M=0;function E(G){var ee=++M,me=Tr(e,G,!0,r.unit=="rectangle");if(me)if(Z(me,v)!=0){e.curOp.focus=y(Y(e)),k(me);var pe=$n(i,o);(me.line>=pe.to||me.linex.bottom?20:0;Fe&&setTimeout(lt(e,function(){M==ee&&(i.scroller.scrollTop+=Fe,E(G))}),50)}}function R(G){e.state.selectingText=!1,M=1/0,G&&(ht(G),i.input.focus()),dt(i.wrapper.ownerDocument,"mousemove",U),dt(i.wrapper.ownerDocument,"mouseup",Q),o.history.lastSelOrigin=null}var U=lt(e,function(G){G.buttons===0||!Wt(G)?R(G):E(G)}),Q=lt(e,R);e.state.selectingText=Q,ve(i.wrapper.ownerDocument,"mousemove",U),ve(i.wrapper.ownerDocument,"mouseup",Q)}function Lu(e,t){var n=t.anchor,r=t.head,i=ce(e.doc,n.line);if(Z(n,r)==0&&n.sticky==r.sticky)return t;var o=We(i);if(!o)return t;var l=lr(o,n.ch,n.sticky),a=o[l];if(a.from!=n.ch&&a.to!=n.ch)return t;var s=l+(a.from==n.ch==(a.level!=1)?0:1);if(s==0||s==o.length)return t;var u;if(r.line!=n.line)u=(r.line-n.line)*(e.doc.direction=="ltr"?1:-1)>0;else{var h=lr(o,r.ch,r.sticky),v=h-l||(r.ch-n.ch)*(a.level==1?-1:1);h==s-1||h==s?u=v<0:u=v>0}var k=o[s+(u?-1:0)],x=u==(k.level==1),M=x?k.from:k.to,E=x?"after":"before";return n.ch==M&&n.sticky==E?t:new He(new L(n.line,M,E),r)}function na(e,t,n,r){var i,o;if(t.touches)i=t.touches[0].clientX,o=t.touches[0].clientY;else try{i=t.clientX,o=t.clientY}catch{return!1}if(i>=Math.floor(e.display.gutters.getBoundingClientRect().right))return!1;r&&ht(t);var l=e.display,a=l.lineDiv.getBoundingClientRect();if(o>a.bottom||!Ct(e,n))return yt(t);o-=a.top-l.viewOffset;for(var s=0;s=i){var h=g(e.doc,o),v=e.display.gutterSpecs[s];return Ye(e,n,e,h,v.className,t),yt(t)}}}function lo(e,t){return na(e,t,"gutterClick",!0)}function ia(e,t){tr(e.display,t)||Cu(e,t)||Ze(e,t,"contextmenu")||fe||e.display.input.onContextMenu(t)}function Cu(e,t){return Ct(e,"gutterContextMenu")?na(e,t,"gutterContextMenu",!1):!1}function oa(e){e.display.wrapper.className=e.display.wrapper.className.replace(/\s*cm-s-\S+/g,"")+e.options.theme.replace(/(^|\s)\s*/g," cm-s-"),gn(e)}var tn={toString:function(){return"CodeMirror.Init"}},la={},di={};function Du(e){var t=e.optionHandlers;function n(r,i,o,l){e.defaults[r]=i,o&&(t[r]=l?function(a,s,u){u!=tn&&o(a,s,u)}:o)}e.defineOption=n,e.Init=tn,n("value","",function(r,i){return r.setValue(i)},!0),n("mode",null,function(r,i){r.doc.modeOption=i,Ji(r)},!0),n("indentUnit",2,Ji,!0),n("indentWithTabs",!1),n("smartIndent",!0),n("tabSize",4,function(r){Sn(r),gn(r),bt(r)},!0),n("lineSeparator",null,function(r,i){if(r.doc.lineSep=i,!!i){var o=[],l=r.doc.first;r.doc.iter(function(s){for(var u=0;;){var h=s.text.indexOf(i,u);if(h==-1)break;u=h+i.length,o.push(L(l,h))}l++});for(var a=o.length-1;a>=0;a--)Qr(r.doc,i,o[a],L(o[a].line,o[a].ch+i.length))}}),n("specialChars",/[\u0000-\u001f\u007f-\u009f\u00ad\u061c\u200b\u200e\u200f\u2028\u2029\u202d\u202e\u2066\u2067\u2069\ufeff\ufff9-\ufffc]/g,function(r,i,o){r.state.specialChars=new RegExp(i.source+(i.test(" ")?"":"| "),"g"),o!=tn&&r.refresh()}),n("specialCharPlaceholder",rs,function(r){return r.refresh()},!0),n("electricChars",!0),n("inputStyle",ne?"contenteditable":"textarea",function(){throw new Error("inputStyle can not (yet) be changed in a running editor")},!0),n("spellcheck",!1,function(r,i){return r.getInputField().spellcheck=i},!0),n("autocorrect",!1,function(r,i){return r.getInputField().autocorrect=i},!0),n("autocapitalize",!1,function(r,i){return r.getInputField().autocapitalize=i},!0),n("rtlMoveVisually",!ye),n("wholeLineUpdateBefore",!0),n("theme","default",function(r){oa(r),wn(r)},!0),n("keyMap","default",function(r,i,o){var l=fi(i),a=o!=tn&&fi(o);a&&a.detach&&a.detach(r,l),l.attach&&l.attach(r,a||null)}),n("extraKeys",null),n("configureMouse",null),n("lineWrapping",!1,Fu,!0),n("gutters",[],function(r,i){r.display.gutterSpecs=Yi(i,r.options.lineNumbers),wn(r)},!0),n("fixedGutter",!0,function(r,i){r.display.gutters.style.left=i?zi(r.display)+"px":"0",r.refresh()},!0),n("coverGutterNextToScrollbar",!1,function(r){return Xr(r)},!0),n("scrollbarStyle","native",function(r){sl(r),Xr(r),r.display.scrollbars.setScrollTop(r.doc.scrollTop),r.display.scrollbars.setScrollLeft(r.doc.scrollLeft)},!0),n("lineNumbers",!1,function(r,i){r.display.gutterSpecs=Yi(r.options.gutters,i),wn(r)},!0),n("firstLineNumber",1,wn,!0),n("lineNumberFormatter",function(r){return r},wn,!0),n("showCursorWhenSelecting",!1,vn,!0),n("resetSelectionOnContextMenu",!0),n("lineWiseCopyCut",!0),n("pasteLinesPerSelection",!0),n("selectionsMayTouch",!1),n("readOnly",!1,function(r,i){i=="nocursor"&&(Ur(r),r.display.input.blur()),r.display.input.readOnlyChanged(i)}),n("screenReaderLabel",null,function(r,i){i=i===""?null:i,r.display.input.screenReaderLabelChanged(i)}),n("disableInput",!1,function(r,i){i||r.display.input.reset()},!0),n("dragDrop",!0,Mu),n("allowDropFileTypes",null),n("cursorBlinkRate",530),n("cursorScrollMargin",0),n("cursorHeight",1,vn,!0),n("singleCursorHeightPerLine",!0,vn,!0),n("workTime",100),n("workDelay",100),n("flattenSpans",!0,Sn,!0),n("addModeClass",!1,Sn,!0),n("pollInterval",100),n("undoDepth",200,function(r,i){return r.doc.history.undoDepth=i}),n("historyEventDelay",1250),n("viewportMargin",10,function(r){return r.refresh()},!0),n("maxHighlightLength",1e4,Sn,!0),n("moveInputWithCursor",!0,function(r,i){i||r.display.input.resetPosition()}),n("tabindex",null,function(r,i){return r.display.input.getField().tabIndex=i||""}),n("autofocus",null),n("direction","ltr",function(r,i){return r.doc.setDirection(i)},!0),n("phrases",null)}function Mu(e,t,n){var r=n&&n!=tn;if(!t!=!r){var i=e.display.dragFunctions,o=t?ve:dt;o(e.display.scroller,"dragstart",i.start),o(e.display.scroller,"dragenter",i.enter),o(e.display.scroller,"dragover",i.over),o(e.display.scroller,"dragleave",i.leave),o(e.display.scroller,"drop",i.drop)}}function Fu(e){e.options.lineWrapping?(P(e.display.wrapper,"CodeMirror-wrap"),e.display.sizer.style.minWidth="",e.display.sizerWidth=null):(Ee(e.display.wrapper,"CodeMirror-wrap"),Ci(e)),Bi(e),bt(e),gn(e),setTimeout(function(){return Xr(e)},100)}function Ge(e,t){var n=this;if(!(this instanceof Ge))return new Ge(e,t);this.options=t=t?Te(t):{},Te(la,t,!1);var r=t.value;typeof r=="string"?r=new kt(r,t.mode,null,t.lineSeparator,t.direction):t.mode&&(r.modeOption=t.mode),this.doc=r;var i=new Ge.inputStyles[t.inputStyle](this),o=this.display=new qs(e,r,i,t);o.wrapper.CodeMirror=this,oa(this),t.lineWrapping&&(this.display.wrapper.className+=" CodeMirror-wrap"),sl(this),this.state={keyMaps:[],overlays:[],modeGen:0,overwrite:!1,delayingBlurEvent:!1,focused:!1,suppressEdits:!1,pasteIncoming:-1,cutIncoming:-1,selectingText:!1,draggingText:!1,highlight:new be,keySeq:null,specialChars:null},t.autofocus&&!ne&&o.input.focus(),b&&N<11&&setTimeout(function(){return n.display.input.reset(!0)},20),Au(this),au(),Mr(this),this.curOp.forceUpdate=!0,yl(this,r),t.autofocus&&!ne||this.hasFocus()?setTimeout(function(){n.hasFocus()&&!n.state.focused&&Ri(n)},20):Ur(this);for(var l in di)di.hasOwnProperty(l)&&di[l](this,t[l],tn);cl(this),t.finishInit&&t.finishInit(this);for(var a=0;a20*20}ve(t.scroller,"touchstart",function(s){if(!Ze(e,s)&&!o(s)&&!lo(e,s)){t.input.ensurePolled(),clearTimeout(n);var u=+new Date;t.activeTouch={start:u,moved:!1,prev:u-r.end<=300?r:null},s.touches.length==1&&(t.activeTouch.left=s.touches[0].pageX,t.activeTouch.top=s.touches[0].pageY)}}),ve(t.scroller,"touchmove",function(){t.activeTouch&&(t.activeTouch.moved=!0)}),ve(t.scroller,"touchend",function(s){var u=t.activeTouch;if(u&&!tr(t,s)&&u.left!=null&&!u.moved&&new Date-u.start<300){var h=e.coordsChar(t.activeTouch,"page"),v;!u.prev||l(u,u.prev)?v=new He(h,h):!u.prev.prev||l(u,u.prev.prev)?v=e.findWordAt(h):v=new He(L(h.line,0),Ce(e.doc,L(h.line+1,0))),e.setSelection(v.anchor,v.head),e.focus(),ht(s)}i()}),ve(t.scroller,"touchcancel",i),ve(t.scroller,"scroll",function(){t.scroller.clientHeight&&(yn(e,t.scroller.scrollTop),Cr(e,t.scroller.scrollLeft,!0),Ye(e,"scroll",e))}),ve(t.scroller,"mousewheel",function(s){return pl(e,s)}),ve(t.scroller,"DOMMouseScroll",function(s){return pl(e,s)}),ve(t.wrapper,"scroll",function(){return t.wrapper.scrollTop=t.wrapper.scrollLeft=0}),t.dragFunctions={enter:function(s){Ze(e,s)||ar(s)},over:function(s){Ze(e,s)||(lu(e,s),ar(s))},start:function(s){return ou(e,s)},drop:lt(e,iu),leave:function(s){Ze(e,s)||ql(e)}};var a=t.input.getField();ve(a,"keyup",function(s){return $l.call(e,s)}),ve(a,"keydown",lt(e,Vl)),ve(a,"keypress",lt(e,ea)),ve(a,"focus",function(s){return Ri(e,s)}),ve(a,"blur",function(s){return Ur(e,s)})}var ao=[];Ge.defineInitHook=function(e){return ao.push(e)};function zn(e,t,n,r){var i=e.doc,o;n==null&&(n="add"),n=="smart"&&(i.mode.indent?o=fn(e,t).state:n="prev");var l=e.options.tabSize,a=ce(i,t),s=Le(a.text,null,l);a.stateAfter&&(a.stateAfter=null);var u=a.text.match(/^\s*/)[0],h;if(!r&&!/\S/.test(a.text))h=0,n="not";else if(n=="smart"&&(h=i.mode.indent(o,a.text.slice(u.length),a.text),h==qe||h>150)){if(!r)return;n="prev"}n=="prev"?t>i.first?h=Le(ce(i,t-1).text,null,l):h=0:n=="add"?h=s+e.options.indentUnit:n=="subtract"?h=s-e.options.indentUnit:typeof n=="number"&&(h=s+n),h=Math.max(0,h);var v="",k=0;if(e.options.indentWithTabs)for(var x=Math.floor(h/l);x;--x)k+=l,v+=" ";if(kl,s=Pt(t),u=null;if(a&&r.ranges.length>1)if(Ut&&Ut.text.join(` -`)==t){if(r.ranges.length%Ut.text.length==0){u=[];for(var h=0;h=0;k--){var x=r.ranges[k],M=x.from(),E=x.to();x.empty()&&(n&&n>0?M=L(M.line,M.ch-n):e.state.overwrite&&!a?E=L(E.line,Math.min(ce(o,E.line).text.length,E.ch+ge(s).length)):a&&Ut&&Ut.lineWise&&Ut.text.join(` -`)==s.join(` -`)&&(M=E=L(M.line,0)));var R={from:M,to:E,text:u?u[k%u.length]:s,origin:i||(a?"paste":e.state.cutIncoming>l?"cut":"+input")};Jr(e.doc,R),ot(e,"inputRead",e,R)}t&&!a&&sa(e,t),Gr(e),e.curOp.updateInput<2&&(e.curOp.updateInput=v),e.curOp.typing=!0,e.state.pasteIncoming=e.state.cutIncoming=-1}function aa(e,t){var n=e.clipboardData&&e.clipboardData.getData("Text");if(n)return e.preventDefault(),!t.isReadOnly()&&!t.options.disableInput&&t.hasFocus()&&Dt(t,function(){return so(t,n,0,null,"paste")}),!0}function sa(e,t){if(!(!e.options.electricChars||!e.options.smartIndent))for(var n=e.doc.sel,r=n.ranges.length-1;r>=0;r--){var i=n.ranges[r];if(!(i.head.ch>100||r&&n.ranges[r-1].head.line==i.head.line)){var o=e.getModeAt(i.head),l=!1;if(o.electricChars){for(var a=0;a-1){l=zn(e,i.head.line,"smart");break}}else o.electricInput&&o.electricInput.test(ce(e.doc,i.head.line).text.slice(0,i.head.ch))&&(l=zn(e,i.head.line,"smart"));l&&ot(e,"electricInput",e,i.head.line)}}}function ua(e){for(var t=[],n=[],r=0;ro&&(zn(this,a.head.line,r,!0),o=a.head.line,l==this.doc.sel.primIndex&&Gr(this));else{var s=a.from(),u=a.to(),h=Math.max(o,s.line);o=Math.min(this.lastLine(),u.line-(u.ch?0:1))+1;for(var v=h;v0&&eo(this.doc,l,new He(s,k[l].to()),Ve)}}}),getTokenAt:function(r,i){return bo(this,r,i)},getLineTokens:function(r,i){return bo(this,L(r),i,!0)},getTokenTypeAt:function(r){r=Ce(this.doc,r);var i=mo(this,ce(this.doc,r.line)),o=0,l=(i.length-1)/2,a=r.ch,s;if(a==0)s=i[2];else for(;;){var u=o+l>>1;if((u?i[u*2-1]:0)>=a)l=u;else if(i[u*2+1]s&&(r=s,l=!0),a=ce(this.doc,r)}else a=r;return Yn(this,a,{top:0,left:0},i||"page",o||l).top+(l?this.doc.height-er(a):0)},defaultTextHeight:function(){return jr(this.display)},defaultCharWidth:function(){return Kr(this.display)},getViewport:function(){return{from:this.display.viewFrom,to:this.display.viewTo}},addWidget:function(r,i,o,l,a){var s=this.display;r=jt(this,Ce(this.doc,r));var u=r.bottom,h=r.left;if(i.style.position="absolute",i.setAttribute("cm-ignore-events","true"),this.display.input.setUneditable(i),s.sizer.appendChild(i),l=="over")u=r.top;else if(l=="above"||l=="near"){var v=Math.max(s.wrapper.clientHeight,this.doc.height),k=Math.max(s.sizer.clientWidth,s.lineSpace.clientWidth);(l=="above"||r.bottom+i.offsetHeight>v)&&r.top>i.offsetHeight?u=r.top-i.offsetHeight:r.bottom+i.offsetHeight<=v&&(u=r.bottom),h+i.offsetWidth>k&&(h=k-i.offsetWidth)}i.style.top=u+"px",i.style.left=i.style.right="",a=="right"?(h=s.sizer.clientWidth-i.offsetWidth,i.style.right="0px"):(a=="left"?h=0:a=="middle"&&(h=(s.sizer.clientWidth-i.offsetWidth)/2),i.style.left=h+"px"),o&&Ms(this,{left:h,top:u,right:h+i.offsetWidth,bottom:u+i.offsetHeight})},triggerOnKeyDown:vt(Vl),triggerOnKeyPress:vt(ea),triggerOnKeyUp:$l,triggerOnMouseDown:vt(ta),execCommand:function(r){if(Nn.hasOwnProperty(r))return Nn[r].call(null,this)},triggerElectric:vt(function(r){sa(this,r)}),findPosH:function(r,i,o,l){var a=1;i<0&&(a=-1,i=-i);for(var s=Ce(this.doc,r),u=0;u0&&h(o.charAt(l-1));)--l;for(;a.5||this.options.lineWrapping)&&Bi(this),Ye(this,"refresh",this)}),swapDoc:vt(function(r){var i=this.doc;return i.cm=null,this.state.selectingText&&this.state.selectingText(),yl(this,r),gn(this),this.display.input.reset(),mn(this,r.scrollLeft,r.scrollTop),this.curOp.forceScroll=!0,ot(this,"swapDoc",this,i),i}),phrase:function(r){var i=this.options.phrases;return i&&Object.prototype.hasOwnProperty.call(i,r)?i[r]:r},getInputField:function(){return this.display.input.getField()},getWrapperElement:function(){return this.display.wrapper},getScrollerElement:function(){return this.display.scroller},getGutterElement:function(){return this.display.gutters}},Bt(e),e.registerHelper=function(r,i,o){n.hasOwnProperty(r)||(n[r]=e[r]={_global:[]}),n[r][i]=o},e.registerGlobalHelper=function(r,i,o,l){e.registerHelper(r,i,l),n[r]._global.push({pred:o,val:l})}}function fo(e,t,n,r,i){var o=t,l=n,a=ce(e,t.line),s=i&&e.direction=="rtl"?-n:n;function u(){var Q=t.line+s;return Q=e.first+e.size?!1:(t=new L(Q,t.ch,t.sticky),a=ce(e,Q))}function h(Q){var G;if(r=="codepoint"){var ee=a.text.charCodeAt(t.ch+(n>0?0:-1));if(isNaN(ee))G=null;else{var me=n>0?ee>=55296&&ee<56320:ee>=56320&&ee<57343;G=new L(t.line,Math.max(0,Math.min(a.text.length,t.ch+n*(me?2:1))),-n)}}else i?G=du(e.cm,a,t,n):G=ro(a,t,n);if(G==null)if(!Q&&u())t=no(i,e.cm,a,t.line,s);else return!1;else t=G;return!0}if(r=="char"||r=="codepoint")h();else if(r=="column")h(!0);else if(r=="word"||r=="group")for(var v=null,k=r=="group",x=e.cm&&e.cm.getHelper(t,"wordChars"),M=!0;!(n<0&&!h(!M));M=!1){var E=a.text.charAt(t.ch)||` -`,R=Se(E,x)?"w":k&&E==` -`?"n":!k||/\s/.test(E)?null:"p";if(k&&!M&&!R&&(R="s"),v&&v!=R){n<0&&(n=1,h(),t.sticky="after");break}if(R&&(v=R),n>0&&!h(!M))break}var U=ai(e,t,o,l,!0);return _e(o,U)&&(U.hitSide=!0),U}function ca(e,t,n,r){var i=e.doc,o=t.left,l;if(r=="page"){var a=Math.min(e.display.wrapper.clientHeight,j(e).innerHeight||i(e).documentElement.clientHeight),s=Math.max(a-.5*jr(e.display),3);l=(n>0?t.bottom:t.top)+n*s}else r=="line"&&(l=n>0?t.bottom+3:t.top-3);for(var u;u=Oi(e,o,l),!!u.outside;){if(n<0?l<=0:l>=i.height){u.hitSide=!0;break}l+=n*5}return u}var je=function(e){this.cm=e,this.lastAnchorNode=this.lastAnchorOffset=this.lastFocusNode=this.lastFocusOffset=null,this.polling=new be,this.composing=null,this.gracePeriod=!1,this.readDOMTimeout=null};je.prototype.init=function(e){var t=this,n=this,r=n.cm,i=n.div=e.lineDiv;i.contentEditable=!0,uo(i,r.options.spellcheck,r.options.autocorrect,r.options.autocapitalize);function o(a){for(var s=a.target;s;s=s.parentNode){if(s==i)return!0;if(/\bCodeMirror-(?:line)?widget\b/.test(s.className))break}return!1}ve(i,"paste",function(a){!o(a)||Ze(r,a)||aa(a,r)||N<=11&&setTimeout(lt(r,function(){return t.updateFromDOM()}),20)}),ve(i,"compositionstart",function(a){t.composing={data:a.data,done:!1}}),ve(i,"compositionupdate",function(a){t.composing||(t.composing={data:a.data,done:!1})}),ve(i,"compositionend",function(a){t.composing&&(a.data!=t.composing.data&&t.readFromDOMSoon(),t.composing.done=!0)}),ve(i,"touchstart",function(){return n.forceCompositionEnd()}),ve(i,"input",function(){t.composing||t.readFromDOMSoon()});function l(a){if(!(!o(a)||Ze(r,a))){if(r.somethingSelected())hi({lineWise:!1,text:r.getSelections()}),a.type=="cut"&&r.replaceSelection("",null,"cut");else if(r.options.lineWiseCopyCut){var s=ua(r);hi({lineWise:!0,text:s.text}),a.type=="cut"&&r.operation(function(){r.setSelections(s.ranges,0,Ve),r.replaceSelection("",null,"cut")})}else return;if(a.clipboardData){a.clipboardData.clearData();var u=Ut.text.join(` -`);if(a.clipboardData.setData("Text",u),a.clipboardData.getData("Text")==u){a.preventDefault();return}}var h=fa(),v=h.firstChild;uo(v),r.display.lineSpace.insertBefore(h,r.display.lineSpace.firstChild),v.value=Ut.text.join(` -`);var k=y(xe(i));p(v),setTimeout(function(){r.display.lineSpace.removeChild(h),k.focus(),k==i&&n.showPrimarySelection()},50)}}ve(i,"copy",l),ve(i,"cut",l)},je.prototype.screenReaderLabelChanged=function(e){e?this.div.setAttribute("aria-label",e):this.div.removeAttribute("aria-label")},je.prototype.prepareSelection=function(){var e=tl(this.cm,!1);return e.focus=y(xe(this.div))==this.div,e},je.prototype.showSelection=function(e,t){!e||!this.cm.display.view.length||((e.focus||t)&&this.showPrimarySelection(),this.showMultipleSelections(e))},je.prototype.getSelection=function(){return this.cm.display.wrapper.ownerDocument.getSelection()},je.prototype.showPrimarySelection=function(){var e=this.getSelection(),t=this.cm,n=t.doc.sel.primary(),r=n.from(),i=n.to();if(t.display.viewTo==t.display.viewFrom||r.line>=t.display.viewTo||i.line=t.display.viewFrom&&da(t,r)||{node:a[0].measure.map[2],offset:0},u=i.linee.firstLine()&&(r=L(r.line-1,ce(e.doc,r.line-1).length)),i.ch==ce(e.doc,i.line).text.length&&i.linet.viewTo-1)return!1;var o,l,a;r.line==t.viewFrom||(o=Lr(e,r.line))==0?(l=f(t.view[0].line),a=t.view[0].node):(l=f(t.view[o].line),a=t.view[o-1].node.nextSibling);var s=Lr(e,i.line),u,h;if(s==t.view.length-1?(u=t.viewTo-1,h=t.lineDiv.lastChild):(u=f(t.view[s+1].line)-1,h=t.view[s+1].node.previousSibling),!a)return!1;for(var v=e.doc.splitLines(Ou(e,a,h,l,u)),k=Vt(e.doc,L(l,0),L(u,ce(e.doc,u).text.length));v.length>1&&k.length>1;)if(ge(v)==ge(k))v.pop(),k.pop(),u--;else if(v[0]==k[0])v.shift(),k.shift(),l++;else break;for(var x=0,M=0,E=v[0],R=k[0],U=Math.min(E.length,R.length);xr.ch&&Q.charCodeAt(Q.length-M-1)==G.charCodeAt(G.length-M-1);)x--,M++;v[v.length-1]=Q.slice(0,Q.length-M).replace(/^\u200b+/,""),v[0]=v[0].slice(x).replace(/\u200b+$/,"");var me=L(l,x),pe=L(u,k.length?ge(k).length-M:0);if(v.length>1||v[0]||Z(me,pe))return Qr(e.doc,v,me,pe,"+input"),!0},je.prototype.ensurePolled=function(){this.forceCompositionEnd()},je.prototype.reset=function(){this.forceCompositionEnd()},je.prototype.forceCompositionEnd=function(){this.composing&&(clearTimeout(this.readDOMTimeout),this.composing=null,this.updateFromDOM(),this.div.blur(),this.div.focus())},je.prototype.readFromDOMSoon=function(){var e=this;this.readDOMTimeout==null&&(this.readDOMTimeout=setTimeout(function(){if(e.readDOMTimeout=null,e.composing)if(e.composing.done)e.composing=null;else return;e.updateFromDOM()},80))},je.prototype.updateFromDOM=function(){var e=this;(this.cm.isReadOnly()||!this.pollContent())&&Dt(this.cm,function(){return bt(e.cm)})},je.prototype.setUneditable=function(e){e.contentEditable="false"},je.prototype.onKeyPress=function(e){e.charCode==0||this.composing||(e.preventDefault(),this.cm.isReadOnly()||lt(this.cm,so)(this.cm,String.fromCharCode(e.charCode==null?e.keyCode:e.charCode),0))},je.prototype.readOnlyChanged=function(e){this.div.contentEditable=String(e!="nocursor")},je.prototype.onContextMenu=function(){},je.prototype.resetPosition=function(){},je.prototype.needsContentAttribute=!0;function da(e,t){var n=Ai(e,t.line);if(!n||n.hidden)return null;var r=ce(e.doc,t.line),i=Ro(n,r,t.line),o=We(r,e.doc.direction),l="left";if(o){var a=lr(o,t.ch);l=a%2?"right":"left"}var s=Ko(i.map,t.ch,l);return s.offset=s.collapse=="right"?s.end:s.start,s}function Nu(e){for(var t=e;t;t=t.parentNode)if(/CodeMirror-gutter-wrapper/.test(t.className))return!0;return!1}function rn(e,t){return t&&(e.bad=!0),e}function Ou(e,t,n,r,i){var o="",l=!1,a=e.doc.lineSeparator(),s=!1;function u(x){return function(M){return M.id==x}}function h(){l&&(o+=a,s&&(o+=a),l=s=!1)}function v(x){x&&(h(),o+=x)}function k(x){if(x.nodeType==1){var M=x.getAttribute("cm-text");if(M){v(M);return}var E=x.getAttribute("cm-marker"),R;if(E){var U=e.findMarks(L(r,0),L(i+1,0),u(+E));U.length&&(R=U[0].find(0))&&v(Vt(e.doc,R.from,R.to).join(a));return}if(x.getAttribute("contenteditable")=="false")return;var Q=/^(pre|div|p|li|table|br)$/i.test(x.nodeName);if(!/^br$/i.test(x.nodeName)&&x.textContent.length==0)return;Q&&h();for(var G=0;G=9&&t.hasSelection&&(t.hasSelection=null),n.poll()}),ve(i,"paste",function(l){Ze(r,l)||aa(l,r)||(r.state.pasteIncoming=+new Date,n.fastPoll())});function o(l){if(!Ze(r,l)){if(r.somethingSelected())hi({lineWise:!1,text:r.getSelections()});else if(r.options.lineWiseCopyCut){var a=ua(r);hi({lineWise:!0,text:a.text}),l.type=="cut"?r.setSelections(a.ranges,null,Ve):(n.prevInput="",i.value=a.text.join(` -`),p(i))}else return;l.type=="cut"&&(r.state.cutIncoming=+new Date)}}ve(i,"cut",o),ve(i,"copy",o),ve(e.scroller,"paste",function(l){if(!(tr(e,l)||Ze(r,l))){if(!i.dispatchEvent){r.state.pasteIncoming=+new Date,n.focus();return}var a=new Event("paste");a.clipboardData=l.clipboardData,i.dispatchEvent(a)}}),ve(e.lineSpace,"selectstart",function(l){tr(e,l)||ht(l)}),ve(i,"compositionstart",function(){var l=r.getCursor("from");n.composing&&n.composing.range.clear(),n.composing={start:l,range:r.markText(l,r.getCursor("to"),{className:"CodeMirror-composing"})}}),ve(i,"compositionend",function(){n.composing&&(n.poll(),n.composing.range.clear(),n.composing=null)})},$e.prototype.createField=function(e){this.wrapper=fa(),this.textarea=this.wrapper.firstChild;var t=this.cm.options;uo(this.textarea,t.spellcheck,t.autocorrect,t.autocapitalize)},$e.prototype.screenReaderLabelChanged=function(e){e?this.textarea.setAttribute("aria-label",e):this.textarea.removeAttribute("aria-label")},$e.prototype.prepareSelection=function(){var e=this.cm,t=e.display,n=e.doc,r=tl(e);if(e.options.moveInputWithCursor){var i=jt(e,n.sel.primary().head,"div"),o=t.wrapper.getBoundingClientRect(),l=t.lineDiv.getBoundingClientRect();r.teTop=Math.max(0,Math.min(t.wrapper.clientHeight-10,i.top+l.top-o.top)),r.teLeft=Math.max(0,Math.min(t.wrapper.clientWidth-10,i.left+l.left-o.left))}return r},$e.prototype.showSelection=function(e){var t=this.cm,n=t.display;J(n.cursorDiv,e.cursors),J(n.selectionDiv,e.selection),e.teTop!=null&&(this.wrapper.style.top=e.teTop+"px",this.wrapper.style.left=e.teLeft+"px")},$e.prototype.reset=function(e){if(!(this.contextMenuPending||this.composing&&e)){var t=this.cm;if(this.resetting=!0,t.somethingSelected()){this.prevInput="";var n=t.getSelection();this.textarea.value=n,t.state.focused&&p(this.textarea),b&&N>=9&&(this.hasSelection=n)}else e||(this.prevInput=this.textarea.value="",b&&N>=9&&(this.hasSelection=null));this.resetting=!1}},$e.prototype.getField=function(){return this.textarea},$e.prototype.supportsTouch=function(){return!1},$e.prototype.focus=function(){if(this.cm.options.readOnly!="nocursor"&&(!ne||y(xe(this.textarea))!=this.textarea))try{this.textarea.focus()}catch{}},$e.prototype.blur=function(){this.textarea.blur()},$e.prototype.resetPosition=function(){this.wrapper.style.top=this.wrapper.style.left=0},$e.prototype.receivedFocus=function(){this.slowPoll()},$e.prototype.slowPoll=function(){var e=this;this.pollingFast||this.polling.set(this.cm.options.pollInterval,function(){e.poll(),e.cm.state.focused&&e.slowPoll()})},$e.prototype.fastPoll=function(){var e=!1,t=this;t.pollingFast=!0;function n(){var r=t.poll();!r&&!e?(e=!0,t.polling.set(60,n)):(t.pollingFast=!1,t.slowPoll())}t.polling.set(20,n)},$e.prototype.poll=function(){var e=this,t=this.cm,n=this.textarea,r=this.prevInput;if(this.contextMenuPending||this.resetting||!t.state.focused||ur(n)&&!r&&!this.composing||t.isReadOnly()||t.options.disableInput||t.state.keySeq)return!1;var i=n.value;if(i==r&&!t.somethingSelected())return!1;if(b&&N>=9&&this.hasSelection===i||se&&/[\uf700-\uf7ff]/.test(i))return t.display.input.reset(),!1;if(t.doc.sel==t.display.selForContextMenu){var o=i.charCodeAt(0);if(o==8203&&!r&&(r="​"),o==8666)return this.reset(),this.cm.execCommand("undo")}for(var l=0,a=Math.min(r.length,i.length);l1e3||i.indexOf(` -`)>-1?n.value=e.prevInput="":e.prevInput=i,e.composing&&(e.composing.range.clear(),e.composing.range=t.markText(e.composing.start,t.getCursor("to"),{className:"CodeMirror-composing"}))}),!0},$e.prototype.ensurePolled=function(){this.pollingFast&&this.poll()&&(this.pollingFast=!1)},$e.prototype.onKeyPress=function(){b&&N>=9&&(this.hasSelection=null),this.fastPoll()},$e.prototype.onContextMenu=function(e){var t=this,n=t.cm,r=n.display,i=t.textarea;t.contextMenuPending&&t.contextMenuPending();var o=Tr(n,e),l=r.scroller.scrollTop;if(!o||z)return;var a=n.options.resetSelectionOnContextMenu;a&&n.doc.sel.contains(o)==-1&<(n,pt)(n.doc,pr(o),Ve);var s=i.style.cssText,u=t.wrapper.style.cssText,h=t.wrapper.offsetParent.getBoundingClientRect();t.wrapper.style.cssText="position: static",i.style.cssText=`position: absolute; width: 30px; height: 30px; - top: `+(e.clientY-h.top-5)+"px; left: "+(e.clientX-h.left-5)+`px; - z-index: 1000; background: `+(b?"rgba(255, 255, 255, .05)":"transparent")+`; - outline: none; border-width: 0; outline: none; overflow: hidden; opacity: .05; filter: alpha(opacity=5);`;var v;_&&(v=i.ownerDocument.defaultView.scrollY),r.input.focus(),_&&i.ownerDocument.defaultView.scrollTo(null,v),r.input.reset(),n.somethingSelected()||(i.value=t.prevInput=" "),t.contextMenuPending=x,r.selForContextMenu=n.doc.sel,clearTimeout(r.detectingSelectAll);function k(){if(i.selectionStart!=null){var E=n.somethingSelected(),R="​"+(E?i.value:"");i.value="ā‡š",i.value=R,t.prevInput=E?"":"​",i.selectionStart=1,i.selectionEnd=R.length,r.selForContextMenu=n.doc.sel}}function x(){if(t.contextMenuPending==x&&(t.contextMenuPending=!1,t.wrapper.style.cssText=u,i.style.cssText=s,b&&N<9&&r.scrollbars.setScrollTop(r.scroller.scrollTop=l),i.selectionStart!=null)){(!b||b&&N<9)&&k();var E=0,R=function(){r.selForContextMenu==n.doc.sel&&i.selectionStart==0&&i.selectionEnd>0&&t.prevInput=="​"?lt(n,El)(n):E++<10?r.detectingSelectAll=setTimeout(R,500):(r.selForContextMenu=null,r.input.reset())};r.detectingSelectAll=setTimeout(R,200)}}if(b&&N>=9&&k(),fe){ar(e);var M=function(){dt(window,"mouseup",M),setTimeout(x,20)};ve(window,"mouseup",M)}else setTimeout(x,50)},$e.prototype.readOnlyChanged=function(e){e||this.reset(),this.textarea.disabled=e=="nocursor",this.textarea.readOnly=!!e},$e.prototype.setUneditable=function(){},$e.prototype.needsContentAttribute=!1;function Iu(e,t){if(t=t?Te(t):{},t.value=e.value,!t.tabindex&&e.tabIndex&&(t.tabindex=e.tabIndex),!t.placeholder&&e.placeholder&&(t.placeholder=e.placeholder),t.autofocus==null){var n=y(xe(e));t.autofocus=n==e||e.getAttribute("autofocus")!=null&&n==document.body}function r(){e.value=a.getValue()}var i;if(e.form&&(ve(e.form,"submit",r),!t.leaveSubmitMethodAlone)){var o=e.form;i=o.submit;try{var l=o.submit=function(){r(),o.submit=i,o.submit(),o.submit=l}}catch{}}t.finishInit=function(s){s.save=r,s.getTextArea=function(){return e},s.toTextArea=function(){s.toTextArea=isNaN,r(),e.parentNode.removeChild(s.getWrapperElement()),e.style.display="",e.form&&(dt(e.form,"submit",r),!t.leaveSubmitMethodAlone&&typeof e.form.submit=="function"&&(e.form.submit=i))}},e.style.display="none";var a=Ge(function(s){return e.parentNode.insertBefore(s,e.nextSibling)},t);return a}function zu(e){e.off=dt,e.on=ve,e.wheelEventPixels=js,e.Doc=kt,e.splitLines=Pt,e.countColumn=Le,e.findColumn=Re,e.isWordChar=ae,e.Pass=qe,e.signal=Ye,e.Line=Hr,e.changeEnd=gr,e.scrollbarModel=al,e.Pos=L,e.cmpPos=Z,e.modes=Pr,e.mimeModes=Ht,e.resolveMode=Ir,e.getMode=zr,e.modeExtensions=fr,e.extendMode=Br,e.copyState=Gt,e.startState=Wr,e.innerMode=sn,e.commands=Nn,e.keyMap=nr,e.keyName=Xl,e.isModifierKey=Ul,e.lookupKey=$r,e.normalizeKeyMap=cu,e.StringStream=Je,e.SharedTextMarker=Fn,e.TextMarker=mr,e.LineWidget=Mn,e.e_preventDefault=ht,e.e_stopPropagation=Nr,e.e_stop=ar,e.addClass=P,e.contains=m,e.rmClass=Ee,e.keyNames=yr}Du(Ge),Eu(Ge);var Bu="iter insert remove copy getEditor constructor".split(" ");for(var gi in kt.prototype)kt.prototype.hasOwnProperty(gi)&&oe(Bu,gi)<0&&(Ge.prototype[gi]=function(e){return function(){return e.apply(this.doc,arguments)}}(kt.prototype[gi]));return Bt(kt),Ge.inputStyles={textarea:$e,contenteditable:je},Ge.defineMode=function(e){!Ge.defaults.mode&&e!="null"&&(Ge.defaults.mode=e),Rt.apply(this,arguments)},Ge.defineMIME=kr,Ge.defineMode("null",function(){return{token:function(e){return e.skipToEnd()}}}),Ge.defineMIME("text/plain","null"),Ge.defineExtension=function(e,t){Ge.prototype[e]=t},Ge.defineDocExtension=function(e,t){kt.prototype[e]=t},Ge.fromTextArea=Iu,zu(Ge),Ge.version="5.65.18",Ge})}(vi)),vi.exports}var Hu=It();const Ju=Wu(Hu);var pa={exports:{}},ga;function za(){return ga||(ga=1,function(Et,zt){(function(C){C(It())})(function(C){C.defineMode("css",function(fe,H){var Ee=H.inline;H.propertyKeywords||(H=C.resolveMode("text/css"));var D=fe.indentUnit,J=H.tokenHooks,d=H.documentTypes||{},S=H.mediaTypes||{},w=H.mediaFeatures||{},m=H.mediaValueKeywords||{},y=H.propertyKeywords||{},P=H.nonStandardPropertyKeywords||{},le=H.fontProperties||{},p=H.counterDescriptors||{},c=H.colorKeywords||{},Y=H.valueKeywords||{},xe=H.allowNested,j=H.lineComment,ue=H.supportsAtComponent===!0,Te=fe.highlightNonStandardPropertyKeywords!==!1,Le,be;function oe(T,B){return Le=B,T}function Ne(T,B){var F=T.next();if(J[F]){var Ie=J[F](T,B);if(Ie!==!1)return Ie}if(F=="@")return T.eatWhile(/[\w\\\-]/),oe("def",T.current());if(F=="="||(F=="~"||F=="|")&&T.eat("="))return oe(null,"compare");if(F=='"'||F=="'")return B.tokenize=qe(F),B.tokenize(T,B);if(F=="#")return T.eatWhile(/[\w\\\-]/),oe("atom","hash");if(F=="!")return T.match(/^\s*\w*/),oe("keyword","important");if(/\d/.test(F)||F=="."&&T.eat(/\d/))return T.eatWhile(/[\w.%]/),oe("number","unit");if(F==="-"){if(/[\d.]/.test(T.peek()))return T.eatWhile(/[\w.%]/),oe("number","unit");if(T.match(/^-[\w\\\-]*/))return T.eatWhile(/[\w\\\-]/),T.match(/^\s*:/,!1)?oe("variable-2","variable-definition"):oe("variable-2","variable");if(T.match(/^\w+-/))return oe("meta","meta")}else return/[,+>*\/]/.test(F)?oe(null,"select-op"):F=="."&&T.match(/^-?[_a-z][_a-z0-9-]*/i)?oe("qualifier","qualifier"):/[:;{}\[\]\(\)]/.test(F)?oe(null,F):T.match(/^[\w-.]+(?=\()/)?(/^(url(-prefix)?|domain|regexp)$/i.test(T.current())&&(B.tokenize=Ve),oe("variable callee","variable")):/[\w\\\-]/.test(F)?(T.eatWhile(/[\w\\\-]/),oe("property","word")):oe(null,null)}function qe(T){return function(B,F){for(var Ie=!1,ae;(ae=B.next())!=null;){if(ae==T&&!Ie){T==")"&&B.backUp(1);break}Ie=!Ie&&ae=="\\"}return(ae==T||!Ie&&T!=")")&&(F.tokenize=null),oe("string","string")}}function Ve(T,B){return T.next(),T.match(/^\s*[\"\')]/,!1)?B.tokenize=null:B.tokenize=qe(")"),oe(null,"(")}function ct(T,B,F){this.type=T,this.indent=B,this.prev=F}function Oe(T,B,F,Ie){return T.context=new ct(F,B.indentation()+(Ie===!1?0:D),T.context),F}function Re(T){return T.context.prev&&(T.context=T.context.prev),T.context.type}function Ue(T,B,F){return Pe[F.context.type](T,B,F)}function et(T,B,F,Ie){for(var ae=Ie||1;ae>0;ae--)F.context=F.context.prev;return Ue(T,B,F)}function ge(T){var B=T.current().toLowerCase();Y.hasOwnProperty(B)?be="atom":c.hasOwnProperty(B)?be="keyword":be="variable"}var Pe={};return Pe.top=function(T,B,F){if(T=="{")return Oe(F,B,"block");if(T=="}"&&F.context.prev)return Re(F);if(ue&&/@component/i.test(T))return Oe(F,B,"atComponentBlock");if(/^@(-moz-)?document$/i.test(T))return Oe(F,B,"documentTypes");if(/^@(media|supports|(-moz-)?document|import)$/i.test(T))return Oe(F,B,"atBlock");if(/^@(font-face|counter-style)/i.test(T))return F.stateArg=T,"restricted_atBlock_before";if(/^@(-(moz|ms|o|webkit)-)?keyframes$/i.test(T))return"keyframes";if(T&&T.charAt(0)=="@")return Oe(F,B,"at");if(T=="hash")be="builtin";else if(T=="word")be="tag";else{if(T=="variable-definition")return"maybeprop";if(T=="interpolation")return Oe(F,B,"interpolation");if(T==":")return"pseudo";if(xe&&T=="(")return Oe(F,B,"parens")}return F.context.type},Pe.block=function(T,B,F){if(T=="word"){var Ie=B.current().toLowerCase();return y.hasOwnProperty(Ie)?(be="property","maybeprop"):P.hasOwnProperty(Ie)?(be=Te?"string-2":"property","maybeprop"):xe?(be=B.match(/^\s*:(?:\s|$)/,!1)?"property":"tag","block"):(be+=" error","maybeprop")}else return T=="meta"?"block":!xe&&(T=="hash"||T=="qualifier")?(be="error","block"):Pe.top(T,B,F)},Pe.maybeprop=function(T,B,F){return T==":"?Oe(F,B,"prop"):Ue(T,B,F)},Pe.prop=function(T,B,F){if(T==";")return Re(F);if(T=="{"&&xe)return Oe(F,B,"propBlock");if(T=="}"||T=="{")return et(T,B,F);if(T=="(")return Oe(F,B,"parens");if(T=="hash"&&!/^#([0-9a-fA-F]{3,4}|[0-9a-fA-F]{6}|[0-9a-fA-F]{8})$/.test(B.current()))be+=" error";else if(T=="word")ge(B);else if(T=="interpolation")return Oe(F,B,"interpolation");return"prop"},Pe.propBlock=function(T,B,F){return T=="}"?Re(F):T=="word"?(be="property","maybeprop"):F.context.type},Pe.parens=function(T,B,F){return T=="{"||T=="}"?et(T,B,F):T==")"?Re(F):T=="("?Oe(F,B,"parens"):T=="interpolation"?Oe(F,B,"interpolation"):(T=="word"&&ge(B),"parens")},Pe.pseudo=function(T,B,F){return T=="meta"?"pseudo":T=="word"?(be="variable-3",F.context.type):Ue(T,B,F)},Pe.documentTypes=function(T,B,F){return T=="word"&&d.hasOwnProperty(B.current())?(be="tag",F.context.type):Pe.atBlock(T,B,F)},Pe.atBlock=function(T,B,F){if(T=="(")return Oe(F,B,"atBlock_parens");if(T=="}"||T==";")return et(T,B,F);if(T=="{")return Re(F)&&Oe(F,B,xe?"block":"top");if(T=="interpolation")return Oe(F,B,"interpolation");if(T=="word"){var Ie=B.current().toLowerCase();Ie=="only"||Ie=="not"||Ie=="and"||Ie=="or"?be="keyword":S.hasOwnProperty(Ie)?be="attribute":w.hasOwnProperty(Ie)?be="property":m.hasOwnProperty(Ie)?be="keyword":y.hasOwnProperty(Ie)?be="property":P.hasOwnProperty(Ie)?be=Te?"string-2":"property":Y.hasOwnProperty(Ie)?be="atom":c.hasOwnProperty(Ie)?be="keyword":be="error"}return F.context.type},Pe.atComponentBlock=function(T,B,F){return T=="}"?et(T,B,F):T=="{"?Re(F)&&Oe(F,B,xe?"block":"top",!1):(T=="word"&&(be="error"),F.context.type)},Pe.atBlock_parens=function(T,B,F){return T==")"?Re(F):T=="{"||T=="}"?et(T,B,F,2):Pe.atBlock(T,B,F)},Pe.restricted_atBlock_before=function(T,B,F){return T=="{"?Oe(F,B,"restricted_atBlock"):T=="word"&&F.stateArg=="@counter-style"?(be="variable","restricted_atBlock_before"):Ue(T,B,F)},Pe.restricted_atBlock=function(T,B,F){return T=="}"?(F.stateArg=null,Re(F)):T=="word"?(F.stateArg=="@font-face"&&!le.hasOwnProperty(B.current().toLowerCase())||F.stateArg=="@counter-style"&&!p.hasOwnProperty(B.current().toLowerCase())?be="error":be="property","maybeprop"):"restricted_atBlock"},Pe.keyframes=function(T,B,F){return T=="word"?(be="variable","keyframes"):T=="{"?Oe(F,B,"top"):Ue(T,B,F)},Pe.at=function(T,B,F){return T==";"?Re(F):T=="{"||T=="}"?et(T,B,F):(T=="word"?be="tag":T=="hash"&&(be="builtin"),"at")},Pe.interpolation=function(T,B,F){return T=="}"?Re(F):T=="{"||T==";"?et(T,B,F):(T=="word"?be="variable":T!="variable"&&T!="("&&T!=")"&&(be="error"),"interpolation")},{startState:function(T){return{tokenize:null,state:Ee?"block":"top",stateArg:null,context:new ct(Ee?"block":"top",T||0,null)}},token:function(T,B){if(!B.tokenize&&T.eatSpace())return null;var F=(B.tokenize||Ne)(T,B);return F&&typeof F=="object"&&(Le=F[1],F=F[0]),be=F,Le!="comment"&&(B.state=Pe[B.state](Le,T,B)),be},indent:function(T,B){var F=T.context,Ie=B&&B.charAt(0),ae=F.indent;return F.type=="prop"&&(Ie=="}"||Ie==")")&&(F=F.prev),F.prev&&(Ie=="}"&&(F.type=="block"||F.type=="top"||F.type=="interpolation"||F.type=="restricted_atBlock")?(F=F.prev,ae=F.indent):(Ie==")"&&(F.type=="parens"||F.type=="atBlock_parens")||Ie=="{"&&(F.type=="at"||F.type=="atBlock"))&&(ae=Math.max(0,F.indent-D))),ae},electricChars:"}",blockCommentStart:"/*",blockCommentEnd:"*/",blockCommentContinue:" * ",lineComment:j,fold:"brace"}});function De(fe){for(var H={},Ee=0;Ee")):null:d.match("--")?w(ke("comment","-->")):d.match("DOCTYPE",!0,!0)?(d.eatWhile(/[\w\._\-]/),w(we(1))):null:d.eat("?")?(d.eatWhile(/[\w\._\-]/),S.tokenize=ke("meta","?>"),"meta"):(ie=d.eat("/")?"closeTag":"openTag",S.tokenize=z,"tag bracket");if(m=="&"){var y;return d.eat("#")?d.eat("x")?y=d.eatWhile(/[a-fA-F\d]/)&&d.eat(";"):y=d.eatWhile(/[\d]/)&&d.eat(";"):y=d.eatWhile(/[\w\.\-:]/)&&d.eat(";"),y?"atom":"error"}else return d.eatWhile(/[^&<]/),null}q.isInText=!0;function z(d,S){var w=d.next();if(w==">"||w=="/"&&d.eat(">"))return S.tokenize=q,ie=w==">"?"endTag":"selfcloseTag","tag bracket";if(w=="=")return ie="equals",null;if(w=="<"){S.tokenize=q,S.state=Ae,S.tagName=S.tagStart=null;var m=S.tokenize(d,S);return m?m+" tag error":"tag error"}else return/[\'\"]/.test(w)?(S.tokenize=X(w),S.stringStartCol=d.column(),S.tokenize(d,S)):(d.match(/^[^\s\u00a0=<>\"\']*[^\s\u00a0=<>\"\'\/]/),"word")}function X(d){var S=function(w,m){for(;!w.eol();)if(w.next()==d){m.tokenize=z;break}return"string"};return S.isInAttribute=!0,S}function ke(d,S){return function(w,m){for(;!w.eol();){if(w.match(S)){m.tokenize=q;break}w.next()}return d}}function we(d){return function(S,w){for(var m;(m=S.next())!=null;){if(m=="<")return w.tokenize=we(d+1),w.tokenize(S,w);if(m==">")if(d==1){w.tokenize=q;break}else return w.tokenize=we(d-1),w.tokenize(S,w)}return"meta"}}function te(d){return d&&d.toLowerCase()}function re(d,S,w){this.prev=d.context,this.tagName=S||"",this.indent=d.indented,this.startOfLine=w,(b.doNotIndent.hasOwnProperty(S)||d.context&&d.context.noIndent)&&(this.noIndent=!0)}function ne(d){d.context&&(d.context=d.context.prev)}function se(d,S){for(var w;;){if(!d.context||(w=d.context.tagName,!b.contextGrabbers.hasOwnProperty(te(w))||!b.contextGrabbers[te(w)].hasOwnProperty(te(S))))return;ne(d)}}function Ae(d,S,w){return d=="openTag"?(w.tagStart=S.column(),ye):d=="closeTag"?de:Ae}function ye(d,S,w){return d=="word"?(w.tagName=S.current(),O="tag",H):b.allowMissingTagName&&d=="endTag"?(O="tag bracket",H(d,S,w)):(O="error",ye)}function de(d,S,w){if(d=="word"){var m=S.current();return w.context&&w.context.tagName!=m&&b.implicitlyClosed.hasOwnProperty(te(w.context.tagName))&&ne(w),w.context&&w.context.tagName==m||b.matchClosing===!1?(O="tag",ze):(O="tag error",fe)}else return b.allowMissingTagName&&d=="endTag"?(O="tag bracket",ze(d,S,w)):(O="error",fe)}function ze(d,S,w){return d!="endTag"?(O="error",ze):(ne(w),Ae)}function fe(d,S,w){return O="error",ze(d,S,w)}function H(d,S,w){if(d=="word")return O="attribute",Ee;if(d=="endTag"||d=="selfcloseTag"){var m=w.tagName,y=w.tagStart;return w.tagName=w.tagStart=null,d=="selfcloseTag"||b.autoSelfClosers.hasOwnProperty(te(m))?se(w,m):(se(w,m),w.context=new re(w,m,y==w.indented)),Ae}return O="error",H}function Ee(d,S,w){return d=="equals"?D:(b.allowMissing||(O="error"),H(d,S,w))}function D(d,S,w){return d=="string"?J:d=="word"&&b.allowUnquoted?(O="string",H):(O="error",H(d,S,w))}function J(d,S,w){return d=="string"?J:H(d,S,w)}return{startState:function(d){var S={tokenize:q,state:Ae,indented:d||0,tagName:null,tagStart:null,context:null};return d!=null&&(S.baseIndent=d),S},token:function(d,S){if(!S.tagName&&d.sol()&&(S.indented=d.indentation()),d.eatSpace())return null;ie=null;var w=S.tokenize(d,S);return(w||ie)&&w!="comment"&&(O=null,S.state=S.state(ie||w,d,S),O&&(w=O=="error"?w+" error":O)),w},indent:function(d,S,w){var m=d.context;if(d.tokenize.isInAttribute)return d.tagStart==d.indented?d.stringStartCol+1:d.indented+V;if(m&&m.noIndent)return C.Pass;if(d.tokenize!=z&&d.tokenize!=q)return w?w.match(/^(\s*)/)[0].length:0;if(d.tagName)return b.multilineTagIndentPastTag!==!1?d.tagStart+d.tagName.length+2:d.tagStart+V*(b.multilineTagIndentFactor||1);if(b.alignCDATA&&/$/,blockCommentStart:"",configuration:b.htmlMode?"html":"xml",helperType:b.htmlMode?"html":"xml",skipAttribute:function(d){d.state==D&&(d.state=H)},xmlCurrentTag:function(d){return d.tagName?{name:d.tagName,close:d.type=="closeTag"}:null},xmlCurrentContext:function(d){for(var S=[],w=d.context;w;w=w.prev)S.push(w.tagName);return S.reverse()}}}),C.defineMIME("text/xml","xml"),C.defineMIME("application/xml","xml"),C.mimeModes.hasOwnProperty("text/html")||C.defineMIME("text/html",{name:"xml",htmlMode:!0})})}()),ma.exports}var xa={exports:{}},ba;function Wa(){return ba||(ba=1,function(Et,zt){(function(C){C(It())})(function(C){C.defineMode("javascript",function(De,I){var K=De.indentUnit,$=I.statementIndent,V=I.jsonld,b=I.json||V,N=I.trackScope!==!1,_=I.typescript,ie=I.wordCharacters||/[\w$\xa1-\uffff]/,O=function(){function f(it){return{type:it,style:"keyword"}}var g=f("keyword a"),A=f("keyword b"),W=f("keyword c"),L=f("keyword d"),Z=f("operator"),_e={type:"atom",style:"atom"};return{if:f("if"),while:g,with:g,else:A,do:A,try:A,finally:A,return:L,break:L,continue:L,new:f("new"),delete:W,void:W,throw:W,debugger:f("debugger"),var:f("var"),const:f("var"),let:f("var"),function:f("function"),catch:f("catch"),for:f("for"),switch:f("switch"),case:f("case"),default:f("default"),in:Z,typeof:Z,instanceof:Z,true:_e,false:_e,null:_e,undefined:_e,NaN:_e,Infinity:_e,this:f("this"),class:f("class"),super:f("atom"),yield:W,export:f("export"),import:f("import"),extends:W,await:W}}(),q=/[+\-*&%=<>!?|~^@]/,z=/^@(context|id|value|language|type|container|list|set|reverse|index|base|vocab|graph)"/;function X(f){for(var g=!1,A,W=!1;(A=f.next())!=null;){if(!g){if(A=="/"&&!W)return;A=="["?W=!0:W&&A=="]"&&(W=!1)}g=!g&&A=="\\"}}var ke,we;function te(f,g,A){return ke=f,we=A,g}function re(f,g){var A=f.next();if(A=='"'||A=="'")return g.tokenize=ne(A),g.tokenize(f,g);if(A=="."&&f.match(/^\d[\d_]*(?:[eE][+\-]?[\d_]+)?/))return te("number","number");if(A=="."&&f.match(".."))return te("spread","meta");if(/[\[\]{}\(\),;\:\.]/.test(A))return te(A);if(A=="="&&f.eat(">"))return te("=>","operator");if(A=="0"&&f.match(/^(?:x[\dA-Fa-f_]+|o[0-7_]+|b[01_]+)n?/))return te("number","number");if(/\d/.test(A))return f.match(/^[\d_]*(?:n|(?:\.[\d_]*)?(?:[eE][+\-]?[\d_]+)?)?/),te("number","number");if(A=="/")return f.eat("*")?(g.tokenize=se,se(f,g)):f.eat("/")?(f.skipToEnd(),te("comment","comment")):Ft(f,g,1)?(X(f),f.match(/^\b(([gimyus])(?![gimyus]*\2))+\b/),te("regexp","string-2")):(f.eat("="),te("operator","operator",f.current()));if(A=="`")return g.tokenize=Ae,Ae(f,g);if(A=="#"&&f.peek()=="!")return f.skipToEnd(),te("meta","meta");if(A=="#"&&f.eatWhile(ie))return te("variable","property");if(A=="<"&&f.match("!--")||A=="-"&&f.match("->")&&!/\S/.test(f.string.slice(0,f.start)))return f.skipToEnd(),te("comment","comment");if(q.test(A))return(A!=">"||!g.lexical||g.lexical.type!=">")&&(f.eat("=")?(A=="!"||A=="=")&&f.eat("="):/[<>*+\-|&?]/.test(A)&&(f.eat(A),A==">"&&f.eat(A))),A=="?"&&f.eat(".")?te("."):te("operator","operator",f.current());if(ie.test(A)){f.eatWhile(ie);var W=f.current();if(g.lastType!="."){if(O.propertyIsEnumerable(W)){var L=O[W];return te(L.type,L.style,W)}if(W=="async"&&f.match(/^(\s|\/\*([^*]|\*(?!\/))*?\*\/)*[\[\(\w]/,!1))return te("async","keyword",W)}return te("variable","variable",W)}}function ne(f){return function(g,A){var W=!1,L;if(V&&g.peek()=="@"&&g.match(z))return A.tokenize=re,te("jsonld-keyword","meta");for(;(L=g.next())!=null&&!(L==f&&!W);)W=!W&&L=="\\";return W||(A.tokenize=re),te("string","string")}}function se(f,g){for(var A=!1,W;W=f.next();){if(W=="/"&&A){g.tokenize=re;break}A=W=="*"}return te("comment","comment")}function Ae(f,g){for(var A=!1,W;(W=f.next())!=null;){if(!A&&(W=="`"||W=="$"&&f.eat("{"))){g.tokenize=re;break}A=!A&&W=="\\"}return te("quasi","string-2",f.current())}var ye="([{}])";function de(f,g){g.fatArrowAt&&(g.fatArrowAt=null);var A=f.string.indexOf("=>",f.start);if(!(A<0)){if(_){var W=/:\s*(?:\w+(?:<[^>]*>|\[\])?|\{[^}]*\})\s*$/.exec(f.string.slice(f.start,A));W&&(A=W.index)}for(var L=0,Z=!1,_e=A-1;_e>=0;--_e){var it=f.string.charAt(_e),xt=ye.indexOf(it);if(xt>=0&&xt<3){if(!L){++_e;break}if(--L==0){it=="("&&(Z=!0);break}}else if(xt>=3&&xt<6)++L;else if(ie.test(it))Z=!0;else if(/["'\/`]/.test(it))for(;;--_e){if(_e==0)return;var _r=f.string.charAt(_e-1);if(_r==it&&f.string.charAt(_e-2)!="\\"){_e--;break}}else if(Z&&!L){++_e;break}}Z&&!L&&(g.fatArrowAt=_e)}}var ze={atom:!0,number:!0,variable:!0,string:!0,regexp:!0,this:!0,import:!0,"jsonld-keyword":!0};function fe(f,g,A,W,L,Z){this.indented=f,this.column=g,this.type=A,this.prev=L,this.info=Z,W!=null&&(this.align=W)}function H(f,g){if(!N)return!1;for(var A=f.localVars;A;A=A.next)if(A.name==g)return!0;for(var W=f.context;W;W=W.prev)for(var A=W.vars;A;A=A.next)if(A.name==g)return!0}function Ee(f,g,A,W,L){var Z=f.cc;for(D.state=f,D.stream=L,D.marked=null,D.cc=Z,D.style=g,f.lexical.hasOwnProperty("align")||(f.lexical.align=!0);;){var _e=Z.length?Z.pop():b?oe:Le;if(_e(A,W)){for(;Z.length&&Z[Z.length-1].lex;)Z.pop()();return D.marked?D.marked:A=="variable"&&H(f,W)?"variable-2":g}}}var D={state:null,marked:null,cc:null};function J(){for(var f=arguments.length-1;f>=0;f--)D.cc.push(arguments[f])}function d(){return J.apply(null,arguments),!0}function S(f,g){for(var A=g;A;A=A.next)if(A.name==f)return!0;return!1}function w(f){var g=D.state;if(D.marked="def",!!N){if(g.context){if(g.lexical.info=="var"&&g.context&&g.context.block){var A=m(f,g.context);if(A!=null){g.context=A;return}}else if(!S(f,g.localVars)){g.localVars=new le(f,g.localVars);return}}I.globalVars&&!S(f,g.globalVars)&&(g.globalVars=new le(f,g.globalVars))}}function m(f,g){if(g)if(g.block){var A=m(f,g.prev);return A?A==g.prev?g:new P(A,g.vars,!0):null}else return S(f,g.vars)?g:new P(g.prev,new le(f,g.vars),!1);else return null}function y(f){return f=="public"||f=="private"||f=="protected"||f=="abstract"||f=="readonly"}function P(f,g,A){this.prev=f,this.vars=g,this.block=A}function le(f,g){this.name=f,this.next=g}var p=new le("this",new le("arguments",null));function c(){D.state.context=new P(D.state.context,D.state.localVars,!1),D.state.localVars=p}function Y(){D.state.context=new P(D.state.context,D.state.localVars,!0),D.state.localVars=null}c.lex=Y.lex=!0;function xe(){D.state.localVars=D.state.context.vars,D.state.context=D.state.context.prev}xe.lex=!0;function j(f,g){var A=function(){var W=D.state,L=W.indented;if(W.lexical.type=="stat")L=W.lexical.indented;else for(var Z=W.lexical;Z&&Z.type==")"&&Z.align;Z=Z.prev)L=Z.indented;W.lexical=new fe(L,D.stream.column(),f,null,W.lexical,g)};return A.lex=!0,A}function ue(){var f=D.state;f.lexical.prev&&(f.lexical.type==")"&&(f.indented=f.lexical.indented),f.lexical=f.lexical.prev)}ue.lex=!0;function Te(f){function g(A){return A==f?d():f==";"||A=="}"||A==")"||A=="]"?J():d(g)}return g}function Le(f,g){return f=="var"?d(j("vardef",g),Nr,Te(";"),ue):f=="keyword a"?d(j("form"),qe,Le,ue):f=="keyword b"?d(j("form"),Le,ue):f=="keyword d"?D.stream.match(/^\s*$/,!1)?d():d(j("stat"),ct,Te(";"),ue):f=="debugger"?d(Te(";")):f=="{"?d(j("}"),Y,Nt,ue,xe):f==";"?d():f=="if"?(D.state.lexical.info=="else"&&D.state.cc[D.state.cc.length-1]==ue&&D.state.cc.pop()(),d(j("form"),qe,Le,ue,Or)):f=="function"?d(Pt):f=="for"?d(j("form"),Y,Wn,Le,xe,ue):f=="class"||_&&g=="interface"?(D.marked="keyword",d(j("form",f=="class"?f:g),Pr,ue)):f=="variable"?_&&g=="declare"?(D.marked="keyword",d(Le)):_&&(g=="module"||g=="enum"||g=="type")&&D.stream.match(/^\s*\w/,!1)?(D.marked="keyword",g=="enum"?d(ce):g=="type"?d(_n,Te("operator"),We,Te(";")):d(j("form"),yt,Te("{"),j("}"),Nt,ue,ue)):_&&g=="namespace"?(D.marked="keyword",d(j("form"),oe,Le,ue)):_&&g=="abstract"?(D.marked="keyword",d(Le)):d(j("stat"),Ie):f=="switch"?d(j("form"),qe,Te("{"),j("}","switch"),Y,Nt,ue,ue,xe):f=="case"?d(oe,Te(":")):f=="default"?d(Te(":")):f=="catch"?d(j("form"),c,be,Le,ue,xe):f=="export"?d(j("stat"),Ir,ue):f=="import"?d(j("stat"),fr,ue):f=="async"?d(Le):g=="@"?d(oe,Le):J(j("stat"),oe,Te(";"),ue)}function be(f){if(f=="(")return d(_t,Te(")"))}function oe(f,g){return Ve(f,g,!1)}function Ne(f,g){return Ve(f,g,!0)}function qe(f){return f!="("?J():d(j(")"),ct,Te(")"),ue)}function Ve(f,g,A){if(D.state.fatArrowAt==D.stream.start){var W=A?Pe:ge;if(f=="(")return d(c,j(")"),Me(_t,")"),ue,Te("=>"),W,xe);if(f=="variable")return J(c,yt,Te("=>"),W,xe)}var L=A?Re:Oe;return ze.hasOwnProperty(f)?d(L):f=="function"?d(Pt,L):f=="class"||_&&g=="interface"?(D.marked="keyword",d(j("form"),xi,ue)):f=="keyword c"||f=="async"?d(A?Ne:oe):f=="("?d(j(")"),ct,Te(")"),ue,L):f=="operator"||f=="spread"?d(A?Ne:oe):f=="["?d(j("]"),Je,ue,L):f=="{"?Lt(Se,"}",null,L):f=="quasi"?J(Ue,L):f=="new"?d(T(A)):d()}function ct(f){return f.match(/[;\}\)\],]/)?J():J(oe)}function Oe(f,g){return f==","?d(ct):Re(f,g,!1)}function Re(f,g,A){var W=A==!1?Oe:Re,L=A==!1?oe:Ne;if(f=="=>")return d(c,A?Pe:ge,xe);if(f=="operator")return/\+\+|--/.test(g)||_&&g=="!"?d(W):_&&g=="<"&&D.stream.match(/^([^<>]|<[^<>]*>)*>\s*\(/,!1)?d(j(">"),Me(We,">"),ue,W):g=="?"?d(oe,Te(":"),L):d(L);if(f=="quasi")return J(Ue,W);if(f!=";"){if(f=="(")return Lt(Ne,")","call",W);if(f==".")return d(ae,W);if(f=="[")return d(j("]"),ct,Te("]"),ue,W);if(_&&g=="as")return D.marked="keyword",d(We,W);if(f=="regexp")return D.state.lastType=D.marked="operator",D.stream.backUp(D.stream.pos-D.stream.start-1),d(L)}}function Ue(f,g){return f!="quasi"?J():g.slice(g.length-2)!="${"?d(Ue):d(ct,et)}function et(f){if(f=="}")return D.marked="string-2",D.state.tokenize=Ae,d(Ue)}function ge(f){return de(D.stream,D.state),J(f=="{"?Le:oe)}function Pe(f){return de(D.stream,D.state),J(f=="{"?Le:Ne)}function T(f){return function(g){return g=="."?d(f?F:B):g=="variable"&&_?d(Ct,f?Re:Oe):J(f?Ne:oe)}}function B(f,g){if(g=="target")return D.marked="keyword",d(Oe)}function F(f,g){if(g=="target")return D.marked="keyword",d(Re)}function Ie(f){return f==":"?d(ue,Le):J(Oe,Te(";"),ue)}function ae(f){if(f=="variable")return D.marked="property",d()}function Se(f,g){if(f=="async")return D.marked="property",d(Se);if(f=="variable"||D.style=="keyword"){if(D.marked="property",g=="get"||g=="set")return d(he);var A;return _&&D.state.fatArrowAt==D.stream.start&&(A=D.stream.match(/^\s*:\s*/,!1))&&(D.state.fatArrowAt=D.stream.pos+A[0].length),d(Be)}else{if(f=="number"||f=="string")return D.marked=V?"property":D.style+" property",d(Be);if(f=="jsonld-keyword")return d(Be);if(_&&y(g))return D.marked="keyword",d(Se);if(f=="[")return d(oe,or,Te("]"),Be);if(f=="spread")return d(Ne,Be);if(g=="*")return D.marked="keyword",d(Se);if(f==":")return J(Be)}}function he(f){return f!="variable"?J(Be):(D.marked="property",d(Pt))}function Be(f){if(f==":")return d(Ne);if(f=="(")return J(Pt)}function Me(f,g,A){function W(L,Z){if(A?A.indexOf(L)>-1:L==","){var _e=D.state.lexical;return _e.info=="call"&&(_e.pos=(_e.pos||0)+1),d(function(it,xt){return it==g||xt==g?J():J(f)},W)}return L==g||Z==g?d():A&&A.indexOf(";")>-1?J(f):d(Te(g))}return function(L,Z){return L==g||Z==g?d():J(f,W)}}function Lt(f,g,A){for(var W=3;W"),We);if(f=="quasi")return J(dt,Ot)}function Bn(f){if(f=="=>")return d(We)}function ve(f){return f.match(/[\}\)\]]/)?d():f==","||f==";"?d(ve):J(Qt,ve)}function Qt(f,g){if(f=="variable"||D.style=="keyword")return D.marked="property",d(Qt);if(g=="?"||f=="number"||f=="string")return d(Qt);if(f==":")return d(We);if(f=="[")return d(Te("variable"),br,Te("]"),Qt);if(f=="(")return J(ur,Qt);if(!f.match(/[;\}\)\],]/))return d()}function dt(f,g){return f!="quasi"?J():g.slice(g.length-2)!="${"?d(dt):d(We,Ye)}function Ye(f){if(f=="}")return D.marked="string-2",D.state.tokenize=Ae,d(dt)}function Ze(f,g){return f=="variable"&&D.stream.match(/^\s*[?:]/,!1)||g=="?"?d(Ze):f==":"?d(We):f=="spread"?d(Ze):J(We)}function Ot(f,g){if(g=="<")return d(j(">"),Me(We,">"),ue,Ot);if(g=="|"||f=="."||g=="&")return d(We);if(f=="[")return d(We,Te("]"),Ot);if(g=="extends"||g=="implements")return D.marked="keyword",d(We);if(g=="?")return d(We,Te(":"),We)}function Ct(f,g){if(g=="<")return d(j(">"),Me(We,">"),ue,Ot)}function Bt(){return J(We,ht)}function ht(f,g){if(g=="=")return d(We)}function Nr(f,g){return g=="enum"?(D.marked="keyword",d(ce)):J(yt,or,Wt,yi)}function yt(f,g){if(_&&y(g))return D.marked="keyword",d(yt);if(f=="variable")return w(g),d();if(f=="spread")return d(yt);if(f=="[")return Lt(ln,"]");if(f=="{")return Lt(ar,"}")}function ar(f,g){return f=="variable"&&!D.stream.match(/^\s*:/,!1)?(w(g),d(Wt)):(f=="variable"&&(D.marked="property"),f=="spread"?d(yt):f=="}"?J():f=="["?d(oe,Te("]"),Te(":"),ar):d(Te(":"),yt,Wt))}function ln(){return J(yt,Wt)}function Wt(f,g){if(g=="=")return d(Ne)}function yi(f){if(f==",")return d(Nr)}function Or(f,g){if(f=="keyword b"&&g=="else")return d(j("form","else"),Le,ue)}function Wn(f,g){if(g=="await")return d(Wn);if(f=="(")return d(j(")"),an,ue)}function an(f){return f=="var"?d(Nr,sr):f=="variable"?d(sr):J(sr)}function sr(f,g){return f==")"?d():f==";"?d(sr):g=="in"||g=="of"?(D.marked="keyword",d(oe,sr)):J(oe,sr)}function Pt(f,g){if(g=="*")return D.marked="keyword",d(Pt);if(f=="variable")return w(g),d(Pt);if(f=="(")return d(c,j(")"),Me(_t,")"),ue,lr,Le,xe);if(_&&g=="<")return d(j(">"),Me(Bt,">"),ue,Pt)}function ur(f,g){if(g=="*")return D.marked="keyword",d(ur);if(f=="variable")return w(g),d(ur);if(f=="(")return d(c,j(")"),Me(_t,")"),ue,lr,xe);if(_&&g=="<")return d(j(">"),Me(Bt,">"),ue,ur)}function _n(f,g){if(f=="keyword"||f=="variable")return D.marked="type",d(_n);if(g=="<")return d(j(">"),Me(Bt,">"),ue)}function _t(f,g){return g=="@"&&d(oe,_t),f=="spread"?d(_t):_&&y(g)?(D.marked="keyword",d(_t)):_&&f=="this"?d(or,Wt):J(yt,or,Wt)}function xi(f,g){return f=="variable"?Pr(f,g):Ht(f,g)}function Pr(f,g){if(f=="variable")return w(g),d(Ht)}function Ht(f,g){if(g=="<")return d(j(">"),Me(Bt,">"),ue,Ht);if(g=="extends"||g=="implements"||_&&f==",")return g=="implements"&&(D.marked="keyword"),d(_?We:oe,Ht);if(f=="{")return d(j("}"),Rt,ue)}function Rt(f,g){if(f=="async"||f=="variable"&&(g=="static"||g=="get"||g=="set"||_&&y(g))&&D.stream.match(/^\s+#?[\w$\xa1-\uffff]/,!1))return D.marked="keyword",d(Rt);if(f=="variable"||D.style=="keyword")return D.marked="property",d(kr,Rt);if(f=="number"||f=="string")return d(kr,Rt);if(f=="[")return d(oe,or,Te("]"),kr,Rt);if(g=="*")return D.marked="keyword",d(Rt);if(_&&f=="(")return J(ur,Rt);if(f==";"||f==",")return d(Rt);if(f=="}")return d();if(g=="@")return d(oe,Rt)}function kr(f,g){if(g=="!"||g=="?")return d(kr);if(f==":")return d(We,Wt);if(g=="=")return d(Ne);var A=D.state.lexical.prev,W=A&&A.info=="interface";return J(W?ur:Pt)}function Ir(f,g){return g=="*"?(D.marked="keyword",d(Wr,Te(";"))):g=="default"?(D.marked="keyword",d(oe,Te(";"))):f=="{"?d(Me(zr,"}"),Wr,Te(";")):J(Le)}function zr(f,g){if(g=="as")return D.marked="keyword",d(Te("variable"));if(f=="variable")return J(Ne,zr)}function fr(f){return f=="string"?d():f=="("?J(oe):f=="."?J(Oe):J(Br,Gt,Wr)}function Br(f,g){return f=="{"?Lt(Br,"}"):(f=="variable"&&w(g),g=="*"&&(D.marked="keyword"),d(sn))}function Gt(f){if(f==",")return d(Br,Gt)}function sn(f,g){if(g=="as")return D.marked="keyword",d(Br)}function Wr(f,g){if(g=="from")return D.marked="keyword",d(oe)}function Je(f){return f=="]"?d():J(Me(Ne,"]"))}function ce(){return J(j("form"),yt,Te("{"),j("}"),Me(Vt,"}"),ue,ue)}function Vt(){return J(yt,Wt)}function un(f,g){return f.lastType=="operator"||f.lastType==","||q.test(g.charAt(0))||/[,.]/.test(g.charAt(0))}function Ft(f,g,A){return g.tokenize==re&&/^(?:operator|sof|keyword [bcd]|case|new|export|default|spread|[\[{}\(,;:]|=>)$/.test(g.lastType)||g.lastType=="quasi"&&/\{\s*$/.test(f.string.slice(0,f.pos-(A||0)))}return{startState:function(f){var g={tokenize:re,lastType:"sof",cc:[],lexical:new fe((f||0)-K,0,"block",!1),localVars:I.localVars,context:I.localVars&&new P(null,null,!1),indented:f||0};return I.globalVars&&typeof I.globalVars=="object"&&(g.globalVars=I.globalVars),g},token:function(f,g){if(f.sol()&&(g.lexical.hasOwnProperty("align")||(g.lexical.align=!1),g.indented=f.indentation(),de(f,g)),g.tokenize!=se&&f.eatSpace())return null;var A=g.tokenize(f,g);return ke=="comment"?A:(g.lastType=ke=="operator"&&(we=="++"||we=="--")?"incdec":ke,Ee(g,A,ke,we,f))},indent:function(f,g){if(f.tokenize==se||f.tokenize==Ae)return C.Pass;if(f.tokenize!=re)return 0;var A=g&&g.charAt(0),W=f.lexical,L;if(!/^\s*else\b/.test(g))for(var Z=f.cc.length-1;Z>=0;--Z){var _e=f.cc[Z];if(_e==ue)W=W.prev;else if(_e!=Or&&_e!=xe)break}for(;(W.type=="stat"||W.type=="form")&&(A=="}"||(L=f.cc[f.cc.length-1])&&(L==Oe||L==Re)&&!/^[,\.=+\-*:?[\(]/.test(g));)W=W.prev;$&&W.type==")"&&W.prev.type=="stat"&&(W=W.prev);var it=W.type,xt=A==it;return it=="vardef"?W.indented+(f.lastType=="operator"||f.lastType==","?W.info.length+1:0):it=="form"&&A=="{"?W.indented:it=="form"?W.indented+K:it=="stat"?W.indented+(un(f,g)?$||K:0):W.info=="switch"&&!xt&&I.doubleIndentSwitch!=!1?W.indented+(/^(?:case|default)\b/.test(g)?K:2*K):W.align?W.column+(xt?0:1):W.indented+(xt?0:K)},electricInput:/^\s*(?:case .*?:|default:|\{|\})$/,blockCommentStart:b?null:"/*",blockCommentEnd:b?null:"*/",blockCommentContinue:b?null:" * ",lineComment:b?null:"//",fold:"brace",closeBrackets:"()[]{}''\"\"``",helperType:b?"json":"javascript",jsonldMode:V,jsonMode:b,expressionAllowed:Ft,skipExpression:function(f){Ee(f,"atom","atom","true",new C.StringStream("",2,null))}}}),C.registerHelper("wordChars","javascript",/[\w$]/),C.defineMIME("text/javascript","javascript"),C.defineMIME("text/ecmascript","javascript"),C.defineMIME("application/javascript","javascript"),C.defineMIME("application/x-javascript","javascript"),C.defineMIME("application/ecmascript","javascript"),C.defineMIME("application/json",{name:"javascript",json:!0}),C.defineMIME("application/x-json",{name:"javascript",json:!0}),C.defineMIME("application/manifest+json",{name:"javascript",json:!0}),C.defineMIME("application/ld+json",{name:"javascript",jsonld:!0}),C.defineMIME("text/typescript",{name:"javascript",typescript:!0}),C.defineMIME("application/typescript",{name:"javascript",typescript:!0})})}()),xa.exports}var ka;function Ru(){return ka||(ka=1,function(Et,zt){(function(C){C(It(),Ba(),Wa(),za())})(function(C){var De={script:[["lang",/(javascript|babel)/i,"javascript"],["type",/^(?:text|application)\/(?:x-)?(?:java|ecma)script$|^module$|^$/i,"javascript"],["type",/./,"text/plain"],[null,null,"javascript"]],style:[["lang",/^css$/i,"css"],["type",/^(text\/)?(x-)?(stylesheet|css)$/i,"css"],["type",/./,"text/plain"],[null,null,"css"]]};function I(ie,O,q){var z=ie.current(),X=z.search(O);return X>-1?ie.backUp(z.length-X):z.match(/<\/?$/)&&(ie.backUp(z.length),ie.match(O,!1)||ie.match(z)),q}var K={};function $(ie){var O=K[ie];return O||(K[ie]=new RegExp("\\s+"+ie+`\\s*=\\s*('|")?([^'"]+)('|")?\\s*`))}function V(ie,O){var q=ie.match($(O));return q?/^\s*(.*?)\s*$/.exec(q[2])[1]:""}function b(ie,O){return new RegExp((O?"^":"")+"","i")}function N(ie,O){for(var q in ie)for(var z=O[q]||(O[q]=[]),X=ie[q],ke=X.length-1;ke>=0;ke--)z.unshift(X[ke])}function _(ie,O){for(var q=0;q=0;we--)z.script.unshift(["type",ke[we].matches,ke[we].mode]);function te(re,ne){var se=q.token(re,ne.htmlState),Ae=/\btag\b/.test(se),ye;if(Ae&&!/[<>\s\/]/.test(re.current())&&(ye=ne.htmlState.tagName&&ne.htmlState.tagName.toLowerCase())&&z.hasOwnProperty(ye))ne.inTag=ye+" ";else if(ne.inTag&&Ae&&/>$/.test(re.current())){var de=/^([\S]+) (.*)/.exec(ne.inTag);ne.inTag=null;var ze=re.current()==">"&&_(z[de[1]],de[2]),fe=C.getMode(ie,ze),H=b(de[1],!0),Ee=b(de[1],!1);ne.token=function(D,J){return D.match(H,!1)?(J.token=te,J.localState=J.localMode=null,null):I(D,Ee,J.localMode.token(D,J.localState))},ne.localMode=fe,ne.localState=C.startState(fe,q.indent(ne.htmlState,"",""))}else ne.inTag&&(ne.inTag+=re.current(),re.eol()&&(ne.inTag+=" "));return se}return{startState:function(){var re=C.startState(q);return{token:te,inTag:null,localMode:null,localState:null,htmlState:re}},copyState:function(re){var ne;return re.localState&&(ne=C.copyState(re.localMode,re.localState)),{token:re.token,inTag:re.inTag,localMode:re.localMode,localState:ne,htmlState:C.copyState(q,re.htmlState)}},token:function(re,ne){return ne.token(re,ne)},indent:function(re,ne,se){return!re.localMode||/^\s*<\//.test(ne)?q.indent(re.htmlState,ne,se):re.localMode.indent?re.localMode.indent(re.localState,ne,se):C.Pass},innerMode:function(re){return{state:re.localState||re.htmlState,mode:re.localMode||q}}}},"xml","javascript","css"),C.defineMIME("text/html","htmlmixed")})}()),va.exports}Ru();Wa();var wa={exports:{}},Sa;function qu(){return Sa||(Sa=1,function(Et,zt){(function(C){C(It())})(function(C){function De(N){return new RegExp("^(("+N.join(")|(")+"))\\b")}var I=De(["and","or","not","is"]),K=["as","assert","break","class","continue","def","del","elif","else","except","finally","for","from","global","if","import","lambda","pass","raise","return","try","while","with","yield","in","False","True"],$=["abs","all","any","bin","bool","bytearray","callable","chr","classmethod","compile","complex","delattr","dict","dir","divmod","enumerate","eval","filter","float","format","frozenset","getattr","globals","hasattr","hash","help","hex","id","input","int","isinstance","issubclass","iter","len","list","locals","map","max","memoryview","min","next","object","oct","open","ord","pow","property","range","repr","reversed","round","set","setattr","slice","sorted","staticmethod","str","sum","super","tuple","type","vars","zip","__import__","NotImplemented","Ellipsis","__debug__"];C.registerHelper("hintWords","python",K.concat($).concat(["exec","print"]));function V(N){return N.scopes[N.scopes.length-1]}C.defineMode("python",function(N,_){for(var ie="error",O=_.delimiters||_.singleDelimiters||/^[\(\)\[\]\{\}@,:`=;\.\\]/,q=[_.singleOperators,_.doubleOperators,_.doubleDelimiters,_.tripleDelimiters,_.operators||/^([-+*/%\/&|^]=?|[<>=]+|\/\/=?|\*\*=?|!=|[~!@]|\.\.\.)/],z=0;zy?H(w):P0&&D(S,w)&&(le+=" "+ie),le}}return de(S,w)}function de(S,w,m){if(S.eatSpace())return null;if(!m&&S.match(/^#.*/))return"comment";if(S.match(/^[0-9\.]/,!1)){var y=!1;if(S.match(/^[\d_]*\.\d+(e[\+\-]?\d+)?/i)&&(y=!0),S.match(/^[\d_]+\.\d*/)&&(y=!0),S.match(/^\.\d+/)&&(y=!0),y)return S.eat(/J/i),"number";var P=!1;if(S.match(/^0x[0-9a-f_]+/i)&&(P=!0),S.match(/^0b[01_]+/i)&&(P=!0),S.match(/^0o[0-7_]+/i)&&(P=!0),S.match(/^[1-9][\d_]*(e[\+\-]?[\d_]+)?/)&&(S.eat(/J/i),P=!0),S.match(/^0(?![\dx])/i)&&(P=!0),P)return S.eat(/L/i),"number"}if(S.match(ne)){var le=S.current().toLowerCase().indexOf("f")!==-1;return le?(w.tokenize=ze(S.current(),w.tokenize),w.tokenize(S,w)):(w.tokenize=fe(S.current(),w.tokenize),w.tokenize(S,w))}for(var p=0;p=0;)S=S.substr(1);var m=S.length==1,y="string";function P(p){return function(c,Y){var xe=de(c,Y,!0);return xe=="punctuation"&&(c.current()=="{"?Y.tokenize=P(p+1):c.current()=="}"&&(p>1?Y.tokenize=P(p-1):Y.tokenize=le)),xe}}function le(p,c){for(;!p.eol();)if(p.eatWhile(/[^'"\{\}\\]/),p.eat("\\")){if(p.next(),m&&p.eol())return y}else{if(p.match(S))return c.tokenize=w,y;if(p.match("{{"))return y;if(p.match("{",!1))return c.tokenize=P(0),p.current()?y:c.tokenize(p,c);if(p.match("}}"))return y;if(p.match("}"))return ie;p.eat(/['"]/)}if(m){if(_.singleLineStringErrors)return ie;c.tokenize=w}return y}return le.isString=!0,le}function fe(S,w){for(;"rubf".indexOf(S.charAt(0).toLowerCase())>=0;)S=S.substr(1);var m=S.length==1,y="string";function P(le,p){for(;!le.eol();)if(le.eatWhile(/[^'"\\]/),le.eat("\\")){if(le.next(),m&&le.eol())return y}else{if(le.match(S))return p.tokenize=w,y;le.eat(/['"]/)}if(m){if(_.singleLineStringErrors)return ie;p.tokenize=w}return y}return P.isString=!0,P}function H(S){for(;V(S).type!="py";)S.scopes.pop();S.scopes.push({offset:V(S).offset+N.indentUnit,type:"py",align:null})}function Ee(S,w,m){var y=S.match(/^[\s\[\{\(]*(?:#|$)/,!1)?null:S.column()+1;w.scopes.push({offset:w.indent+X,type:m,align:y})}function D(S,w){for(var m=S.indentation();w.scopes.length>1&&V(w).offset>m;){if(V(w).type!="py")return!0;w.scopes.pop()}return V(w).offset!=m}function J(S,w){S.sol()&&(w.beginningOfLine=!0,w.dedent=!1);var m=w.tokenize(S,w),y=S.current();if(w.beginningOfLine&&y=="@")return S.match(re,!1)?"meta":te?"operator":ie;if(/\S/.test(y)&&(w.beginningOfLine=!1),(m=="variable"||m=="builtin")&&w.lastToken=="meta"&&(m="meta"),(y=="pass"||y=="return")&&(w.dedent=!0),y=="lambda"&&(w.lambda=!0),y==":"&&!w.lambda&&V(w).type=="py"&&S.match(/^\s*(?:#|$)/,!1)&&H(w),y.length==1&&!/string|comment/.test(m)){var P="[({".indexOf(y);if(P!=-1&&Ee(S,w,"])}".slice(P,P+1)),P="])}".indexOf(y),P!=-1)if(V(w).type==y)w.indent=w.scopes.pop().offset-X;else return ie}return w.dedent&&S.eol()&&V(w).type=="py"&&w.scopes.length>1&&w.scopes.pop(),m}var d={startState:function(S){return{tokenize:ye,scopes:[{offset:S||0,type:"py",align:null}],indent:S||0,lastToken:null,lambda:!1,dedent:0}},token:function(S,w){var m=w.errorToken;m&&(w.errorToken=!1);var y=J(S,w);return y&&y!="comment"&&(w.lastToken=y=="keyword"||y=="punctuation"?S.current():y),y=="punctuation"&&(y=null),S.eol()&&w.lambda&&(w.lambda=!1),m?y+" "+ie:y},indent:function(S,w){if(S.tokenize!=ye)return S.tokenize.isString?C.Pass:0;var m=V(S),y=m.type==w.charAt(0)||m.type=="py"&&!S.dedent&&/^(else:|elif |except |finally:)/.test(w);return m.align!=null?m.align-(y?1:0):m.offset-(y?X:0)},electricInput:/^\s*([\}\]\)]|else:|elif |except |finally:)$/,closeBrackets:{triples:`'"`},lineComment:"#",fold:"indent"};return d}),C.defineMIME("text/x-python","python");var b=function(N){return N.split(" ")};C.defineMIME("text/x-cython",{name:"python",extra_keywords:b("by cdef cimport cpdef ctypedef enum except extern gil include nogil property public readonly struct union DEF IF ELIF ELSE")})})}()),wa.exports}qu();var Ta={exports:{}},La;function ju(){return La||(La=1,function(Et,zt){(function(C){C(It())})(function(C){function De(m,y,P,le,p,c){this.indented=m,this.column=y,this.type=P,this.info=le,this.align=p,this.prev=c}function I(m,y,P,le){var p=m.indented;return m.context&&m.context.type=="statement"&&P!="statement"&&(p=m.context.indented),m.context=new De(p,y,P,le,null,m.context)}function K(m){var y=m.context.type;return(y==")"||y=="]"||y=="}")&&(m.indented=m.context.indented),m.context=m.context.prev}function $(m,y,P){if(y.prevToken=="variable"||y.prevToken=="type"||/\S(?:[^- ]>|[*\]])\s*$|\*$/.test(m.string.slice(0,P))||y.typeAtEndOfLine&&m.column()==m.indentation())return!0}function V(m){for(;;){if(!m||m.type=="top")return!0;if(m.type=="}"&&m.prev.info!="namespace")return!1;m=m.prev}}C.defineMode("clike",function(m,y){var P=m.indentUnit,le=y.statementIndentUnit||P,p=y.dontAlignCalls,c=y.keywords||{},Y=y.types||{},xe=y.builtin||{},j=y.blockKeywords||{},ue=y.defKeywords||{},Te=y.atoms||{},Le=y.hooks||{},be=y.multiLineStrings,oe=y.indentStatements!==!1,Ne=y.indentSwitch!==!1,qe=y.namespaceSeparator,Ve=y.isPunctuationChar||/[\[\]{}\(\),;\:\.]/,ct=y.numberStart||/[\d\.]/,Oe=y.number||/^(?:0x[a-f\d]+|0b[01]+|(?:\d+\.?\d*|\.\d+)(?:e[-+]?\d+)?)(u|ll?|l|f)?/i,Re=y.isOperatorChar||/[+\-*&%=<>!?|\/]/,Ue=y.isIdentifierChar||/[\w\$_\xa1-\uffff]/,et=y.isReservedIdentifier||!1,ge,Pe;function T(ae,Se){var he=ae.next();if(Le[he]){var Be=Le[he](ae,Se);if(Be!==!1)return Be}if(he=='"'||he=="'")return Se.tokenize=B(he),Se.tokenize(ae,Se);if(ct.test(he)){if(ae.backUp(1),ae.match(Oe))return"number";ae.next()}if(Ve.test(he))return ge=he,null;if(he=="/"){if(ae.eat("*"))return Se.tokenize=F,F(ae,Se);if(ae.eat("/"))return ae.skipToEnd(),"comment"}if(Re.test(he)){for(;!ae.match(/^\/[\/*]/,!1)&&ae.eat(Re););return"operator"}if(ae.eatWhile(Ue),qe)for(;ae.match(qe);)ae.eatWhile(Ue);var Me=ae.current();return N(c,Me)?(N(j,Me)&&(ge="newstatement"),N(ue,Me)&&(Pe=!0),"keyword"):N(Y,Me)?"type":N(xe,Me)||et&&et(Me)?(N(j,Me)&&(ge="newstatement"),"builtin"):N(Te,Me)?"atom":"variable"}function B(ae){return function(Se,he){for(var Be=!1,Me,Lt=!1;(Me=Se.next())!=null;){if(Me==ae&&!Be){Lt=!0;break}Be=!Be&&Me=="\\"}return(Lt||!(Be||be))&&(he.tokenize=null),"string"}}function F(ae,Se){for(var he=!1,Be;Be=ae.next();){if(Be=="/"&&he){Se.tokenize=null;break}he=Be=="*"}return"comment"}function Ie(ae,Se){y.typeFirstDefinitions&&ae.eol()&&V(Se.context)&&(Se.typeAtEndOfLine=$(ae,Se,ae.pos))}return{startState:function(ae){return{tokenize:null,context:new De((ae||0)-P,0,"top",null,!1),indented:0,startOfLine:!0,prevToken:null}},token:function(ae,Se){var he=Se.context;if(ae.sol()&&(he.align==null&&(he.align=!1),Se.indented=ae.indentation(),Se.startOfLine=!0),ae.eatSpace())return Ie(ae,Se),null;ge=Pe=null;var Be=(Se.tokenize||T)(ae,Se);if(Be=="comment"||Be=="meta")return Be;if(he.align==null&&(he.align=!0),ge==";"||ge==":"||ge==","&&ae.match(/^\s*(?:\/\/.*)?$/,!1))for(;Se.context.type=="statement";)K(Se);else if(ge=="{")I(Se,ae.column(),"}");else if(ge=="[")I(Se,ae.column(),"]");else if(ge=="(")I(Se,ae.column(),")");else if(ge=="}"){for(;he.type=="statement";)he=K(Se);for(he.type=="}"&&(he=K(Se));he.type=="statement";)he=K(Se)}else ge==he.type?K(Se):oe&&((he.type=="}"||he.type=="top")&&ge!=";"||he.type=="statement"&&ge=="newstatement")&&I(Se,ae.column(),"statement",ae.current());if(Be=="variable"&&(Se.prevToken=="def"||y.typeFirstDefinitions&&$(ae,Se,ae.start)&&V(Se.context)&&ae.match(/^\s*\(/,!1))&&(Be="def"),Le.token){var Me=Le.token(ae,Se,Be);Me!==void 0&&(Be=Me)}return Be=="def"&&y.styleDefs===!1&&(Be="variable"),Se.startOfLine=!1,Se.prevToken=Pe?"def":Be||ge,Ie(ae,Se),Be},indent:function(ae,Se){if(ae.tokenize!=T&&ae.tokenize!=null||ae.typeAtEndOfLine&&V(ae.context))return C.Pass;var he=ae.context,Be=Se&&Se.charAt(0),Me=Be==he.type;if(he.type=="statement"&&Be=="}"&&(he=he.prev),y.dontIndentStatements)for(;he.type=="statement"&&y.dontIndentStatements.test(he.info);)he=he.prev;if(Le.indent){var Lt=Le.indent(ae,he,Se,P);if(typeof Lt=="number")return Lt}var Nt=he.prev&&he.prev.info=="switch";if(y.allmanIndentation&&/[{(]/.test(Be)){for(;he.type!="top"&&he.type!="}";)he=he.prev;return he.indented}return he.type=="statement"?he.indented+(Be=="{"?0:le):he.align&&(!p||he.type!=")")?he.column+(Me?0:1):he.type==")"&&!Me?he.indented+le:he.indented+(Me?0:P)+(!Me&&Nt&&!/^(?:case|default)\b/.test(Se)?P:0)},electricInput:Ne?/^\s*(?:case .*?:|default:|\{\}?|\})$/:/^\s*[{}]$/,blockCommentStart:"/*",blockCommentEnd:"*/",blockCommentContinue:" * ",lineComment:"//",fold:"brace"}});function b(m){for(var y={},P=m.split(" "),le=0;le!?|\/#:@]/,hooks:{"@":function(m){return m.eatWhile(/[\w\$_]/),"meta"},'"':function(m,y){return m.match('""')?(y.tokenize=D,y.tokenize(m,y)):!1},"'":function(m){return m.match(/^(\\[^'\s]+|[^\\'])'/)?"string-2":(m.eatWhile(/[\w\$_\xa1-\uffff]/),"atom")},"=":function(m,y){var P=y.context;return P.type=="}"&&P.align&&m.eat(">")?(y.context=new De(P.indented,P.column,P.type,P.info,null,P.prev),"operator"):!1},"/":function(m,y){return m.eat("*")?(y.tokenize=J(1),y.tokenize(m,y)):!1}},modeProps:{closeBrackets:{pairs:'()[]{}""',triples:'"'}}});function d(m){return function(y,P){for(var le=!1,p,c=!1;!y.eol();){if(!m&&!le&&y.match('"')){c=!0;break}if(m&&y.match('"""')){c=!0;break}p=y.next(),!le&&p=="$"&&y.match("{")&&y.skipTo("}"),le=!le&&p=="\\"&&!m}return(c||!m)&&(P.tokenize=null),"string"}}Ee("text/x-kotlin",{name:"clike",keywords:b("package as typealias class interface this super val operator var fun for is in This throw return annotation break continue object if else while do try when !in !is as? file import where by get set abstract enum open inner override private public internal protected catch finally out final vararg reified dynamic companion constructor init sealed field property receiver param sparam lateinit data inline noinline tailrec external annotation crossinline const operator infix suspend actual expect setparam value"),types:b("Boolean Byte Character CharSequence Class ClassLoader Cloneable Comparable Compiler Double Exception Float Integer Long Math Number Object Package Pair Process Runtime Runnable SecurityManager Short StackTraceElement StrictMath String StringBuffer System Thread ThreadGroup ThreadLocal Throwable Triple Void Annotation Any BooleanArray ByteArray Char CharArray DeprecationLevel DoubleArray Enum FloatArray Function Int IntArray Lazy LazyThreadSafetyMode LongArray Nothing ShortArray Unit"),intendSwitch:!1,indentStatements:!1,multiLineStrings:!0,number:/^(?:0x[a-f\d_]+|0b[01_]+|(?:[\d_]+(\.\d+)?|\.\d+)(?:e[-+]?[\d_]+)?)(u|ll?|l|f)?/i,blockKeywords:b("catch class do else finally for if where try while enum"),defKeywords:b("class val var object interface fun"),atoms:b("true false null this"),hooks:{"@":function(m){return m.eatWhile(/[\w\$_]/),"meta"},"*":function(m,y){return y.prevToken=="."?"variable":"operator"},'"':function(m,y){return y.tokenize=d(m.match('""')),y.tokenize(m,y)},"/":function(m,y){return m.eat("*")?(y.tokenize=J(1),y.tokenize(m,y)):!1},indent:function(m,y,P,le){var p=P&&P.charAt(0);if((m.prevToken=="}"||m.prevToken==")")&&P=="")return m.indented;if(m.prevToken=="operator"&&P!="}"&&m.context.type!="}"||m.prevToken=="variable"&&p=="."||(m.prevToken=="}"||m.prevToken==")")&&p==".")return le*2+y.indented;if(y.align&&y.type=="}")return y.indented+(m.context.type==(P||"").charAt(0)?0:le)}},modeProps:{closeBrackets:{triples:'"'}}}),Ee(["x-shader/x-vertex","x-shader/x-fragment"],{name:"clike",keywords:b("sampler1D sampler2D sampler3D samplerCube sampler1DShadow sampler2DShadow const attribute uniform varying break continue discard return for while do if else struct in out inout"),types:b("float int bool void vec2 vec3 vec4 ivec2 ivec3 ivec4 bvec2 bvec3 bvec4 mat2 mat3 mat4"),blockKeywords:b("for while do if else struct"),builtin:b("radians degrees sin cos tan asin acos atan pow exp log exp2 sqrt inversesqrt abs sign floor ceil fract mod min max clamp mix step smoothstep length distance dot cross normalize ftransform faceforward reflect refract matrixCompMult lessThan lessThanEqual greaterThan greaterThanEqual equal notEqual any all not texture1D texture1DProj texture1DLod texture1DProjLod texture2D texture2DProj texture2DLod texture2DProjLod texture3D texture3DProj texture3DLod texture3DProjLod textureCube textureCubeLod shadow1D shadow2D shadow1DProj shadow2DProj shadow1DLod shadow2DLod shadow1DProjLod shadow2DProjLod dFdx dFdy fwidth noise1 noise2 noise3 noise4"),atoms:b("true false gl_FragColor gl_SecondaryColor gl_Normal gl_Vertex gl_MultiTexCoord0 gl_MultiTexCoord1 gl_MultiTexCoord2 gl_MultiTexCoord3 gl_MultiTexCoord4 gl_MultiTexCoord5 gl_MultiTexCoord6 gl_MultiTexCoord7 gl_FogCoord gl_PointCoord gl_Position gl_PointSize gl_ClipVertex gl_FrontColor gl_BackColor gl_FrontSecondaryColor gl_BackSecondaryColor gl_TexCoord gl_FogFragCoord gl_FragCoord gl_FrontFacing gl_FragData gl_FragDepth gl_ModelViewMatrix gl_ProjectionMatrix gl_ModelViewProjectionMatrix gl_TextureMatrix gl_NormalMatrix gl_ModelViewMatrixInverse gl_ProjectionMatrixInverse gl_ModelViewProjectionMatrixInverse gl_TextureMatrixTranspose gl_ModelViewMatrixInverseTranspose gl_ProjectionMatrixInverseTranspose gl_ModelViewProjectionMatrixInverseTranspose gl_TextureMatrixInverseTranspose gl_NormalScale gl_DepthRange gl_ClipPlane gl_Point gl_FrontMaterial gl_BackMaterial gl_LightSource gl_LightModel gl_FrontLightModelProduct gl_BackLightModelProduct gl_TextureColor gl_EyePlaneS gl_EyePlaneT gl_EyePlaneR gl_EyePlaneQ gl_FogParameters gl_MaxLights gl_MaxClipPlanes gl_MaxTextureUnits gl_MaxTextureCoords gl_MaxVertexAttribs gl_MaxVertexUniformComponents gl_MaxVaryingFloats gl_MaxVertexTextureImageUnits gl_MaxTextureImageUnits gl_MaxFragmentUniformComponents gl_MaxCombineTextureImageUnits gl_MaxDrawBuffers"),indentSwitch:!1,hooks:{"#":ne},modeProps:{fold:["brace","include"]}}),Ee("text/x-nesc",{name:"clike",keywords:b(_+" as atomic async call command component components configuration event generic implementation includes interface module new norace nx_struct nx_union post provides signal task uses abstract extends"),types:ke,blockKeywords:b(te),atoms:b("null true false"),hooks:{"#":ne},modeProps:{fold:["brace","include"]}}),Ee("text/x-objectivec",{name:"clike",keywords:b(_+" "+O),types:we,builtin:b(q),blockKeywords:b(te+" @synthesize @try @catch @finally @autoreleasepool @synchronized"),defKeywords:b(re+" @interface @implementation @protocol @class"),dontIndentStatements:/^@.*$/,typeFirstDefinitions:!0,atoms:b("YES NO NULL Nil nil true false nullptr"),isReservedIdentifier:Ae,hooks:{"#":ne,"*":se},modeProps:{fold:["brace","include"]}}),Ee("text/x-objectivec++",{name:"clike",keywords:b(_+" "+O+" "+ie),types:we,builtin:b(q),blockKeywords:b(te+" @synthesize @try @catch @finally @autoreleasepool @synchronized class try catch"),defKeywords:b(re+" @interface @implementation @protocol @class class namespace"),dontIndentStatements:/^@.*$|^template$/,typeFirstDefinitions:!0,atoms:b("YES NO NULL Nil nil true false nullptr"),isReservedIdentifier:Ae,hooks:{"#":ne,"*":se,u:de,U:de,L:de,R:de,0:ye,1:ye,2:ye,3:ye,4:ye,5:ye,6:ye,7:ye,8:ye,9:ye,token:function(m,y,P){if(P=="variable"&&m.peek()=="("&&(y.prevToken==";"||y.prevToken==null||y.prevToken=="}")&&ze(m.current()))return"def"}},namespaceSeparator:"::",modeProps:{fold:["brace","include"]}}),Ee("text/x-squirrel",{name:"clike",keywords:b("base break clone continue const default delete enum extends function in class foreach local resume return this throw typeof yield constructor instanceof static"),types:ke,blockKeywords:b("case catch class else for foreach if switch try while"),defKeywords:b("function local class"),typeFirstDefinitions:!0,atoms:b("true false null"),hooks:{"#":ne},modeProps:{fold:["brace","include"]}});var S=null;function w(m){return function(y,P){for(var le=!1,p,c=!1;!y.eol();){if(!le&&y.match('"')&&(m=="single"||y.match('""'))){c=!0;break}if(!le&&y.match("``")){S=w(m),c=!0;break}p=y.next(),le=m=="single"&&!le&&p=="\\"}return c&&(P.tokenize=null),"string"}}Ee("text/x-ceylon",{name:"clike",keywords:b("abstracts alias assembly assert assign break case catch class continue dynamic else exists extends finally for function given if import in interface is let module new nonempty object of out outer package return satisfies super switch then this throw try value void while"),types:function(m){var y=m.charAt(0);return y===y.toUpperCase()&&y!==y.toLowerCase()},blockKeywords:b("case catch class dynamic else finally for function if interface module new object switch try while"),defKeywords:b("class dynamic function interface module object package value"),builtin:b("abstract actual aliased annotation by default deprecated doc final formal late license native optional sealed see serializable shared suppressWarnings tagged throws variable"),isPunctuationChar:/[\[\]{}\(\),;\:\.`]/,isOperatorChar:/[+\-*&%=<>!?|^~:\/]/,numberStart:/[\d#$]/,number:/^(?:#[\da-fA-F_]+|\$[01_]+|[\d_]+[kMGTPmunpf]?|[\d_]+\.[\d_]+(?:[eE][-+]?\d+|[kMGTPmunpf]|)|)/i,multiLineStrings:!0,typeFirstDefinitions:!0,atoms:b("true false null larger smaller equal empty finished"),indentSwitch:!1,styleDefs:!1,hooks:{"@":function(m){return m.eatWhile(/[\w\$_]/),"meta"},'"':function(m,y){return y.tokenize=w(m.match('""')?"triple":"single"),y.tokenize(m,y)},"`":function(m,y){return!S||!m.match("`")?!1:(y.tokenize=S,S=null,y.tokenize(m,y))},"'":function(m){return m.eatWhile(/[\w\$_\xa1-\uffff]/),"atom"},token:function(m,y,P){if((P=="variable"||P=="type")&&y.prevToken==".")return"variable-2"}},modeProps:{fold:["brace","import"],closeBrackets:{triples:'"'}}})})}()),Ta.exports}ju();var Ca={exports:{}},Da={exports:{}},Ma;function Ku(){return Ma||(Ma=1,function(Et,zt){(function(C){C(It())})(function(C){C.modeInfo=[{name:"APL",mime:"text/apl",mode:"apl",ext:["dyalog","apl"]},{name:"PGP",mimes:["application/pgp","application/pgp-encrypted","application/pgp-keys","application/pgp-signature"],mode:"asciiarmor",ext:["asc","pgp","sig"]},{name:"ASN.1",mime:"text/x-ttcn-asn",mode:"asn.1",ext:["asn","asn1"]},{name:"Asterisk",mime:"text/x-asterisk",mode:"asterisk",file:/^extensions\.conf$/i},{name:"Brainfuck",mime:"text/x-brainfuck",mode:"brainfuck",ext:["b","bf"]},{name:"C",mime:"text/x-csrc",mode:"clike",ext:["c","h","ino"]},{name:"C++",mime:"text/x-c++src",mode:"clike",ext:["cpp","c++","cc","cxx","hpp","h++","hh","hxx"],alias:["cpp"]},{name:"Cobol",mime:"text/x-cobol",mode:"cobol",ext:["cob","cpy","cbl"]},{name:"C#",mime:"text/x-csharp",mode:"clike",ext:["cs"],alias:["csharp","cs"]},{name:"Clojure",mime:"text/x-clojure",mode:"clojure",ext:["clj","cljc","cljx"]},{name:"ClojureScript",mime:"text/x-clojurescript",mode:"clojure",ext:["cljs"]},{name:"Closure Stylesheets (GSS)",mime:"text/x-gss",mode:"css",ext:["gss"]},{name:"CMake",mime:"text/x-cmake",mode:"cmake",ext:["cmake","cmake.in"],file:/^CMakeLists\.txt$/},{name:"CoffeeScript",mimes:["application/vnd.coffeescript","text/coffeescript","text/x-coffeescript"],mode:"coffeescript",ext:["coffee"],alias:["coffee","coffee-script"]},{name:"Common Lisp",mime:"text/x-common-lisp",mode:"commonlisp",ext:["cl","lisp","el"],alias:["lisp"]},{name:"Cypher",mime:"application/x-cypher-query",mode:"cypher",ext:["cyp","cypher"]},{name:"Cython",mime:"text/x-cython",mode:"python",ext:["pyx","pxd","pxi"]},{name:"Crystal",mime:"text/x-crystal",mode:"crystal",ext:["cr"]},{name:"CSS",mime:"text/css",mode:"css",ext:["css"]},{name:"CQL",mime:"text/x-cassandra",mode:"sql",ext:["cql"]},{name:"D",mime:"text/x-d",mode:"d",ext:["d"]},{name:"Dart",mimes:["application/dart","text/x-dart"],mode:"dart",ext:["dart"]},{name:"diff",mime:"text/x-diff",mode:"diff",ext:["diff","patch"]},{name:"Django",mime:"text/x-django",mode:"django"},{name:"Dockerfile",mime:"text/x-dockerfile",mode:"dockerfile",file:/^Dockerfile$/},{name:"DTD",mime:"application/xml-dtd",mode:"dtd",ext:["dtd"]},{name:"Dylan",mime:"text/x-dylan",mode:"dylan",ext:["dylan","dyl","intr"]},{name:"EBNF",mime:"text/x-ebnf",mode:"ebnf"},{name:"ECL",mime:"text/x-ecl",mode:"ecl",ext:["ecl"]},{name:"edn",mime:"application/edn",mode:"clojure",ext:["edn"]},{name:"Eiffel",mime:"text/x-eiffel",mode:"eiffel",ext:["e"]},{name:"Elm",mime:"text/x-elm",mode:"elm",ext:["elm"]},{name:"Embedded JavaScript",mime:"application/x-ejs",mode:"htmlembedded",ext:["ejs"]},{name:"Embedded Ruby",mime:"application/x-erb",mode:"htmlembedded",ext:["erb"]},{name:"Erlang",mime:"text/x-erlang",mode:"erlang",ext:["erl"]},{name:"Esper",mime:"text/x-esper",mode:"sql"},{name:"Factor",mime:"text/x-factor",mode:"factor",ext:["factor"]},{name:"FCL",mime:"text/x-fcl",mode:"fcl"},{name:"Forth",mime:"text/x-forth",mode:"forth",ext:["forth","fth","4th"]},{name:"Fortran",mime:"text/x-fortran",mode:"fortran",ext:["f","for","f77","f90","f95"]},{name:"F#",mime:"text/x-fsharp",mode:"mllike",ext:["fs"],alias:["fsharp"]},{name:"Gas",mime:"text/x-gas",mode:"gas",ext:["s"]},{name:"Gherkin",mime:"text/x-feature",mode:"gherkin",ext:["feature"]},{name:"GitHub Flavored Markdown",mime:"text/x-gfm",mode:"gfm",file:/^(readme|contributing|history)\.md$/i},{name:"Go",mime:"text/x-go",mode:"go",ext:["go"]},{name:"Groovy",mime:"text/x-groovy",mode:"groovy",ext:["groovy","gradle"],file:/^Jenkinsfile$/},{name:"HAML",mime:"text/x-haml",mode:"haml",ext:["haml"]},{name:"Haskell",mime:"text/x-haskell",mode:"haskell",ext:["hs"]},{name:"Haskell (Literate)",mime:"text/x-literate-haskell",mode:"haskell-literate",ext:["lhs"]},{name:"Haxe",mime:"text/x-haxe",mode:"haxe",ext:["hx"]},{name:"HXML",mime:"text/x-hxml",mode:"haxe",ext:["hxml"]},{name:"ASP.NET",mime:"application/x-aspx",mode:"htmlembedded",ext:["aspx"],alias:["asp","aspx"]},{name:"HTML",mime:"text/html",mode:"htmlmixed",ext:["html","htm","handlebars","hbs"],alias:["xhtml"]},{name:"HTTP",mime:"message/http",mode:"http"},{name:"IDL",mime:"text/x-idl",mode:"idl",ext:["pro"]},{name:"Pug",mime:"text/x-pug",mode:"pug",ext:["jade","pug"],alias:["jade"]},{name:"Java",mime:"text/x-java",mode:"clike",ext:["java"]},{name:"Java Server Pages",mime:"application/x-jsp",mode:"htmlembedded",ext:["jsp"],alias:["jsp"]},{name:"JavaScript",mimes:["text/javascript","text/ecmascript","application/javascript","application/x-javascript","application/ecmascript"],mode:"javascript",ext:["js"],alias:["ecmascript","js","node"]},{name:"JSON",mimes:["application/json","application/x-json"],mode:"javascript",ext:["json","map"],alias:["json5"]},{name:"JSON-LD",mime:"application/ld+json",mode:"javascript",ext:["jsonld"],alias:["jsonld"]},{name:"JSX",mime:"text/jsx",mode:"jsx",ext:["jsx"]},{name:"Jinja2",mime:"text/jinja2",mode:"jinja2",ext:["j2","jinja","jinja2"]},{name:"Julia",mime:"text/x-julia",mode:"julia",ext:["jl"],alias:["jl"]},{name:"Kotlin",mime:"text/x-kotlin",mode:"clike",ext:["kt"]},{name:"LESS",mime:"text/x-less",mode:"css",ext:["less"]},{name:"LiveScript",mime:"text/x-livescript",mode:"livescript",ext:["ls"],alias:["ls"]},{name:"Lua",mime:"text/x-lua",mode:"lua",ext:["lua"]},{name:"Markdown",mime:"text/x-markdown",mode:"markdown",ext:["markdown","md","mkd"]},{name:"mIRC",mime:"text/mirc",mode:"mirc"},{name:"MariaDB SQL",mime:"text/x-mariadb",mode:"sql"},{name:"Mathematica",mime:"text/x-mathematica",mode:"mathematica",ext:["m","nb","wl","wls"]},{name:"Modelica",mime:"text/x-modelica",mode:"modelica",ext:["mo"]},{name:"MUMPS",mime:"text/x-mumps",mode:"mumps",ext:["mps"]},{name:"MS SQL",mime:"text/x-mssql",mode:"sql"},{name:"mbox",mime:"application/mbox",mode:"mbox",ext:["mbox"]},{name:"MySQL",mime:"text/x-mysql",mode:"sql"},{name:"Nginx",mime:"text/x-nginx-conf",mode:"nginx",file:/nginx.*\.conf$/i},{name:"NSIS",mime:"text/x-nsis",mode:"nsis",ext:["nsh","nsi"]},{name:"NTriples",mimes:["application/n-triples","application/n-quads","text/n-triples"],mode:"ntriples",ext:["nt","nq"]},{name:"Objective-C",mime:"text/x-objectivec",mode:"clike",ext:["m"],alias:["objective-c","objc"]},{name:"Objective-C++",mime:"text/x-objectivec++",mode:"clike",ext:["mm"],alias:["objective-c++","objc++"]},{name:"OCaml",mime:"text/x-ocaml",mode:"mllike",ext:["ml","mli","mll","mly"]},{name:"Octave",mime:"text/x-octave",mode:"octave",ext:["m"]},{name:"Oz",mime:"text/x-oz",mode:"oz",ext:["oz"]},{name:"Pascal",mime:"text/x-pascal",mode:"pascal",ext:["p","pas"]},{name:"PEG.js",mime:"null",mode:"pegjs",ext:["jsonld"]},{name:"Perl",mime:"text/x-perl",mode:"perl",ext:["pl","pm"]},{name:"PHP",mimes:["text/x-php","application/x-httpd-php","application/x-httpd-php-open"],mode:"php",ext:["php","php3","php4","php5","php7","phtml"]},{name:"Pig",mime:"text/x-pig",mode:"pig",ext:["pig"]},{name:"Plain Text",mime:"text/plain",mode:"null",ext:["txt","text","conf","def","list","log"]},{name:"PLSQL",mime:"text/x-plsql",mode:"sql",ext:["pls"]},{name:"PostgreSQL",mime:"text/x-pgsql",mode:"sql"},{name:"PowerShell",mime:"application/x-powershell",mode:"powershell",ext:["ps1","psd1","psm1"]},{name:"Properties files",mime:"text/x-properties",mode:"properties",ext:["properties","ini","in"],alias:["ini","properties"]},{name:"ProtoBuf",mime:"text/x-protobuf",mode:"protobuf",ext:["proto"]},{name:"Python",mime:"text/x-python",mode:"python",ext:["BUILD","bzl","py","pyw"],file:/^(BUCK|BUILD)$/},{name:"Puppet",mime:"text/x-puppet",mode:"puppet",ext:["pp"]},{name:"Q",mime:"text/x-q",mode:"q",ext:["q"]},{name:"R",mime:"text/x-rsrc",mode:"r",ext:["r","R"],alias:["rscript"]},{name:"reStructuredText",mime:"text/x-rst",mode:"rst",ext:["rst"],alias:["rst"]},{name:"RPM Changes",mime:"text/x-rpm-changes",mode:"rpm"},{name:"RPM Spec",mime:"text/x-rpm-spec",mode:"rpm",ext:["spec"]},{name:"Ruby",mime:"text/x-ruby",mode:"ruby",ext:["rb"],alias:["jruby","macruby","rake","rb","rbx"]},{name:"Rust",mime:"text/x-rustsrc",mode:"rust",ext:["rs"]},{name:"SAS",mime:"text/x-sas",mode:"sas",ext:["sas"]},{name:"Sass",mime:"text/x-sass",mode:"sass",ext:["sass"]},{name:"Scala",mime:"text/x-scala",mode:"clike",ext:["scala"]},{name:"Scheme",mime:"text/x-scheme",mode:"scheme",ext:["scm","ss"]},{name:"SCSS",mime:"text/x-scss",mode:"css",ext:["scss"]},{name:"Shell",mimes:["text/x-sh","application/x-sh"],mode:"shell",ext:["sh","ksh","bash"],alias:["bash","sh","zsh"],file:/^PKGBUILD$/},{name:"Sieve",mime:"application/sieve",mode:"sieve",ext:["siv","sieve"]},{name:"Slim",mimes:["text/x-slim","application/x-slim"],mode:"slim",ext:["slim"]},{name:"Smalltalk",mime:"text/x-stsrc",mode:"smalltalk",ext:["st"]},{name:"Smarty",mime:"text/x-smarty",mode:"smarty",ext:["tpl"]},{name:"Solr",mime:"text/x-solr",mode:"solr"},{name:"SML",mime:"text/x-sml",mode:"mllike",ext:["sml","sig","fun","smackspec"]},{name:"Soy",mime:"text/x-soy",mode:"soy",ext:["soy"],alias:["closure template"]},{name:"SPARQL",mime:"application/sparql-query",mode:"sparql",ext:["rq","sparql"],alias:["sparul"]},{name:"Spreadsheet",mime:"text/x-spreadsheet",mode:"spreadsheet",alias:["excel","formula"]},{name:"SQL",mime:"text/x-sql",mode:"sql",ext:["sql"]},{name:"SQLite",mime:"text/x-sqlite",mode:"sql"},{name:"Squirrel",mime:"text/x-squirrel",mode:"clike",ext:["nut"]},{name:"Stylus",mime:"text/x-styl",mode:"stylus",ext:["styl"]},{name:"Swift",mime:"text/x-swift",mode:"swift",ext:["swift"]},{name:"sTeX",mime:"text/x-stex",mode:"stex"},{name:"LaTeX",mime:"text/x-latex",mode:"stex",ext:["text","ltx","tex"],alias:["tex"]},{name:"SystemVerilog",mime:"text/x-systemverilog",mode:"verilog",ext:["v","sv","svh"]},{name:"Tcl",mime:"text/x-tcl",mode:"tcl",ext:["tcl"]},{name:"Textile",mime:"text/x-textile",mode:"textile",ext:["textile"]},{name:"TiddlyWiki",mime:"text/x-tiddlywiki",mode:"tiddlywiki"},{name:"Tiki wiki",mime:"text/tiki",mode:"tiki"},{name:"TOML",mime:"text/x-toml",mode:"toml",ext:["toml"]},{name:"Tornado",mime:"text/x-tornado",mode:"tornado"},{name:"troff",mime:"text/troff",mode:"troff",ext:["1","2","3","4","5","6","7","8","9"]},{name:"TTCN",mime:"text/x-ttcn",mode:"ttcn",ext:["ttcn","ttcn3","ttcnpp"]},{name:"TTCN_CFG",mime:"text/x-ttcn-cfg",mode:"ttcn-cfg",ext:["cfg"]},{name:"Turtle",mime:"text/turtle",mode:"turtle",ext:["ttl"]},{name:"TypeScript",mime:"application/typescript",mode:"javascript",ext:["ts"],alias:["ts"]},{name:"TypeScript-JSX",mime:"text/typescript-jsx",mode:"jsx",ext:["tsx"],alias:["tsx"]},{name:"Twig",mime:"text/x-twig",mode:"twig"},{name:"Web IDL",mime:"text/x-webidl",mode:"webidl",ext:["webidl"]},{name:"VB.NET",mime:"text/x-vb",mode:"vb",ext:["vb"]},{name:"VBScript",mime:"text/vbscript",mode:"vbscript",ext:["vbs"]},{name:"Velocity",mime:"text/velocity",mode:"velocity",ext:["vtl"]},{name:"Verilog",mime:"text/x-verilog",mode:"verilog",ext:["v"]},{name:"VHDL",mime:"text/x-vhdl",mode:"vhdl",ext:["vhd","vhdl"]},{name:"Vue.js Component",mimes:["script/x-vue","text/x-vue"],mode:"vue",ext:["vue"]},{name:"XML",mimes:["application/xml","text/xml"],mode:"xml",ext:["xml","xsl","xsd","svg"],alias:["rss","wsdl","xsd"]},{name:"XQuery",mime:"application/xquery",mode:"xquery",ext:["xy","xquery"]},{name:"Yacas",mime:"text/x-yacas",mode:"yacas",ext:["ys"]},{name:"YAML",mimes:["text/x-yaml","text/yaml"],mode:"yaml",ext:["yaml","yml"],alias:["yml"]},{name:"Z80",mime:"text/x-z80",mode:"z80",ext:["z80"]},{name:"mscgen",mime:"text/x-mscgen",mode:"mscgen",ext:["mscgen","mscin","msc"]},{name:"xu",mime:"text/x-xu",mode:"mscgen",ext:["xu"]},{name:"msgenny",mime:"text/x-msgenny",mode:"mscgen",ext:["msgenny"]},{name:"WebAssembly",mime:"text/webassembly",mode:"wast",ext:["wat","wast"]}];for(var De=0;De-1&&K.substring(b+1,K.length);if(N)return C.findModeByExtension(N)},C.findModeByName=function(K){K=K.toLowerCase();for(var $=0;$` "'(~:]+/,ke=/^(~~~+|```+)[ \t]*([\w\/+#-]*)[^\n`]*$/,we=/^\s*\[[^\]]+?\]:.*$/,te=/[!"#$%&'()*+,\-.\/:;<=>?@\[\\\]^_`{|}~\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u0AF0\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166D\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E42\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC9\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDF3C-\uDF3E]|\uD809[\uDC70-\uDC74]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]/,re=" ";function ne(p,c,Y){return c.f=c.inline=Y,Y(p,c)}function se(p,c,Y){return c.f=c.block=Y,Y(p,c)}function Ae(p){return!p||!/\S/.test(p.string)}function ye(p){if(p.linkTitle=!1,p.linkHref=!1,p.linkText=!1,p.em=!1,p.strong=!1,p.strikethrough=!1,p.quote=0,p.indentedCode=!1,p.f==ze){var c=$;if(!c){var Y=C.innerMode(K,p.htmlState);c=Y.mode.name=="xml"&&Y.state.tagStart===null&&!Y.state.context&&Y.state.tokenize.isInText}c&&(p.f=D,p.block=de,p.htmlState=null)}return p.trailingSpace=0,p.trailingSpaceNewLine=!1,p.prevLine=p.thisLine,p.thisLine={stream:null},null}function de(p,c){var Y=p.column()===c.indentation,xe=Ae(c.prevLine.stream),j=c.indentedCode,ue=c.prevLine.hr,Te=c.list!==!1,Le=(c.listStack[c.listStack.length-1]||0)+3;c.indentedCode=!1;var be=c.indentation;if(c.indentationDiff===null&&(c.indentationDiff=c.indentation,Te)){for(c.list=null;be=4&&(j||c.prevLine.fencedCodeEnd||c.prevLine.header||xe))return p.skipToEnd(),c.indentedCode=!0,b.code;if(p.eatSpace())return null;if(Y&&c.indentation<=Le&&(qe=p.match(q))&&qe[1].length<=6)return c.quote=0,c.header=qe[1].length,c.thisLine.header=!0,I.highlightFormatting&&(c.formatting="header"),c.f=c.inline,H(c);if(c.indentation<=Le&&p.eat(">"))return c.quote=Y?1:c.quote+1,I.highlightFormatting&&(c.formatting="quote"),p.eatSpace(),H(c);if(!Ne&&!c.setext&&Y&&c.indentation<=Le&&(qe=p.match(ie))){var Ve=qe[1]?"ol":"ul";return c.indentation=be+p.current().length,c.list=!0,c.quote=0,c.listStack.push(c.indentation),c.em=!1,c.strong=!1,c.code=!1,c.strikethrough=!1,I.taskLists&&p.match(O,!1)&&(c.taskList=!0),c.f=c.inline,I.highlightFormatting&&(c.formatting=["list","list-"+Ve]),H(c)}else{if(Y&&c.indentation<=Le&&(qe=p.match(ke,!0)))return c.quote=0,c.fencedEndRE=new RegExp(qe[1]+"+ *$"),c.localMode=I.fencedCodeBlockHighlighting&&V(qe[2]||I.fencedCodeBlockDefaultMode),c.localMode&&(c.localState=C.startState(c.localMode)),c.f=c.block=fe,I.highlightFormatting&&(c.formatting="code-block"),c.code=-1,H(c);if(c.setext||(!oe||!Te)&&!c.quote&&c.list===!1&&!c.code&&!Ne&&!we.test(p.string)&&(qe=p.lookAhead(1))&&(qe=qe.match(z)))return c.setext?(c.header=c.setext,c.setext=0,p.skipToEnd(),I.highlightFormatting&&(c.formatting="header")):(c.header=qe[0].charAt(0)=="="?1:2,c.setext=c.header),c.thisLine.header=!0,c.f=c.inline,H(c);if(Ne)return p.skipToEnd(),c.hr=!0,c.thisLine.hr=!0,b.hr;if(p.peek()==="[")return ne(p,c,m)}return ne(p,c,c.inline)}function ze(p,c){var Y=K.token(p,c.htmlState);if(!$){var xe=C.innerMode(K,c.htmlState);(xe.mode.name=="xml"&&xe.state.tagStart===null&&!xe.state.context&&xe.state.tokenize.isInText||c.md_inside&&p.current().indexOf(">")>-1)&&(c.f=D,c.block=de,c.htmlState=null)}return Y}function fe(p,c){var Y=c.listStack[c.listStack.length-1]||0,xe=c.indentation=p.quote?c.push(b.formatting+"-"+p.formatting[Y]+"-"+p.quote):c.push("error"))}if(p.taskOpen)return c.push("meta"),c.length?c.join(" "):null;if(p.taskClosed)return c.push("property"),c.length?c.join(" "):null;if(p.linkHref?c.push(b.linkHref,"url"):(p.strong&&c.push(b.strong),p.em&&c.push(b.em),p.strikethrough&&c.push(b.strikethrough),p.emoji&&c.push(b.emoji),p.linkText&&c.push(b.linkText),p.code&&c.push(b.code),p.image&&c.push(b.image),p.imageAltText&&c.push(b.imageAltText,"link"),p.imageMarker&&c.push(b.imageMarker)),p.header&&c.push(b.header,b.header+"-"+p.header),p.quote&&(c.push(b.quote),!I.maxBlockquoteDepth||I.maxBlockquoteDepth>=p.quote?c.push(b.quote+"-"+p.quote):c.push(b.quote+"-"+I.maxBlockquoteDepth)),p.list!==!1){var xe=(p.listStack.length-1)%3;xe?xe===1?c.push(b.list2):c.push(b.list3):c.push(b.list1)}return p.trailingSpaceNewLine?c.push("trailing-space-new-line"):p.trailingSpace&&c.push("trailing-space-"+(p.trailingSpace%2?"a":"b")),c.length?c.join(" "):null}function Ee(p,c){if(p.match(X,!0))return H(c)}function D(p,c){var Y=c.text(p,c);if(typeof Y<"u")return Y;if(c.list)return c.list=null,H(c);if(c.taskList){var xe=p.match(O,!0)[1]===" ";return xe?c.taskOpen=!0:c.taskClosed=!0,I.highlightFormatting&&(c.formatting="task"),c.taskList=!1,H(c)}if(c.taskOpen=!1,c.taskClosed=!1,c.header&&p.match(/^#+$/,!0))return I.highlightFormatting&&(c.formatting="header"),H(c);var j=p.next();if(c.linkTitle){c.linkTitle=!1;var ue=j;j==="("&&(ue=")"),ue=(ue+"").replace(/([.?*+^\[\]\\(){}|-])/g,"\\$1");var Te="^\\s*(?:[^"+ue+"\\\\]+|\\\\\\\\|\\\\.)"+ue;if(p.match(new RegExp(Te),!0))return b.linkHref}if(j==="`"){var Le=c.formatting;I.highlightFormatting&&(c.formatting="code"),p.eatWhile("`");var be=p.current().length;if(c.code==0&&(!c.quote||be==1))return c.code=be,H(c);if(be==c.code){var oe=H(c);return c.code=0,oe}else return c.formatting=Le,H(c)}else if(c.code)return H(c);if(j==="\\"&&(p.next(),I.highlightFormatting)){var Ne=H(c),qe=b.formatting+"-escape";return Ne?Ne+" "+qe:qe}if(j==="!"&&p.match(/\[[^\]]*\] ?(?:\(|\[)/,!1))return c.imageMarker=!0,c.image=!0,I.highlightFormatting&&(c.formatting="image"),H(c);if(j==="["&&c.imageMarker&&p.match(/[^\]]*\](\(.*?\)| ?\[.*?\])/,!1))return c.imageMarker=!1,c.imageAltText=!0,I.highlightFormatting&&(c.formatting="image"),H(c);if(j==="]"&&c.imageAltText){I.highlightFormatting&&(c.formatting="image");var Ne=H(c);return c.imageAltText=!1,c.image=!1,c.inline=c.f=d,Ne}if(j==="["&&!c.image)return c.linkText&&p.match(/^.*?\]/)||(c.linkText=!0,I.highlightFormatting&&(c.formatting="link")),H(c);if(j==="]"&&c.linkText){I.highlightFormatting&&(c.formatting="link");var Ne=H(c);return c.linkText=!1,c.inline=c.f=p.match(/\(.*?\)| ?\[.*?\]/,!1)?d:D,Ne}if(j==="<"&&p.match(/^(https?|ftps?):\/\/(?:[^\\>]|\\.)+>/,!1)){c.f=c.inline=J,I.highlightFormatting&&(c.formatting="link");var Ne=H(c);return Ne?Ne+=" ":Ne="",Ne+b.linkInline}if(j==="<"&&p.match(/^[^> \\]+@(?:[^\\>]|\\.)+>/,!1)){c.f=c.inline=J,I.highlightFormatting&&(c.formatting="link");var Ne=H(c);return Ne?Ne+=" ":Ne="",Ne+b.linkEmail}if(I.xml&&j==="<"&&p.match(/^(!--|\?|!\[CDATA\[|[a-z][a-z0-9-]*(?:\s+[a-z_:.\-]+(?:\s*=\s*[^>]+)?)*\s*(?:>|$))/i,!1)){var Ve=p.string.indexOf(">",p.pos);if(Ve!=-1){var ct=p.string.substring(p.start,Ve);/markdown\s*=\s*('|"){0,1}1('|"){0,1}/.test(ct)&&(c.md_inside=!0)}return p.backUp(1),c.htmlState=C.startState(K),se(p,c,ze)}if(I.xml&&j==="<"&&p.match(/^\/\w*?>/))return c.md_inside=!1,"tag";if(j==="*"||j==="_"){for(var Oe=1,Re=p.pos==1?" ":p.string.charAt(p.pos-2);Oe<3&&p.eat(j);)Oe++;var Ue=p.peek()||" ",et=!/\s/.test(Ue)&&(!te.test(Ue)||/\s/.test(Re)||te.test(Re)),ge=!/\s/.test(Re)&&(!te.test(Re)||/\s/.test(Ue)||te.test(Ue)),Pe=null,T=null;if(Oe%2&&(!c.em&&et&&(j==="*"||!ge||te.test(Re))?Pe=!0:c.em==j&&ge&&(j==="*"||!et||te.test(Ue))&&(Pe=!1)),Oe>1&&(!c.strong&&et&&(j==="*"||!ge||te.test(Re))?T=!0:c.strong==j&&ge&&(j==="*"||!et||te.test(Ue))&&(T=!1)),T!=null||Pe!=null){I.highlightFormatting&&(c.formatting=Pe==null?"strong":T==null?"em":"strong em"),Pe===!0&&(c.em=j),T===!0&&(c.strong=j);var oe=H(c);return Pe===!1&&(c.em=!1),T===!1&&(c.strong=!1),oe}}else if(j===" "&&(p.eat("*")||p.eat("_"))){if(p.peek()===" ")return H(c);p.backUp(1)}if(I.strikethrough){if(j==="~"&&p.eatWhile(j)){if(c.strikethrough){I.highlightFormatting&&(c.formatting="strikethrough");var oe=H(c);return c.strikethrough=!1,oe}else if(p.match(/^[^\s]/,!1))return c.strikethrough=!0,I.highlightFormatting&&(c.formatting="strikethrough"),H(c)}else if(j===" "&&p.match("~~",!0)){if(p.peek()===" ")return H(c);p.backUp(2)}}if(I.emoji&&j===":"&&p.match(/^(?:[a-z_\d+][a-z_\d+-]*|\-[a-z_\d+][a-z_\d+-]*):/)){c.emoji=!0,I.highlightFormatting&&(c.formatting="emoji");var B=H(c);return c.emoji=!1,B}return j===" "&&(p.match(/^ +$/,!1)?c.trailingSpace++:c.trailingSpace&&(c.trailingSpaceNewLine=!0)),H(c)}function J(p,c){var Y=p.next();if(Y===">"){c.f=c.inline=D,I.highlightFormatting&&(c.formatting="link");var xe=H(c);return xe?xe+=" ":xe="",xe+b.linkInline}return p.match(/^[^>]+/,!0),b.linkInline}function d(p,c){if(p.eatSpace())return null;var Y=p.next();return Y==="("||Y==="["?(c.f=c.inline=w(Y==="("?")":"]"),I.highlightFormatting&&(c.formatting="link-string"),c.linkHref=!0,H(c)):"error"}var S={")":/^(?:[^\\\(\)]|\\.|\((?:[^\\\(\)]|\\.)*\))*?(?=\))/,"]":/^(?:[^\\\[\]]|\\.|\[(?:[^\\\[\]]|\\.)*\])*?(?=\])/};function w(p){return function(c,Y){var xe=c.next();if(xe===p){Y.f=Y.inline=D,I.highlightFormatting&&(Y.formatting="link-string");var j=H(Y);return Y.linkHref=!1,j}return c.match(S[p]),Y.linkHref=!0,H(Y)}}function m(p,c){return p.match(/^([^\]\\]|\\.)*\]:/,!1)?(c.f=y,p.next(),I.highlightFormatting&&(c.formatting="link"),c.linkText=!0,H(c)):ne(p,c,D)}function y(p,c){if(p.match("]:",!0)){c.f=c.inline=P,I.highlightFormatting&&(c.formatting="link");var Y=H(c);return c.linkText=!1,Y}return p.match(/^([^\]\\]|\\.)+/,!0),b.linkText}function P(p,c){return p.eatSpace()?null:(p.match(/^[^\s]+/,!0),p.peek()===void 0?c.linkTitle=!0:p.match(/^(?:\s+(?:"(?:[^"\\]|\\.)+"|'(?:[^'\\]|\\.)+'|\((?:[^)\\]|\\.)+\)))?/,!0),c.f=c.inline=D,b.linkHref+" url")}var le={startState:function(){return{f:de,prevLine:{stream:null},thisLine:{stream:null},block:de,htmlState:null,indentation:0,inline:D,text:Ee,formatting:!1,linkText:!1,linkHref:!1,linkTitle:!1,code:0,em:!1,strong:!1,header:0,setext:0,hr:!1,taskList:!1,list:!1,listStack:[],quote:0,trailingSpace:0,trailingSpaceNewLine:!1,strikethrough:!1,emoji:!1,fencedEndRE:null}},copyState:function(p){return{f:p.f,prevLine:p.prevLine,thisLine:p.thisLine,block:p.block,htmlState:p.htmlState&&C.copyState(K,p.htmlState),indentation:p.indentation,localMode:p.localMode,localState:p.localMode?C.copyState(p.localMode,p.localState):null,inline:p.inline,text:p.text,formatting:!1,linkText:p.linkText,linkTitle:p.linkTitle,linkHref:p.linkHref,code:p.code,em:p.em,strong:p.strong,strikethrough:p.strikethrough,emoji:p.emoji,header:p.header,setext:p.setext,hr:p.hr,taskList:p.taskList,list:p.list,listStack:p.listStack.slice(0),quote:p.quote,indentedCode:p.indentedCode,trailingSpace:p.trailingSpace,trailingSpaceNewLine:p.trailingSpaceNewLine,md_inside:p.md_inside,fencedEndRE:p.fencedEndRE}},token:function(p,c){if(c.formatting=!1,p!=c.thisLine.stream){if(c.header=0,c.hr=!1,p.match(/^\s*$/,!0))return ye(c),null;if(c.prevLine=c.thisLine,c.thisLine={stream:p},c.taskList=!1,c.trailingSpace=0,c.trailingSpaceNewLine=!1,!c.localState&&(c.f=c.block,c.f!=ze)){var Y=p.match(/^\s*/,!0)[0].replace(/\t/g,re).length;if(c.indentation=Y,c.indentationDiff=null,Y>0)return null}}return c.f(p,c)},innerMode:function(p){return p.block==ze?{state:p.htmlState,mode:K}:p.localState?{state:p.localState,mode:p.localMode}:{state:p,mode:le}},indent:function(p,c,Y){return p.block==ze&&K.indent?K.indent(p.htmlState,c,Y):p.localState&&p.localMode.indent?p.localMode.indent(p.localState,c,Y):C.Pass},blankLine:ye,getType:H,blockCommentStart:"",closeBrackets:"()[]{}''\"\"``",fold:"markdown"};return le},"xml"),C.defineMIME("text/markdown","markdown"),C.defineMIME("text/x-markdown","markdown")})}()),Ca.exports}Uu();var Aa={exports:{}},Ea;function Gu(){return Ea||(Ea=1,function(Et,zt){(function(C){C(It())})(function(C){C.defineOption("placeholder","",function(N,_,ie){var O=ie&&ie!=C.Init;if(_&&!O)N.on("blur",$),N.on("change",V),N.on("swapDoc",V),C.on(N.getInputField(),"compositionupdate",N.state.placeholderCompose=function(){K(N)}),V(N);else if(!_&&O){N.off("blur",$),N.off("change",V),N.off("swapDoc",V),C.off(N.getInputField(),"compositionupdate",N.state.placeholderCompose),De(N);var q=N.getWrapperElement();q.className=q.className.replace(" CodeMirror-empty","")}_&&!N.hasFocus()&&$(N)});function De(N){N.state.placeholder&&(N.state.placeholder.parentNode.removeChild(N.state.placeholder),N.state.placeholder=null)}function I(N){De(N);var _=N.state.placeholder=document.createElement("pre");_.style.cssText="height: 0; overflow: visible",_.style.direction=N.getOption("direction"),_.className="CodeMirror-placeholder CodeMirror-line-like";var ie=N.getOption("placeholder");typeof ie=="string"&&(ie=document.createTextNode(ie)),_.appendChild(ie),N.display.lineSpace.insertBefore(_,N.display.lineSpace.firstChild)}function K(N){setTimeout(function(){var _=!1;if(N.lineCount()==1){var ie=N.getInputField();_=ie.nodeName=="TEXTAREA"?!N.getLine(0).length:!/[^\u200b]/.test(ie.querySelector(".CodeMirror-line").textContent)}_?I(N):De(N)},20)}function $(N){b(N)&&I(N)}function V(N){var _=N.getWrapperElement(),ie=b(N);_.className=_.className.replace(" CodeMirror-empty","")+(ie?" CodeMirror-empty":""),ie?I(N):De(N)}function b(N){return N.lineCount()===1&&N.getLine(0)===""}})}()),Aa.exports}Gu();var Na={exports:{}},Oa;function Xu(){return Oa||(Oa=1,function(Et,zt){(function(C){C(It())})(function(C){C.defineSimpleMode=function(O,q){C.defineMode(O,function(z){return C.simpleMode(z,q)})},C.simpleMode=function(O,q){De(q,"start");var z={},X=q.meta||{},ke=!1;for(var we in q)if(we!=X&&q.hasOwnProperty(we))for(var te=z[we]=[],re=q[we],ne=0;ne2&&se.token&&typeof se.token!="string"){for(var de=2;de-1)return C.Pass;var we=z.indent.length-1,te=O[z.state];e:for(;;){for(var re=0;re$.keyCol)return K.skipToEnd(),"string";if($.literal&&($.literal=!1),K.sol()){if($.keyCol=0,$.pair=!1,$.pairStart=!1,K.match("---")||K.match("..."))return"def";if(K.match(/\s*-\s+/))return"meta"}if(K.match(/^(\{|\}|\[|\])/))return V=="{"?$.inlinePairs++:V=="}"?$.inlinePairs--:V=="["?$.inlineList++:$.inlineList--,"meta";if($.inlineList>0&&!b&&V==",")return K.next(),"meta";if($.inlinePairs>0&&!b&&V==",")return $.keyCol=0,$.pair=!1,$.pairStart=!1,K.next(),"meta";if($.pairStart){if(K.match(/^\s*(\||\>)\s*/))return $.literal=!0,"meta";if(K.match(/^\s*(\&|\*)[a-z0-9\._-]+\b/i))return"variable-2";if($.inlinePairs==0&&K.match(/^\s*-?[0-9\.\,]+\s?$/)||$.inlinePairs>0&&K.match(/^\s*-?[0-9\.\,]+\s?(?=(,|}))/))return"number";if(K.match(I))return"keyword"}return!$.pair&&K.match(/^\s*(?:[,\[\]{}&*!|>'"%@`][^\s'":]|[^\s,\[\]{}#&*!|>'"%@`])[^#:]*(?=:($|\s))/)?($.pair=!0,$.keyCol=K.indentation(),"atom"):$.pair&&K.match(/^:\s*/)?($.pairStart=!0,"meta"):($.pairStart=!1,$.escaped=V=="\\",K.next(),null)},startState:function(){return{pair:!1,pairStart:!1,keyCol:0,inlinePairs:0,inlineList:0,literal:!1,escaped:!1}},lineComment:"#",fold:"indent"}}),C.defineMIME("text/x-yaml","yaml"),C.defineMIME("text/yaml","yaml")})}()),Pa.exports}Yu();export{Ju as default}; diff --git a/reports/html/trace/assets/defaultSettingsView-CUd-tHFm.js b/reports/html/trace/assets/defaultSettingsView-CUd-tHFm.js deleted file mode 100644 index e5aff9c..0000000 --- a/reports/html/trace/assets/defaultSettingsView-CUd-tHFm.js +++ /dev/null @@ -1,256 +0,0 @@ -const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["./codeMirrorModule-rKSJ91kC.js","../codeMirrorModule.C3UTv-Ge.css"])))=>i.map(i=>d[i]); -var p0=Object.defineProperty;var m0=(t,e,n)=>e in t?p0(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n;var Ee=(t,e,n)=>m0(t,typeof e!="symbol"?e+"":e,n);(function(){const e=document.createElement("link").relList;if(e&&e.supports&&e.supports("modulepreload"))return;for(const o of document.querySelectorAll('link[rel="modulepreload"]'))r(o);new MutationObserver(o=>{for(const l of o)if(l.type==="childList")for(const c of l.addedNodes)c.tagName==="LINK"&&c.rel==="modulepreload"&&r(c)}).observe(document,{childList:!0,subtree:!0});function n(o){const l={};return o.integrity&&(l.integrity=o.integrity),o.referrerPolicy&&(l.referrerPolicy=o.referrerPolicy),o.crossOrigin==="use-credentials"?l.credentials="include":o.crossOrigin==="anonymous"?l.credentials="omit":l.credentials="same-origin",l}function r(o){if(o.ep)return;o.ep=!0;const l=n(o);fetch(o.href,l)}})();function g0(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var au={exports:{}},bi={},cu={exports:{}},me={};/** - * @license React - * react.production.min.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. - */var Ep;function y0(){if(Ep)return me;Ep=1;var t=Symbol.for("react.element"),e=Symbol.for("react.portal"),n=Symbol.for("react.fragment"),r=Symbol.for("react.strict_mode"),o=Symbol.for("react.profiler"),l=Symbol.for("react.provider"),c=Symbol.for("react.context"),u=Symbol.for("react.forward_ref"),d=Symbol.for("react.suspense"),p=Symbol.for("react.memo"),g=Symbol.for("react.lazy"),y=Symbol.iterator;function v(I){return I===null||typeof I!="object"?null:(I=y&&I[y]||I["@@iterator"],typeof I=="function"?I:null)}var S={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},k=Object.assign,_={};function E(I,U,de){this.props=I,this.context=U,this.refs=_,this.updater=de||S}E.prototype.isReactComponent={},E.prototype.setState=function(I,U){if(typeof I!="object"&&typeof I!="function"&&I!=null)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,I,U,"setState")},E.prototype.forceUpdate=function(I){this.updater.enqueueForceUpdate(this,I,"forceUpdate")};function C(){}C.prototype=E.prototype;function A(I,U,de){this.props=I,this.context=U,this.refs=_,this.updater=de||S}var B=A.prototype=new C;B.constructor=A,k(B,E.prototype),B.isPureReactComponent=!0;var R=Array.isArray,D=Object.prototype.hasOwnProperty,z={current:null},H={key:!0,ref:!0,__self:!0,__source:!0};function F(I,U,de){var fe,pe={},ye=null,Se=null;if(U!=null)for(fe in U.ref!==void 0&&(Se=U.ref),U.key!==void 0&&(ye=""+U.key),U)D.call(U,fe)&&!H.hasOwnProperty(fe)&&(pe[fe]=U[fe]);var he=arguments.length-2;if(he===1)pe.children=de;else if(1{let c=!1;return t().then(u=>{c||l(u)}),()=>{c=!0}},e),o}function Ar(){const t=Mt.useRef(null),[e,n]=Mt.useState(new DOMRect(0,0,10,10));return Mt.useLayoutEffect(()=>{const r=t.current;if(!r)return;const o=r.getBoundingClientRect();n(new DOMRect(0,0,o.width,o.height));const l=new ResizeObserver(c=>{const u=c[c.length-1];u&&u.contentRect&&n(u.contentRect)});return l.observe(r),()=>l.disconnect()},[t]),[e,t]}function pt(t){if(t<0||!isFinite(t))return"-";if(t===0)return"0";if(t<1e3)return t.toFixed(0)+"ms";const e=t/1e3;if(e<60)return e.toFixed(1)+"s";const n=e/60;if(n<60)return n.toFixed(1)+"m";const r=n/60;return r<24?r.toFixed(1)+"h":(r/24).toFixed(1)+"d"}function S0(t){if(t<0||!isFinite(t))return"-";if(t===0)return"0";if(t<1e3)return t.toFixed(0);const e=t/1024;if(e<1e3)return e.toFixed(1)+"K";const n=e/1024;return n<1e3?n.toFixed(1)+"M":(n/1024).toFixed(1)+"G"}function jm(t,e,n,r,o){let l=0,c=t.length;for(;l>1;n(e,t[u])>=0?l=u+1:c=u}return c}function Cp(t){const e=document.createElement("textarea");e.style.position="absolute",e.style.zIndex="-1000",e.value=t,document.body.appendChild(e),e.select(),document.execCommand("copy"),e.remove()}function Ts(t,e){t&&(e=wr.getObject(t,e));const[n,r]=Mt.useState(e),o=Mt.useCallback(l=>{t?wr.setObject(t,l):r(l)},[t,r]);return Mt.useEffect(()=>{if(t){const l=()=>r(wr.getObject(t,e));return wr.onChangeEmitter.addEventListener(t,l),()=>wr.onChangeEmitter.removeEventListener(t,l)}},[e,t]),[n,o]}class x0{constructor(){this.onChangeEmitter=new EventTarget}getString(e,n){return localStorage[e]||n}setString(e,n){var r;localStorage[e]=n,this.onChangeEmitter.dispatchEvent(new Event(e)),(r=window.saveSettings)==null||r.call(window)}getObject(e,n){if(!localStorage[e])return n;try{return JSON.parse(localStorage[e])}catch{return n}}setObject(e,n){var r;localStorage[e]=JSON.stringify(n),this.onChangeEmitter.dispatchEvent(new Event(e)),(r=window.saveSettings)==null||r.call(window)}}const wr=new x0;function Be(...t){return t.filter(Boolean).join(" ")}function Pm(t){t&&(t!=null&&t.scrollIntoViewIfNeeded?t.scrollIntoViewIfNeeded(!1):t==null||t.scrollIntoView())}const Np="\\u0000-\\u0020\\u007f-\\u009f",Om=new RegExp("(?:[a-zA-Z][a-zA-Z0-9+.-]{2,}:\\/\\/|www\\.)[^\\s"+Np+'"]{2,}[^\\s'+Np+`"')}\\],:;.!?]`,"ug");function _0(){const[t,e]=Mt.useState(!1),n=Mt.useCallback(()=>{const r=[];return e(o=>(r.push(setTimeout(()=>e(!1),1e3)),o?(r.push(setTimeout(()=>e(!0),50)),!1):!0)),()=>r.forEach(clearTimeout)},[e]);return[t,n]}function Ck(){if(document.playwrightThemeInitialized)return;document.playwrightThemeInitialized=!0,document.defaultView.addEventListener("focus",r=>{r.target.document.nodeType===Node.DOCUMENT_NODE&&document.body.classList.remove("inactive")},!1),document.defaultView.addEventListener("blur",r=>{document.body.classList.add("inactive")},!1);const e=window.matchMedia("(prefers-color-scheme: dark)").matches?"dark-mode":"light-mode";wr.getString("theme",e)==="dark-mode"&&document.body.classList.add("dark-mode")}const Gu=new Set;function E0(){const t=Lu(),e=t==="dark-mode"?"light-mode":"dark-mode";t&&document.body.classList.remove(t),document.body.classList.add(e),wr.setString("theme",e);for(const n of Gu)n(e)}function Nk(t){Gu.add(t)}function Ak(t){Gu.delete(t)}function Lu(){return document.body.classList.contains("dark-mode")?"dark-mode":"light-mode"}function k0(){const[t,e]=Mt.useState(Lu()==="dark-mode");return[t,n=>{Lu()==="dark-mode"!==n&&E0(),e(n)}]}var hl={},uu={exports:{}},xt={},fu={exports:{}},du={};/** - * @license React - * scheduler.production.min.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. - */var Ap;function b0(){return Ap||(Ap=1,function(t){function e(J,se){var Z=J.length;J.push(se);e:for(;0>>1,U=J[I];if(0>>1;Io(pe,Z))yeo(Se,pe)?(J[I]=Se,J[ye]=Z,I=ye):(J[I]=pe,J[fe]=Z,I=fe);else if(yeo(Se,Z))J[I]=Se,J[ye]=Z,I=ye;else break e}}return se}function o(J,se){var Z=J.sortIndex-se.sortIndex;return Z!==0?Z:J.id-se.id}if(typeof performance=="object"&&typeof performance.now=="function"){var l=performance;t.unstable_now=function(){return l.now()}}else{var c=Date,u=c.now();t.unstable_now=function(){return c.now()-u}}var d=[],p=[],g=1,y=null,v=3,S=!1,k=!1,_=!1,E=typeof setTimeout=="function"?setTimeout:null,C=typeof clearTimeout=="function"?clearTimeout:null,A=typeof setImmediate<"u"?setImmediate:null;typeof navigator<"u"&&navigator.scheduling!==void 0&&navigator.scheduling.isInputPending!==void 0&&navigator.scheduling.isInputPending.bind(navigator.scheduling);function B(J){for(var se=n(p);se!==null;){if(se.callback===null)r(p);else if(se.startTime<=J)r(p),se.sortIndex=se.expirationTime,e(d,se);else break;se=n(p)}}function R(J){if(_=!1,B(J),!k)if(n(d)!==null)k=!0,be(D);else{var se=n(p);se!==null&&ge(R,se.startTime-J)}}function D(J,se){k=!1,_&&(_=!1,C(F),F=-1),S=!0;var Z=v;try{for(B(se),y=n(d);y!==null&&(!(y.expirationTime>se)||J&&!K());){var I=y.callback;if(typeof I=="function"){y.callback=null,v=y.priorityLevel;var U=I(y.expirationTime<=se);se=t.unstable_now(),typeof U=="function"?y.callback=U:y===n(d)&&r(d),B(se)}else r(d);y=n(d)}if(y!==null)var de=!0;else{var fe=n(p);fe!==null&&ge(R,fe.startTime-se),de=!1}return de}finally{y=null,v=Z,S=!1}}var z=!1,H=null,F=-1,M=5,G=-1;function K(){return!(t.unstable_now()-GJ||125I?(J.sortIndex=Z,e(p,J),n(d)===null&&J===n(p)&&(_?(C(F),F=-1):_=!0,ge(R,Z-I))):(J.sortIndex=U,e(d,J),k||S||(k=!0,be(D))),J},t.unstable_shouldYield=K,t.unstable_wrapCallback=function(J){var se=v;return function(){var Z=v;v=se;try{return J.apply(this,arguments)}finally{v=Z}}}}(du)),du}var Ip;function T0(){return Ip||(Ip=1,fu.exports=b0()),fu.exports}/** - * @license React - * react-dom.production.min.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. - */var Lp;function C0(){if(Lp)return xt;Lp=1;var t=Ku(),e=T0();function n(s){for(var i="https://reactjs.org/docs/error-decoder.html?invariant="+s,a=1;a"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),d=Object.prototype.hasOwnProperty,p=/^[: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]*$/,g={},y={};function v(s){return d.call(y,s)?!0:d.call(g,s)?!1:p.test(s)?y[s]=!0:(g[s]=!0,!1)}function S(s,i,a,f){if(a!==null&&a.type===0)return!1;switch(typeof i){case"function":case"symbol":return!0;case"boolean":return f?!1:a!==null?!a.acceptsBooleans:(s=s.toLowerCase().slice(0,5),s!=="data-"&&s!=="aria-");default:return!1}}function k(s,i,a,f){if(i===null||typeof i>"u"||S(s,i,a,f))return!0;if(f)return!1;if(a!==null)switch(a.type){case 3:return!i;case 4:return i===!1;case 5:return isNaN(i);case 6:return isNaN(i)||1>i}return!1}function _(s,i,a,f,h,m,x){this.acceptsBooleans=i===2||i===3||i===4,this.attributeName=f,this.attributeNamespace=h,this.mustUseProperty=a,this.propertyName=s,this.type=i,this.sanitizeURL=m,this.removeEmptyString=x}var E={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(s){E[s]=new _(s,0,!1,s,null,!1,!1)}),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(s){var i=s[0];E[i]=new _(i,1,!1,s[1],null,!1,!1)}),["contentEditable","draggable","spellCheck","value"].forEach(function(s){E[s]=new _(s,2,!1,s.toLowerCase(),null,!1,!1)}),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(s){E[s]=new _(s,2,!1,s,null,!1,!1)}),"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(s){E[s]=new _(s,3,!1,s.toLowerCase(),null,!1,!1)}),["checked","multiple","muted","selected"].forEach(function(s){E[s]=new _(s,3,!0,s,null,!1,!1)}),["capture","download"].forEach(function(s){E[s]=new _(s,4,!1,s,null,!1,!1)}),["cols","rows","size","span"].forEach(function(s){E[s]=new _(s,6,!1,s,null,!1,!1)}),["rowSpan","start"].forEach(function(s){E[s]=new _(s,5,!1,s.toLowerCase(),null,!1,!1)});var C=/[\-:]([a-z])/g;function A(s){return s[1].toUpperCase()}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(s){var i=s.replace(C,A);E[i]=new _(i,1,!1,s,null,!1,!1)}),"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(s){var i=s.replace(C,A);E[i]=new _(i,1,!1,s,"http://www.w3.org/1999/xlink",!1,!1)}),["xml:base","xml:lang","xml:space"].forEach(function(s){var i=s.replace(C,A);E[i]=new _(i,1,!1,s,"http://www.w3.org/XML/1998/namespace",!1,!1)}),["tabIndex","crossOrigin"].forEach(function(s){E[s]=new _(s,1,!1,s.toLowerCase(),null,!1,!1)}),E.xlinkHref=new _("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1),["src","href","action","formAction"].forEach(function(s){E[s]=new _(s,1,!1,s.toLowerCase(),null,!0,!0)});function B(s,i,a,f){var h=E.hasOwnProperty(i)?E[i]:null;(h!==null?h.type!==0:f||!(2b||h[x]!==m[b]){var T=` -`+h[x].replace(" at new "," at ");return s.displayName&&T.includes("")&&(T=T.replace("",s.displayName)),T}while(1<=x&&0<=b);break}}}finally{de=!1,Error.prepareStackTrace=a}return(s=s?s.displayName||s.name:"")?U(s):""}function pe(s){switch(s.tag){case 5:return U(s.type);case 16:return U("Lazy");case 13:return U("Suspense");case 19:return U("SuspenseList");case 0:case 2:case 15:return s=fe(s.type,!1),s;case 11:return s=fe(s.type.render,!1),s;case 1:return s=fe(s.type,!0),s;default:return""}}function ye(s){if(s==null)return null;if(typeof s=="function")return s.displayName||s.name||null;if(typeof s=="string")return s;switch(s){case H:return"Fragment";case z:return"Portal";case M:return"Profiler";case F:return"StrictMode";case X:return"Suspense";case ce:return"SuspenseList"}if(typeof s=="object")switch(s.$$typeof){case K:return(s.displayName||"Context")+".Consumer";case G:return(s._context.displayName||"Context")+".Provider";case O:var i=s.render;return s=s.displayName,s||(s=i.displayName||i.name||"",s=s!==""?"ForwardRef("+s+")":"ForwardRef"),s;case Ae:return i=s.displayName||null,i!==null?i:ye(s.type)||"Memo";case be:i=s._payload,s=s._init;try{return ye(s(i))}catch{}}return null}function Se(s){var i=s.type;switch(s.tag){case 24:return"Cache";case 9:return(i.displayName||"Context")+".Consumer";case 10:return(i._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return s=i.render,s=s.displayName||s.name||"",i.displayName||(s!==""?"ForwardRef("+s+")":"ForwardRef");case 7:return"Fragment";case 5:return i;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return ye(i);case 8:return i===F?"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 1:case 0:case 17:case 2:case 14:case 15:if(typeof i=="function")return i.displayName||i.name||null;if(typeof i=="string")return i}return null}function he(s){switch(typeof s){case"boolean":case"number":case"string":case"undefined":return s;case"object":return s;default:return""}}function _e(s){var i=s.type;return(s=s.nodeName)&&s.toLowerCase()==="input"&&(i==="checkbox"||i==="radio")}function ct(s){var i=_e(s)?"checked":"value",a=Object.getOwnPropertyDescriptor(s.constructor.prototype,i),f=""+s[i];if(!s.hasOwnProperty(i)&&typeof a<"u"&&typeof a.get=="function"&&typeof a.set=="function"){var h=a.get,m=a.set;return Object.defineProperty(s,i,{configurable:!0,get:function(){return h.call(this)},set:function(x){f=""+x,m.call(this,x)}}),Object.defineProperty(s,i,{enumerable:a.enumerable}),{getValue:function(){return f},setValue:function(x){f=""+x},stopTracking:function(){s._valueTracker=null,delete s[i]}}}}function jr(s){s._valueTracker||(s._valueTracker=ct(s))}function Pr(s){if(!s)return!1;var i=s._valueTracker;if(!i)return!0;var a=i.getValue(),f="";return s&&(f=_e(s)?s.checked?"true":"false":s.value),s=f,s!==a?(i.setValue(s),!0):!1}function sr(s){if(s=s||(typeof document<"u"?document:void 0),typeof s>"u")return null;try{return s.activeElement||s.body}catch{return s.body}}function Or(s,i){var a=i.checked;return Z({},i,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:a??s._wrapperState.initialChecked})}function hn(s,i){var a=i.defaultValue==null?"":i.defaultValue,f=i.checked!=null?i.checked:i.defaultChecked;a=he(i.value!=null?i.value:a),s._wrapperState={initialChecked:f,initialValue:a,controlled:i.type==="checkbox"||i.type==="radio"?i.checked!=null:i.value!=null}}function eo(s,i){i=i.checked,i!=null&&B(s,"checked",i,!1)}function Bs(s,i){eo(s,i);var a=he(i.value),f=i.type;if(a!=null)f==="number"?(a===0&&s.value===""||s.value!=a)&&(s.value=""+a):s.value!==""+a&&(s.value=""+a);else if(f==="submit"||f==="reset"){s.removeAttribute("value");return}i.hasOwnProperty("value")?zs(s,i.type,a):i.hasOwnProperty("defaultValue")&&zs(s,i.type,he(i.defaultValue)),i.checked==null&&i.defaultChecked!=null&&(s.defaultChecked=!!i.defaultChecked)}function to(s,i,a){if(i.hasOwnProperty("value")||i.hasOwnProperty("defaultValue")){var f=i.type;if(!(f!=="submit"&&f!=="reset"||i.value!==void 0&&i.value!==null))return;i=""+s._wrapperState.initialValue,a||i===s.value||(s.value=i),s.defaultValue=i}a=s.name,a!==""&&(s.name=""),s.defaultChecked=!!s._wrapperState.initialChecked,a!==""&&(s.name=a)}function zs(s,i,a){(i!=="number"||sr(s.ownerDocument)!==s)&&(a==null?s.defaultValue=""+s._wrapperState.initialValue:s.defaultValue!==""+a&&(s.defaultValue=""+a))}var An=Array.isArray;function nn(s,i,a,f){if(s=s.options,i){i={};for(var h=0;h"+i.valueOf().toString()+"",i=Rr.firstChild;s.firstChild;)s.removeChild(s.firstChild);for(;i.firstChild;)s.appendChild(i.firstChild)}});function Mn(s,i){if(i){var a=s.firstChild;if(a&&a===s.lastChild&&a.nodeType===3){a.nodeValue=i;return}}s.textContent=i}var le={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},rn=["Webkit","ms","Moz","O"];Object.keys(le).forEach(function(s){rn.forEach(function(i){i=i+s.charAt(0).toUpperCase()+s.substring(1),le[i]=le[s]})});function jt(s,i,a){return i==null||typeof i=="boolean"||i===""?"":a||typeof i!="number"||i===0||le.hasOwnProperty(s)&&le[s]?(""+i).trim():i+"px"}function Ff(s,i){s=s.style;for(var a in i)if(i.hasOwnProperty(a)){var f=a.indexOf("--")===0,h=jt(a,i[a],f);a==="float"&&(a="cssFloat"),f?s.setProperty(a,h):s[a]=h}}var wv=Z({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function Sa(s,i){if(i){if(wv[s]&&(i.children!=null||i.dangerouslySetInnerHTML!=null))throw Error(n(137,s));if(i.dangerouslySetInnerHTML!=null){if(i.children!=null)throw Error(n(60));if(typeof i.dangerouslySetInnerHTML!="object"||!("__html"in i.dangerouslySetInnerHTML))throw Error(n(61))}if(i.style!=null&&typeof i.style!="object")throw Error(n(62))}}function xa(s,i){if(s.indexOf("-")===-1)return typeof i.is=="string";switch(s){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 _a=null;function Ea(s){return s=s.target||s.srcElement||window,s.correspondingUseElement&&(s=s.correspondingUseElement),s.nodeType===3?s.parentNode:s}var ka=null,Dr=null,Fr=null;function Bf(s){if(s=ui(s)){if(typeof ka!="function")throw Error(n(280));var i=s.stateNode;i&&(i=No(i),ka(s.stateNode,s.type,i))}}function zf(s){Dr?Fr?Fr.push(s):Fr=[s]:Dr=s}function Hf(){if(Dr){var s=Dr,i=Fr;if(Fr=Dr=null,Bf(s),i)for(s=0;s>>=0,s===0?32:31-(Iv(s)/Lv|0)|0}var co=64,uo=4194304;function Ws(s){switch(s&-s){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: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 s&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return s&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return s}}function fo(s,i){var a=s.pendingLanes;if(a===0)return 0;var f=0,h=s.suspendedLanes,m=s.pingedLanes,x=a&268435455;if(x!==0){var b=x&~h;b!==0?f=Ws(b):(m&=x,m!==0&&(f=Ws(m)))}else x=a&~h,x!==0?f=Ws(x):m!==0&&(f=Ws(m));if(f===0)return 0;if(i!==0&&i!==f&&(i&h)===0&&(h=f&-f,m=i&-i,h>=m||h===16&&(m&4194240)!==0))return i;if((f&4)!==0&&(f|=a&16),i=s.entangledLanes,i!==0)for(s=s.entanglements,i&=f;0a;a++)i.push(s);return i}function Ks(s,i,a){s.pendingLanes|=i,i!==536870912&&(s.suspendedLanes=0,s.pingedLanes=0),s=s.eventTimes,i=31-Wt(i),s[i]=a}function Ov(s,i){var a=s.pendingLanes&~i;s.pendingLanes=i,s.suspendedLanes=0,s.pingedLanes=0,s.expiredLanes&=i,s.mutableReadLanes&=i,s.entangledLanes&=i,i=s.entanglements;var f=s.eventTimes;for(s=s.expirationTimes;0=ti),gd=" ",yd=!1;function vd(s,i){switch(s){case"keyup":return cw.indexOf(i.keyCode)!==-1;case"keydown":return i.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function wd(s){return s=s.detail,typeof s=="object"&&"data"in s?s.data:null}var Hr=!1;function fw(s,i){switch(s){case"compositionend":return wd(i);case"keypress":return i.which!==32?null:(yd=!0,gd);case"textInput":return s=i.data,s===gd&&yd?null:s;default:return null}}function dw(s,i){if(Hr)return s==="compositionend"||!Ha&&vd(s,i)?(s=ud(),yo=$a=Rn=null,Hr=!1,s):null;switch(s){case"paste":return null;case"keypress":if(!(i.ctrlKey||i.altKey||i.metaKey)||i.ctrlKey&&i.altKey){if(i.char&&1=i)return{node:a,offset:i-s};s=f}e:{for(;a;){if(a.nextSibling){a=a.nextSibling;break e}a=a.parentNode}a=void 0}a=Td(a)}}function Nd(s,i){return s&&i?s===i?!0:s&&s.nodeType===3?!1:i&&i.nodeType===3?Nd(s,i.parentNode):"contains"in s?s.contains(i):s.compareDocumentPosition?!!(s.compareDocumentPosition(i)&16):!1:!1}function Ad(){for(var s=window,i=sr();i instanceof s.HTMLIFrameElement;){try{var a=typeof i.contentWindow.location.href=="string"}catch{a=!1}if(a)s=i.contentWindow;else break;i=sr(s.document)}return i}function Va(s){var i=s&&s.nodeName&&s.nodeName.toLowerCase();return i&&(i==="input"&&(s.type==="text"||s.type==="search"||s.type==="tel"||s.type==="url"||s.type==="password")||i==="textarea"||s.contentEditable==="true")}function xw(s){var i=Ad(),a=s.focusedElem,f=s.selectionRange;if(i!==a&&a&&a.ownerDocument&&Nd(a.ownerDocument.documentElement,a)){if(f!==null&&Va(a)){if(i=f.start,s=f.end,s===void 0&&(s=i),"selectionStart"in a)a.selectionStart=i,a.selectionEnd=Math.min(s,a.value.length);else if(s=(i=a.ownerDocument||document)&&i.defaultView||window,s.getSelection){s=s.getSelection();var h=a.textContent.length,m=Math.min(f.start,h);f=f.end===void 0?m:Math.min(f.end,h),!s.extend&&m>f&&(h=f,f=m,m=h),h=Cd(a,m);var x=Cd(a,f);h&&x&&(s.rangeCount!==1||s.anchorNode!==h.node||s.anchorOffset!==h.offset||s.focusNode!==x.node||s.focusOffset!==x.offset)&&(i=i.createRange(),i.setStart(h.node,h.offset),s.removeAllRanges(),m>f?(s.addRange(i),s.extend(x.node,x.offset)):(i.setEnd(x.node,x.offset),s.addRange(i)))}}for(i=[],s=a;s=s.parentNode;)s.nodeType===1&&i.push({element:s,left:s.scrollLeft,top:s.scrollTop});for(typeof a.focus=="function"&&a.focus(),a=0;a=document.documentMode,Ur=null,Wa=null,ii=null,Ka=!1;function Id(s,i,a){var f=a.window===a?a.document:a.nodeType===9?a:a.ownerDocument;Ka||Ur==null||Ur!==sr(f)||(f=Ur,"selectionStart"in f&&Va(f)?f={start:f.selectionStart,end:f.selectionEnd}:(f=(f.ownerDocument&&f.ownerDocument.defaultView||window).getSelection(),f={anchorNode:f.anchorNode,anchorOffset:f.anchorOffset,focusNode:f.focusNode,focusOffset:f.focusOffset}),ii&&si(ii,f)||(ii=f,f=bo(Wa,"onSelect"),0Gr||(s.current=ic[Gr],ic[Gr]=null,Gr--)}function Te(s,i){Gr++,ic[Gr]=s.current,s.current=i}var zn={},rt=Bn(zn),gt=Bn(!1),lr=zn;function Qr(s,i){var a=s.type.contextTypes;if(!a)return zn;var f=s.stateNode;if(f&&f.__reactInternalMemoizedUnmaskedChildContext===i)return f.__reactInternalMemoizedMaskedChildContext;var h={},m;for(m in a)h[m]=i[m];return f&&(s=s.stateNode,s.__reactInternalMemoizedUnmaskedChildContext=i,s.__reactInternalMemoizedMaskedChildContext=h),h}function yt(s){return s=s.childContextTypes,s!=null}function Ao(){Ne(gt),Ne(rt)}function Vd(s,i,a){if(rt.current!==zn)throw Error(n(168));Te(rt,i),Te(gt,a)}function Wd(s,i,a){var f=s.stateNode;if(i=i.childContextTypes,typeof f.getChildContext!="function")return a;f=f.getChildContext();for(var h in f)if(!(h in i))throw Error(n(108,Se(s)||"Unknown",h));return Z({},a,f)}function Io(s){return s=(s=s.stateNode)&&s.__reactInternalMemoizedMergedChildContext||zn,lr=rt.current,Te(rt,s),Te(gt,gt.current),!0}function Kd(s,i,a){var f=s.stateNode;if(!f)throw Error(n(169));a?(s=Wd(s,i,lr),f.__reactInternalMemoizedMergedChildContext=s,Ne(gt),Ne(rt),Te(rt,s)):Ne(gt),Te(gt,a)}var mn=null,Lo=!1,oc=!1;function Gd(s){mn===null?mn=[s]:mn.push(s)}function jw(s){Lo=!0,Gd(s)}function Hn(){if(!oc&&mn!==null){oc=!0;var s=0,i=xe;try{var a=mn;for(xe=1;s>=x,h-=x,gn=1<<32-Wt(i)+h|a<ae?(Je=oe,oe=null):Je=oe.sibling;var we=q(L,oe,j[ae],Q);if(we===null){oe===null&&(oe=Je);break}s&&oe&&we.alternate===null&&i(L,oe),N=m(we,N,ae),ie===null?re=we:ie.sibling=we,ie=we,oe=Je}if(ae===j.length)return a(L,oe),Ie&&cr(L,ae),re;if(oe===null){for(;aeae?(Je=oe,oe=null):Je=oe.sibling;var Xn=q(L,oe,we.value,Q);if(Xn===null){oe===null&&(oe=Je);break}s&&oe&&Xn.alternate===null&&i(L,oe),N=m(Xn,N,ae),ie===null?re=Xn:ie.sibling=Xn,ie=Xn,oe=Je}if(we.done)return a(L,oe),Ie&&cr(L,ae),re;if(oe===null){for(;!we.done;ae++,we=j.next())we=W(L,we.value,Q),we!==null&&(N=m(we,N,ae),ie===null?re=we:ie.sibling=we,ie=we);return Ie&&cr(L,ae),re}for(oe=f(L,oe);!we.done;ae++,we=j.next())we=Y(oe,L,ae,we.value,Q),we!==null&&(s&&we.alternate!==null&&oe.delete(we.key===null?ae:we.key),N=m(we,N,ae),ie===null?re=we:ie.sibling=we,ie=we);return s&&oe.forEach(function(h0){return i(L,h0)}),Ie&&cr(L,ae),re}function Fe(L,N,j,Q){if(typeof j=="object"&&j!==null&&j.type===H&&j.key===null&&(j=j.props.children),typeof j=="object"&&j!==null){switch(j.$$typeof){case D:e:{for(var re=j.key,ie=N;ie!==null;){if(ie.key===re){if(re=j.type,re===H){if(ie.tag===7){a(L,ie.sibling),N=h(ie,j.props.children),N.return=L,L=N;break e}}else if(ie.elementType===re||typeof re=="object"&&re!==null&&re.$$typeof===be&&eh(re)===ie.type){a(L,ie.sibling),N=h(ie,j.props),N.ref=fi(L,ie,j),N.return=L,L=N;break e}a(L,ie);break}else i(L,ie);ie=ie.sibling}j.type===H?(N=yr(j.props.children,L.mode,Q,j.key),N.return=L,L=N):(Q=il(j.type,j.key,j.props,null,L.mode,Q),Q.ref=fi(L,N,j),Q.return=L,L=Q)}return x(L);case z:e:{for(ie=j.key;N!==null;){if(N.key===ie)if(N.tag===4&&N.stateNode.containerInfo===j.containerInfo&&N.stateNode.implementation===j.implementation){a(L,N.sibling),N=h(N,j.children||[]),N.return=L,L=N;break e}else{a(L,N);break}else i(L,N);N=N.sibling}N=ru(j,L.mode,Q),N.return=L,L=N}return x(L);case be:return ie=j._init,Fe(L,N,ie(j._payload),Q)}if(An(j))return te(L,N,j,Q);if(se(j))return ne(L,N,j,Q);Oo(L,j)}return typeof j=="string"&&j!==""||typeof j=="number"?(j=""+j,N!==null&&N.tag===6?(a(L,N.sibling),N=h(N,j),N.return=L,L=N):(a(L,N),N=nu(j,L.mode,Q),N.return=L,L=N),x(L)):a(L,N)}return Fe}var Zr=th(!0),nh=th(!1),$o=Bn(null),Ro=null,es=null,dc=null;function hc(){dc=es=Ro=null}function pc(s){var i=$o.current;Ne($o),s._currentValue=i}function mc(s,i,a){for(;s!==null;){var f=s.alternate;if((s.childLanes&i)!==i?(s.childLanes|=i,f!==null&&(f.childLanes|=i)):f!==null&&(f.childLanes&i)!==i&&(f.childLanes|=i),s===a)break;s=s.return}}function ts(s,i){Ro=s,dc=es=null,s=s.dependencies,s!==null&&s.firstContext!==null&&((s.lanes&i)!==0&&(vt=!0),s.firstContext=null)}function $t(s){var i=s._currentValue;if(dc!==s)if(s={context:s,memoizedValue:i,next:null},es===null){if(Ro===null)throw Error(n(308));es=s,Ro.dependencies={lanes:0,firstContext:s}}else es=es.next=s;return i}var ur=null;function gc(s){ur===null?ur=[s]:ur.push(s)}function rh(s,i,a,f){var h=i.interleaved;return h===null?(a.next=a,gc(i)):(a.next=h.next,h.next=a),i.interleaved=a,vn(s,f)}function vn(s,i){s.lanes|=i;var a=s.alternate;for(a!==null&&(a.lanes|=i),a=s,s=s.return;s!==null;)s.childLanes|=i,a=s.alternate,a!==null&&(a.childLanes|=i),a=s,s=s.return;return a.tag===3?a.stateNode:null}var Un=!1;function yc(s){s.updateQueue={baseState:s.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,interleaved:null,lanes:0},effects:null}}function sh(s,i){s=s.updateQueue,i.updateQueue===s&&(i.updateQueue={baseState:s.baseState,firstBaseUpdate:s.firstBaseUpdate,lastBaseUpdate:s.lastBaseUpdate,shared:s.shared,effects:s.effects})}function wn(s,i){return{eventTime:s,lane:i,tag:0,payload:null,callback:null,next:null}}function qn(s,i,a){var f=s.updateQueue;if(f===null)return null;if(f=f.shared,(ve&2)!==0){var h=f.pending;return h===null?i.next=i:(i.next=h.next,h.next=i),f.pending=i,vn(s,a)}return h=f.interleaved,h===null?(i.next=i,gc(f)):(i.next=h.next,h.next=i),f.interleaved=i,vn(s,a)}function Do(s,i,a){if(i=i.updateQueue,i!==null&&(i=i.shared,(a&4194240)!==0)){var f=i.lanes;f&=s.pendingLanes,a|=f,i.lanes=a,La(s,a)}}function ih(s,i){var a=s.updateQueue,f=s.alternate;if(f!==null&&(f=f.updateQueue,a===f)){var h=null,m=null;if(a=a.firstBaseUpdate,a!==null){do{var x={eventTime:a.eventTime,lane:a.lane,tag:a.tag,payload:a.payload,callback:a.callback,next:null};m===null?h=m=x:m=m.next=x,a=a.next}while(a!==null);m===null?h=m=i:m=m.next=i}else h=m=i;a={baseState:f.baseState,firstBaseUpdate:h,lastBaseUpdate:m,shared:f.shared,effects:f.effects},s.updateQueue=a;return}s=a.lastBaseUpdate,s===null?a.firstBaseUpdate=i:s.next=i,a.lastBaseUpdate=i}function Fo(s,i,a,f){var h=s.updateQueue;Un=!1;var m=h.firstBaseUpdate,x=h.lastBaseUpdate,b=h.shared.pending;if(b!==null){h.shared.pending=null;var T=b,P=T.next;T.next=null,x===null?m=P:x.next=P,x=T;var V=s.alternate;V!==null&&(V=V.updateQueue,b=V.lastBaseUpdate,b!==x&&(b===null?V.firstBaseUpdate=P:b.next=P,V.lastBaseUpdate=T))}if(m!==null){var W=h.baseState;x=0,V=P=T=null,b=m;do{var q=b.lane,Y=b.eventTime;if((f&q)===q){V!==null&&(V=V.next={eventTime:Y,lane:0,tag:b.tag,payload:b.payload,callback:b.callback,next:null});e:{var te=s,ne=b;switch(q=i,Y=a,ne.tag){case 1:if(te=ne.payload,typeof te=="function"){W=te.call(Y,W,q);break e}W=te;break e;case 3:te.flags=te.flags&-65537|128;case 0:if(te=ne.payload,q=typeof te=="function"?te.call(Y,W,q):te,q==null)break e;W=Z({},W,q);break e;case 2:Un=!0}}b.callback!==null&&b.lane!==0&&(s.flags|=64,q=h.effects,q===null?h.effects=[b]:q.push(b))}else Y={eventTime:Y,lane:q,tag:b.tag,payload:b.payload,callback:b.callback,next:null},V===null?(P=V=Y,T=W):V=V.next=Y,x|=q;if(b=b.next,b===null){if(b=h.shared.pending,b===null)break;q=b,b=q.next,q.next=null,h.lastBaseUpdate=q,h.shared.pending=null}}while(!0);if(V===null&&(T=W),h.baseState=T,h.firstBaseUpdate=P,h.lastBaseUpdate=V,i=h.shared.interleaved,i!==null){h=i;do x|=h.lane,h=h.next;while(h!==i)}else m===null&&(h.shared.lanes=0);hr|=x,s.lanes=x,s.memoizedState=W}}function oh(s,i,a){if(s=i.effects,i.effects=null,s!==null)for(i=0;ia?a:4,s(!0);var f=_c.transition;_c.transition={};try{s(!1),i()}finally{xe=a,_c.transition=f}}function bh(){return Rt().memoizedState}function Rw(s,i,a){var f=Gn(s);if(a={lane:f,action:a,hasEagerState:!1,eagerState:null,next:null},Th(s))Ch(i,a);else if(a=rh(s,i,a,f),a!==null){var h=ft();Yt(a,s,f,h),Nh(a,i,f)}}function Dw(s,i,a){var f=Gn(s),h={lane:f,action:a,hasEagerState:!1,eagerState:null,next:null};if(Th(s))Ch(i,h);else{var m=s.alternate;if(s.lanes===0&&(m===null||m.lanes===0)&&(m=i.lastRenderedReducer,m!==null))try{var x=i.lastRenderedState,b=m(x,a);if(h.hasEagerState=!0,h.eagerState=b,Kt(b,x)){var T=i.interleaved;T===null?(h.next=h,gc(i)):(h.next=T.next,T.next=h),i.interleaved=h;return}}catch{}finally{}a=rh(s,i,h,f),a!==null&&(h=ft(),Yt(a,s,f,h),Nh(a,i,f))}}function Th(s){var i=s.alternate;return s===Pe||i!==null&&i===Pe}function Ch(s,i){mi=Ho=!0;var a=s.pending;a===null?i.next=i:(i.next=a.next,a.next=i),s.pending=i}function Nh(s,i,a){if((a&4194240)!==0){var f=i.lanes;f&=s.pendingLanes,a|=f,i.lanes=a,La(s,a)}}var Vo={readContext:$t,useCallback:st,useContext:st,useEffect:st,useImperativeHandle:st,useInsertionEffect:st,useLayoutEffect:st,useMemo:st,useReducer:st,useRef:st,useState:st,useDebugValue:st,useDeferredValue:st,useTransition:st,useMutableSource:st,useSyncExternalStore:st,useId:st,unstable_isNewReconciler:!1},Fw={readContext:$t,useCallback:function(s,i){return an().memoizedState=[s,i===void 0?null:i],s},useContext:$t,useEffect:yh,useImperativeHandle:function(s,i,a){return a=a!=null?a.concat([s]):null,Uo(4194308,4,Sh.bind(null,i,s),a)},useLayoutEffect:function(s,i){return Uo(4194308,4,s,i)},useInsertionEffect:function(s,i){return Uo(4,2,s,i)},useMemo:function(s,i){var a=an();return i=i===void 0?null:i,s=s(),a.memoizedState=[s,i],s},useReducer:function(s,i,a){var f=an();return i=a!==void 0?a(i):i,f.memoizedState=f.baseState=i,s={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:s,lastRenderedState:i},f.queue=s,s=s.dispatch=Rw.bind(null,Pe,s),[f.memoizedState,s]},useRef:function(s){var i=an();return s={current:s},i.memoizedState=s},useState:mh,useDebugValue:Ac,useDeferredValue:function(s){return an().memoizedState=s},useTransition:function(){var s=mh(!1),i=s[0];return s=$w.bind(null,s[1]),an().memoizedState=s,[i,s]},useMutableSource:function(){},useSyncExternalStore:function(s,i,a){var f=Pe,h=an();if(Ie){if(a===void 0)throw Error(n(407));a=a()}else{if(a=i(),Qe===null)throw Error(n(349));(dr&30)!==0||uh(f,i,a)}h.memoizedState=a;var m={value:a,getSnapshot:i};return h.queue=m,yh(dh.bind(null,f,m,s),[s]),f.flags|=2048,vi(9,fh.bind(null,f,m,a,i),void 0,null),a},useId:function(){var s=an(),i=Qe.identifierPrefix;if(Ie){var a=yn,f=gn;a=(f&~(1<<32-Wt(f)-1)).toString(32)+a,i=":"+i+"R"+a,a=gi++,0<\/script>",s=s.removeChild(s.firstChild)):typeof f.is=="string"?s=x.createElement(a,{is:f.is}):(s=x.createElement(a),a==="select"&&(x=s,f.multiple?x.multiple=!0:f.size&&(x.size=f.size))):s=x.createElementNS(s,a),s[on]=i,s[ci]=f,Gh(s,i,!1,!1),i.stateNode=s;e:{switch(x=xa(a,f),a){case"dialog":Ce("cancel",s),Ce("close",s),h=f;break;case"iframe":case"object":case"embed":Ce("load",s),h=f;break;case"video":case"audio":for(h=0;hos&&(i.flags|=128,f=!0,wi(m,!1),i.lanes=4194304)}else{if(!f)if(s=Bo(x),s!==null){if(i.flags|=128,f=!0,a=s.updateQueue,a!==null&&(i.updateQueue=a,i.flags|=4),wi(m,!0),m.tail===null&&m.tailMode==="hidden"&&!x.alternate&&!Ie)return it(i),null}else 2*De()-m.renderingStartTime>os&&a!==1073741824&&(i.flags|=128,f=!0,wi(m,!1),i.lanes=4194304);m.isBackwards?(x.sibling=i.child,i.child=x):(a=m.last,a!==null?a.sibling=x:i.child=x,m.last=x)}return m.tail!==null?(i=m.tail,m.rendering=i,m.tail=i.sibling,m.renderingStartTime=De(),i.sibling=null,a=je.current,Te(je,f?a&1|2:a&1),i):(it(i),null);case 22:case 23:return Zc(),f=i.memoizedState!==null,s!==null&&s.memoizedState!==null!==f&&(i.flags|=8192),f&&(i.mode&1)!==0?(It&1073741824)!==0&&(it(i),i.subtreeFlags&6&&(i.flags|=8192)):it(i),null;case 24:return null;case 25:return null}throw Error(n(156,i.tag))}function Kw(s,i){switch(ac(i),i.tag){case 1:return yt(i.type)&&Ao(),s=i.flags,s&65536?(i.flags=s&-65537|128,i):null;case 3:return ns(),Ne(gt),Ne(rt),xc(),s=i.flags,(s&65536)!==0&&(s&128)===0?(i.flags=s&-65537|128,i):null;case 5:return wc(i),null;case 13:if(Ne(je),s=i.memoizedState,s!==null&&s.dehydrated!==null){if(i.alternate===null)throw Error(n(340));Yr()}return s=i.flags,s&65536?(i.flags=s&-65537|128,i):null;case 19:return Ne(je),null;case 4:return ns(),null;case 10:return pc(i.type._context),null;case 22:case 23:return Zc(),null;case 24:return null;default:return null}}var Qo=!1,ot=!1,Gw=typeof WeakSet=="function"?WeakSet:Set,ee=null;function ss(s,i){var a=s.ref;if(a!==null)if(typeof a=="function")try{a(null)}catch(f){Re(s,i,f)}else a.current=null}function zc(s,i,a){try{a()}catch(f){Re(s,i,f)}}var Xh=!1;function Qw(s,i){if(Za=mo,s=Ad(),Va(s)){if("selectionStart"in s)var a={start:s.selectionStart,end:s.selectionEnd};else e:{a=(a=s.ownerDocument)&&a.defaultView||window;var f=a.getSelection&&a.getSelection();if(f&&f.rangeCount!==0){a=f.anchorNode;var h=f.anchorOffset,m=f.focusNode;f=f.focusOffset;try{a.nodeType,m.nodeType}catch{a=null;break e}var x=0,b=-1,T=-1,P=0,V=0,W=s,q=null;t:for(;;){for(var Y;W!==a||h!==0&&W.nodeType!==3||(b=x+h),W!==m||f!==0&&W.nodeType!==3||(T=x+f),W.nodeType===3&&(x+=W.nodeValue.length),(Y=W.firstChild)!==null;)q=W,W=Y;for(;;){if(W===s)break t;if(q===a&&++P===h&&(b=x),q===m&&++V===f&&(T=x),(Y=W.nextSibling)!==null)break;W=q,q=W.parentNode}W=Y}a=b===-1||T===-1?null:{start:b,end:T}}else a=null}a=a||{start:0,end:0}}else a=null;for(ec={focusedElem:s,selectionRange:a},mo=!1,ee=i;ee!==null;)if(i=ee,s=i.child,(i.subtreeFlags&1028)!==0&&s!==null)s.return=i,ee=s;else for(;ee!==null;){i=ee;try{var te=i.alternate;if((i.flags&1024)!==0)switch(i.tag){case 0:case 11:case 15:break;case 1:if(te!==null){var ne=te.memoizedProps,Fe=te.memoizedState,L=i.stateNode,N=L.getSnapshotBeforeUpdate(i.elementType===i.type?ne:Qt(i.type,ne),Fe);L.__reactInternalSnapshotBeforeUpdate=N}break;case 3:var j=i.stateNode.containerInfo;j.nodeType===1?j.textContent="":j.nodeType===9&&j.documentElement&&j.removeChild(j.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error(n(163))}}catch(Q){Re(i,i.return,Q)}if(s=i.sibling,s!==null){s.return=i.return,ee=s;break}ee=i.return}return te=Xh,Xh=!1,te}function Si(s,i,a){var f=i.updateQueue;if(f=f!==null?f.lastEffect:null,f!==null){var h=f=f.next;do{if((h.tag&s)===s){var m=h.destroy;h.destroy=void 0,m!==void 0&&zc(i,a,m)}h=h.next}while(h!==f)}}function Jo(s,i){if(i=i.updateQueue,i=i!==null?i.lastEffect:null,i!==null){var a=i=i.next;do{if((a.tag&s)===s){var f=a.create;a.destroy=f()}a=a.next}while(a!==i)}}function Hc(s){var i=s.ref;if(i!==null){var a=s.stateNode;switch(s.tag){case 5:s=a;break;default:s=a}typeof i=="function"?i(s):i.current=s}}function Yh(s){var i=s.alternate;i!==null&&(s.alternate=null,Yh(i)),s.child=null,s.deletions=null,s.sibling=null,s.tag===5&&(i=s.stateNode,i!==null&&(delete i[on],delete i[ci],delete i[sc],delete i[Lw],delete i[Mw])),s.stateNode=null,s.return=null,s.dependencies=null,s.memoizedProps=null,s.memoizedState=null,s.pendingProps=null,s.stateNode=null,s.updateQueue=null}function Zh(s){return s.tag===5||s.tag===3||s.tag===4}function ep(s){e:for(;;){for(;s.sibling===null;){if(s.return===null||Zh(s.return))return null;s=s.return}for(s.sibling.return=s.return,s=s.sibling;s.tag!==5&&s.tag!==6&&s.tag!==18;){if(s.flags&2||s.child===null||s.tag===4)continue e;s.child.return=s,s=s.child}if(!(s.flags&2))return s.stateNode}}function Uc(s,i,a){var f=s.tag;if(f===5||f===6)s=s.stateNode,i?a.nodeType===8?a.parentNode.insertBefore(s,i):a.insertBefore(s,i):(a.nodeType===8?(i=a.parentNode,i.insertBefore(s,a)):(i=a,i.appendChild(s)),a=a._reactRootContainer,a!=null||i.onclick!==null||(i.onclick=Co));else if(f!==4&&(s=s.child,s!==null))for(Uc(s,i,a),s=s.sibling;s!==null;)Uc(s,i,a),s=s.sibling}function qc(s,i,a){var f=s.tag;if(f===5||f===6)s=s.stateNode,i?a.insertBefore(s,i):a.appendChild(s);else if(f!==4&&(s=s.child,s!==null))for(qc(s,i,a),s=s.sibling;s!==null;)qc(s,i,a),s=s.sibling}var Ye=null,Jt=!1;function Vn(s,i,a){for(a=a.child;a!==null;)tp(s,i,a),a=a.sibling}function tp(s,i,a){if(sn&&typeof sn.onCommitFiberUnmount=="function")try{sn.onCommitFiberUnmount(ao,a)}catch{}switch(a.tag){case 5:ot||ss(a,i);case 6:var f=Ye,h=Jt;Ye=null,Vn(s,i,a),Ye=f,Jt=h,Ye!==null&&(Jt?(s=Ye,a=a.stateNode,s.nodeType===8?s.parentNode.removeChild(a):s.removeChild(a)):Ye.removeChild(a.stateNode));break;case 18:Ye!==null&&(Jt?(s=Ye,a=a.stateNode,s.nodeType===8?rc(s.parentNode,a):s.nodeType===1&&rc(s,a),Ys(s)):rc(Ye,a.stateNode));break;case 4:f=Ye,h=Jt,Ye=a.stateNode.containerInfo,Jt=!0,Vn(s,i,a),Ye=f,Jt=h;break;case 0:case 11:case 14:case 15:if(!ot&&(f=a.updateQueue,f!==null&&(f=f.lastEffect,f!==null))){h=f=f.next;do{var m=h,x=m.destroy;m=m.tag,x!==void 0&&((m&2)!==0||(m&4)!==0)&&zc(a,i,x),h=h.next}while(h!==f)}Vn(s,i,a);break;case 1:if(!ot&&(ss(a,i),f=a.stateNode,typeof f.componentWillUnmount=="function"))try{f.props=a.memoizedProps,f.state=a.memoizedState,f.componentWillUnmount()}catch(b){Re(a,i,b)}Vn(s,i,a);break;case 21:Vn(s,i,a);break;case 22:a.mode&1?(ot=(f=ot)||a.memoizedState!==null,Vn(s,i,a),ot=f):Vn(s,i,a);break;default:Vn(s,i,a)}}function np(s){var i=s.updateQueue;if(i!==null){s.updateQueue=null;var a=s.stateNode;a===null&&(a=s.stateNode=new Gw),i.forEach(function(f){var h=s0.bind(null,s,f);a.has(f)||(a.add(f),f.then(h,h))})}}function Xt(s,i){var a=i.deletions;if(a!==null)for(var f=0;fh&&(h=x),f&=~m}if(f=h,f=De()-f,f=(120>f?120:480>f?480:1080>f?1080:1920>f?1920:3e3>f?3e3:4320>f?4320:1960*Xw(f/1960))-f,10s?16:s,Kn===null)var f=!1;else{if(s=Kn,Kn=null,tl=0,(ve&6)!==0)throw Error(n(331));var h=ve;for(ve|=4,ee=s.current;ee!==null;){var m=ee,x=m.child;if((ee.flags&16)!==0){var b=m.deletions;if(b!==null){for(var T=0;TDe()-Kc?mr(s,0):Wc|=a),St(s,i)}function mp(s,i){i===0&&((s.mode&1)===0?i=1:(i=uo,uo<<=1,(uo&130023424)===0&&(uo=4194304)));var a=ft();s=vn(s,i),s!==null&&(Ks(s,i,a),St(s,a))}function r0(s){var i=s.memoizedState,a=0;i!==null&&(a=i.retryLane),mp(s,a)}function s0(s,i){var a=0;switch(s.tag){case 13:var f=s.stateNode,h=s.memoizedState;h!==null&&(a=h.retryLane);break;case 19:f=s.stateNode;break;default:throw Error(n(314))}f!==null&&f.delete(i),mp(s,a)}var gp;gp=function(s,i,a){if(s!==null)if(s.memoizedProps!==i.pendingProps||gt.current)vt=!0;else{if((s.lanes&a)===0&&(i.flags&128)===0)return vt=!1,Vw(s,i,a);vt=(s.flags&131072)!==0}else vt=!1,Ie&&(i.flags&1048576)!==0&&Qd(i,jo,i.index);switch(i.lanes=0,i.tag){case 2:var f=i.type;Go(s,i),s=i.pendingProps;var h=Qr(i,rt.current);ts(i,a),h=kc(null,i,f,s,h,a);var m=bc();return i.flags|=1,typeof h=="object"&&h!==null&&typeof h.render=="function"&&h.$$typeof===void 0?(i.tag=1,i.memoizedState=null,i.updateQueue=null,yt(f)?(m=!0,Io(i)):m=!1,i.memoizedState=h.state!==null&&h.state!==void 0?h.state:null,yc(i),h.updater=Wo,i.stateNode=h,h._reactInternals=i,Lc(i,f,s,a),i=Oc(null,i,f,!0,m,a)):(i.tag=0,Ie&&m&&lc(i),ut(null,i,h,a),i=i.child),i;case 16:f=i.elementType;e:{switch(Go(s,i),s=i.pendingProps,h=f._init,f=h(f._payload),i.type=f,h=i.tag=o0(f),s=Qt(f,s),h){case 0:i=Pc(null,i,f,s,a);break e;case 1:i=Hh(null,i,f,s,a);break e;case 11:i=Rh(null,i,f,s,a);break e;case 14:i=Dh(null,i,f,Qt(f.type,s),a);break e}throw Error(n(306,f,""))}return i;case 0:return f=i.type,h=i.pendingProps,h=i.elementType===f?h:Qt(f,h),Pc(s,i,f,h,a);case 1:return f=i.type,h=i.pendingProps,h=i.elementType===f?h:Qt(f,h),Hh(s,i,f,h,a);case 3:e:{if(Uh(i),s===null)throw Error(n(387));f=i.pendingProps,m=i.memoizedState,h=m.element,sh(s,i),Fo(i,f,null,a);var x=i.memoizedState;if(f=x.element,m.isDehydrated)if(m={element:f,isDehydrated:!1,cache:x.cache,pendingSuspenseBoundaries:x.pendingSuspenseBoundaries,transitions:x.transitions},i.updateQueue.baseState=m,i.memoizedState=m,i.flags&256){h=rs(Error(n(423)),i),i=qh(s,i,f,a,h);break e}else if(f!==h){h=rs(Error(n(424)),i),i=qh(s,i,f,a,h);break e}else for(At=Fn(i.stateNode.containerInfo.firstChild),Nt=i,Ie=!0,Gt=null,a=nh(i,null,f,a),i.child=a;a;)a.flags=a.flags&-3|4096,a=a.sibling;else{if(Yr(),f===h){i=Sn(s,i,a);break e}ut(s,i,f,a)}i=i.child}return i;case 5:return lh(i),s===null&&uc(i),f=i.type,h=i.pendingProps,m=s!==null?s.memoizedProps:null,x=h.children,tc(f,h)?x=null:m!==null&&tc(f,m)&&(i.flags|=32),zh(s,i),ut(s,i,x,a),i.child;case 6:return s===null&&uc(i),null;case 13:return Vh(s,i,a);case 4:return vc(i,i.stateNode.containerInfo),f=i.pendingProps,s===null?i.child=Zr(i,null,f,a):ut(s,i,f,a),i.child;case 11:return f=i.type,h=i.pendingProps,h=i.elementType===f?h:Qt(f,h),Rh(s,i,f,h,a);case 7:return ut(s,i,i.pendingProps,a),i.child;case 8:return ut(s,i,i.pendingProps.children,a),i.child;case 12:return ut(s,i,i.pendingProps.children,a),i.child;case 10:e:{if(f=i.type._context,h=i.pendingProps,m=i.memoizedProps,x=h.value,Te($o,f._currentValue),f._currentValue=x,m!==null)if(Kt(m.value,x)){if(m.children===h.children&&!gt.current){i=Sn(s,i,a);break e}}else for(m=i.child,m!==null&&(m.return=i);m!==null;){var b=m.dependencies;if(b!==null){x=m.child;for(var T=b.firstContext;T!==null;){if(T.context===f){if(m.tag===1){T=wn(-1,a&-a),T.tag=2;var P=m.updateQueue;if(P!==null){P=P.shared;var V=P.pending;V===null?T.next=T:(T.next=V.next,V.next=T),P.pending=T}}m.lanes|=a,T=m.alternate,T!==null&&(T.lanes|=a),mc(m.return,a,i),b.lanes|=a;break}T=T.next}}else if(m.tag===10)x=m.type===i.type?null:m.child;else if(m.tag===18){if(x=m.return,x===null)throw Error(n(341));x.lanes|=a,b=x.alternate,b!==null&&(b.lanes|=a),mc(x,a,i),x=m.sibling}else x=m.child;if(x!==null)x.return=m;else for(x=m;x!==null;){if(x===i){x=null;break}if(m=x.sibling,m!==null){m.return=x.return,x=m;break}x=x.return}m=x}ut(s,i,h.children,a),i=i.child}return i;case 9:return h=i.type,f=i.pendingProps.children,ts(i,a),h=$t(h),f=f(h),i.flags|=1,ut(s,i,f,a),i.child;case 14:return f=i.type,h=Qt(f,i.pendingProps),h=Qt(f.type,h),Dh(s,i,f,h,a);case 15:return Fh(s,i,i.type,i.pendingProps,a);case 17:return f=i.type,h=i.pendingProps,h=i.elementType===f?h:Qt(f,h),Go(s,i),i.tag=1,yt(f)?(s=!0,Io(i)):s=!1,ts(i,a),Ih(i,f,h),Lc(i,f,h,a),Oc(null,i,f,!0,s,a);case 19:return Kh(s,i,a);case 22:return Bh(s,i,a)}throw Error(n(156,i.tag))};function yp(s,i){return Jf(s,i)}function i0(s,i,a,f){this.tag=s,this.key=a,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=i,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=f,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function Ft(s,i,a,f){return new i0(s,i,a,f)}function tu(s){return s=s.prototype,!(!s||!s.isReactComponent)}function o0(s){if(typeof s=="function")return tu(s)?1:0;if(s!=null){if(s=s.$$typeof,s===O)return 11;if(s===Ae)return 14}return 2}function Jn(s,i){var a=s.alternate;return a===null?(a=Ft(s.tag,i,s.key,s.mode),a.elementType=s.elementType,a.type=s.type,a.stateNode=s.stateNode,a.alternate=s,s.alternate=a):(a.pendingProps=i,a.type=s.type,a.flags=0,a.subtreeFlags=0,a.deletions=null),a.flags=s.flags&14680064,a.childLanes=s.childLanes,a.lanes=s.lanes,a.child=s.child,a.memoizedProps=s.memoizedProps,a.memoizedState=s.memoizedState,a.updateQueue=s.updateQueue,i=s.dependencies,a.dependencies=i===null?null:{lanes:i.lanes,firstContext:i.firstContext},a.sibling=s.sibling,a.index=s.index,a.ref=s.ref,a}function il(s,i,a,f,h,m){var x=2;if(f=s,typeof s=="function")tu(s)&&(x=1);else if(typeof s=="string")x=5;else e:switch(s){case H:return yr(a.children,h,m,i);case F:x=8,h|=8;break;case M:return s=Ft(12,a,i,h|2),s.elementType=M,s.lanes=m,s;case X:return s=Ft(13,a,i,h),s.elementType=X,s.lanes=m,s;case ce:return s=Ft(19,a,i,h),s.elementType=ce,s.lanes=m,s;case ge:return ol(a,h,m,i);default:if(typeof s=="object"&&s!==null)switch(s.$$typeof){case G:x=10;break e;case K:x=9;break e;case O:x=11;break e;case Ae:x=14;break e;case be:x=16,f=null;break e}throw Error(n(130,s==null?s:typeof s,""))}return i=Ft(x,a,i,h),i.elementType=s,i.type=f,i.lanes=m,i}function yr(s,i,a,f){return s=Ft(7,s,f,i),s.lanes=a,s}function ol(s,i,a,f){return s=Ft(22,s,f,i),s.elementType=ge,s.lanes=a,s.stateNode={isHidden:!1},s}function nu(s,i,a){return s=Ft(6,s,null,i),s.lanes=a,s}function ru(s,i,a){return i=Ft(4,s.children!==null?s.children:[],s.key,i),i.lanes=a,i.stateNode={containerInfo:s.containerInfo,pendingChildren:null,implementation:s.implementation},i}function l0(s,i,a,f,h){this.tag=i,this.containerInfo=s,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=Ia(0),this.expirationTimes=Ia(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Ia(0),this.identifierPrefix=f,this.onRecoverableError=h,this.mutableSourceEagerHydrationData=null}function su(s,i,a,f,h,m,x,b,T){return s=new l0(s,i,a,b,T),i===1?(i=1,m===!0&&(i|=8)):i=0,m=Ft(3,null,null,i),s.current=m,m.stateNode=s,m.memoizedState={element:f,isDehydrated:a,cache:null,transitions:null,pendingSuspenseBoundaries:null},yc(m),s}function a0(s,i,a){var f=3"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(t)}catch(e){console.error(e)}}return t(),uu.exports=C0(),uu.exports}var jp;function A0(){if(jp)return hl;jp=1;var t=N0();return hl.createRoot=t.createRoot,hl.hydrateRoot=t.hydrateRoot,hl}var Ik=A0();const ji=Symbol("context"),$m=Symbol("nextInContext"),Rm=Symbol("prevByEndTime"),Dm=Symbol("nextByStartTime"),Pp=Symbol("events");class Lk{constructor(e){Ee(this,"startTime");Ee(this,"endTime");Ee(this,"browserName");Ee(this,"channel");Ee(this,"platform");Ee(this,"wallTime");Ee(this,"title");Ee(this,"options");Ee(this,"pages");Ee(this,"actions");Ee(this,"attachments");Ee(this,"visibleAttachments");Ee(this,"events");Ee(this,"stdio");Ee(this,"errors");Ee(this,"errorDescriptors");Ee(this,"hasSource");Ee(this,"hasStepData");Ee(this,"sdkLanguage");Ee(this,"testIdAttributeName");Ee(this,"sources");Ee(this,"resources");e.forEach(r=>I0(r));const n=e.find(r=>r.origin==="library");this.browserName=(n==null?void 0:n.browserName)||"",this.sdkLanguage=n==null?void 0:n.sdkLanguage,this.channel=n==null?void 0:n.channel,this.testIdAttributeName=n==null?void 0:n.testIdAttributeName,this.platform=(n==null?void 0:n.platform)||"",this.title=(n==null?void 0:n.title)||"",this.options=(n==null?void 0:n.options)||{},this.actions=L0(e),this.pages=[].concat(...e.map(r=>r.pages)),this.wallTime=e.map(r=>r.wallTime).reduce((r,o)=>Math.min(r||Number.MAX_VALUE,o),Number.MAX_VALUE),this.startTime=e.map(r=>r.startTime).reduce((r,o)=>Math.min(r,o),Number.MAX_VALUE),this.endTime=e.map(r=>r.endTime).reduce((r,o)=>Math.max(r,o),Number.MIN_VALUE),this.events=[].concat(...e.map(r=>r.events)),this.stdio=[].concat(...e.map(r=>r.stdio)),this.errors=[].concat(...e.map(r=>r.errors)),this.hasSource=e.some(r=>r.hasSource),this.hasStepData=e.some(r=>r.origin==="testRunner"),this.resources=[...e.map(r=>r.resources)].flat(),this.attachments=this.actions.flatMap(r=>{var o;return((o=r.attachments)==null?void 0:o.map(l=>({...l,traceUrl:r.context.traceUrl})))??[]}),this.visibleAttachments=this.attachments.filter(r=>!r.name.startsWith("_")),this.events.sort((r,o)=>r.time-o.time),this.resources.sort((r,o)=>r._monotonicTime-o._monotonicTime),this.errorDescriptors=this.hasStepData?this._errorDescriptorsFromTestRunner():this._errorDescriptorsFromActions(),this.sources=B0(this.actions,this.errorDescriptors)}failedAction(){return this.actions.findLast(e=>e.error)}_errorDescriptorsFromActions(){var n;const e=[];for(const r of this.actions||[])(n=r.error)!=null&&n.message&&e.push({action:r,stack:r.stack,message:r.error.message});return e}_errorDescriptorsFromTestRunner(){return this.errors.filter(e=>!!e.message).map((e,n)=>({stack:e.stack,message:e.message}))}}function I0(t){for(const n of t.pages)n[ji]=t;for(let n=0;n=0;n--){const r=t.actions[n];r[$m]=e,r.class!=="Route"&&(e=r)}for(const n of t.events)n[ji]=t;for(const n of t.resources)n[ji]=t}function L0(t){const e=new Map;for(const o of t){const l=o.traceUrl;let c=e.get(l);c||(c=[],e.set(l,c)),c.push(o)}const n=[];let r=0;for(const[,o]of e){e.size>1&&M0(o,++r);const l=j0(o);n.push(...l)}n.sort((o,l)=>l.parentId===o.callId?1:o.parentId===l.callId?-1:o.endTime-l.endTime);for(let o=1;ol.parentId===o.callId?-1:o.parentId===l.callId?1:o.startTime-l.startTime);for(let o=0;o+1c.origin==="library"),r=t.filter(c=>c.origin==="testRunner");if(!r.length||!n.length)return t.map(c=>c.actions.map(u=>({...u,context:c}))).flat();for(const c of n)for(const u of c.actions)e.set(u.stepId||`tmp-step@${++Op}`,{...u,context:c});const o=O0(r,e);o&&P0(n,o);const l=new Map;for(const c of r)for(const u of c.actions){const d=u.stepId&&e.get(u.stepId);if(d){l.set(u.callId,d.callId),u.error&&(d.error=u.error),u.attachments&&(d.attachments=u.attachments),u.annotations&&(d.annotations=u.annotations),u.parentId&&(d.parentId=l.get(u.parentId)??u.parentId),d.startTime=u.startTime,d.endTime=u.endTime;continue}u.parentId&&(u.parentId=l.get(u.parentId)??u.parentId),e.set(u.stepId||`tmp-step@${++Op}`,{...u,context:c})}return[...e.values()]}function P0(t,e){for(const n of t){n.startTime+=e,n.endTime+=e;for(const r of n.actions)r.startTime&&(r.startTime+=e),r.endTime&&(r.endTime+=e);for(const r of n.events)r.time+=e;for(const r of n.stdio)r.timestamp+=e;for(const r of n.pages)for(const o of r.screencastFrames)o.timestamp+=e;for(const r of n.resources)r._monotonicTime&&(r._monotonicTime+=e)}}function O0(t,e){for(const n of t)for(const r of n.actions){if(!r.startTime)continue;const o=r.stepId?e.get(r.stepId):void 0;if(o)return r.startTime-o.startTime}return 0}function $0(t){const e=new Map;for(const r of t)e.set(r.callId,{id:r.callId,parent:void 0,children:[],action:r});const n={id:"",parent:void 0,children:[]};for(const r of e.values()){const o=r.action.parentId&&e.get(r.action.parentId)||n;o.children.push(r),r.parent=o}return{rootItem:n,itemMap:e}}function Rl(t){return t[ji]}function R0(t){return t[$m]}function $p(t){return t[Rm]}function Rp(t){return t[Dm]}function D0(t){let e=0,n=0;for(const r of F0(t)){if(r.type==="console"){const o=r.messageType;o==="warning"?++n:o==="error"&&++e}r.type==="event"&&r.method==="pageError"&&++e}return{errors:e,warnings:n}}function F0(t){let e=t[Pp];if(e)return e;const n=R0(t);return e=Rl(t).events.filter(r=>r.time>=t.startTime&&(!n||r.time{const d=Math.max(o,t)*window.devicePixelRatio,[p,g]=Ts(l?l+"."+r+":size":void 0,d),[y,v]=Ts(l?l+"."+r+":size":void 0,d),[S,k]=$.useState(null),[_,E]=Ar();let C;r==="vertical"?(C=y/window.devicePixelRatio,_&&_.heightk({offset:r==="vertical"?B.clientY:B.clientX,size:C}),onMouseUp:()=>k(null),onMouseMove:B=>{if(!B.buttons)k(null);else if(S){const D=(r==="vertical"?B.clientY:B.clientX)-S.offset,z=n?S.size+D:S.size-D,F=B.target.parentElement.getBoundingClientRect(),M=Math.min(Math.max(o,z),(r==="vertical"?F.height:F.width)-o);r==="vertical"?v(M*window.devicePixelRatio):g(M*window.devicePixelRatio)}}})]})},qe=function(t,e,n){return t>=e&&t<=n};function _t(t){return qe(t,48,57)}function Dp(t){return _t(t)||qe(t,65,70)||qe(t,97,102)}function H0(t){return qe(t,65,90)}function U0(t){return qe(t,97,122)}function q0(t){return H0(t)||U0(t)}function V0(t){return t>=128}function kl(t){return q0(t)||V0(t)||t===95}function Fp(t){return kl(t)||_t(t)||t===45}function W0(t){return qe(t,0,8)||t===11||qe(t,14,31)||t===127}function bl(t){return t===10}function _n(t){return bl(t)||t===9||t===32}const K0=1114111;class Qu extends Error{constructor(e){super(e),this.name="InvalidCharacterError"}}function G0(t){const e=[];for(let n=0;n=e.length?-1:e[O]},c=function(O){if(O===void 0&&(O=1),O>3)throw"Spec Error: no more than three codepoints of lookahead.";return l(n+O)},u=function(O){return O===void 0&&(O=1),n+=O,o=l(n),!0},d=function(){return n-=1,!0},p=function(O){return O===void 0&&(O=o),O===-1},g=function(){if(y(),u(),_n(o)){for(;_n(c());)u();return new Fl}else{if(o===34)return k();if(o===35)if(Fp(c())||C(c(1),c(2))){const O=new Ym("");return B(c(1),c(2),c(3))&&(O.type="id"),O.value=H(),O}else return new et(o);else return o===36?c()===61?(u(),new Y0):new et(o):o===39?k():o===40?new Qm:o===41?new Ju:o===42?c()===61?(u(),new Z0):new et(o):o===43?z()?(d(),v()):new et(o):o===44?new Vm:o===45?z()?(d(),v()):c(1)===45&&c(2)===62?(u(2),new Hm):R()?(d(),S()):new et(o):o===46?z()?(d(),v()):new et(o):o===58?new Um:o===59?new qm:o===60?c(1)===33&&c(2)===45&&c(3)===45?(u(3),new zm):new et(o):o===64?B(c(1),c(2),c(3))?new Xm(H()):new et(o):o===91?new Gm:o===92?A()?(d(),S()):new et(o):o===93?new Mu:o===94?c()===61?(u(),new X0):new et(o):o===123?new Wm:o===124?c()===61?(u(),new J0):c()===124?(u(),new Jm):new et(o):o===125?new Km:o===126?c()===61?(u(),new Q0):new et(o):_t(o)?(d(),v()):kl(o)?(d(),S()):p()?new Cl:new et(o)}},y=function(){for(;c(1)===47&&c(2)===42;)for(u(2);;)if(u(),o===42&&c()===47){u();break}else if(p())return},v=function(){const O=F();if(B(c(1),c(2),c(3))){const X=new e1;return X.value=O.value,X.repr=O.repr,X.type=O.type,X.unit=H(),X}else if(c()===37){u();const X=new tg;return X.value=O.value,X.repr=O.repr,X}else{const X=new eg;return X.value=O.value,X.repr=O.repr,X.type=O.type,X}},S=function(){const O=H();if(O.toLowerCase()==="url"&&c()===40){for(u();_n(c(1))&&_n(c(2));)u();return c()===34||c()===39?new Di(O):_n(c())&&(c(2)===34||c(2)===39)?new Di(O):_()}else return c()===40?(u(),new Di(O)):new Xu(O)},k=function(O){O===void 0&&(O=o);let X="";for(;u();){if(o===O||p())return new Yu(X);if(bl(o))return d(),new Bm;o===92?p(c())||(bl(c())?u():X+=Ke(E())):X+=Ke(o)}throw new Error("Internal error")},_=function(){const O=new Zm("");for(;_n(c());)u();if(p(c()))return O;for(;u();){if(o===41||p())return O;if(_n(o)){for(;_n(c());)u();return c()===41||p(c())?(u(),O):(G(),new Tl)}else{if(o===34||o===39||o===40||W0(o))return G(),new Tl;if(o===92)if(A())O.value+=Ke(E());else return G(),new Tl;else O.value+=Ke(o)}}throw new Error("Internal error")},E=function(){if(u(),Dp(o)){const O=[o];for(let ce=0;ce<5&&Dp(c());ce++)u(),O.push(o);_n(c())&&u();let X=parseInt(O.map(function(ce){return String.fromCharCode(ce)}).join(""),16);return X>K0&&(X=65533),X}else return p()?65533:o},C=function(O,X){return!(O!==92||bl(X))},A=function(){return C(o,c())},B=function(O,X,ce){return O===45?kl(X)||X===45||C(X,ce):kl(O)?!0:O===92?C(O,X):!1},R=function(){return B(o,c(1),c(2))},D=function(O,X,ce){return O===43||O===45?!!(_t(X)||X===46&&_t(ce)):O===46?!!_t(X):!!_t(O)},z=function(){return D(o,c(1),c(2))},H=function(){let O="";for(;u();)if(Fp(o))O+=Ke(o);else if(A())O+=Ke(E());else return d(),O;throw new Error("Internal parse error")},F=function(){let O="",X="integer";for((c()===43||c()===45)&&(u(),O+=Ke(o));_t(c());)u(),O+=Ke(o);if(c(1)===46&&_t(c(2)))for(u(),O+=Ke(o),u(),O+=Ke(o),X="number";_t(c());)u(),O+=Ke(o);const ce=c(1),Ae=c(2),be=c(3);if((ce===69||ce===101)&&_t(Ae))for(u(),O+=Ke(o),u(),O+=Ke(o),X="number";_t(c());)u(),O+=Ke(o);else if((ce===69||ce===101)&&(Ae===43||Ae===45)&&_t(be))for(u(),O+=Ke(o),u(),O+=Ke(o),u(),O+=Ke(o),X="number";_t(c());)u(),O+=Ke(o);const ge=M(O);return{type:X,value:ge,repr:O}},M=function(O){return+O},G=function(){for(;u();){if(o===41||p())return;A()&&E()}};let K=0;for(;!p(c());)if(r.push(g()),K++,K>e.length*2)throw new Error("I'm infinite-looping!");return r}class ze{constructor(){this.tokenType=""}toJSON(){return{token:this.tokenType}}toString(){return this.tokenType}toSource(){return""+this}}class Bm extends ze{constructor(){super(...arguments),this.tokenType="BADSTRING"}}class Tl extends ze{constructor(){super(...arguments),this.tokenType="BADURL"}}class Fl extends ze{constructor(){super(...arguments),this.tokenType="WHITESPACE"}toString(){return"WS"}toSource(){return" "}}class zm extends ze{constructor(){super(...arguments),this.tokenType="CDO"}toSource(){return""}}class Um extends ze{constructor(){super(...arguments),this.tokenType=":"}}class qm extends ze{constructor(){super(...arguments),this.tokenType=";"}}class Vm extends ze{constructor(){super(...arguments),this.tokenType=","}}class Is extends ze{constructor(){super(...arguments),this.value="",this.mirror=""}}class Wm extends Is{constructor(){super(),this.tokenType="{",this.value="{",this.mirror="}"}}class Km extends Is{constructor(){super(),this.tokenType="}",this.value="}",this.mirror="{"}}class Gm extends Is{constructor(){super(),this.tokenType="[",this.value="[",this.mirror="]"}}class Mu extends Is{constructor(){super(),this.tokenType="]",this.value="]",this.mirror="["}}class Qm extends Is{constructor(){super(),this.tokenType="(",this.value="(",this.mirror=")"}}class Ju extends Is{constructor(){super(),this.tokenType=")",this.value=")",this.mirror="("}}class Q0 extends ze{constructor(){super(...arguments),this.tokenType="~="}}class J0 extends ze{constructor(){super(...arguments),this.tokenType="|="}}class X0 extends ze{constructor(){super(...arguments),this.tokenType="^="}}class Y0 extends ze{constructor(){super(...arguments),this.tokenType="$="}}class Z0 extends ze{constructor(){super(...arguments),this.tokenType="*="}}class Jm extends ze{constructor(){super(...arguments),this.tokenType="||"}}class Cl extends ze{constructor(){super(...arguments),this.tokenType="EOF"}toSource(){return""}}class et extends ze{constructor(e){super(),this.tokenType="DELIM",this.value="",this.value=Ke(e)}toString(){return"DELIM("+this.value+")"}toJSON(){const e=this.constructor.prototype.constructor.prototype.toJSON.call(this);return e.value=this.value,e}toSource(){return this.value==="\\"?`\\ -`:this.value}}class Ls extends ze{constructor(){super(...arguments),this.value=""}ASCIIMatch(e){return this.value.toLowerCase()===e.toLowerCase()}toJSON(){const e=this.constructor.prototype.constructor.prototype.toJSON.call(this);return e.value=this.value,e}}class Xu extends Ls{constructor(e){super(),this.tokenType="IDENT",this.value=e}toString(){return"IDENT("+this.value+")"}toSource(){return Qi(this.value)}}class Di extends Ls{constructor(e){super(),this.tokenType="FUNCTION",this.value=e,this.mirror=")"}toString(){return"FUNCTION("+this.value+")"}toSource(){return Qi(this.value)+"("}}class Xm extends Ls{constructor(e){super(),this.tokenType="AT-KEYWORD",this.value=e}toString(){return"AT("+this.value+")"}toSource(){return"@"+Qi(this.value)}}class Ym extends Ls{constructor(e){super(),this.tokenType="HASH",this.value=e,this.type="unrestricted"}toString(){return"HASH("+this.value+")"}toJSON(){const e=this.constructor.prototype.constructor.prototype.toJSON.call(this);return e.value=this.value,e.type=this.type,e}toSource(){return this.type==="id"?"#"+Qi(this.value):"#"+t1(this.value)}}class Yu extends Ls{constructor(e){super(),this.tokenType="STRING",this.value=e}toString(){return'"'+ng(this.value)+'"'}}class Zm extends Ls{constructor(e){super(),this.tokenType="URL",this.value=e}toString(){return"URL("+this.value+")"}toSource(){return'url("'+ng(this.value)+'")'}}class eg extends ze{constructor(){super(),this.tokenType="NUMBER",this.type="integer",this.repr=""}toString(){return this.type==="integer"?"INT("+this.value+")":"NUMBER("+this.value+")"}toJSON(){const e=super.toJSON();return e.value=this.value,e.type=this.type,e.repr=this.repr,e}toSource(){return this.repr}}class tg extends ze{constructor(){super(),this.tokenType="PERCENTAGE",this.repr=""}toString(){return"PERCENTAGE("+this.value+")"}toJSON(){const e=this.constructor.prototype.constructor.prototype.toJSON.call(this);return e.value=this.value,e.repr=this.repr,e}toSource(){return this.repr+"%"}}class e1 extends ze{constructor(){super(),this.tokenType="DIMENSION",this.type="integer",this.repr="",this.unit=""}toString(){return"DIM("+this.value+","+this.unit+")"}toJSON(){const e=this.constructor.prototype.constructor.prototype.toJSON.call(this);return e.value=this.value,e.type=this.type,e.repr=this.repr,e.unit=this.unit,e}toSource(){const e=this.repr;let n=Qi(this.unit);return n[0].toLowerCase()==="e"&&(n[1]==="-"||qe(n.charCodeAt(1),48,57))&&(n="\\65 "+n.slice(1,n.length)),e+n}}function Qi(t){t=""+t;let e="";const n=t.charCodeAt(0);for(let r=0;r=128||o===45||o===95||qe(o,48,57)||qe(o,65,90)||qe(o,97,122)?e+=t[r]:e+="\\"+t[r]}return e}function t1(t){t=""+t;let e="";for(let n=0;n=128||r===45||r===95||qe(r,48,57)||qe(r,65,90)||qe(r,97,122)?e+=t[n]:e+="\\"+r.toString(16)+" "}return e}function ng(t){t=""+t;let e="";for(let n=0;nM instanceof Xm||M instanceof Bm||M instanceof Tl||M instanceof Jm||M instanceof zm||M instanceof Hm||M instanceof qm||M instanceof Wm||M instanceof Km||M instanceof Zm||M instanceof tg);if(r)throw new Et(`Unsupported token "${r.toSource()}" while parsing css selector "${t}". Did you mean to CSS.escape it?`);let o=0;const l=new Set;function c(){return new Et(`Unexpected token "${n[o].toSource()}" while parsing css selector "${t}". Did you mean to CSS.escape it?`)}function u(){for(;n[o]instanceof Fl;)o++}function d(M=o){return n[M]instanceof Xu}function p(M=o){return n[M]instanceof Yu}function g(M=o){return n[M]instanceof eg}function y(M=o){return n[M]instanceof Vm}function v(M=o){return n[M]instanceof Qm}function S(M=o){return n[M]instanceof Ju}function k(M=o){return n[M]instanceof Di}function _(M=o){return n[M]instanceof et&&n[M].value==="*"}function E(M=o){return n[M]instanceof Cl}function C(M=o){return n[M]instanceof et&&[">","+","~"].includes(n[M].value)}function A(M=o){return y(M)||S(M)||E(M)||C(M)||n[M]instanceof Fl}function B(){const M=[R()];for(;u(),!!y();)o++,M.push(R());return M}function R(){return u(),g()||p()?n[o++].value:D()}function D(){const M={simples:[]};for(u(),C()?M.simples.push({selector:{functions:[{name:"scope",args:[]}]},combinator:""}):M.simples.push({selector:z(),combinator:""});;){if(u(),C())M.simples[M.simples.length-1].combinator=n[o++].value,u();else if(A())break;M.simples.push({combinator:"",selector:z()})}return M}function z(){let M="";const G=[];for(;!A();)if(d()||_())M+=n[o++].toSource();else if(n[o]instanceof Ym)M+=n[o++].toSource();else if(n[o]instanceof et&&n[o].value===".")if(o++,d())M+="."+n[o++].toSource();else throw c();else if(n[o]instanceof Um)if(o++,d())if(!e.has(n[o].value.toLowerCase()))M+=":"+n[o++].toSource();else{const K=n[o++].value.toLowerCase();G.push({name:K,args:[]}),l.add(K)}else if(k()){const K=n[o++].value.toLowerCase();if(e.has(K)?(G.push({name:K,args:B()}),l.add(K)):M+=`:${K}(${H()})`,u(),!S())throw c();o++}else throw c();else if(n[o]instanceof Gm){for(M+="[",o++;!(n[o]instanceof Mu)&&!E();)M+=n[o++].toSource();if(!(n[o]instanceof Mu))throw c();M+="]",o++}else throw c();if(!M&&!G.length)throw c();return{css:M||void 0,functions:G}}function H(){let M="",G=1;for(;!E()&&((v()||k())&&G++,S()&&G--,!!G);)M+=n[o++].toSource();return M}const F=B();if(!E())throw c();if(F.some(M=>typeof M!="object"||!("simples"in M)))throw new Et(`Error while parsing css selector "${t}". Did you mean to CSS.escape it?`);return{selector:F,names:Array.from(l)}}const ju=new Set(["internal:has","internal:has-not","internal:and","internal:or","internal:chain","left-of","right-of","above","below","near"]),r1=new Set(["left-of","right-of","above","below","near"]),rg=new Set(["not","is","where","has","scope","light","visible","text","text-matches","text-is","has-text","above","below","right-of","left-of","near","nth-match"]);function Ji(t){const e=o1(t),n=[];for(const r of e.parts){if(r.name==="css"||r.name==="css:light"){r.name==="css:light"&&(r.body=":light("+r.body+")");const o=n1(r.body,rg);n.push({name:"css",body:o.selector,source:r.body});continue}if(ju.has(r.name)){let o,l;try{const p=JSON.parse("["+r.body+"]");if(!Array.isArray(p)||p.length<1||p.length>2||typeof p[0]!="string")throw new Et(`Malformed selector: ${r.name}=`+r.body);if(o=p[0],p.length===2){if(typeof p[1]!="number"||!r1.has(r.name))throw new Et(`Malformed selector: ${r.name}=`+r.body);l=p[1]}}catch{throw new Et(`Malformed selector: ${r.name}=`+r.body)}const c={name:r.name,source:r.body,body:{parsed:Ji(o),distance:l}},u=[...c.body.parsed.parts].reverse().find(p=>p.name==="internal:control"&&p.body==="enter-frame"),d=u?c.body.parsed.parts.indexOf(u):-1;d!==-1&&s1(c.body.parsed.parts.slice(0,d+1),n.slice(0,d+1))&&c.body.parsed.parts.splice(0,d+1),n.push(c);continue}n.push({...r,source:r.body})}if(ju.has(n[0].name))throw new Et(`"${n[0].name}" selector cannot be first`);return{capture:e.capture,parts:n}}function s1(t,e){return Tn({parts:t})===Tn({parts:e})}function Tn(t,e){return typeof t=="string"?t:t.parts.map((n,r)=>{let o=!0;!e&&r!==t.capture&&(n.name==="css"||n.name==="xpath"&&n.source.startsWith("//")||n.source.startsWith(".."))&&(o=!1);const l=o?n.name+"=":"";return`${r===t.capture?"*":""}${l}${n.source}`}).join(" >> ")}function i1(t,e){const n=(r,o)=>{for(const l of r.parts)e(l,o),ju.has(l.name)&&n(l.body.parsed,!0)};n(t,!1)}function o1(t){let e=0,n,r=0;const o={parts:[]},l=()=>{const u=t.substring(r,e).trim(),d=u.indexOf("=");let p,g;d!==-1&&u.substring(0,d).trim().match(/^[a-zA-Z_0-9-+:*]+$/)?(p=u.substring(0,d).trim(),g=u.substring(d+1)):u.length>1&&u[0]==='"'&&u[u.length-1]==='"'||u.length>1&&u[0]==="'"&&u[u.length-1]==="'"?(p="text",g=u):/^\(*\/\//.test(u)||u.startsWith("..")?(p="xpath",g=u):(p="css",g=u);let y=!1;if(p[0]==="*"&&(y=!0,p=p.substring(1)),o.parts.push({name:p,body:g}),y){if(o.capture!==void 0)throw new Et("Only one of the selectors can capture using * modifier");o.capture=o.parts.length-1}};if(!t.includes(">>"))return e=t.length,l(),o;const c=()=>{const d=t.substring(r,e).match(/^\s*text\s*=(.*)$/);return!!d&&!!d[1]};for(;e"&&t[e+1]===">"?(l(),e+=2,r=e):e++}return l(),o}function br(t,e){let n=0,r=t.length===0;const o=()=>t[n]||"",l=()=>{const E=o();return++n,r=n>=t.length,E},c=E=>{throw r?new Et(`Unexpected end of selector while parsing selector \`${t}\``):new Et(`Error while parsing selector \`${t}\` - unexpected symbol "${o()}" at position ${n}`+(E?" during "+E:""))};function u(){for(;!r&&/\s/.test(o());)l()}function d(E){return E>="Ā€"||E>="0"&&E<="9"||E>="A"&&E<="Z"||E>="a"&&E<="z"||E>="0"&&E<="9"||E==="_"||E==="-"}function p(){let E="";for(u();!r&&d(o());)E+=l();return E}function g(E){let C=l();for(C!==E&&c("parsing quoted string");!r&&o()!==E;)o()==="\\"&&l(),C+=l();return o()!==E&&c("parsing quoted string"),C+=l(),C}function y(){l()!=="/"&&c("parsing regular expression");let E="",C=!1;for(;!r;){if(o()==="\\")E+=l(),r&&c("parsing regular expression");else if(C&&o()==="]")C=!1;else if(!C&&o()==="[")C=!0;else if(!C&&o()==="/")break;E+=l()}l()!=="/"&&c("parsing regular expression");let A="";for(;!r&&o().match(/[dgimsuy]/);)A+=l();try{return new RegExp(E,A)}catch(B){throw new Et(`Error while parsing selector \`${t}\`: ${B.message}`)}}function v(){let E="";return u(),o()==="'"||o()==='"'?E=g(o()).slice(1,-1):E=p(),E||c("parsing property path"),E}function S(){u();let E="";return r||(E+=l()),!r&&E!=="="&&(E+=l()),["=","*=","^=","$=","|=","~="].includes(E)||c("parsing operator"),E}function k(){l();const E=[];for(E.push(v()),u();o()===".";)l(),E.push(v()),u();if(o()==="]")return l(),{name:E.join("."),jsonPath:E,op:"",value:null,caseSensitive:!1};const C=S();let A,B=!0;if(u(),o()==="/"){if(C!=="=")throw new Et(`Error while parsing selector \`${t}\` - cannot use ${C} in attribute with regular expression`);A=y()}else if(o()==="'"||o()==='"')A=g(o()).slice(1,-1),u(),o()==="i"||o()==="I"?(B=!1,l()):(o()==="s"||o()==="S")&&(B=!0,l());else{for(A="";!r&&(d(o())||o()==="+"||o()===".");)A+=l();A==="true"?A=!0:A==="false"?A=!1:e||(A=+A,Number.isNaN(A)&&c("parsing attribute value"))}if(u(),o()!=="]"&&c("parsing attribute value"),l(),C!=="="&&typeof A!="string")throw new Et(`Error while parsing selector \`${t}\` - cannot use ${C} in attribute with non-string matching value - ${A}`);return{name:E.join("."),jsonPath:E,op:C,value:A,caseSensitive:B}}const _={name:"",attributes:[]};for(_.name=p(),u();o()==="[";)_.attributes.push(k()),u();if(r||c(void 0),!_.name&&!_.attributes.length)throw new Et(`Error while parsing selector \`${t}\` - selector cannot be empty`);return _}function ea(t,e="'"){const n=JSON.stringify(t),r=n.substring(1,n.length-1).replace(/\\"/g,'"');if(e==="'")return e+r.replace(/[']/g,"\\'")+e;if(e==='"')return e+r.replace(/["]/g,'\\"')+e;if(e==="`")return e+r.replace(/[`]/g,"`")+e;throw new Error("Invalid escape char")}function Bl(t){return t.charAt(0).toUpperCase()+t.substring(1)}function sg(t){return t.replace(/([a-z0-9])([A-Z])/g,"$1_$2").replace(/([A-Z])([A-Z][a-z])/g,"$1_$2").toLowerCase()}function ps(t){return`"${t.replace(/["\\]/g,e=>"\\"+e)}"`}let vr;function l1(){vr=new Map}function mt(t){let e=vr==null?void 0:vr.get(t);return e===void 0&&(e=t.replace(/[\u200b\u00ad]/g,"").trim().replace(/\s+/g," "),vr==null||vr.set(t,e)),e}function ta(t){return t.replace(/(^|[^\\])(\\\\)*\\(['"`])/g,"$1$2$3")}function ig(t){return t.unicode||t.unicodeSets?String(t):String(t).replace(/(^|[^\\])(\\\\)*(["'`])/g,"$1$2\\$3").replace(/>>/g,"\\>\\>")}function kt(t,e){return typeof t!="string"?ig(t):`${JSON.stringify(t)}${e?"s":"i"}`}function ht(t,e){return typeof t!="string"?ig(t):`"${t.replace(/\\/g,"\\\\").replace(/["]/g,'\\"')}"${e?"s":"i"}`}function a1(t,e,n=""){if(t.length<=e)return t;const r=[...t];return r.length>e?r.slice(0,e-n.length).join("")+n:r.join("")}function Bp(t,e){return a1(t,e,"…")}function zl(t){return t.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}function c1(t,e){const n=t.length,r=e.length;let o=0,l=0;const c=Array(n+1).fill(null).map(()=>Array(r+1).fill(0));for(let u=1;u<=n;u++)for(let d=1;d<=r;d++)t[u-1]===e[d-1]&&(c[u][d]=c[u-1][d-1]+1,c[u][d]>o&&(o=c[u][d],l=u));return t.slice(l-o,l)}function u1(t,e){try{const n=Ji(e),r=n.parts[n.parts.length-1];if((r==null?void 0:r.name)==="internal:describe"){const o=JSON.parse(r.body);if(typeof o=="string")return o}return Sr(new lg[t],n,!1,1)[0]}catch{return e}}function Tr(t,e,n=!1){return og(t,e,n,1)[0]}function og(t,e,n=!1,r=20,o){try{return Sr(new lg[t](o),Ji(e),n,r)}catch{return[e]}}function Sr(t,e,n=!1,r=20){const o=[...e.parts],l=[];let c=n?"frame-locator":"page";for(let u=0;ut.generateLocator(p,"has",_)));continue}if(d.name==="internal:has-not"){const k=Sr(t,d.body.parsed,!1,r);l.push(k.map(_=>t.generateLocator(p,"hasNot",_)));continue}if(d.name==="internal:and"){const k=Sr(t,d.body.parsed,!1,r);l.push(k.map(_=>t.generateLocator(p,"and",_)));continue}if(d.name==="internal:or"){const k=Sr(t,d.body.parsed,!1,r);l.push(k.map(_=>t.generateLocator(p,"or",_)));continue}if(d.name==="internal:chain"){const k=Sr(t,d.body.parsed,!1,r);l.push(k.map(_=>t.generateLocator(p,"chain",_)));continue}if(d.name==="internal:label"){const{exact:k,text:_}=Ti(d.body);l.push([t.generateLocator(p,"label",_,{exact:k})]);continue}if(d.name==="internal:role"){const k=br(d.body,!0),_={attrs:[]};for(const E of k.attributes)E.name==="name"?(_.exact=E.caseSensitive,_.name=E.value):(E.name==="level"&&typeof E.value=="string"&&(E.value=+E.value),_.attrs.push({name:E.name==="include-hidden"?"includeHidden":E.name,value:E.value}));l.push([t.generateLocator(p,"role",k.name,_)]);continue}if(d.name==="internal:testid"){const k=br(d.body,!0),{value:_}=k.attributes[0];l.push([t.generateLocator(p,"test-id",_)]);continue}if(d.name==="internal:attr"){const k=br(d.body,!0),{name:_,value:E,caseSensitive:C}=k.attributes[0],A=E,B=!!C;if(_==="placeholder"){l.push([t.generateLocator(p,"placeholder",A,{exact:B})]);continue}if(_==="alt"){l.push([t.generateLocator(p,"alt",A,{exact:B})]);continue}if(_==="title"){l.push([t.generateLocator(p,"title",A,{exact:B})]);continue}}if(d.name==="internal:control"&&d.body==="enter-frame"){const k=l[l.length-1],_=o[u-1],E=k.map(C=>t.chainLocators([C,t.generateLocator(p,"frame","")]));["xpath","css"].includes(_.name)&&E.push(t.generateLocator(p,"frame-locator",Tn({parts:[_]})),t.generateLocator(p,"frame-locator",Tn({parts:[_]},!0))),k.splice(0,k.length,...E),c="frame-locator";continue}const g=o[u+1],y=Tn({parts:[d]}),v=t.generateLocator(p,"default",y);if(g&&["internal:has-text","internal:has-not-text"].includes(g.name)){const{exact:k,text:_}=Ti(g.body);if(!k){const E=t.generateLocator("locator",g.name==="internal:has-text"?"has-text":"has-not-text",_,{exact:k}),C={};g.name==="internal:has-text"?C.hasText=_:C.hasNotText=_;const A=t.generateLocator(p,"default",y,C);l.push([t.chainLocators([v,E]),A]),u++;continue}}let S;if(["xpath","css"].includes(d.name)){const k=Tn({parts:[d]},!0);S=t.generateLocator(p,"default",k)}l.push([v,S].filter(Boolean))}return f1(t,l,r)}function f1(t,e,n){const r=e.map(()=>""),o=[],l=c=>{if(c===e.length)return o.push(t.chainLocators(r)),o.lengthJSON.parse(r));for(let r=0;rv1(e,u,y.expandedItems,_||0,c),[e,u,y,_,c]),C=$.useRef(null),[A,B]=$.useState(),[R,D]=$.useState(!1);$.useEffect(()=>{g==null||g(A)},[g,A]),$.useEffect(()=>{const H=C.current;if(!H)return;const F=()=>{zp.set(t,H.scrollTop)};return H.addEventListener("scroll",F,{passive:!0}),()=>H.removeEventListener("scroll",F)},[t]),$.useEffect(()=>{C.current&&(C.current.scrollTop=zp.get(t)||0)},[t]);const z=$.useCallback(H=>{const{expanded:F}=E.get(H);if(F){for(let M=u;M;M=M.parent)if(M===H){p==null||p(H);break}y.expandedItems.set(H.id,!1)}else y.expandedItems.set(H.id,!0);v({...y})},[E,u,p,y,v]);return w.jsx("div",{className:Be("tree-view vbox",t+"-tree-view"),role:"tree","data-testid":k||t+"-tree",children:w.jsxs("div",{className:Be("tree-view-content"),tabIndex:0,onKeyDown:H=>{if(u&&H.key==="Enter"){d==null||d(u);return}if(H.key!=="ArrowDown"&&H.key!=="ArrowUp"&&H.key!=="ArrowLeft"&&H.key!=="ArrowRight")return;if(H.stopPropagation(),H.preventDefault(),u&&H.key==="ArrowLeft"){const{expanded:M,parent:G}=E.get(u);M?(y.expandedItems.set(u.id,!1),v({...y})):G&&(p==null||p(G));return}if(u&&H.key==="ArrowRight"){u.children.length&&(y.expandedItems.set(u.id,!0),v({...y}));return}let F=u;if(H.key==="ArrowDown"&&(u?F=E.get(u).next:E.size&&(F=[...E.keys()][0])),H.key==="ArrowUp"){if(u)F=E.get(u).prev;else if(E.size){const M=[...E.keys()];F=M[M.length-1]}}g==null||g(void 0),F&&(D(!0),p==null||p(F)),B(void 0)},ref:C,children:[S&&E.size===0&&w.jsx("div",{className:"tree-view-empty",children:S}),e.children.map(H=>E.get(H)&&w.jsx(ag,{item:H,treeItems:E,selectedItem:u,onSelected:p,onAccepted:d,isError:l,toggleExpanded:z,highlightedItem:A,setHighlightedItem:B,render:n,icon:o,title:r,isKeyboardNavigation:R,setIsKeyboardNavigation:D},H.id))]})})}function ag({item:t,treeItems:e,selectedItem:n,onSelected:r,highlightedItem:o,setHighlightedItem:l,isError:c,onAccepted:u,toggleExpanded:d,render:p,title:g,icon:y,isKeyboardNavigation:v,setIsKeyboardNavigation:S}){const k=$.useId(),_=$.useRef(null);$.useEffect(()=>{n===t&&v&&_.current&&(Pm(_.current),S(!1))},[t,n,v,S]);const E=e.get(t),C=E.depth,A=E.expanded;let B="codicon-blank";typeof A=="boolean"&&(B=A?"codicon-chevron-down":"codicon-chevron-right");const R=p(t),D=A&&t.children.length?t.children:[],z=g==null?void 0:g(t),H=(y==null?void 0:y(t))||"codicon-blank";return w.jsxs("div",{ref:_,role:"treeitem","aria-selected":t===n,"aria-expanded":A,"aria-controls":k,title:z,className:"vbox",style:{flex:"none"},children:[w.jsxs("div",{onDoubleClick:()=>u==null?void 0:u(t),className:Be("tree-view-entry",n===t&&"selected",o===t&&"highlighted",(c==null?void 0:c(t))&&"error"),onClick:()=>r==null?void 0:r(t),onMouseEnter:()=>l(t),onMouseLeave:()=>l(void 0),children:[C?new Array(C).fill(0).map((F,M)=>w.jsx("div",{className:"tree-view-indent"},"indent-"+M)):void 0,w.jsx("div",{"aria-hidden":"true",className:"codicon "+B,style:{minWidth:16,marginRight:4},onDoubleClick:F=>{F.preventDefault(),F.stopPropagation()},onClick:F=>{F.stopPropagation(),F.preventDefault(),d(t)}}),y&&w.jsx("div",{className:"codicon "+H,style:{minWidth:16,marginRight:4},"aria-label":"["+H.replace("codicon","icon")+"]"}),typeof R=="string"?w.jsx("div",{style:{textOverflow:"ellipsis",overflow:"hidden"},children:R}):R]}),!!D.length&&w.jsx("div",{id:k,role:"group",children:D.map(F=>e.get(F)&&w.jsx(ag,{item:F,treeItems:e,selectedItem:n,onSelected:r,onAccepted:u,isError:c,toggleExpanded:d,highlightedItem:o,setHighlightedItem:l,render:p,title:g,icon:y,isKeyboardNavigation:v,setIsKeyboardNavigation:S},F.id))})]})}function v1(t,e,n,r,o=()=>!0){if(!o(t))return new Map;const l=new Map,c=new Set;for(let p=e==null?void 0:e.parent;p;p=p.parent)c.add(p.id);let u=null;const d=(p,g)=>{for(const y of p.children){if(!o(y))continue;const v=c.has(y.id)||n.get(y.id),S=r>g&&l.size<25&&v!==!1,k=y.children.length?v??S:void 0,_={depth:g,expanded:k,parent:t===p?null:p,next:null,prev:u};u&&(l.get(u).next=y),u=y,l.set(y,_),k&&d(y,g+1)}};return d(t,0),l}const qt=$.forwardRef(function({children:e,title:n="",icon:r,disabled:o=!1,toggled:l=!1,onClick:c=()=>{},style:u,testId:d,className:p,ariaLabel:g},y){return w.jsxs("button",{ref:y,className:Be(p,"toolbar-button",r,l&&"toggled"),onMouseDown:Hp,onClick:c,onDoubleClick:Hp,title:n,disabled:!!o,style:u,"data-testid":d,"aria-label":g||n,children:[r&&w.jsx("span",{className:`codicon codicon-${r}`,style:e?{marginRight:5}:{}}),e]})}),Hp=t=>{t.stopPropagation(),t.preventDefault()};function cg(t){return t==="scheduled"?"codicon-clock":t==="running"?"codicon-loading":t==="failed"?"codicon-error":t==="passed"?"codicon-check":t==="skipped"?"codicon-circle-slash":"codicon-circle-outline"}function w1(t){return t==="scheduled"?"Pending":t==="running"?"Running":t==="failed"?"Failed":t==="passed"?"Passed":t==="skipped"?"Skipped":"Did not run"}const S1=new Map([["APIRequestContext.fetch",{title:'{method} "{url}"'}],["APIRequestContext.fetchResponseBody",{internal:!0}],["APIRequestContext.fetchLog",{internal:!0}],["APIRequestContext.storageState",{internal:!0}],["APIRequestContext.disposeAPIResponse",{internal:!0}],["APIRequestContext.dispose",{internal:!0}],["LocalUtils.zip",{internal:!0}],["LocalUtils.harOpen",{internal:!0}],["LocalUtils.harLookup",{internal:!0}],["LocalUtils.harClose",{internal:!0}],["LocalUtils.harUnzip",{internal:!0}],["LocalUtils.connect",{internal:!0}],["LocalUtils.tracingStarted",{internal:!0}],["LocalUtils.addStackToTracingNoReply",{internal:!0}],["LocalUtils.traceDiscarded",{internal:!0}],["LocalUtils.globToRegex",{internal:!0}],["Root.initialize",{internal:!0}],["Playwright.newRequest",{title:"Create request context"}],["DebugController.initialize",{internal:!0}],["DebugController.setReportStateChanged",{internal:!0}],["DebugController.resetForReuse",{internal:!0}],["DebugController.navigate",{internal:!0}],["DebugController.setRecorderMode",{internal:!0}],["DebugController.highlight",{internal:!0}],["DebugController.hideHighlight",{internal:!0}],["DebugController.resume",{internal:!0}],["DebugController.kill",{internal:!0}],["DebugController.closeAllBrowsers",{internal:!0}],["SocksSupport.socksConnected",{internal:!0}],["SocksSupport.socksFailed",{internal:!0}],["SocksSupport.socksData",{internal:!0}],["SocksSupport.socksError",{internal:!0}],["SocksSupport.socksEnd",{internal:!0}],["BrowserType.launch",{title:"Launch browser"}],["BrowserType.launchPersistentContext",{title:"Launch persistent context"}],["BrowserType.connectOverCDP",{title:"Connect over CDP"}],["Browser.close",{title:"Close browser"}],["Browser.killForTests",{internal:!0}],["Browser.defaultUserAgentForTest",{internal:!0}],["Browser.newContext",{title:"Create context"}],["Browser.newContextForReuse",{internal:!0}],["Browser.disconnectFromReusedContext",{internal:!0}],["Browser.newBrowserCDPSession",{internal:!0,title:"Create CDP session"}],["Browser.startTracing",{internal:!0}],["Browser.stopTracing",{internal:!0}],["EventTarget.waitForEventInfo",{title:'Wait for event "{info.event}"',snapshot:!0}],["BrowserContext.waitForEventInfo",{title:'Wait for event "{info.event}"',snapshot:!0}],["Page.waitForEventInfo",{title:'Wait for event "{info.event}"',snapshot:!0}],["WebSocket.waitForEventInfo",{title:'Wait for event "{info.event}"',snapshot:!0}],["ElectronApplication.waitForEventInfo",{title:'Wait for event "{info.event}"',snapshot:!0}],["AndroidDevice.waitForEventInfo",{title:'Wait for event "{info.event}"',snapshot:!0}],["BrowserContext.addCookies",{title:"Add cookies"}],["BrowserContext.addInitScript",{title:"Add init script"}],["BrowserContext.clearCookies",{title:"Clear cookies"}],["BrowserContext.clearPermissions",{title:"Clear permissions"}],["BrowserContext.close",{title:"Close context"}],["BrowserContext.cookies",{title:"Get cookies"}],["BrowserContext.exposeBinding",{title:"Expose binding"}],["BrowserContext.grantPermissions",{title:"Grant permissions"}],["BrowserContext.newPage",{title:"Create page"}],["BrowserContext.registerSelectorEngine",{internal:!0}],["BrowserContext.setTestIdAttributeName",{internal:!0}],["BrowserContext.setExtraHTTPHeaders",{title:"Set extra HTTP headers"}],["BrowserContext.setGeolocation",{title:"Set geolocation"}],["BrowserContext.setHTTPCredentials",{title:"Set HTTP credentials"}],["BrowserContext.setNetworkInterceptionPatterns",{internal:!0}],["BrowserContext.setWebSocketInterceptionPatterns",{internal:!0}],["BrowserContext.setOffline",{title:"Set offline mode"}],["BrowserContext.storageState",{title:"Get storage state"}],["BrowserContext.pause",{title:"Pause"}],["BrowserContext.enableRecorder",{internal:!0}],["BrowserContext.disableRecorder",{internal:!0}],["BrowserContext.newCDPSession",{internal:!0}],["BrowserContext.harStart",{internal:!0}],["BrowserContext.harExport",{internal:!0}],["BrowserContext.createTempFiles",{internal:!0}],["BrowserContext.updateSubscription",{internal:!0}],["BrowserContext.clockFastForward",{title:'Fast forward clock "{ticksNumber}{ticksString}"'}],["BrowserContext.clockInstall",{title:'Install clock "{timeNumber}{timeString}"'}],["BrowserContext.clockPauseAt",{title:'Pause clock "{timeNumber}{timeString}"'}],["BrowserContext.clockResume",{title:"Resume clock"}],["BrowserContext.clockRunFor",{title:'Run clock "{ticksNumber}{ticksString}"'}],["BrowserContext.clockSetFixedTime",{title:'Set fixed time "{timeNumber}{timeString}"'}],["BrowserContext.clockSetSystemTime",{title:'Set system time "{timeNumber}{timeString}"'}],["Page.addInitScript",{}],["Page.close",{title:"Close"}],["Page.emulateMedia",{title:"Emulate media",snapshot:!0}],["Page.exposeBinding",{title:"Expose binding"}],["Page.goBack",{title:"Go back",slowMo:!0,snapshot:!0}],["Page.goForward",{title:"Go forward",slowMo:!0,snapshot:!0}],["Page.requestGC",{title:"Request garbage collection"}],["Page.registerLocatorHandler",{title:"Register locator handler"}],["Page.resolveLocatorHandlerNoReply",{internal:!0}],["Page.unregisterLocatorHandler",{title:"Unregister locator handler"}],["Page.reload",{title:"Reload",slowMo:!0,snapshot:!0}],["Page.expectScreenshot",{title:"Expect screenshot",snapshot:!0}],["Page.screenshot",{title:"Screenshot",snapshot:!0}],["Page.setExtraHTTPHeaders",{title:"Set extra HTTP headers"}],["Page.setNetworkInterceptionPatterns",{internal:!0}],["Page.setWebSocketInterceptionPatterns",{internal:!0}],["Page.setViewportSize",{title:"Set viewport size",snapshot:!0}],["Page.keyboardDown",{title:'Key down "{key}"',slowMo:!0,snapshot:!0}],["Page.keyboardUp",{title:'Key up "{key}"',slowMo:!0,snapshot:!0}],["Page.keyboardInsertText",{title:'Insert "{text}"',slowMo:!0,snapshot:!0}],["Page.keyboardType",{title:'Type "{text}"',slowMo:!0,snapshot:!0}],["Page.keyboardPress",{title:'Press "{key}"',slowMo:!0,snapshot:!0}],["Page.mouseMove",{title:"Mouse move",slowMo:!0,snapshot:!0}],["Page.mouseDown",{title:"Mouse down",slowMo:!0,snapshot:!0}],["Page.mouseUp",{title:"Mouse up",slowMo:!0,snapshot:!0}],["Page.mouseClick",{title:"Click",slowMo:!0,snapshot:!0}],["Page.mouseWheel",{title:"Mouse wheel",slowMo:!0,snapshot:!0}],["Page.touchscreenTap",{title:"Tap",slowMo:!0,snapshot:!0}],["Page.accessibilitySnapshot",{internal:!0,snapshot:!0}],["Page.pdf",{title:"PDF"}],["Page.snapshotForAI",{internal:!0,snapshot:!0}],["Page.startJSCoverage",{internal:!0}],["Page.stopJSCoverage",{internal:!0}],["Page.startCSSCoverage",{internal:!0}],["Page.stopCSSCoverage",{internal:!0}],["Page.bringToFront",{title:"Bring to front"}],["Page.updateSubscription",{internal:!0}],["Frame.evalOnSelector",{title:"Evaluate",snapshot:!0}],["Frame.evalOnSelectorAll",{title:"Evaluate",snapshot:!0}],["Frame.addScriptTag",{title:"Add script tag",snapshot:!0}],["Frame.addStyleTag",{title:"Add style tag",snapshot:!0}],["Frame.ariaSnapshot",{title:"Aria snapshot",snapshot:!0}],["Frame.blur",{title:"Blur",slowMo:!0,snapshot:!0}],["Frame.check",{title:"Check",slowMo:!0,snapshot:!0,pausesBeforeInput:!0}],["Frame.click",{title:"Click",slowMo:!0,snapshot:!0,pausesBeforeInput:!0}],["Frame.content",{title:"Get content",snapshot:!0}],["Frame.dragAndDrop",{title:"Drag and drop",slowMo:!0,snapshot:!0,pausesBeforeInput:!0}],["Frame.dblclick",{title:"Double click",slowMo:!0,snapshot:!0,pausesBeforeInput:!0}],["Frame.dispatchEvent",{title:'Dispatch "{type}"',slowMo:!0,snapshot:!0}],["Frame.evaluateExpression",{title:"Evaluate",snapshot:!0}],["Frame.evaluateExpressionHandle",{title:"Evaluate",snapshot:!0}],["Frame.fill",{title:'Fill "{value}"',slowMo:!0,snapshot:!0,pausesBeforeInput:!0}],["Frame.focus",{title:"Focus",slowMo:!0,snapshot:!0}],["Frame.frameElement",{internal:!0}],["Frame.generateLocatorString",{internal:!0}],["Frame.highlight",{internal:!0}],["Frame.getAttribute",{internal:!0,snapshot:!0}],["Frame.goto",{title:'Navigate to "{url}"',slowMo:!0,snapshot:!0}],["Frame.hover",{title:"Hover",slowMo:!0,snapshot:!0,pausesBeforeInput:!0}],["Frame.innerHTML",{title:"Get HTML",snapshot:!0}],["Frame.innerText",{title:"Get inner text",snapshot:!0}],["Frame.inputValue",{title:"Get input value",snapshot:!0}],["Frame.isChecked",{title:"Is checked",snapshot:!0}],["Frame.isDisabled",{title:"Is disabled",snapshot:!0}],["Frame.isEnabled",{title:"Is enabled",snapshot:!0}],["Frame.isHidden",{title:"Is hidden",snapshot:!0}],["Frame.isVisible",{title:"Is visible",snapshot:!0}],["Frame.isEditable",{title:"Is editable",snapshot:!0}],["Frame.press",{title:'Press "{key}"',slowMo:!0,snapshot:!0,pausesBeforeInput:!0}],["Frame.querySelector",{title:"Query selector",snapshot:!0}],["Frame.querySelectorAll",{title:"Query selector all",snapshot:!0}],["Frame.queryCount",{title:"Query count",snapshot:!0}],["Frame.selectOption",{title:"Select option",slowMo:!0,snapshot:!0,pausesBeforeInput:!0}],["Frame.setContent",{title:"Set content",snapshot:!0}],["Frame.setInputFiles",{title:"Set input files",slowMo:!0,snapshot:!0,pausesBeforeInput:!0}],["Frame.tap",{title:"Tap",slowMo:!0,snapshot:!0,pausesBeforeInput:!0}],["Frame.textContent",{title:"Get text content",snapshot:!0}],["Frame.title",{internal:!0}],["Frame.type",{title:"Type",slowMo:!0,snapshot:!0,pausesBeforeInput:!0}],["Frame.uncheck",{title:"Uncheck",slowMo:!0,snapshot:!0,pausesBeforeInput:!0}],["Frame.waitForTimeout",{title:"Wait for timeout",snapshot:!0}],["Frame.waitForFunction",{title:"Wait for function",snapshot:!0}],["Frame.waitForSelector",{title:"Wait for selector",snapshot:!0}],["Frame.expect",{title:'Expect "{expression}"',snapshot:!0}],["Worker.evaluateExpression",{title:"Evaluate"}],["Worker.evaluateExpressionHandle",{title:"Evaluate"}],["JSHandle.dispose",{}],["ElementHandle.dispose",{}],["JSHandle.evaluateExpression",{title:"Evaluate",snapshot:!0}],["ElementHandle.evaluateExpression",{title:"Evaluate",snapshot:!0}],["JSHandle.evaluateExpressionHandle",{title:"Evaluate",snapshot:!0}],["ElementHandle.evaluateExpressionHandle",{title:"Evaluate",snapshot:!0}],["JSHandle.getPropertyList",{internal:!0}],["ElementHandle.getPropertyList",{internal:!0}],["JSHandle.getProperty",{internal:!0}],["ElementHandle.getProperty",{internal:!0}],["JSHandle.jsonValue",{internal:!0}],["ElementHandle.jsonValue",{internal:!0}],["ElementHandle.evalOnSelector",{title:"Evaluate",snapshot:!0}],["ElementHandle.evalOnSelectorAll",{title:"Evaluate",snapshot:!0}],["ElementHandle.boundingBox",{title:"Get bounding box",snapshot:!0}],["ElementHandle.check",{title:"Check",slowMo:!0,snapshot:!0,pausesBeforeInput:!0}],["ElementHandle.click",{title:"Click",slowMo:!0,snapshot:!0,pausesBeforeInput:!0}],["ElementHandle.contentFrame",{internal:!0,snapshot:!0}],["ElementHandle.dblclick",{title:"Double click",slowMo:!0,snapshot:!0,pausesBeforeInput:!0}],["ElementHandle.dispatchEvent",{title:"Dispatch event",slowMo:!0,snapshot:!0}],["ElementHandle.fill",{title:'Fill "{value}"',slowMo:!0,snapshot:!0,pausesBeforeInput:!0}],["ElementHandle.focus",{title:"Focus",slowMo:!0,snapshot:!0}],["ElementHandle.getAttribute",{internal:!0}],["ElementHandle.hover",{title:"Hover",slowMo:!0,snapshot:!0,pausesBeforeInput:!0}],["ElementHandle.innerHTML",{title:"Get HTML",snapshot:!0}],["ElementHandle.innerText",{title:"Get inner text",snapshot:!0}],["ElementHandle.inputValue",{title:"Get input value",snapshot:!0}],["ElementHandle.isChecked",{title:"Is checked",snapshot:!0}],["ElementHandle.isDisabled",{title:"Is disabled",snapshot:!0}],["ElementHandle.isEditable",{title:"Is editable",snapshot:!0}],["ElementHandle.isEnabled",{title:"Is enabled",snapshot:!0}],["ElementHandle.isHidden",{title:"Is hidden",snapshot:!0}],["ElementHandle.isVisible",{title:"Is visible",snapshot:!0}],["ElementHandle.ownerFrame",{title:"Get owner frame"}],["ElementHandle.press",{title:'Press "{key}"',slowMo:!0,snapshot:!0,pausesBeforeInput:!0}],["ElementHandle.querySelector",{title:"Query selector",snapshot:!0}],["ElementHandle.querySelectorAll",{title:"Query selector all",snapshot:!0}],["ElementHandle.screenshot",{title:"Screenshot",snapshot:!0}],["ElementHandle.scrollIntoViewIfNeeded",{title:"Scroll into view",slowMo:!0,snapshot:!0}],["ElementHandle.selectOption",{title:"Select option",slowMo:!0,snapshot:!0,pausesBeforeInput:!0}],["ElementHandle.selectText",{title:"Select text",slowMo:!0,snapshot:!0}],["ElementHandle.setInputFiles",{title:"Set input files",slowMo:!0,snapshot:!0,pausesBeforeInput:!0}],["ElementHandle.tap",{title:"Tap",slowMo:!0,snapshot:!0,pausesBeforeInput:!0}],["ElementHandle.textContent",{title:"Get text content",snapshot:!0}],["ElementHandle.type",{title:"Type",slowMo:!0,snapshot:!0,pausesBeforeInput:!0}],["ElementHandle.uncheck",{title:"Uncheck",slowMo:!0,snapshot:!0,pausesBeforeInput:!0}],["ElementHandle.waitForElementState",{title:"Wait for state",snapshot:!0}],["ElementHandle.waitForSelector",{title:"Wait for selector",snapshot:!0}],["Request.response",{internal:!0}],["Request.rawRequestHeaders",{internal:!0}],["Route.redirectNavigationRequest",{internal:!0}],["Route.abort",{}],["Route.continue",{internal:!0}],["Route.fulfill",{internal:!0}],["WebSocketRoute.connect",{internal:!0}],["WebSocketRoute.ensureOpened",{internal:!0}],["WebSocketRoute.sendToPage",{internal:!0}],["WebSocketRoute.sendToServer",{internal:!0}],["WebSocketRoute.closePage",{internal:!0}],["WebSocketRoute.closeServer",{internal:!0}],["Response.body",{internal:!0}],["Response.securityDetails",{internal:!0}],["Response.serverAddr",{internal:!0}],["Response.rawResponseHeaders",{internal:!0}],["Response.sizes",{internal:!0}],["BindingCall.reject",{internal:!0}],["BindingCall.resolve",{internal:!0}],["Dialog.accept",{title:"Accept dialog"}],["Dialog.dismiss",{title:"Dismiss dialog"}],["Tracing.tracingStart",{internal:!0}],["Tracing.tracingStartChunk",{internal:!0}],["Tracing.tracingGroup",{title:'Trace "{name}"'}],["Tracing.tracingGroupEnd",{title:"Group end"}],["Tracing.tracingStopChunk",{internal:!0}],["Tracing.tracingStop",{internal:!0}],["Artifact.pathAfterFinished",{internal:!0}],["Artifact.saveAs",{internal:!0}],["Artifact.saveAsStream",{internal:!0}],["Artifact.failure",{internal:!0}],["Artifact.stream",{internal:!0}],["Artifact.cancel",{internal:!0}],["Artifact.delete",{internal:!0}],["Stream.read",{internal:!0}],["Stream.close",{internal:!0}],["WritableStream.write",{internal:!0}],["WritableStream.close",{internal:!0}],["CDPSession.send",{internal:!0}],["CDPSession.detach",{internal:!0}],["Electron.launch",{title:"Launch electron"}],["ElectronApplication.browserWindow",{internal:!0}],["ElectronApplication.evaluateExpression",{title:"Evaluate"}],["ElectronApplication.evaluateExpressionHandle",{title:"Evaluate"}],["ElectronApplication.updateSubscription",{internal:!0}],["Android.devices",{internal:!0}],["AndroidSocket.write",{internal:!0}],["AndroidSocket.close",{internal:!0}],["AndroidDevice.wait",{}],["AndroidDevice.fill",{title:'Fill "{text}"'}],["AndroidDevice.tap",{title:"Tap"}],["AndroidDevice.drag",{title:"Drag"}],["AndroidDevice.fling",{title:"Fling"}],["AndroidDevice.longTap",{title:"Long tap"}],["AndroidDevice.pinchClose",{title:"Pinch close"}],["AndroidDevice.pinchOpen",{title:"Pinch open"}],["AndroidDevice.scroll",{title:"Scroll"}],["AndroidDevice.swipe",{title:"Swipe"}],["AndroidDevice.info",{internal:!0}],["AndroidDevice.screenshot",{title:"Screenshot"}],["AndroidDevice.inputType",{title:"Type"}],["AndroidDevice.inputPress",{title:"Press"}],["AndroidDevice.inputTap",{title:"Tap"}],["AndroidDevice.inputSwipe",{title:"Swipe"}],["AndroidDevice.inputDrag",{title:"Drag"}],["AndroidDevice.launchBrowser",{title:"Launch browser"}],["AndroidDevice.open",{title:"Open app"}],["AndroidDevice.shell",{internal:!0}],["AndroidDevice.installApk",{title:"Install apk"}],["AndroidDevice.push",{title:"Push"}],["AndroidDevice.connectToWebView",{internal:!0}],["AndroidDevice.close",{internal:!0}],["JsonPipe.send",{internal:!0}],["JsonPipe.close",{internal:!0}]]);function x1(t,e){if(!t)return"";if(e==="url")try{const n=new URL(t[e]);return n.protocol==="data:"?n.protocol:n.protocol==="about:"?t[e]:n.pathname+n.search}catch{return t[e]}return e==="timeNumber"?new Date(t[e]).toString():_1(t,e)}function _1(t,e){const n=e.split(".");let r=t;for(const o of n){if(typeof r!="object"||r===null)return"";r=r[o]}return r===void 0?"":String(r)}const E1=y1,k1=({actions:t,selectedAction:e,selectedTime:n,setSelectedTime:r,sdkLanguage:o,onSelected:l,onHighlighted:c,revealConsole:u,revealAttachment:d,isLive:p})=>{const[g,y]=$.useState({expandedItems:new Map}),{rootItem:v,itemMap:S}=$.useMemo(()=>$0(t),[t]),{selectedItem:k}=$.useMemo(()=>({selectedItem:e?S.get(e.callId):void 0}),[S,e]),_=$.useCallback(D=>{var z,H;return!!((H=(z=D.action)==null?void 0:z.error)!=null&&H.message)},[]),E=$.useCallback(D=>r({minimum:D.action.startTime,maximum:D.action.endTime}),[r]),C=$.useCallback(D=>Zu(D.action,{sdkLanguage:o,revealConsole:u,revealAttachment:d,isLive:p,showDuration:!0,showBadges:!0}),[p,u,d,o]),A=$.useCallback(D=>!n||!D.action||D.action.startTime<=n.maximum&&D.action.endTime>=n.minimum,[n]),B=$.useCallback(D=>{l==null||l(D.action)},[l]),R=$.useCallback(D=>{c==null||c(D==null?void 0:D.action)},[c]);return w.jsxs("div",{className:"vbox",children:[n&&w.jsxs("div",{className:"action-list-show-all",onClick:()=>r(void 0),children:[w.jsx("span",{className:"codicon codicon-triangle-left"}),"Show all"]}),w.jsx(E1,{name:"actions",rootItem:v,treeState:g,setTreeState:y,selectedItem:k,onSelected:B,onHighlighted:R,onAccepted:E,isError:_,isVisible:A,render:C})]})},Zu=(t,e)=>{var E,C;const{sdkLanguage:n,revealConsole:r,revealAttachment:o,isLive:l,showDuration:c,showBadges:u}=e,{errors:d,warnings:p}=D0(t),g=!!((E=t.attachments)!=null&&E.length)&&!!o,y=t.params.selector?u1(n||"javascript",t.params.selector):void 0,v=t.class==="Test"&&t.method==="step"&&((C=t.annotations)==null?void 0:C.some(A=>A.type==="skip"));let S="";t.endTime?S=pt(t.endTime-t.startTime):t.error?S="Timed out":l||(S="-");const{elements:k,title:_}=b1(t);return w.jsxs("div",{className:"action-title vbox",children:[w.jsxs("div",{className:"hbox",children:[w.jsx("span",{className:"action-title-method",title:_,children:k}),(c||u||g||v)&&w.jsx("div",{className:"spacer"}),g&&w.jsx(qt,{icon:"attach",title:"Open Attachment",onClick:()=>o(t.attachments[0])}),c&&!v&&w.jsx("div",{className:"action-duration",children:S||w.jsx("span",{className:"codicon codicon-loading"})}),v&&w.jsx("span",{className:Be("action-skipped","codicon",cg("skipped")),title:"skipped"}),u&&w.jsxs("div",{className:"action-icons",onClick:()=>r==null?void 0:r(),children:[!!d&&w.jsxs("div",{className:"action-icon",children:[w.jsx("span",{className:"codicon codicon-error"}),w.jsx("span",{className:"action-icon-value",children:d})]}),!!p&&w.jsxs("div",{className:"action-icon",children:[w.jsx("span",{className:"codicon codicon-warning"}),w.jsx("span",{className:"action-icon-value",children:p})]})]})]}),y&&w.jsx("div",{className:"action-title-selector",title:y,children:y})]})};function b1(t){var u;const e=t.title??((u=S1.get(t.class+"."+t.method))==null?void 0:u.title)??t.method,n=[],r=[];let o=0;const l=/\{([^}]+)\}/g;let c;for(;(c=l.exec(e))!==null;){const[d,p]=c,g=e.slice(o,c.index);n.push(g),r.push(g);const y=x1(t.params,p);c.index===0?n.push(y):n.push(w.jsx("span",{className:"action-title-param",children:y})),r.push(y),o=c.index+d.length}if(o{const[n,r]=$.useState("copy"),o=$.useCallback(()=>{(typeof t=="function"?t():Promise.resolve(t)).then(c=>{navigator.clipboard.writeText(c).then(()=>{r("check"),setTimeout(()=>{r("copy")},3e3)},()=>{r("close")})},()=>{r("close")})},[t]);return w.jsx(qt,{title:e||"Copy",icon:n,onClick:o})},Nl=({value:t,description:e,copiedDescription:n=e,style:r})=>{const[o,l]=$.useState(!1),c=$.useCallback(async()=>{const u=typeof t=="function"?await t():t;await navigator.clipboard.writeText(u),l(!0),setTimeout(()=>l(!1),3e3)},[t]);return w.jsx(qt,{style:r,title:e,onClick:c,className:"copy-to-clipboard-text-button",children:o?n:e})},Ir=({text:t})=>w.jsx("div",{className:"fill",style:{display:"flex",alignItems:"center",justifyContent:"center",fontSize:24,fontWeight:"bold",opacity:.5},children:t}),T1=({action:t,startTimeOffset:e,sdkLanguage:n})=>{const r=$.useMemo(()=>Object.keys((t==null?void 0:t.params)??{}).filter(c=>c!=="info"),[t]);if(!t)return w.jsx(Ir,{text:"No action selected"});const o=t.startTime-e,l=pt(o);return w.jsxs("div",{className:"call-tab",children:[w.jsx("div",{className:"call-line",children:t.title}),w.jsx("div",{className:"call-section",children:"Time"}),w.jsx(Up,{name:"start:",value:l}),w.jsx(Up,{name:"duration:",value:C1(t)}),!!r.length&&w.jsxs(w.Fragment,{children:[w.jsx("div",{className:"call-section",children:"Parameters"}),r.map(c=>qp(Vp(t,c,t.params[c],n)))]}),!!t.result&&w.jsxs(w.Fragment,{children:[w.jsx("div",{className:"call-section",children:"Return value"}),Object.keys(t.result).map(c=>qp(Vp(t,c,t.result[c],n)))]})]})},Up=({name:t,value:e})=>w.jsxs("div",{className:"call-line",children:[t,w.jsx("span",{className:"call-value datetime",title:e,children:e})]});function C1(t){return t.endTime?pt(t.endTime-t.startTime):t.error?"Timed Out":"Running"}function qp(t){let e=t.text.replace(/\n/g,"↵");return t.type==="string"&&(e=`"${e}"`),w.jsxs("div",{className:"call-line",children:[t.name,":",w.jsx("span",{className:Be("call-value",t.type),title:t.text,children:e}),["string","number","object","locator"].includes(t.type)&&w.jsx(ef,{value:t.text})]},t.name)}function Vp(t,e,n,r){const o=t.method.includes("eval")||t.method==="waitForFunction";if(e==="files")return{text:"",type:"string",name:e};if((e==="eventInit"||e==="expectedValue"||e==="arg"&&o)&&(n=Hl(n.value,new Array(10).fill({handle:""}))),(e==="value"&&o||e==="received"&&t.method==="expect")&&(n=Hl(n,new Array(10).fill({handle:""}))),e==="selector")return{text:Tr(r||"javascript",t.params.selector),type:"locator",name:"locator"};const l=typeof n;return l!=="object"||n===null?{text:String(n),type:l,name:e}:n.guid?{text:"",type:"handle",name:e}:{text:JSON.stringify(n).slice(0,1e3),type:"object",name:e}}function Hl(t,e){if(t.n!==void 0)return t.n;if(t.s!==void 0)return t.s;if(t.b!==void 0)return t.b;if(t.v!==void 0){if(t.v==="undefined")return;if(t.v==="null")return null;if(t.v==="NaN")return NaN;if(t.v==="Infinity")return 1/0;if(t.v==="-Infinity")return-1/0;if(t.v==="-0")return-0}if(t.d!==void 0)return new Date(t.d);if(t.r!==void 0)return new RegExp(t.r.p,t.r.f);if(t.a!==void 0)return t.a.map(n=>Hl(n,e));if(t.o!==void 0){const n={};for(const{k:r,v:o}of t.o)n[r]=Hl(o,e);return n}return t.h!==void 0?e===void 0?"":e[t.h]:""}const Wp=new Map;function na({name:t,items:e=[],id:n,render:r,icon:o,isError:l,isWarning:c,isInfo:u,selectedItem:d,onAccepted:p,onSelected:g,onHighlighted:y,onIconClicked:v,noItemsMessage:S,dataTestId:k,notSelectable:_,ariaLabel:E}){const C=$.useRef(null),[A,B]=$.useState();return $.useEffect(()=>{y==null||y(A)},[y,A]),$.useEffect(()=>{const R=C.current;if(!R)return;const D=()=>{Wp.set(t,R.scrollTop)};return R.addEventListener("scroll",D,{passive:!0}),()=>R.removeEventListener("scroll",D)},[t]),$.useEffect(()=>{C.current&&(C.current.scrollTop=Wp.get(t)||0)},[t]),w.jsx("div",{className:Be("list-view vbox",t+"-list-view"),role:e.length>0?"list":void 0,"aria-label":E,children:w.jsxs("div",{className:Be("list-view-content",_&&"not-selectable"),tabIndex:0,onKeyDown:R=>{var F;if(d&&R.key==="Enter"){p==null||p(d,e.indexOf(d));return}if(R.key!=="ArrowDown"&&R.key!=="ArrowUp")return;R.stopPropagation(),R.preventDefault();const D=d?e.indexOf(d):-1;let z=D;R.key==="ArrowDown"&&(D===-1?z=0:z=Math.min(D+1,e.length-1)),R.key==="ArrowUp"&&(D===-1?z=e.length-1:z=Math.max(D-1,0));const H=(F=C.current)==null?void 0:F.children.item(z);Pm(H||void 0),y==null||y(void 0),g==null||g(e[z],z),B(void 0)},ref:C,children:[S&&e.length===0&&w.jsx("div",{className:"list-view-empty",children:S}),e.map((R,D)=>{const z=r(R,D);return w.jsxs("div",{onDoubleClick:()=>p==null?void 0:p(R,D),role:"listitem",className:Be("list-view-entry",d===R&&"selected",!_&&A===R&&"highlighted",(l==null?void 0:l(R,D))&&"error",(c==null?void 0:c(R,D))&&"warning",(u==null?void 0:u(R,D))&&"info"),"aria-selected":d===R,onClick:()=>g==null?void 0:g(R,D),onMouseEnter:()=>B(R),onMouseLeave:()=>B(void 0),children:[o&&w.jsx("div",{className:"codicon "+(o(R,D)||"codicon-blank"),style:{minWidth:16,marginRight:4},onDoubleClick:H=>{H.preventDefault(),H.stopPropagation()},onClick:H=>{H.stopPropagation(),H.preventDefault(),v==null||v(R,D)}}),typeof z=="string"?w.jsx("div",{style:{textOverflow:"ellipsis",overflow:"hidden"},children:z}):z]},(n==null?void 0:n(R,D))||D)})]})})}const N1=na,A1=({action:t,isLive:e})=>{const n=$.useMemo(()=>{var c;if(!t||!t.log.length)return[];const r=t.log,o=t.context.wallTime-t.context.startTime,l=[];for(let u=0;u0?d=pt(t.endTime-p):e?d=pt(Date.now()-o-p):d="-"}l.push({message:r[u].message,time:d})}return l},[t,e]);return n.length?w.jsx(N1,{name:"log",ariaLabel:"Log entries",items:n,render:r=>w.jsxs("div",{className:"log-list-item",children:[w.jsx("span",{className:"log-list-duration",children:r.time}),r.message]}),notSelectable:!0}):w.jsx(Ir,{text:"No log entries"})};function qi(t,e){const n=/(\x1b\[(\d+(;\d+)*)m)|([^\x1b]+)/g,r=[];let o,l={},c=!1,u=e==null?void 0:e.fg,d=e==null?void 0:e.bg;for(;(o=n.exec(t))!==null;){const[,,p,,g]=o;if(p){const y=+p;switch(y){case 0:l={};break;case 1:l["font-weight"]="bold";break;case 2:l.opacity="0.8";break;case 3:l["font-style"]="italic";break;case 4:l["text-decoration"]="underline";break;case 7:c=!0;break;case 8:l.display="none";break;case 9:l["text-decoration"]="line-through";break;case 22:delete l["font-weight"],delete l["font-style"],delete l.opacity,delete l["text-decoration"];break;case 23:delete l["font-weight"],delete l["font-style"],delete l.opacity;break;case 24:delete l["text-decoration"];break;case 27:c=!1;break;case 30:case 31:case 32:case 33:case 34:case 35:case 36:case 37:u=Kp[y-30];break;case 39:u=e==null?void 0:e.fg;break;case 40:case 41:case 42:case 43:case 44:case 45:case 46:case 47:d=Kp[y-40];break;case 49:d=e==null?void 0:e.bg;break;case 53:l["text-decoration"]="overline";break;case 90:case 91:case 92:case 93:case 94:case 95:case 96:case 97:u=Gp[y-90];break;case 100:case 101:case 102:case 103:case 104:case 105:case 106:case 107:d=Gp[y-100];break}}else if(g){const y={...l},v=c?d:u;v!==void 0&&(y.color=v);const S=c?u:d;S!==void 0&&(y["background-color"]=S),r.push(`${I1(g)}`)}}return r.join("")}const Kp={0:"var(--vscode-terminal-ansiBlack)",1:"var(--vscode-terminal-ansiRed)",2:"var(--vscode-terminal-ansiGreen)",3:"var(--vscode-terminal-ansiYellow)",4:"var(--vscode-terminal-ansiBlue)",5:"var(--vscode-terminal-ansiMagenta)",6:"var(--vscode-terminal-ansiCyan)",7:"var(--vscode-terminal-ansiWhite)"},Gp={0:"var(--vscode-terminal-ansiBrightBlack)",1:"var(--vscode-terminal-ansiBrightRed)",2:"var(--vscode-terminal-ansiBrightGreen)",3:"var(--vscode-terminal-ansiBrightYellow)",4:"var(--vscode-terminal-ansiBrightBlue)",5:"var(--vscode-terminal-ansiBrightMagenta)",6:"var(--vscode-terminal-ansiBrightCyan)",7:"var(--vscode-terminal-ansiBrightWhite)"};function I1(t){return t.replace(/[&"<>]/g,e=>({"&":"&",'"':""","<":"<",">":">"})[e])}function L1(t){return Object.entries(t).map(([e,n])=>`${e}: ${n}`).join("; ")}const M1=({error:t})=>{const e=$.useMemo(()=>qi(t),[t]);return w.jsx("div",{className:"error-message",dangerouslySetInnerHTML:{__html:e||""}})},ug=({cursor:t,onPaneMouseMove:e,onPaneMouseUp:n,onPaneDoubleClick:r})=>(Mt.useEffect(()=>{const o=document.createElement("div");return o.style.position="fixed",o.style.top="0",o.style.right="0",o.style.bottom="0",o.style.left="0",o.style.zIndex="9999",o.style.cursor=t,document.body.appendChild(o),e&&o.addEventListener("mousemove",e),n&&o.addEventListener("mouseup",n),r&&document.body.addEventListener("dblclick",r),()=>{e&&o.removeEventListener("mousemove",e),n&&o.removeEventListener("mouseup",n),r&&document.body.removeEventListener("dblclick",r),document.body.removeChild(o)}},[t,e,n,r]),w.jsx(w.Fragment,{})),j1={position:"absolute",top:0,right:0,bottom:0,left:0},fg=({orientation:t,offsets:e,setOffsets:n,resizerColor:r,resizerWidth:o,minColumnWidth:l})=>{const c=l||0,[u,d]=Mt.useState(null),[p,g]=Ar(),y={position:"absolute",right:t==="horizontal"?void 0:0,bottom:t==="horizontal"?0:void 0,width:t==="horizontal"?7:void 0,height:t==="horizontal"?void 0:7,borderTopWidth:t==="horizontal"?void 0:(7-o)/2,borderRightWidth:t==="horizontal"?(7-o)/2:void 0,borderBottomWidth:t==="horizontal"?void 0:(7-o)/2,borderLeftWidth:t==="horizontal"?(7-o)/2:void 0,borderColor:"transparent",borderStyle:"solid",cursor:t==="horizontal"?"ew-resize":"ns-resize"};return w.jsxs("div",{style:{position:"absolute",top:0,right:0,bottom:0,left:-(7-o)/2,zIndex:100,pointerEvents:"none"},ref:g,children:[!!u&&w.jsx(ug,{cursor:t==="horizontal"?"ew-resize":"ns-resize",onPaneMouseUp:()=>d(null),onPaneMouseMove:v=>{if(!v.buttons)d(null);else if(u){const S=t==="horizontal"?v.clientX-u.clientX:v.clientY-u.clientY,k=u.offset+S,_=u.index>0?e[u.index-1]:0,E=t==="horizontal"?p.width:p.height,C=Math.min(Math.max(_+c,k),E-c)-e[u.index];for(let A=u.index;Aw.jsx("div",{style:{...y,top:t==="horizontal"?0:v,left:t==="horizontal"?v:0,pointerEvents:"initial"},onMouseDown:k=>d({clientX:k.clientX,clientY:k.clientY,offset:v,index:S}),children:w.jsx("div",{style:{...j1,background:r}})},S))]})};async function pu(t){const e=new Image;return t&&(e.src=t,await new Promise((n,r)=>{e.onload=n,e.onerror=n})),e}const Pu={backgroundImage:`linear-gradient(45deg, #80808020 25%, transparent 25%), - linear-gradient(-45deg, #80808020 25%, transparent 25%), - linear-gradient(45deg, transparent 75%, #80808020 75%), - linear-gradient(-45deg, transparent 75%, #80808020 75%)`,backgroundSize:"20px 20px",backgroundPosition:"0 0, 0 10px, 10px -10px, -10px 0px",boxShadow:`rgb(0 0 0 / 10%) 0px 1.8px 1.9px, - rgb(0 0 0 / 15%) 0px 6.1px 6.3px, - rgb(0 0 0 / 10%) 0px -2px 4px, - rgb(0 0 0 / 15%) 0px -6.1px 12px, - rgb(0 0 0 / 25%) 0px 6px 12px`},P1=({diff:t,noTargetBlank:e,hideDetails:n})=>{const[r,o]=$.useState(t.diff?"diff":"actual"),[l,c]=$.useState(!1),[u,d]=$.useState(null),[p,g]=$.useState("Expected"),[y,v]=$.useState(null),[S,k]=$.useState(null),[_,E]=Ar();$.useEffect(()=>{(async()=>{var M,G,K,O;d(await pu((M=t.expected)==null?void 0:M.attachment.path)),g(((G=t.expected)==null?void 0:G.title)||"Expected"),v(await pu((K=t.actual)==null?void 0:K.attachment.path)),k(await pu((O=t.diff)==null?void 0:O.attachment.path))})()},[t]);const C=u&&y&&S,A=C?Math.max(u.naturalWidth,y.naturalWidth,200):500,B=C?Math.max(u.naturalHeight,y.naturalHeight,200):500,R=Math.min(1,(_.width-30)/A),D=Math.min(1,(_.width-50)/A/2),z=A*R,H=B*R,F={flex:"none",margin:"0 10px",cursor:"pointer",userSelect:"none"};return w.jsx("div",{"data-testid":"test-result-image-mismatch",style:{display:"flex",flexDirection:"column",alignItems:"center",flex:"auto"},ref:E,children:C&&w.jsxs(w.Fragment,{children:[w.jsxs("div",{"data-testid":"test-result-image-mismatch-tabs",style:{display:"flex",margin:"10px 0 20px"},children:[t.diff&&w.jsx("div",{style:{...F,fontWeight:r==="diff"?600:"initial"},onClick:()=>o("diff"),children:"Diff"}),w.jsx("div",{style:{...F,fontWeight:r==="actual"?600:"initial"},onClick:()=>o("actual"),children:"Actual"}),w.jsx("div",{style:{...F,fontWeight:r==="expected"?600:"initial"},onClick:()=>o("expected"),children:p}),w.jsx("div",{style:{...F,fontWeight:r==="sxs"?600:"initial"},onClick:()=>o("sxs"),children:"Side by side"}),w.jsx("div",{style:{...F,fontWeight:r==="slider"?600:"initial"},onClick:()=>o("slider"),children:"Slider"})]}),w.jsxs("div",{style:{display:"flex",justifyContent:"center",flex:"auto",minHeight:H+60},children:[t.diff&&r==="diff"&&w.jsx(En,{image:S,alt:"Diff",hideSize:n,canvasWidth:z,canvasHeight:H,scale:R}),t.diff&&r==="actual"&&w.jsx(En,{image:y,alt:"Actual",hideSize:n,canvasWidth:z,canvasHeight:H,scale:R}),t.diff&&r==="expected"&&w.jsx(En,{image:u,alt:p,hideSize:n,canvasWidth:z,canvasHeight:H,scale:R}),t.diff&&r==="slider"&&w.jsx(O1,{expectedImage:u,actualImage:y,hideSize:n,canvasWidth:z,canvasHeight:H,scale:R,expectedTitle:p}),t.diff&&r==="sxs"&&w.jsxs("div",{style:{display:"flex"},children:[w.jsx(En,{image:u,title:p,hideSize:n,canvasWidth:D*A,canvasHeight:D*B,scale:D}),w.jsx(En,{image:l?S:y,title:l?"Diff":"Actual",onClick:()=>c(!l),hideSize:n,canvasWidth:D*A,canvasHeight:D*B,scale:D})]}),!t.diff&&r==="actual"&&w.jsx(En,{image:y,title:"Actual",hideSize:n,canvasWidth:z,canvasHeight:H,scale:R}),!t.diff&&r==="expected"&&w.jsx(En,{image:u,title:p,hideSize:n,canvasWidth:z,canvasHeight:H,scale:R}),!t.diff&&r==="sxs"&&w.jsxs("div",{style:{display:"flex"},children:[w.jsx(En,{image:u,title:p,canvasWidth:D*A,canvasHeight:D*B,scale:D}),w.jsx(En,{image:y,title:"Actual",canvasWidth:D*A,canvasHeight:D*B,scale:D})]})]}),!n&&w.jsxs("div",{style:{alignSelf:"start",lineHeight:"18px",marginLeft:"15px"},children:[w.jsx("div",{children:t.diff&&w.jsx("a",{target:"_blank",href:t.diff.attachment.path,rel:"noreferrer",children:t.diff.attachment.name})}),w.jsx("div",{children:w.jsx("a",{target:e?"":"_blank",href:t.actual.attachment.path,rel:"noreferrer",children:t.actual.attachment.name})}),w.jsx("div",{children:w.jsx("a",{target:e?"":"_blank",href:t.expected.attachment.path,rel:"noreferrer",children:t.expected.attachment.name})})]})]})})},O1=({expectedImage:t,actualImage:e,canvasWidth:n,canvasHeight:r,scale:o,expectedTitle:l,hideSize:c})=>{const u={position:"absolute",top:0,left:0},[d,p]=$.useState(n/2),g=t.naturalWidth===e.naturalWidth&&t.naturalHeight===e.naturalHeight;return w.jsxs("div",{style:{flex:"none",display:"flex",alignItems:"center",flexDirection:"column",userSelect:"none"},children:[!c&&w.jsxs("div",{style:{margin:5},children:[!g&&w.jsx("span",{style:{flex:"none",margin:"0 5px"},children:"Expected "}),w.jsx("span",{children:t.naturalWidth}),w.jsx("span",{style:{flex:"none",margin:"0 5px"},children:"x"}),w.jsx("span",{children:t.naturalHeight}),!g&&w.jsx("span",{style:{flex:"none",margin:"0 5px 0 15px"},children:"Actual "}),!g&&w.jsx("span",{children:e.naturalWidth}),!g&&w.jsx("span",{style:{flex:"none",margin:"0 5px"},children:"x"}),!g&&w.jsx("span",{children:e.naturalHeight})]}),w.jsxs("div",{style:{position:"relative",width:n,height:r,margin:15,...Pu},children:[w.jsx(fg,{orientation:"horizontal",offsets:[d],setOffsets:y=>p(y[0]),resizerColor:"#57606a80",resizerWidth:6}),w.jsx("img",{alt:l,style:{width:t.naturalWidth*o,height:t.naturalHeight*o},draggable:"false",src:t.src}),w.jsx("div",{style:{...u,bottom:0,overflow:"hidden",width:d,...Pu},children:w.jsx("img",{alt:"Actual",style:{width:e.naturalWidth*o,height:e.naturalHeight*o},draggable:"false",src:e.src})})]})]})},En=({image:t,title:e,alt:n,hideSize:r,canvasWidth:o,canvasHeight:l,scale:c,onClick:u})=>w.jsxs("div",{style:{flex:"none",display:"flex",alignItems:"center",flexDirection:"column"},children:[!r&&w.jsxs("div",{style:{margin:5},children:[e&&w.jsx("span",{style:{flex:"none",margin:"0 5px"},children:e}),w.jsx("span",{children:t.naturalWidth}),w.jsx("span",{style:{flex:"none",margin:"0 5px"},children:"x"}),w.jsx("span",{children:t.naturalHeight})]}),w.jsx("div",{style:{display:"flex",flex:"none",width:o,height:l,margin:15,...Pu},children:w.jsx("img",{width:t.naturalWidth*c,height:t.naturalHeight*c,alt:e||n,style:{cursor:u?"pointer":"initial"},draggable:"false",src:t.src,onClick:u})})]}),$1="modulepreload",R1=function(t,e){return new URL(t,e).href},Qp={},D1=function(e,n,r){let o=Promise.resolve();if(n&&n.length>0){let c=function(g){return Promise.all(g.map(y=>Promise.resolve(y).then(v=>({status:"fulfilled",value:v}),v=>({status:"rejected",reason:v}))))};const u=document.getElementsByTagName("link"),d=document.querySelector("meta[property=csp-nonce]"),p=(d==null?void 0:d.nonce)||(d==null?void 0:d.getAttribute("nonce"));o=c(n.map(g=>{if(g=R1(g,r),g in Qp)return;Qp[g]=!0;const y=g.endsWith(".css"),v=y?'[rel="stylesheet"]':"";if(!!r)for(let _=u.length-1;_>=0;_--){const E=u[_];if(E.href===g&&(!y||E.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${g}"]${v}`))return;const k=document.createElement("link");if(k.rel=y?"stylesheet":$1,y||(k.as="script"),k.crossOrigin="",k.href=g,p&&k.setAttribute("nonce",p),document.head.appendChild(k),y)return new Promise((_,E)=>{k.addEventListener("load",_),k.addEventListener("error",()=>E(new Error(`Unable to preload CSS for ${g}`)))})}))}function l(c){const u=new Event("vite:preloadError",{cancelable:!0});if(u.payload=c,window.dispatchEvent(u),!u.defaultPrevented)throw c}return o.then(c=>{for(const u of c||[])u.status==="rejected"&&l(u.reason);return e().catch(l)})},F1=20,Cs=({text:t,language:e,mimeType:n,linkify:r,readOnly:o,highlight:l,revealLine:c,lineNumbers:u,isFocused:d,focusOnChange:p,wrapLines:g,onChange:y,dataTestId:v,placeholder:S})=>{const[k,_]=Ar(),[E]=$.useState(D1(()=>import("./codeMirrorModule-rKSJ91kC.js"),__vite__mapDeps([0,1]),import.meta.url).then(R=>R.default)),C=$.useRef(null),[A,B]=$.useState();return $.useEffect(()=>{(async()=>{var F,M;const R=await E;z1(R);const D=_.current;if(!D)return;const z=U1(e)||H1(n)||(r?"text/linkified":"");if(C.current&&z===C.current.cm.getOption("mode")&&!!o===C.current.cm.getOption("readOnly")&&u===C.current.cm.getOption("lineNumbers")&&g===C.current.cm.getOption("lineWrapping")&&S===C.current.cm.getOption("placeholder"))return;(M=(F=C.current)==null?void 0:F.cm)==null||M.getWrapperElement().remove();const H=R(D,{value:"",mode:z,readOnly:!!o,lineNumbers:u,lineWrapping:g,placeholder:S});return C.current={cm:H},d&&H.focus(),B(H),H})()},[E,A,_,e,n,r,u,g,o,d,S]),$.useEffect(()=>{C.current&&C.current.cm.setSize(k.width,k.height)},[k]),$.useLayoutEffect(()=>{var z;if(!A)return;let R=!1;if(A.getValue()!==t&&(A.setValue(t),R=!0,p&&(A.execCommand("selectAll"),A.focus())),R||JSON.stringify(l)!==JSON.stringify(C.current.highlight)){for(const M of C.current.highlight||[])A.removeLineClass(M.line-1,"wrap");for(const M of l||[])A.addLineClass(M.line-1,"wrap",`source-line-${M.type}`);for(const M of C.current.widgets||[])A.removeLineWidget(M);for(const M of C.current.markers||[])M.clear();const H=[],F=[];for(const M of l||[]){if(M.type!=="subtle-error"&&M.type!=="error")continue;const G=(z=C.current)==null?void 0:z.cm.getLine(M.line-1);if(G){const K={};K.title=M.message||"",F.push(A.markText({line:M.line-1,ch:0},{line:M.line-1,ch:M.column||G.length},{className:"source-line-error-underline",attributes:K}))}if(M.type==="error"){const K=document.createElement("div");K.innerHTML=qi(M.message||""),K.className="source-line-error-widget",H.push(A.addLineWidget(M.line,K,{above:!0,coverGutter:!1}))}}C.current.highlight=l,C.current.widgets=H,C.current.markers=F}typeof c=="number"&&C.current.cm.lineCount()>=c&&A.scrollIntoView({line:Math.max(0,c-1),ch:0},50);let D;return y&&(D=()=>y(A.getValue()),A.on("change",D)),()=>{D&&A.off("change",D)}},[A,t,l,c,p,y]),w.jsx("div",{"data-testid":v,className:"cm-wrapper",ref:_,onClick:B1})};function B1(t){var n;if(!(t.target instanceof HTMLElement))return;let e;t.target.classList.contains("cm-linkified")?e=t.target.textContent:t.target.classList.contains("cm-link")&&((n=t.target.nextElementSibling)!=null&&n.classList.contains("cm-url"))&&(e=t.target.nextElementSibling.textContent.slice(1,-1)),e&&(t.preventDefault(),t.stopPropagation(),window.open(e,"_blank"))}let Jp=!1;function z1(t){Jp||(Jp=!0,t.defineSimpleMode("text/linkified",{start:[{regex:Om,token:"linkified"}]}))}function H1(t){if(t){if(t.includes("javascript")||t.includes("json"))return"javascript";if(t.includes("python"))return"python";if(t.includes("csharp"))return"text/x-csharp";if(t.includes("java"))return"text/x-java";if(t.includes("markdown"))return"markdown";if(t.includes("html")||t.includes("svg"))return"htmlmixed";if(t.includes("css"))return"css"}}function U1(t){if(t)return{javascript:"javascript",jsonl:"javascript",python:"python",csharp:"text/x-csharp",java:"text/x-java",markdown:"markdown",html:"htmlmixed",css:"css",yaml:"yaml"}[t]}function q1(t){return!!t.match(/^(text\/.*?|application\/(json|(x-)?javascript|xml.*?|ecmascript|graphql|x-www-form-urlencoded)|image\/svg(\+xml)?|application\/.*?(\+json|\+xml))(;\s*charset=.*)?$/)}const V1=({title:t,children:e,setExpanded:n,expanded:r,expandOnTitleClick:o})=>{const l=$.useId();return w.jsxs("div",{className:Be("expandable",r&&"expanded"),children:[w.jsxs("div",{role:"button","aria-expanded":r,"aria-controls":l,className:"expandable-title",onClick:()=>o&&n(!r),children:[w.jsx("div",{className:Be("codicon",r?"codicon-chevron-down":"codicon-chevron-right"),style:{cursor:"pointer",color:"var(--vscode-foreground)",marginLeft:"5px"},onClick:()=>!o&&n(!r)}),t]}),r&&w.jsx("div",{id:l,role:"region",style:{marginLeft:25},children:e})]})};function dg(t){const e=[];let n=0,r;for(;(r=Om.exec(t))!==null;){const l=t.substring(n,r.index);l&&e.push(l);const c=r[0];e.push(W1(c)),n=r.index+c.length}const o=t.substring(n);return o&&e.push(o),e}function W1(t){let e=t;return e.startsWith("www.")&&(e="https://"+e),w.jsx("a",{href:e,target:"_blank",rel:"noopener noreferrer",children:t})}const K1=({attachment:t,reveal:e})=>{const[n,r]=$.useState(!1),[o,l]=$.useState(null),[c,u]=$.useState(null),[d,p]=_0(),g=$.useRef(null),y=q1(t.contentType),v=!!t.sha1||!!t.path;$.useEffect(()=>{var _;if(e)return(_=g.current)==null||_.scrollIntoView({behavior:"smooth"}),p()},[e,p]),$.useEffect(()=>{n&&o===null&&c===null&&(u("Loading ..."),fetch(ra(t)).then(_=>_.text()).then(_=>{l(_),u(null)}).catch(_=>{u("Failed to load: "+_.message)}))},[n,o,c,t]);const S=$.useMemo(()=>{const _=o?o.split(` -`).length:0;return Math.min(Math.max(5,_),20)*F1},[o]),k=w.jsxs("span",{style:{marginLeft:5},ref:g,"aria-label":t.name,children:[w.jsx("span",{children:dg(t.name)}),v&&w.jsx("a",{style:{marginLeft:5},href:Al(t),children:"download"})]});return!y||!v?w.jsx("div",{style:{marginLeft:20},children:k}):w.jsxs("div",{className:Be(d&&"yellow-flash"),children:[w.jsx(V1,{title:k,expanded:n,setExpanded:r,expandOnTitleClick:!0,children:c&&w.jsx("i",{children:c})}),n&&o!==null&&w.jsx("div",{className:"vbox",style:{height:S},children:w.jsx(Cs,{text:o,readOnly:!0,mimeType:t.contentType,linkify:!0,lineNumbers:!0,wrapLines:!1})})]})},G1=({model:t,revealedAttachment:e})=>{const{diffMap:n,screenshots:r,attachments:o}=$.useMemo(()=>{const l=new Set((t==null?void 0:t.visibleAttachments)??[]),c=new Set,u=new Map;for(const d of l){if(!d.path&&!d.sha1)continue;const p=d.name.match(/^(.*)-(expected|actual|diff)\.png$/);if(p){const g=p[1],y=p[2],v=u.get(g)||{expected:void 0,actual:void 0,diff:void 0};v[y]=d,u.set(g,v),l.delete(d)}else d.contentType.startsWith("image/")&&(c.add(d),l.delete(d))}return{diffMap:u,attachments:l,screenshots:c}},[t]);return!n.size&&!r.size&&!o.size?w.jsx(Ir,{text:"No attachments"}):w.jsxs("div",{className:"attachments-tab",children:[[...n.values()].map(({expected:l,actual:c,diff:u})=>w.jsxs(w.Fragment,{children:[l&&c&&w.jsx("div",{className:"attachments-section",children:"Image diff"}),l&&c&&w.jsx(P1,{noTargetBlank:!0,diff:{name:"Image diff",expected:{attachment:{...l,path:Al(l)},title:"Expected"},actual:{attachment:{...c,path:Al(c)}},diff:u?{attachment:{...u,path:Al(u)}}:void 0}})]})),r.size?w.jsx("div",{className:"attachments-section",children:"Screenshots"}):void 0,[...r.values()].map((l,c)=>{const u=ra(l);return w.jsxs("div",{className:"attachment-item",children:[w.jsx("div",{children:w.jsx("img",{draggable:"false",src:u})}),w.jsx("div",{children:w.jsx("a",{target:"_blank",href:u,rel:"noreferrer",children:l.name})})]},`screenshot-${c}`)}),o.size?w.jsx("div",{className:"attachments-section",children:"Attachments"}):void 0,[...o.values()].map((l,c)=>w.jsx("div",{className:"attachment-item",children:w.jsx(K1,{attachment:l,reveal:e&&Q1(l,e[0])?e:void 0})},J1(l,c)))]})};function Q1(t,e){return t.name===e.name&&t.path===e.path&&t.sha1===e.sha1}function ra(t,e={}){const n=new URLSearchParams(e);return t.sha1?(n.set("trace",t.traceUrl),"sha1/"+t.sha1+"?"+n.toString()):(n.set("path",t.path),"file?"+n.toString())}function Al(t){const e={dn:t.name};return t.contentType&&(e.dct=t.contentType),ra(t,e)}function J1(t,e){return e+"-"+(t.sha1?"sha1-"+t.sha1:"path-"+t.path)}const X1=` -# Instructions - -- Following Playwright test failed. -- Explain why, be concise, respect Playwright best practices. -- Provide a snippet of code with the fix, if possible. -`.trimStart();async function Y1({testInfo:t,metadata:e,errorContext:n,errors:r,buildCodeFrame:o}){var p;const l=new Set(r.filter(g=>g.message&&!g.message.includes(` -`)).map(g=>g.message));for(const g of r)for(const y of l.keys())(p=g.message)!=null&&p.includes(y)&&l.delete(y);const c=r.filter(g=>!(!g.message||!g.message.includes(` -`)&&!l.has(g.message)));if(!c.length)return;const u=[X1,"# Test info","",t,"","# Error details"];for(const g of c)u.push("","```",hg(g.message||""),"```");n&&u.push(n);const d=await o(c[c.length-1]);return d&&u.push("","# Test source","","```ts",d,"```"),e!=null&&e.gitDiff&&u.push("","# Local changes","","```diff",e.gitDiff,"```"),u.join(` -`)}const Z1=new RegExp("([\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:[a-zA-Z\\d]*(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)|(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~])))","g");function hg(t){return t.replace(Z1,"")}const eS=na,tS=({stack:t,setSelectedFrame:e,selectedFrame:n})=>{const r=t||[];return w.jsx(eS,{name:"stack-trace",ariaLabel:"Stack trace",items:r,selectedItem:r[n],render:o=>{const l=o.file[1]===":"?"\\":"/";return w.jsxs(w.Fragment,{children:[w.jsx("span",{className:"stack-trace-frame-function",children:o.function||"(anonymous)"}),w.jsx("span",{className:"stack-trace-frame-location",children:o.file.split(l).pop()}),w.jsx("span",{className:"stack-trace-frame-line",children:":"+o.line})]})},onSelected:o=>e(r.indexOf(o))})},tf=({noShadow:t,children:e,noMinHeight:n,className:r,sidebarBackground:o,onClick:l})=>w.jsx("div",{className:Be("toolbar",t&&"no-shadow",n&&"no-min-height",r,o&&"toolbar-sidebar-background"),onClick:l,children:e});function nS(t,e,n,r,o){return $l(async()=>{var v,S,k,_;const l=t==null?void 0:t[e],c=l!=null&&l.file?l:o;if(!c)return{source:{file:"",errors:[],content:void 0},targetLine:0,highlight:[]};const u=c.file;let d=n.get(u);d||(d={errors:((v=o==null?void 0:o.source)==null?void 0:v.errors)||[],content:(S=o==null?void 0:o.source)==null?void 0:S.content},n.set(u,d));const p=(c==null?void 0:c.line)||((k=d.errors[0])==null?void 0:k.line)||0,g=r&&u.startsWith(r)?u.substring(r.length+1):u,y=d.errors.map(E=>({type:"error",line:E.line,message:E.message}));if(y.push({line:p,type:"running"}),((_=o==null?void 0:o.source)==null?void 0:_.content)!==void 0)d.content=o.source.content;else if(d.content===void 0||c===o){const E=await pg(u);try{let C=await fetch(`sha1/src@${E}.txt`);C.status===404&&(C=await fetch(`file?path=${encodeURIComponent(u)}`)),C.status>=400?d.content=``:d.content=await C.text()}catch{d.content=``}}return{source:d,highlight:y,targetLine:p,fileName:g,location:c}},[t,e,r,o],{source:{errors:[],content:"Loading…"},highlight:[]})}const rS=({stack:t,sources:e,rootDir:n,fallbackLocation:r,stackFrameLocation:o,onOpenExternally:l})=>{const[c,u]=$.useState(),[d,p]=$.useState(0);$.useEffect(()=>{c!==t&&(u(t),p(0))},[t,c,u,p]);const{source:g,highlight:y,targetLine:v,fileName:S,location:k}=nS(t,d,e,n,r),_=$.useCallback(()=>{k&&(l?l(k):window.location.href=`vscode://file//${k.file}:${k.line}`)},[l,k]),E=((t==null?void 0:t.length)??0)>1,C=sS(S);return w.jsx(Dl,{sidebarSize:200,orientation:o==="bottom"?"vertical":"horizontal",sidebarHidden:!E,main:w.jsxs("div",{className:"vbox","data-testid":"source-code",children:[S&&w.jsxs(tf,{children:[w.jsx("div",{className:"source-tab-file-name",title:S,children:w.jsx("div",{children:C})}),w.jsx(ef,{description:"Copy filename",value:C}),k&&w.jsx(qt,{icon:"link-external",title:"Open in VS Code",onClick:_})]}),w.jsx(Cs,{text:g.content||"",language:"javascript",highlight:y,revealLine:v,readOnly:!0,lineNumbers:!0,dataTestId:"source-code-mirror"})]}),sidebar:w.jsx(tS,{stack:t,selectedFrame:d,setSelectedFrame:p})})};async function pg(t){const e=new TextEncoder().encode(t),n=await crypto.subtle.digest("SHA-1",e),r=[],o=new DataView(n);for(let l=0;lw.jsx(Nl,{value:t,description:"Copy prompt",copiedDescription:w.jsxs(w.Fragment,{children:["Copied ",w.jsx("span",{className:"codicon codicon-copy",style:{marginLeft:"5px"}})]}),style:{width:"120px",justifyContent:"center"}});function oS(t){return $.useMemo(()=>{if(!t)return{errors:new Map};const e=new Map;for(const n of t.errorDescriptors)e.set(n.message,n);return{errors:e}},[t])}function lS({message:t,error:e,sdkLanguage:n,revealInSource:r}){var u;let o,l;const c=(u=e.stack)==null?void 0:u[0];return c&&(o=c.file.replace(/.*[/\\](.*)/,"$1")+":"+c.line,l=c.file+":"+c.line),w.jsxs("div",{style:{display:"flex",flexDirection:"column",overflowX:"clip"},children:[w.jsxs("div",{className:"hbox",style:{alignItems:"center",padding:"5px 10px",minHeight:36,fontWeight:"bold",color:"var(--vscode-errorForeground)",flex:0},children:[e.action&&Zu(e.action,{sdkLanguage:n}),o&&w.jsxs("div",{className:"action-location",children:["@ ",w.jsx("span",{title:l,onClick:()=>r(e),children:o})]})]}),w.jsx(M1,{error:t})]})}const aS=({errorsModel:t,model:e,sdkLanguage:n,revealInSource:r,wallTime:o,testRunMetadata:l})=>{const c=$l(async()=>{const p=e==null?void 0:e.attachments.find(g=>g.name==="error-context");if(p)return await fetch(ra(p)).then(g=>g.text())},[e],void 0),u=$.useCallback(async p=>{var S;const g=(S=p.stack)==null?void 0:S[0];if(!g)return;let y=await fetch(`sha1/src@${await pg(g.file)}.txt`);if(y.status===404&&(y=await fetch(`file?path=${encodeURIComponent(g.file)}`)),y.status>=400)return;const v=await y.text();return cS({source:v,message:hg(p.message).split(` -`)[0]||void 0,location:g,linesAbove:100,linesBelow:100})},[]),d=$l(()=>Y1({testInfo:(e==null?void 0:e.title)??"",metadata:l,errorContext:c,errors:(e==null?void 0:e.errorDescriptors)??[],buildCodeFrame:u}),[c,l,e,u],void 0);return t.errors.size?w.jsxs("div",{className:"fill",style:{overflow:"auto"},children:[w.jsx("span",{style:{position:"absolute",right:"5px",top:"5px",zIndex:1},children:d&&w.jsx(iS,{prompt:d})}),[...t.errors.entries()].map(([p,g])=>{const y=`error-${o}-${p}`;return w.jsx(lS,{message:p,error:g,revealInSource:r,sdkLanguage:n},y)})]}):w.jsx(Ir,{text:"No errors"})};function cS({source:t,message:e,location:n,linesAbove:r,linesBelow:o}){const l=t.split(` -`).slice(),c=Math.max(0,n.line-r-1),u=Math.min(l.length,n.line+o),d=l.slice(c,u),p=String(u).length,g=d.map((y,v)=>`${c+v+1===n.line?"> ":" "}${(c+v+1).toString().padEnd(p," ")} | ${y}`);return e&&g.splice(n.line-c,0,`${" ".repeat(p+2)} | ${" ".repeat(n.column-2)} ^ ${e}`),g.join(` -`)}const uS=na;function fS(t,e){const{entries:n}=$.useMemo(()=>{if(!t)return{entries:[]};const o=[];function l(u){var g,y,v,S,k,_;const d=o[o.length-1];d&&((g=u.browserMessage)==null?void 0:g.bodyString)===((y=d.browserMessage)==null?void 0:y.bodyString)&&((v=u.browserMessage)==null?void 0:v.location)===((S=d.browserMessage)==null?void 0:S.location)&&u.browserError===d.browserError&&((k=u.nodeMessage)==null?void 0:k.html)===((_=d.nodeMessage)==null?void 0:_.html)&&u.isError===d.isError&&u.isWarning===d.isWarning&&u.timestamp-d.timestamp<1e3?d.repeat++:o.push({...u,repeat:1})}const c=[...t.events,...t.stdio].sort((u,d)=>{const p="time"in u?u.time:u.timestamp,g="time"in d?d.time:d.timestamp;return p-g});for(const u of c){if(u.type==="console"){const d=u.args&&u.args.length?hS(u.args):mg(u.text),p=u.location.url,y=`${p?p.substring(p.lastIndexOf("/")+1):""}:${u.location.lineNumber}`;l({browserMessage:{body:d,bodyString:u.text,location:y},isError:u.messageType==="error",isWarning:u.messageType==="warning",timestamp:u.time})}if(u.type==="event"&&u.method==="pageError"&&l({browserError:u.params.error,isError:!0,isWarning:!1,timestamp:u.time}),u.type==="stderr"||u.type==="stdout"){let d="";u.text&&(d=qi(u.text.trim())||""),u.base64&&(d=qi(atob(u.base64).trim())||""),l({nodeMessage:{html:d},isError:u.type==="stderr",isWarning:!1,timestamp:u.timestamp})}}return{entries:o}},[t]);return{entries:$.useMemo(()=>e?n.filter(o=>o.timestamp>=e.minimum&&o.timestamp<=e.maximum):n,[n,e])}}const dS=({consoleModel:t,boundaries:e,onEntryHovered:n,onAccepted:r})=>t.entries.length?w.jsx("div",{className:"console-tab",children:w.jsx(uS,{name:"console",onAccepted:r,onHighlighted:n,items:t.entries,isError:o=>o.isError,isWarning:o=>o.isWarning,render:o=>{const l=pt(o.timestamp-e.minimum),c=w.jsx("span",{className:"console-time",children:l}),u=o.isError?"status-error":o.isWarning?"status-warning":"status-none",d=o.browserMessage||o.browserError?w.jsx("span",{className:Be("codicon","codicon-browser",u),title:"Browser message"}):w.jsx("span",{className:Be("codicon","codicon-file",u),title:"Runner message"});let p,g,y,v;const{browserMessage:S,browserError:k,nodeMessage:_}=o;if(S&&(p=S.location,g=S.body),k){const{error:E,value:C}=k;E?(g=E.message,v=E.stack):g=String(C)}return _&&(y=_.html),w.jsxs("div",{className:"console-line",children:[c,d,p&&w.jsx("span",{className:"console-location",children:p}),o.repeat>1&&w.jsx("span",{className:"console-repeat",children:o.repeat}),g&&w.jsx("span",{className:"console-line-message",children:g}),y&&w.jsx("span",{className:"console-line-message",dangerouslySetInnerHTML:{__html:y}}),v&&w.jsx("div",{className:"console-stack",children:v})]})}})}):w.jsx(Ir,{text:"No console entries"});function hS(t){if(t.length===1)return mg(t[0].preview);const e=typeof t[0].value=="string"&&t[0].value.includes("%"),n=e?t[0].value:"",r=e?t.slice(1):t;let o=0;const l=/%([%sdifoOc])/g;let c;const u=[];let d=[];u.push(w.jsx("span",{children:d},u.length+1));let p=0;for(;(c=l.exec(n))!==null;){const g=n.substring(p,c.index);d.push(w.jsx("span",{children:g},d.length+1)),p=c.index+2;const y=c[0][1];if(y==="%")d.push(w.jsx("span",{children:"%"},d.length+1));else if(y==="s"||y==="o"||y==="O"||y==="d"||y==="i"||y==="f"){const v=r[o++],S={};typeof(v==null?void 0:v.value)!="string"&&(S.color="var(--vscode-debugTokenExpression-number)"),d.push(w.jsx("span",{style:S,children:(v==null?void 0:v.preview)||""},d.length+1))}else if(y==="c"){d=[];const v=r[o++],S=v?pS(v.preview):{};u.push(w.jsx("span",{style:S,children:d},u.length+1))}}for(pd[1].toUpperCase());e[u]=c}return e}catch{return{}}}function mS(t){return["background","border","color","font","line","margin","padding","text"].some(n=>t.startsWith(n))}const Ou=({tabs:t,selectedTab:e,setSelectedTab:n,leftToolbar:r,rightToolbar:o,dataTestId:l,mode:c})=>{const u=$.useId();return e||(e=t[0].id),c||(c="default"),w.jsx("div",{className:"tabbed-pane","data-testid":l,children:w.jsxs("div",{className:"vbox",children:[w.jsxs(tf,{children:[r&&w.jsxs("div",{style:{flex:"none",display:"flex",margin:"0 4px",alignItems:"center"},children:[...r]}),c==="default"&&w.jsx("div",{style:{flex:"auto",display:"flex",height:"100%",overflow:"hidden"},role:"tablist",children:[...t.map(d=>w.jsx(gg,{id:d.id,ariaControls:`${u}-${d.id}`,title:d.title,count:d.count,errorCount:d.errorCount,selected:e===d.id,onSelect:n},d.id))]}),c==="select"&&w.jsx("div",{style:{flex:"auto",display:"flex",height:"100%",overflow:"hidden"},role:"tablist",children:w.jsx("select",{style:{width:"100%",background:"none",cursor:"pointer"},value:e,onChange:d=>{n==null||n(t[d.currentTarget.selectedIndex].id)},children:t.map(d=>{let p="";return d.count&&(p=` (${d.count})`),d.errorCount&&(p=` (${d.errorCount})`),w.jsxs("option",{value:d.id,role:"tab","aria-controls":`${u}-${d.id}`,children:[d.title,p]},d.id)})})}),o&&w.jsxs("div",{style:{flex:"none",display:"flex",alignItems:"center"},children:[...o]})]}),t.map(d=>{const p="tab-content tab-"+d.id;if(d.component)return w.jsx("div",{id:`${u}-${d.id}`,role:"tabpanel","aria-label":d.title,className:p,style:{display:e===d.id?"inherit":"none"},children:d.component},d.id);if(e===d.id)return w.jsx("div",{id:`${u}-${d.id}`,role:"tabpanel","aria-label":d.title,className:p,children:d.render()},d.id)})]})})},gg=({id:t,title:e,count:n,errorCount:r,selected:o,onSelect:l,ariaControls:c})=>w.jsxs("div",{className:Be("tabbed-pane-tab",o&&"selected"),onClick:()=>l==null?void 0:l(t),role:"tab",title:e,"aria-controls":c,children:[w.jsx("div",{className:"tabbed-pane-tab-label",children:e}),!!n&&w.jsx("div",{className:"tabbed-pane-tab-counter",children:n}),!!r&&w.jsx("div",{className:"tabbed-pane-tab-counter error",children:r})]});async function gS(t){const e=navigator.platform.includes("Win")?"win":"unix";let n=[];const r=new Set(["accept-encoding","host","method","path","scheme","version","authority","protocol"]);function o(y){const v='^"';return v+y.replace(/\\/g,"\\\\").replace(/"/g,'\\"').replace(/[^a-zA-Z0-9\s_\-:=+~'\/.',?;()*`]/g,"^$&").replace(/%(?=[a-zA-Z0-9_])/g,"%^").replace(/\r?\n/g,`^ - -`)+v}function l(y){function v(S){let _=S.charCodeAt(0).toString(16);for(;_.length<4;)_="0"+_;return"\\u"+_}return/[\0-\x1F\x7F-\x9F!]|\'/.test(y)?"$'"+y.replace(/\\/g,"\\\\").replace(/\'/g,"\\'").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/[\0-\x1F\x7F-\x9F!]/g,v)+"'":"'"+y+"'"}const c=e==="win"?o:l;n.push(c(t.request.url).replace(/[[{}\]]/g,"\\$&"));let u="GET";const d=[],p=await yg(t);p&&(d.push("--data-raw "+c(p)),r.add("content-length"),u="POST"),t.request.method!==u&&n.push("-X "+c(t.request.method));const g=t.request.headers;for(let y=0;y=3?e==="win"?` ^ - `:` \\ - `:" ")}async function yS(t,e=0){const n=new Set(["method","path","scheme","version","accept-charset","accept-encoding","access-control-request-headers","access-control-request-method","connection","content-length","cookie","cookie2","date","dnt","expect","host","keep-alive","origin","referer","te","trailer","transfer-encoding","upgrade","via","user-agent"]),r=new Set(["cookie","authorization"]),o=JSON.stringify(t.request.url),l=t.request.headers,c=l.reduce((k,_)=>{const E=_.name;return!n.has(E.toLowerCase())&&!E.includes(":")&&k.append(E,_.value),k},new Headers),u={};for(const k of c)u[k[0]]=k[1];const d=t.request.cookies.length||l.some(({name:k})=>r.has(k.toLowerCase()))?"include":"omit",p=l.find(({name:k})=>k.toLowerCase()==="referer"),g=p?p.value:void 0,y=await yg(t),v={headers:Object.keys(u).length?u:void 0,referrer:g,body:y,method:t.request.method,mode:"cors"};if(e===1){const k=l.find(E=>E.name.toLowerCase()==="cookie"),_={};delete v.mode,k&&(_.cookie=k.value),g&&(delete v.referrer,_.Referer=g),Object.keys(_).length&&(v.headers={...u,..._})}else v.credentials=d;const S=JSON.stringify(v,null,2);return`fetch(${o}, ${S});`}async function yg(t){var e,n;return(e=t.request.postData)!=null&&e._sha1?await fetch(`sha1/${t.request.postData._sha1}`).then(r=>r.text()):(n=t.request.postData)==null?void 0:n.text}class vS{generatePlaywrightRequestCall(e,n){let r=e.method.toLowerCase();const o=new URL(e.url),l=`${o.origin}${o.pathname}`,c={};["delete","get","head","post","put","patch"].includes(r)||(c.method=r,r="fetch"),o.searchParams.size&&(c.params=Object.fromEntries(o.searchParams.entries())),n&&(c.data=n),e.headers.length&&(c.headers=Object.fromEntries(e.headers.map(p=>[p.name,p.value])));const u=[`'${l}'`];return Object.keys(c).length>0&&u.push(this.prettyPrintObject(c)),`await page.request.${r}(${u.join(", ")});`}prettyPrintObject(e,n=2,r=0){if(e===null)return"null";if(e===void 0)return"undefined";if(typeof e!="object")return typeof e=="string"?this.stringLiteral(e):String(e);if(Array.isArray(e)){if(e.length===0)return"[]";const u=" ".repeat(r*n),d=" ".repeat((r+1)*n);return`[ -${e.map(g=>`${d}${this.prettyPrintObject(g,n,r+1)}`).join(`, -`)} -${u}]`}if(Object.keys(e).length===0)return"{}";const o=" ".repeat(r*n),l=" ".repeat((r+1)*n);return`{ -${Object.entries(e).map(([u,d])=>{const p=this.prettyPrintObject(d,n,r+1),g=/^[a-zA-Z_$][a-zA-Z0-9_$]*$/.test(u)?u:this.stringLiteral(u);return`${l}${g}: ${p}`}).join(`, -`)} -${o}}`}stringLiteral(e){return e=e.replace(/\\/g,"\\\\").replace(/'/g,"\\'"),e.includes(` -`)||e.includes("\r")||e.includes(" ")?"`"+e+"`":`'${e}'`}}class wS{generatePlaywrightRequestCall(e,n){const r=new URL(e.url),l=[`"${`${r.origin}${r.pathname}`}"`];let c=e.method.toLowerCase();["delete","get","head","post","put","patch"].includes(c)||(l.push(`method="${c}"`),c="fetch"),r.searchParams.size&&l.push(`params=${this.prettyPrintObject(Object.fromEntries(r.searchParams.entries()))}`),n&&l.push(`data=${this.prettyPrintObject(n)}`),e.headers.length&&l.push(`headers=${this.prettyPrintObject(Object.fromEntries(e.headers.map(d=>[d.name,d.value])))}`);const u=l.length===1?l[0]:` -${l.map(d=>this.indent(d,2)).join(`, -`)} -`;return`await page.request.${c}(${u})`}indent(e,n){return e.split(` -`).map(r=>" ".repeat(n)+r).join(` -`)}prettyPrintObject(e,n=2,r=0){if(e===null||e===void 0)return"None";if(typeof e!="object")return typeof e=="string"?this.stringLiteral(e):typeof e=="boolean"?e?"True":"False":String(e);if(Array.isArray(e)){if(e.length===0)return"[]";const u=" ".repeat(r*n),d=" ".repeat((r+1)*n);return`[ -${e.map(g=>`${d}${this.prettyPrintObject(g,n,r+1)}`).join(`, -`)} -${u}]`}if(Object.keys(e).length===0)return"{}";const o=" ".repeat(r*n),l=" ".repeat((r+1)*n);return`{ -${Object.entries(e).map(([u,d])=>{const p=this.prettyPrintObject(d,n,r+1);return`${l}${this.stringLiteral(u)}: ${p}`}).join(`, -`)} -${o}}`}stringLiteral(e){return JSON.stringify(e)}}class SS{generatePlaywrightRequestCall(e,n){const r=new URL(e.url),o=`${r.origin}${r.pathname}`,l={},c=[];let u=e.method.toLowerCase();["delete","get","head","post","put","patch"].includes(u)||(l.Method=u,u="fetch"),r.searchParams.size&&(l.Params=Object.fromEntries(r.searchParams.entries())),n&&(l.Data=n),e.headers.length&&(l.Headers=Object.fromEntries(e.headers.map(g=>[g.name,g.value])));const d=[`"${o}"`];return Object.keys(l).length>0&&d.push(this.prettyPrintObject(l)),`${c.join(` -`)}${c.length?` -`:""}await request.${this.toFunctionName(u)}(${d.join(", ")});`}toFunctionName(e){return e[0].toUpperCase()+e.slice(1)+"Async"}prettyPrintObject(e,n=2,r=0){if(e===null||e===void 0)return"null";if(typeof e!="object")return typeof e=="string"?this.stringLiteral(e):typeof e=="boolean"?e?"true":"false":String(e);if(Array.isArray(e)){if(e.length===0)return"new object[] {}";const u=" ".repeat(r*n),d=" ".repeat((r+1)*n);return`new object[] { -${e.map(g=>`${d}${this.prettyPrintObject(g,n,r+1)}`).join(`, -`)} -${u}}`}if(Object.keys(e).length===0)return"new {}";const o=" ".repeat(r*n),l=" ".repeat((r+1)*n);return`new() { -${Object.entries(e).map(([u,d])=>{const p=this.prettyPrintObject(d,n,r+1),g=r===0?u:`[${this.stringLiteral(u)}]`;return`${l}${g} = ${p}`}).join(`, -`)} -${o}}`}stringLiteral(e){return JSON.stringify(e)}}class xS{generatePlaywrightRequestCall(e,n){const r=new URL(e.url),o=[`"${r.origin}${r.pathname}"`],l=[];let c=e.method.toLowerCase();["delete","get","head","post","put","patch"].includes(c)||(l.push(`setMethod("${c}")`),c="fetch");for(const[u,d]of r.searchParams)l.push(`setQueryParam(${this.stringLiteral(u)}, ${this.stringLiteral(d)})`);n&&l.push(`setData(${this.stringLiteral(n)})`);for(const u of e.headers)l.push(`setHeader(${this.stringLiteral(u.name)}, ${this.stringLiteral(u.value)})`);return l.length>0&&o.push(`RequestOptions.create() - .${l.join(` - .`)} -`),`request.${c}(${o.join(", ")});`}stringLiteral(e){return JSON.stringify(e)}}function _S(t){if(t==="javascript")return new vS;if(t==="python")return new wS;if(t==="csharp")return new SS;if(t==="java")return new xS;throw new Error("Unsupported language: "+t)}const ES=({resource:t,sdkLanguage:e,startTimeOffset:n,onClose:r})=>{const[o,l]=$.useState("request"),c=$l(async()=>{if(t.request.postData){const u=t.request.headers.find(p=>p.name.toLowerCase()==="content-type"),d=u?u.value:"";if(t.request.postData._sha1){const p=await fetch(`sha1/${t.request.postData._sha1}`);return{text:$u(await p.text(),d),mimeType:d}}else return{text:$u(t.request.postData.text,d),mimeType:d}}else return null},[t],null);return w.jsx(Ou,{dataTestId:"network-request-details",leftToolbar:[w.jsx(qt,{icon:"close",title:"Close",onClick:r},"close")],rightToolbar:[w.jsx(kS,{requestBody:c,resource:t,sdkLanguage:e},"dropdown")],tabs:[{id:"request",title:"Request",render:()=>w.jsx(bS,{resource:t,startTimeOffset:n,requestBody:c})},{id:"response",title:"Response",render:()=>w.jsx(TS,{resource:t})},{id:"body",title:"Body",render:()=>w.jsx(CS,{resource:t})}],selectedTab:o,setSelectedTab:l})},kS=({resource:t,sdkLanguage:e,requestBody:n})=>{const r=w.jsxs(w.Fragment,{children:[w.jsx("span",{className:"codicon codicon-check",style:{marginRight:"5px"}})," Copied "]}),o=async()=>_S(e).generatePlaywrightRequestCall(t.request,n==null?void 0:n.text);return w.jsxs("div",{className:"copy-request-dropdown",children:[w.jsxs(qt,{className:"copy-request-dropdown-toggle",children:[w.jsx("span",{className:"codicon codicon-copy",style:{marginRight:"5px"}}),"Copy request",w.jsx("span",{className:"codicon codicon-chevron-down",style:{marginLeft:"5px"}})]}),w.jsxs("div",{className:"copy-request-dropdown-menu",children:[w.jsx(Nl,{description:"Copy as cURL",copiedDescription:r,value:()=>gS(t)}),w.jsx(Nl,{description:"Copy as Fetch",copiedDescription:r,value:()=>yS(t)}),w.jsx(Nl,{description:"Copy as Playwright",copiedDescription:r,value:o})]})]})},bS=({resource:t,startTimeOffset:e,requestBody:n})=>w.jsxs("div",{className:"network-request-details-tab",children:[w.jsx("div",{className:"network-request-details-header",children:"General"}),w.jsx("div",{className:"network-request-details-url",children:`URL: ${t.request.url}`}),w.jsx("div",{className:"network-request-details-general",children:`Method: ${t.request.method}`}),t.response.status!==-1&&w.jsxs("div",{className:"network-request-details-general",style:{display:"flex"},children:["Status Code: ",w.jsx("span",{className:AS(t.response.status),style:{display:"inline-flex"},children:`${t.response.status} ${t.response.statusText}`})]}),t.request.queryString.length?w.jsxs(w.Fragment,{children:[w.jsx("div",{className:"network-request-details-header",children:"Query String Parameters"}),w.jsx("div",{className:"network-request-details-headers",children:t.request.queryString.map(r=>`${r.name}: ${r.value}`).join(` -`)})]}):null,w.jsx("div",{className:"network-request-details-header",children:"Request Headers"}),w.jsx("div",{className:"network-request-details-headers",children:t.request.headers.map(r=>`${r.name}: ${r.value}`).join(` -`)}),w.jsx("div",{className:"network-request-details-header",children:"Time"}),w.jsx("div",{className:"network-request-details-general",children:`Start: ${pt(e)}`}),w.jsx("div",{className:"network-request-details-general",children:`Duration: ${pt(t.time)}`}),n&&w.jsx("div",{className:"network-request-details-header",children:"Request Body"}),n&&w.jsx(Cs,{text:n.text,mimeType:n.mimeType,readOnly:!0,lineNumbers:!0})]}),TS=({resource:t})=>w.jsxs("div",{className:"network-request-details-tab",children:[w.jsx("div",{className:"network-request-details-header",children:"Response Headers"}),w.jsx("div",{className:"network-request-details-headers",children:t.response.headers.map(e=>`${e.name}: ${e.value}`).join(` -`)})]}),CS=({resource:t})=>{const[e,n]=$.useState(null);return $.useEffect(()=>{(async()=>{if(t.response.content._sha1){const o=t.response.content.mimeType.includes("image"),l=t.response.content.mimeType.includes("font"),c=await fetch(`sha1/${t.response.content._sha1}`);if(o){const u=await c.blob(),d=new FileReader,p=new Promise(g=>d.onload=g);d.readAsDataURL(u),n({dataUrl:(await p).target.result})}else if(l){const u=await c.arrayBuffer();n({font:u})}else{const u=$u(await c.text(),t.response.content.mimeType);n({text:u,mimeType:t.response.content.mimeType})}}else n(null)})()},[t]),w.jsxs("div",{className:"network-request-details-tab",children:[!t.response.content._sha1&&w.jsx("div",{children:"Response body is not available for this request."}),e&&e.font&&w.jsx(NS,{font:e.font}),e&&e.dataUrl&&w.jsx("img",{draggable:"false",src:e.dataUrl}),e&&e.text&&w.jsx(Cs,{text:e.text,mimeType:e.mimeType,readOnly:!0,lineNumbers:!0})]})},NS=({font:t})=>{const[e,n]=$.useState(!1);return $.useEffect(()=>{let r;try{r=new FontFace("font-preview",t),r.status==="loaded"&&document.fonts.add(r),r.status==="error"&&n(!0)}catch{n(!0)}return()=>{document.fonts.delete(r)}},[t]),e?w.jsx("div",{className:"network-font-preview-error",children:"Could not load font preview"}):w.jsxs("div",{className:"network-font-preview",children:["ABCDEFGHIJKLM",w.jsx("br",{}),"NOPQRSTUVWXYZ",w.jsx("br",{}),"abcdefghijklm",w.jsx("br",{}),"nopqrstuvwxyz",w.jsx("br",{}),"1234567890"]})};function AS(t){return t<300||t===304?"green-circle":t<400?"yellow-circle":"red-circle"}function $u(t,e){if(t===null)return"Loading...";const n=t;if(n==="")return"";if(e.includes("application/json"))try{return JSON.stringify(JSON.parse(n),null,2)}catch{return n}return e.includes("application/x-www-form-urlencoded")?decodeURIComponent(n):n}function IS(t){const[e,n]=$.useState([]);$.useEffect(()=>{const l=[];for(let c=0;c{var c,u;(u=t.setSorting)==null||u.call(t,{by:l,negate:((c=t.sorting)==null?void 0:c.by)===l?!t.sorting.negate:!1})},[t]);return w.jsxs("div",{className:`grid-view ${t.name}-grid-view`,children:[w.jsx(fg,{orientation:"horizontal",offsets:e,setOffsets:r,resizerColor:"var(--vscode-panel-border)",resizerWidth:1,minColumnWidth:25}),w.jsxs("div",{className:"vbox",children:[w.jsx("div",{className:"grid-view-header",children:t.columns.map((l,c)=>w.jsxs("div",{className:"grid-view-header-cell "+LS(l,t.sorting),style:{width:ct.setSorting&&o(l),children:[w.jsx("span",{className:"grid-view-header-cell-title",children:t.columnTitle(l)}),w.jsx("span",{className:"codicon codicon-triangle-up"}),w.jsx("span",{className:"codicon codicon-triangle-down"})]},t.columnTitle(l)))}),w.jsx(na,{name:t.name,items:t.items,ariaLabel:t.ariaLabel,id:t.id,render:(l,c)=>w.jsx(w.Fragment,{children:t.columns.map((u,d)=>{const{body:p,title:g}=t.render(l,u,c);return w.jsx("div",{className:`grid-view-cell grid-view-column-${String(u)}`,title:g,style:{width:dw.jsxs("div",{className:"network-filters",children:[w.jsx("input",{type:"search",placeholder:"Filter network",spellCheck:!1,value:t.searchValue,onChange:n=>e({...t,searchValue:n.target.value})}),w.jsx("div",{className:"network-filters-resource-types",children:MS.map(n=>w.jsx("div",{title:n,onClick:()=>e({...t,resourceType:n}),className:`network-filters-resource-type ${t.resourceType===n?"selected":""}`,children:n},n))})]}),OS=IS;function $S(t,e){const n=$.useMemo(()=>((t==null?void 0:t.resources)||[]).filter(c=>e?!!c._monotonicTime&&c._monotonicTime>=e.minimum&&c._monotonicTime<=e.maximum:!0),[t,e]),r=$.useMemo(()=>new HS(t),[t]);return{resources:n,contextIdMap:r}}const RS=({boundaries:t,networkModel:e,onEntryHovered:n,sdkLanguage:r})=>{const[o,l]=$.useState(void 0),[c,u]=$.useState(void 0),[d,p]=$.useState(jS),{renderedEntries:g}=$.useMemo(()=>{const _=e.resources.map(E=>US(E,t,e.contextIdMap)).filter(GS(d));return o&&VS(_,o),{renderedEntries:_}},[e.resources,e.contextIdMap,d,o,t]),[y,v]=$.useState(()=>new Map(vg().map(_=>[_,FS(_)]))),S=$.useCallback(_=>{p(_),u(void 0)},[]);if(!e.resources.length)return w.jsx(Ir,{text:"No network calls"});const k=w.jsx(OS,{name:"network",ariaLabel:"Network requests",items:g,selectedItem:c,onSelected:_=>u(_),onHighlighted:_=>n==null?void 0:n(_==null?void 0:_.resource),columns:BS(!!c,g),columnTitle:DS,columnWidths:y,setColumnWidths:v,isError:_=>_.status.code>=400||_.status.code===-1,isInfo:_=>!!_.route,render:(_,E)=>zS(_,E),sorting:o,setSorting:l});return w.jsxs(w.Fragment,{children:[w.jsx(PS,{filterState:d,onFilterStateChange:S}),!c&&k,c&&w.jsx(Dl,{sidebarSize:y.get("name"),sidebarIsFirst:!0,orientation:"horizontal",settingName:"networkResourceDetails",main:w.jsx(ES,{resource:c.resource,sdkLanguage:r,startTimeOffset:c.start,onClose:()=>u(void 0)}),sidebar:k})]})},DS=t=>t==="contextId"?"Source":t==="name"?"Name":t==="method"?"Method":t==="status"?"Status":t==="contentType"?"Content Type":t==="duration"?"Duration":t==="size"?"Size":t==="start"?"Start":t==="route"?"Route":"",FS=t=>t==="name"?200:t==="method"||t==="status"?60:t==="contentType"?200:t==="contextId"?60:100;function BS(t,e){if(t){const r=["name"];return Xp(e)&&r.unshift("contextId"),r}let n=vg();return Xp(e)||(n=n.filter(r=>r!=="contextId")),n}function vg(){return["contextId","name","method","status","contentType","duration","size","start","route"]}const zS=(t,e)=>e==="contextId"?{body:t.contextId,title:t.name.url}:e==="name"?{body:t.name.name,title:t.name.url}:e==="method"?{body:t.method}:e==="status"?{body:t.status.code>0?t.status.code:"",title:t.status.text}:e==="contentType"?{body:t.contentType}:e==="duration"?{body:pt(t.duration)}:e==="size"?{body:S0(t.size)}:e==="start"?{body:pt(t.start)}:e==="route"?{body:t.route}:{body:""};class HS{constructor(e){Ee(this,"_pagerefToShortId",new Map);Ee(this,"_contextToId",new Map);Ee(this,"_lastPageId",0);Ee(this,"_lastApiRequestContextId",0)}contextId(e){return e.pageref?this._pageId(e.pageref):e._apiRequest?this._apiRequestContextId(e):""}_pageId(e){let n=this._pagerefToShortId.get(e);return n||(++this._lastPageId,n="page#"+this._lastPageId,this._pagerefToShortId.set(e,n)),n}_apiRequestContextId(e){const n=Rl(e);if(!n)return"";let r=this._contextToId.get(n);return r||(++this._lastApiRequestContextId,r="api#"+this._lastApiRequestContextId,this._contextToId.set(n,r)),r}}function Xp(t){const e=new Set;for(const n of t)if(e.add(n.contextId),e.size>1)return!0;return!1}const US=(t,e,n)=>{const r=qS(t);let o;try{const u=new URL(t.request.url);o=u.pathname.substring(u.pathname.lastIndexOf("/")+1),o||(o=u.host),u.search&&(o+=u.search)}catch{o=t.request.url}let l=t.response.content.mimeType;const c=l.match(/^(.*);\s*charset=.*$/);return c&&(l=c[1]),{name:{name:o,url:t.request.url},method:t.request.method,status:{code:t.response.status,text:t.response.statusText},contentType:l,duration:t.time,size:t.response._transferSize>0?t.response._transferSize:t.response.bodySize,start:t._monotonicTime-e.minimum,route:r,resource:t,contextId:n.contextId(t)}};function qS(t){return t._wasAborted?"aborted":t._wasContinued?"continued":t._wasFulfilled?"fulfilled":t._apiRequest?"api":""}function VS(t,e){const n=WS(e==null?void 0:e.by);n&&t.sort(n),e.negate&&t.reverse()}function WS(t){if(t==="start")return(e,n)=>e.start-n.start;if(t==="duration")return(e,n)=>e.duration-n.duration;if(t==="status")return(e,n)=>e.status.code-n.status.code;if(t==="method")return(e,n)=>{const r=e.method,o=n.method;return r.localeCompare(o)};if(t==="size")return(e,n)=>e.size-n.size;if(t==="contentType")return(e,n)=>e.contentType.localeCompare(n.contentType);if(t==="name")return(e,n)=>e.name.name.localeCompare(n.name.name);if(t==="route")return(e,n)=>e.route.localeCompare(n.route);if(t==="contextId")return(e,n)=>e.contextId.localeCompare(n.contextId)}const KS={All:()=>!0,Fetch:t=>t==="application/json",HTML:t=>t==="text/html",CSS:t=>t==="text/css",JS:t=>t.includes("javascript"),Font:t=>t.includes("font"),Image:t=>t.includes("image")};function GS({searchValue:t,resourceType:e}){return n=>{const r=KS[e];return r(n.contentType)&&n.name.url.toLowerCase().includes(t.toLowerCase())}}function nf(t,e,n={}){var v;const r=new t.LineCounter,o={keepSourceTokens:!0,lineCounter:r,...n},l=t.parseDocument(e,o),c=[],u=S=>[r.linePos(S[0]),r.linePos(S[1])],d=S=>{c.push({message:S.message,range:[r.linePos(S.pos[0]),r.linePos(S.pos[1])]})},p=(S,k)=>{for(const _ of k.items){if(_ instanceof t.Scalar&&typeof _.value=="string"){const A=Ul.parse(_,o,c);A&&(S.children=S.children||[],S.children.push(A));continue}if(_ instanceof t.YAMLMap){g(S,_);continue}c.push({message:"Sequence items should be strings or maps",range:u(_.range||k.range)})}},g=(S,k)=>{for(const _ of k.items){if(S.children=S.children||[],!(_.key instanceof t.Scalar&&typeof _.key.value=="string")){c.push({message:"Only string keys are supported",range:u(_.key.range||k.range)});continue}const C=_.key,A=_.value;if(C.value==="text"){if(!(A instanceof t.Scalar&&typeof A.value=="string")){c.push({message:"Text value should be a string",range:u(_.value.range||k.range)});continue}S.children.push({kind:"text",text:mu(A.value)});continue}if(C.value==="/children"){if(!(A instanceof t.Scalar&&typeof A.value=="string")||A.value!=="contain"&&A.value!=="equal"&&A.value!=="deep-equal"){c.push({message:'Strict value should be "contain", "equal" or "deep-equal"',range:u(_.value.range||k.range)});continue}S.containerMode=A.value;continue}if(C.value.startsWith("/")){if(!(A instanceof t.Scalar&&typeof A.value=="string")){c.push({message:"Property value should be a string",range:u(_.value.range||k.range)});continue}S.props=S.props??{},S.props[C.value.slice(1)]=mu(A.value);continue}const B=Ul.parse(C,o,c);if(!B)continue;if(A instanceof t.Scalar){const z=typeof A.value;if(z!=="string"&&z!=="number"&&z!=="boolean"){c.push({message:"Node value should be a string or a sequence",range:u(_.value.range||k.range)});continue}S.children.push({...B,children:[{kind:"text",text:mu(String(A.value))}]});continue}if(A instanceof t.YAMLSeq){S.children.push(B),p(B,A);continue}c.push({message:"Map values should be strings or sequences",range:u(_.value.range||k.range)})}},y={kind:"role",role:"fragment"};return l.errors.forEach(d),c.length?{errors:c,fragment:y}:(l.contents instanceof t.YAMLSeq||c.push({message:'Aria snapshot must be a YAML sequence, elements starting with " -"',range:l.contents?u(l.contents.range):[{line:0,col:0},{line:0,col:0}]}),c.length?{errors:c,fragment:y}:(p(y,l.contents),c.length?{errors:c,fragment:QS}:((v=y.children)==null?void 0:v.length)===1&&(!y.containerMode||y.containerMode==="contain")?{fragment:y.children[0],errors:[]}:{fragment:y,errors:[]}))}const QS={kind:"role",role:"fragment"};function wg(t){return t.replace(/[\u200b\u00ad]/g,"").replace(/[\r\n\s\t]+/g," ").trim()}function mu(t){return t.startsWith("/")&&t.endsWith("/")&&t.length>1?{pattern:t.slice(1,-1)}:wg(t)}class Ul{static parse(e,n,r){try{return new Ul(e.value)._parse()}catch(o){if(o instanceof Yp){const l=n.prettyErrors===!1?o.message:o.message+`: - -`+e.value+` -`+" ".repeat(o.pos)+`^ -`;return r.push({message:l,range:[n.lineCounter.linePos(e.range[0]),n.lineCounter.linePos(e.range[0]+o.pos)]}),null}throw o}}constructor(e){this._input=e,this._pos=0,this._length=e.length}_peek(){return this._input[this._pos]||""}_next(){return this._pos=this._length}_isWhitespace(){return!this._eof()&&/\s/.test(this._peek())}_skipWhitespace(){for(;this._isWhitespace();)this._pos++}_readIdentifier(e){this._eof()&&this._throwError(`Unexpected end of input when expecting ${e}`);const n=this._pos;for(;!this._eof()&&/[a-zA-Z]/.test(this._peek());)this._pos++;return this._input.slice(n,this._pos)}_readString(){let e="",n=!1;for(;!this._eof();){const r=this._next();if(n)e+=r,n=!1;else if(r==="\\")n=!0;else{if(r==='"')return e;e+=r}}this._throwError("Unterminated string")}_throwError(e,n=0){throw new Yp(e,n||this._pos)}_readRegex(){let e="",n=!1,r=!1;for(;!this._eof();){const o=this._next();if(n)e+=o,n=!1;else if(o==="\\")n=!0,e+=o;else{if(o==="/"&&!r)return{pattern:e};o==="["?(r=!0,e+=o):o==="]"&&r?(e+=o,r=!1):e+=o}}this._throwError("Unterminated regex")}_readStringOrRegex(){const e=this._peek();return e==='"'?(this._next(),wg(this._readString())):e==="/"?(this._next(),this._readRegex()):null}_readAttributes(e){let n=this._pos;for(;this._skipWhitespace(),this._peek()==="[";){this._next(),this._skipWhitespace(),n=this._pos;const r=this._readIdentifier("attribute");this._skipWhitespace();let o="";if(this._peek()==="=")for(this._next(),this._skipWhitespace(),n=this._pos;this._peek()!=="]"&&!this._isWhitespace()&&!this._eof();)o+=this._next();this._skipWhitespace(),this._peek()!=="]"&&this._throwError("Expected ]"),this._next(),this._applyAttribute(e,r,o||"true",n)}}_parse(){this._skipWhitespace();const e=this._readIdentifier("role");this._skipWhitespace();const n=this._readStringOrRegex()||"",r={kind:"role",role:e,name:n};return this._readAttributes(r),this._skipWhitespace(),this._eof()||this._throwError("Unexpected input"),r}_applyAttribute(e,n,r,o){if(n==="checked"){this._assert(r==="true"||r==="false"||r==="mixed",'Value of "checked" attribute must be a boolean or "mixed"',o),e.checked=r==="true"?!0:r==="false"?!1:"mixed";return}if(n==="disabled"){this._assert(r==="true"||r==="false",'Value of "disabled" attribute must be a boolean',o),e.disabled=r==="true";return}if(n==="expanded"){this._assert(r==="true"||r==="false",'Value of "expanded" attribute must be a boolean',o),e.expanded=r==="true";return}if(n==="active"){this._assert(r==="true"||r==="false",'Value of "active" attribute must be a boolean',o),e.active=r==="true";return}if(n==="level"){this._assert(!isNaN(Number(r)),'Value of "level" attribute must be a number',o),e.level=Number(r);return}if(n==="pressed"){this._assert(r==="true"||r==="false"||r==="mixed",'Value of "pressed" attribute must be a boolean or "mixed"',o),e.pressed=r==="true"?!0:r==="false"?!1:"mixed";return}if(n==="selected"){this._assert(r==="true"||r==="false",'Value of "selected" attribute must be a boolean',o),e.selected=r==="true";return}this._assert(!1,`Unsupported attribute [${n}]`,o)}_assert(e,n,r){e||this._throwError(n||"Assertion error",r)}}class Yp extends Error{constructor(e,n){super(e),this.pos=n}}let Sg={};function JS(t){Sg=t}function sa(t,e){for(;e;){if(t.contains(e))return!0;e=_g(e)}return!1}function lt(t){if(t.parentElement)return t.parentElement;if(t.parentNode&&t.parentNode.nodeType===11&&t.parentNode.host)return t.parentNode.host}function xg(t){let e=t;for(;e.parentNode;)e=e.parentNode;if(e.nodeType===11||e.nodeType===9)return e}function _g(t){for(;t.parentElement;)t=t.parentElement;return lt(t)}function Pi(t,e,n){for(;t;){const r=t.closest(e);if(n&&r!==n&&(r!=null&&r.contains(n)))return;if(r)return r;t=_g(t)}}function rr(t,e){return t.ownerDocument&&t.ownerDocument.defaultView?t.ownerDocument.defaultView.getComputedStyle(t,e):void 0}function Eg(t,e){if(e=e??rr(t),!e)return!0;if(Element.prototype.checkVisibility&&Sg.browserNameForWorkarounds!=="webkit"){if(!t.checkVisibility())return!1}else{const n=t.closest("details,summary");if(n!==t&&(n==null?void 0:n.nodeName)==="DETAILS"&&!n.open)return!1}return e.visibility==="visible"}function ql(t){const e=rr(t);if(!e)return{visible:!0};if(e.display==="contents"){for(let r=t.firstChild;r;r=r.nextSibling){if(r.nodeType===1&&Cr(r))return{visible:!0,style:e};if(r.nodeType===3&&kg(r))return{visible:!0,style:e}}return{visible:!1,style:e}}if(!Eg(t,e))return{style:e,visible:!1};const n=t.getBoundingClientRect();return{rect:n,style:e,visible:n.width>0&&n.height>0}}function Cr(t){return ql(t).visible}function kg(t){const e=t.ownerDocument.createRange();e.selectNode(t);const n=e.getBoundingClientRect();return n.width>0&&n.height>0}function Xe(t){return t instanceof HTMLFormElement?"FORM":t.tagName.toUpperCase()}function Zp(t){return t.hasAttribute("aria-label")||t.hasAttribute("aria-labelledby")}const em="article:not([role]), aside:not([role]), main:not([role]), nav:not([role]), section:not([role]), [role=article], [role=complementary], [role=main], [role=navigation], [role=region]",XS=[["aria-atomic",void 0],["aria-busy",void 0],["aria-controls",void 0],["aria-current",void 0],["aria-describedby",void 0],["aria-details",void 0],["aria-dropeffect",void 0],["aria-flowto",void 0],["aria-grabbed",void 0],["aria-hidden",void 0],["aria-keyshortcuts",void 0],["aria-label",["caption","code","deletion","emphasis","generic","insertion","paragraph","presentation","strong","subscript","superscript"]],["aria-labelledby",["caption","code","deletion","emphasis","generic","insertion","paragraph","presentation","strong","subscript","superscript"]],["aria-live",void 0],["aria-owns",void 0],["aria-relevant",void 0],["aria-roledescription",["generic"]]];function bg(t,e){return XS.some(([n,r])=>!(r!=null&&r.includes(e||""))&&t.hasAttribute(n))}function Tg(t){return!Number.isNaN(Number(String(t.getAttribute("tabindex"))))}function YS(t){return!Dg(t)&&(ZS(t)||Tg(t))}function ZS(t){const e=Xe(t);return["BUTTON","DETAILS","SELECT","TEXTAREA"].includes(e)?!0:e==="A"||e==="AREA"?t.hasAttribute("href"):e==="INPUT"?!t.hidden:!1}const gu={A:t=>t.hasAttribute("href")?"link":null,AREA:t=>t.hasAttribute("href")?"link":null,ARTICLE:()=>"article",ASIDE:()=>"complementary",BLOCKQUOTE:()=>"blockquote",BUTTON:()=>"button",CAPTION:()=>"caption",CODE:()=>"code",DATALIST:()=>"listbox",DD:()=>"definition",DEL:()=>"deletion",DETAILS:()=>"group",DFN:()=>"term",DIALOG:()=>"dialog",DT:()=>"term",EM:()=>"emphasis",FIELDSET:()=>"group",FIGURE:()=>"figure",FOOTER:t=>Pi(t,em)?null:"contentinfo",FORM:t=>Zp(t)?"form":null,H1:()=>"heading",H2:()=>"heading",H3:()=>"heading",H4:()=>"heading",H5:()=>"heading",H6:()=>"heading",HEADER:t=>Pi(t,em)?null:"banner",HR:()=>"separator",HTML:()=>"document",IMG:t=>t.getAttribute("alt")===""&&!t.getAttribute("title")&&!bg(t)&&!Tg(t)?"presentation":"img",INPUT:t=>{const e=t.type.toLowerCase();if(e==="search")return t.hasAttribute("list")?"combobox":"searchbox";if(["email","tel","text","url",""].includes(e)){const n=Ms(t,t.getAttribute("list"))[0];return n&&Xe(n)==="DATALIST"?"combobox":"textbox"}return e==="hidden"?null:e==="file"?"button":mx[e]||"textbox"},INS:()=>"insertion",LI:()=>"listitem",MAIN:()=>"main",MARK:()=>"mark",MATH:()=>"math",MENU:()=>"list",METER:()=>"meter",NAV:()=>"navigation",OL:()=>"list",OPTGROUP:()=>"group",OPTION:()=>"option",OUTPUT:()=>"status",P:()=>"paragraph",PROGRESS:()=>"progressbar",SEARCH:()=>"search",SECTION:t=>Zp(t)?"region":null,SELECT:t=>t.hasAttribute("multiple")||t.size>1?"listbox":"combobox",STRONG:()=>"strong",SUB:()=>"subscript",SUP:()=>"superscript",SVG:()=>"img",TABLE:()=>"table",TBODY:()=>"rowgroup",TD:t=>{const e=Pi(t,"table"),n=e?Vl(e):"";return n==="grid"||n==="treegrid"?"gridcell":"cell"},TEXTAREA:()=>"textbox",TFOOT:()=>"rowgroup",TH:t=>{if(t.getAttribute("scope")==="col")return"columnheader";if(t.getAttribute("scope")==="row")return"rowheader";const e=Pi(t,"table"),n=e?Vl(e):"";return n==="grid"||n==="treegrid"?"gridcell":"cell"},THEAD:()=>"rowgroup",TIME:()=>"time",TR:()=>"row",UL:()=>"list"},ex={DD:["DL","DIV"],DIV:["DL"],DT:["DL","DIV"],LI:["OL","UL"],TBODY:["TABLE"],TD:["TR"],TFOOT:["TABLE"],TH:["TR"],THEAD:["TABLE"],TR:["THEAD","TBODY","TFOOT","TABLE"]};function tm(t){var r;const e=((r=gu[Xe(t)])==null?void 0:r.call(gu,t))||"";if(!e)return null;let n=t;for(;n;){const o=lt(n),l=ex[Xe(n)];if(!l||!o||!l.includes(Xe(o)))break;const c=Vl(o);if((c==="none"||c==="presentation")&&!Cg(o,c))return c;n=o}return e}const tx=["alert","alertdialog","application","article","banner","blockquote","button","caption","cell","checkbox","code","columnheader","combobox","complementary","contentinfo","definition","deletion","dialog","directory","document","emphasis","feed","figure","form","generic","grid","gridcell","group","heading","img","insertion","link","list","listbox","listitem","log","main","mark","marquee","math","meter","menu","menubar","menuitem","menuitemcheckbox","menuitemradio","navigation","none","note","option","paragraph","presentation","progressbar","radio","radiogroup","region","row","rowgroup","rowheader","scrollbar","search","searchbox","separator","slider","spinbutton","status","strong","subscript","superscript","switch","tab","table","tablist","tabpanel","term","textbox","time","timer","toolbar","tooltip","tree","treegrid","treeitem"];function Vl(t){return(t.getAttribute("role")||"").split(" ").map(n=>n.trim()).find(n=>tx.includes(n))||null}function Cg(t,e){return bg(t,e)||YS(t)}function nt(t){const e=Vl(t);if(!e)return tm(t);if(e==="none"||e==="presentation"){const n=tm(t);if(Cg(t,n))return n}return e}function Ng(t){return t===null?void 0:t.toLowerCase()==="true"}function Ag(t){return["STYLE","SCRIPT","NOSCRIPT","TEMPLATE"].includes(Xe(t))}function zt(t){if(Ag(t))return!0;const e=rr(t),n=t.nodeName==="SLOT";if((e==null?void 0:e.display)==="contents"&&!n){for(let o=t.firstChild;o;o=o.nextSibling)if(o.nodeType===1&&!zt(o)||o.nodeType===3&&kg(o))return!1;return!0}return!(t.nodeName==="OPTION"&&!!t.closest("select"))&&!n&&!Eg(t,e)?!0:Ig(t)}function Ig(t){let e=Yn==null?void 0:Yn.get(t);if(e===void 0){if(e=!1,t.parentElement&&t.parentElement.shadowRoot&&!t.assignedSlot&&(e=!0),!e){const n=rr(t);e=!n||n.display==="none"||Ng(t.getAttribute("aria-hidden"))===!0}if(!e){const n=lt(t);n&&(e=Ig(n))}Yn==null||Yn.set(t,e)}return e}function Ms(t,e){if(!e)return[];const n=xg(t);if(!n)return[];try{const r=e.split(" ").filter(l=>!!l),o=[];for(const l of r){const c=n.querySelector("#"+CSS.escape(l));c&&!o.includes(c)&&o.push(c)}return o}catch{return[]}}function kn(t){return t.trim()}function Fi(t){return t.split("Ā ").map(e=>e.replace(/\r\n/g,` -`).replace(/[\u200b\u00ad]/g,"").replace(/\s\s*/g," ")).join("Ā ").trim()}function nm(t,e){const n=[...t.querySelectorAll(e)];for(const r of Ms(t,t.getAttribute("aria-owns")))r.matches(e)&&n.push(r),n.push(...r.querySelectorAll(e));return n}function Bi(t,e){const n=e==="::before"?mf:e==="::after"?gf:pf;if(n!=null&&n.has(t))return n==null?void 0:n.get(t);const r=rr(t,e);let o;return r&&r.display!=="none"&&r.visibility!=="hidden"&&(o=nx(t,r.content,!!e)),e&&o!==void 0&&((r==null?void 0:r.display)||"inline")!=="inline"&&(o=" "+o+" "),n&&n.set(t,o),o}function nx(t,e,n){if(!(!e||e==="none"||e==="normal"))try{let r=Fm(e).filter(u=>!(u instanceof Fl));const o=r.findIndex(u=>u instanceof et&&u.value==="/");if(o!==-1)r=r.slice(o+1);else if(!n)return;const l=[];let c=0;for(;cen(l,{includeHidden:e,visitedElements:new Set,embeddedInDescribedBy:{element:l,hidden:zt(l)}})).join(" "))}else t.hasAttribute("aria-description")?r=Fi(t.getAttribute("aria-description")||""):r=Fi(t.getAttribute("title")||"");n==null||n.set(t,r)}return r}function sx(t){const e=t.getAttribute("aria-invalid");return!e||e.trim()===""||e.toLocaleLowerCase()==="false"?"false":e==="true"||e==="grammar"||e==="spelling"?e:"true"}function ix(t){if("validity"in t){const e=t.validity;return(e==null?void 0:e.valid)===!1}return!1}function ox(t){const e=gs;let n=gs==null?void 0:gs.get(t);if(n===void 0){n="";const r=sx(t)!=="false",o=ix(t);if(r||o){const l=t.getAttribute("aria-errormessage");n=Ms(t,l).map(d=>Fi(en(d,{visitedElements:new Set,embeddedInDescribedBy:{element:d,hidden:zt(d)}}))).join(" ").trim()}e==null||e.set(t,n)}return n}function en(t,e){var d,p,g,y;if(e.visitedElements.has(t))return"";const n={...e,embeddedInTargetElement:e.embeddedInTargetElement==="self"?"descendant":e.embeddedInTargetElement};if(!e.includeHidden){const v=!!((d=e.embeddedInLabelledBy)!=null&&d.hidden)||!!((p=e.embeddedInDescribedBy)!=null&&p.hidden)||!!((g=e.embeddedInNativeTextAlternative)!=null&&g.hidden)||!!((y=e.embeddedInLabel)!=null&&y.hidden);if(Ag(t)||!v&&zt(t))return e.visitedElements.add(t),""}const r=Lg(t);if(!e.embeddedInLabelledBy){const v=(r||[]).map(S=>en(S,{...e,embeddedInLabelledBy:{element:S,hidden:zt(S)},embeddedInDescribedBy:void 0,embeddedInTargetElement:void 0,embeddedInLabel:void 0,embeddedInNativeTextAlternative:void 0})).join(" ");if(v)return v}const o=nt(t)||"",l=Xe(t);if(e.embeddedInLabel||e.embeddedInLabelledBy||e.embeddedInTargetElement==="descendant"){const v=[...t.labels||[]].includes(t),S=(r||[]).includes(t);if(!v&&!S){if(o==="textbox")return e.visitedElements.add(t),l==="INPUT"||l==="TEXTAREA"?t.value:t.textContent||"";if(["combobox","listbox"].includes(o)){e.visitedElements.add(t);let k;if(l==="SELECT")k=[...t.selectedOptions],!k.length&&t.options.length&&k.push(t.options[0]);else{const _=o==="combobox"?nm(t,"*").find(E=>nt(E)==="listbox"):t;k=_?nm(_,'[aria-selected="true"]').filter(E=>nt(E)==="option"):[]}return!k.length&&l==="INPUT"?t.value:k.map(_=>en(_,n)).join(" ")}if(["progressbar","scrollbar","slider","spinbutton","meter"].includes(o))return e.visitedElements.add(t),t.hasAttribute("aria-valuetext")?t.getAttribute("aria-valuetext")||"":t.hasAttribute("aria-valuenow")?t.getAttribute("aria-valuenow")||"":t.getAttribute("value")||"";if(["menu"].includes(o))return e.visitedElements.add(t),""}}const c=t.getAttribute("aria-label")||"";if(kn(c))return e.visitedElements.add(t),c;if(!["presentation","none"].includes(o)){if(l==="INPUT"&&["button","submit","reset"].includes(t.type)){e.visitedElements.add(t);const v=t.value||"";return kn(v)?v:t.type==="submit"?"Submit":t.type==="reset"?"Reset":t.getAttribute("title")||""}if(l==="INPUT"&&t.type==="file"){e.visitedElements.add(t);const v=t.labels||[];return v.length&&!e.embeddedInLabelledBy?Ci(v,e):"Choose File"}if(l==="INPUT"&&t.type==="image"){e.visitedElements.add(t);const v=t.labels||[];if(v.length&&!e.embeddedInLabelledBy)return Ci(v,e);const S=t.getAttribute("alt")||"";if(kn(S))return S;const k=t.getAttribute("title")||"";return kn(k)?k:"Submit"}if(!r&&l==="BUTTON"){e.visitedElements.add(t);const v=t.labels||[];if(v.length)return Ci(v,e)}if(!r&&l==="OUTPUT"){e.visitedElements.add(t);const v=t.labels||[];return v.length?Ci(v,e):t.getAttribute("title")||""}if(!r&&(l==="TEXTAREA"||l==="SELECT"||l==="INPUT")){e.visitedElements.add(t);const v=t.labels||[];if(v.length)return Ci(v,e);const S=l==="INPUT"&&["text","password","search","tel","email","url"].includes(t.type)||l==="TEXTAREA",k=t.getAttribute("placeholder")||"",_=t.getAttribute("title")||"";return!S||_?_:k}if(!r&&l==="FIELDSET"){e.visitedElements.add(t);for(let S=t.firstElementChild;S;S=S.nextElementSibling)if(Xe(S)==="LEGEND")return en(S,{...n,embeddedInNativeTextAlternative:{element:S,hidden:zt(S)}});return t.getAttribute("title")||""}if(!r&&l==="FIGURE"){e.visitedElements.add(t);for(let S=t.firstElementChild;S;S=S.nextElementSibling)if(Xe(S)==="FIGCAPTION")return en(S,{...n,embeddedInNativeTextAlternative:{element:S,hidden:zt(S)}});return t.getAttribute("title")||""}if(l==="IMG"){e.visitedElements.add(t);const v=t.getAttribute("alt")||"";return kn(v)?v:t.getAttribute("title")||""}if(l==="TABLE"){e.visitedElements.add(t);for(let S=t.firstElementChild;S;S=S.nextElementSibling)if(Xe(S)==="CAPTION")return en(S,{...n,embeddedInNativeTextAlternative:{element:S,hidden:zt(S)}});const v=t.getAttribute("summary")||"";if(v)return v}if(l==="AREA"){e.visitedElements.add(t);const v=t.getAttribute("alt")||"";return kn(v)?v:t.getAttribute("title")||""}if(l==="SVG"||t.ownerSVGElement){e.visitedElements.add(t);for(let v=t.firstElementChild;v;v=v.nextElementSibling)if(Xe(v)==="TITLE"&&v.ownerSVGElement)return en(v,{...n,embeddedInLabelledBy:{element:v,hidden:zt(v)}})}if(t.ownerSVGElement&&l==="A"){const v=t.getAttribute("xlink:title")||"";if(kn(v))return e.visitedElements.add(t),v}}const u=l==="SUMMARY"&&!["presentation","none"].includes(o);if(rx(o,e.embeddedInTargetElement==="descendant")||u||e.embeddedInLabelledBy||e.embeddedInDescribedBy||e.embeddedInLabel||e.embeddedInNativeTextAlternative){e.visitedElements.add(t);const v=lx(t,n);if(e.embeddedInTargetElement==="self"?kn(v):v)return v}if(!["presentation","none"].includes(o)||l==="IFRAME"){e.visitedElements.add(t);const v=t.getAttribute("title")||"";if(kn(v))return v}return e.visitedElements.add(t),""}function lx(t,e){const n=[],r=(l,c)=>{var u;if(!(c&&l.assignedSlot))if(l.nodeType===1){const d=((u=rr(l))==null?void 0:u.display)||"inline";let p=en(l,e);(d!=="inline"||l.nodeName==="BR")&&(p=" "+p+" "),n.push(p)}else l.nodeType===3&&n.push(l.textContent||"")};n.push(Bi(t,"::before")||"");const o=Bi(t);if(o!==void 0)n.push(o);else{const l=t.nodeName==="SLOT"?t.assignedNodes():[];if(l.length)for(const c of l)r(c,!1);else{for(let c=t.firstChild;c;c=c.nextSibling)r(c,!0);if(t.shadowRoot)for(let c=t.shadowRoot.firstChild;c;c=c.nextSibling)r(c,!0);for(const c of Ms(t,t.getAttribute("aria-owns")))r(c,!0)}}return n.push(Bi(t,"::after")||""),n.join("")}const rf=["gridcell","option","row","tab","rowheader","columnheader","treeitem"];function Mg(t){return Xe(t)==="OPTION"?t.selected:rf.includes(nt(t)||"")?Ng(t.getAttribute("aria-selected"))===!0:!1}const sf=["checkbox","menuitemcheckbox","option","radio","switch","menuitemradio","treeitem"];function jg(t){const e=of(t,!0);return e==="error"?!1:e}function ax(t){return of(t,!0)}function cx(t){return of(t,!1)}function of(t,e){const n=Xe(t);if(e&&n==="INPUT"&&t.indeterminate)return"mixed";if(n==="INPUT"&&["checkbox","radio"].includes(t.type))return t.checked;if(sf.includes(nt(t)||"")){const r=t.getAttribute("aria-checked");return r==="true"?!0:e&&r==="mixed"?"mixed":!1}return"error"}const ux=["checkbox","combobox","grid","gridcell","listbox","radiogroup","slider","spinbutton","textbox","columnheader","rowheader","searchbox","switch","treegrid"];function fx(t){const e=Xe(t);return["INPUT","TEXTAREA","SELECT"].includes(e)?t.hasAttribute("readonly"):ux.includes(nt(t)||"")?t.getAttribute("aria-readonly")==="true":t.isContentEditable?!1:"error"}const lf=["button"];function Pg(t){if(lf.includes(nt(t)||"")){const e=t.getAttribute("aria-pressed");if(e==="true")return!0;if(e==="mixed")return"mixed"}return!1}const af=["application","button","checkbox","combobox","gridcell","link","listbox","menuitem","row","rowheader","tab","treeitem","columnheader","menuitemcheckbox","menuitemradio","rowheader","switch"];function Og(t){if(Xe(t)==="DETAILS")return t.open;if(af.includes(nt(t)||"")){const e=t.getAttribute("aria-expanded");return e===null?void 0:e==="true"}}const cf=["heading","listitem","row","treeitem"];function $g(t){const e={H1:1,H2:2,H3:3,H4:4,H5:5,H6:6}[Xe(t)];if(e)return e;if(cf.includes(nt(t)||"")){const n=t.getAttribute("aria-level"),r=n===null?Number.NaN:Number(n);if(Number.isInteger(r)&&r>=1)return r}return 0}const Rg=["application","button","composite","gridcell","group","input","link","menuitem","scrollbar","separator","tab","checkbox","columnheader","combobox","grid","listbox","menu","menubar","menuitemcheckbox","menuitemradio","option","radio","radiogroup","row","rowheader","searchbox","select","slider","spinbutton","switch","tablist","textbox","toolbar","tree","treegrid","treeitem"];function Wl(t){return Dg(t)||Fg(t)}function Dg(t){return["BUTTON","INPUT","SELECT","TEXTAREA","OPTION","OPTGROUP"].includes(Xe(t))&&(t.hasAttribute("disabled")||dx(t)||hx(t))}function dx(t){return Xe(t)==="OPTION"&&!!t.closest("OPTGROUP[DISABLED]")}function hx(t){const e=t==null?void 0:t.closest("FIELDSET[DISABLED]");if(!e)return!1;const n=e.querySelector(":scope > LEGEND");return!n||!n.contains(t)}function Fg(t,e=!1){if(!t)return!1;if(e||Rg.includes(nt(t)||"")){const n=(t.getAttribute("aria-disabled")||"").toLowerCase();return n==="true"?!0:n==="false"?!1:Fg(lt(t),!0)}return!1}function Ci(t,e){return[...t].map(n=>en(n,{...e,embeddedInLabel:{element:n,hidden:zt(n)},embeddedInNativeTextAlternative:void 0,embeddedInLabelledBy:void 0,embeddedInDescribedBy:void 0,embeddedInTargetElement:void 0})).filter(n=>!!n).join(" ")}function px(t){const e=yf;let n=t,r;const o=[];for(;n;n=lt(n)){const l=e.get(n);if(l!==void 0){r=l;break}o.push(n);const c=rr(n);if(!c){r=!0;break}const u=c.pointerEvents;if(u){r=u!=="none";break}}r===void 0&&(r=!0);for(const l of o)e.set(l,r);return r}let uf,ff,df,hf,gs,Yn,pf,mf,gf,yf,Bg=0;function vf(){++Bg,uf??(uf=new Map),ff??(ff=new Map),df??(df=new Map),hf??(hf=new Map),gs??(gs=new Map),Yn??(Yn=new Map),pf??(pf=new Map),mf??(mf=new Map),gf??(gf=new Map),yf??(yf=new Map)}function wf(){--Bg||(uf=void 0,ff=void 0,df=void 0,hf=void 0,gs=void 0,Yn=void 0,pf=void 0,mf=void 0,gf=void 0,yf=void 0)}const mx={button:"button",checkbox:"checkbox",image:"button",number:"spinbutton",radio:"radio",range:"slider",reset:"button",submit:"button"};function gx(t){return zg(t)?"'"+t.replace(/'/g,"''")+"'":t}function yu(t){return zg(t)?'"'+t.replace(/[\\"\x00-\x1f\x7f-\x9f]/g,e=>{switch(e){case"\\":return"\\\\";case'"':return'\\"';case"\b":return"\\b";case"\f":return"\\f";case` -`:return"\\n";case"\r":return"\\r";case" ":return"\\t";default:return"\\x"+e.charCodeAt(0).toString(16).padStart(2,"0")}})+'"':t}function zg(t){return!!(t.length===0||/^\s|\s$/.test(t)||/[\x00-\x08\x0b\x0c\x0e-\x1f\x7f-\x9f]/.test(t)||/^-/.test(t)||/[\n:](\s|$)/.test(t)||/\s#/.test(t)||/[\n\r]/.test(t)||/^[&*\],?!>|@"'#%]/.test(t)||/[{}`]/.test(t)||/^\[/.test(t)||!isNaN(Number(t))||["y","n","yes","no","true","false","on","off","null"].includes(t.toLowerCase()))}let yx=0;function Kl(t,e){const n=new Set,r={root:{role:"fragment",name:"",children:[],element:t,props:{},box:ql(t),receivesPointerEvents:!0},elements:new Map,refs:new Map},o=(c,u,d)=>{if(n.has(u))return;if(n.add(u),u.nodeType===Node.TEXT_NODE&&u.nodeValue){if(!d)return;const k=u.nodeValue;c.role!=="textbox"&&k&&c.children.push(u.nodeValue||"");return}if(u.nodeType!==Node.ELEMENT_NODE)return;const p=u,g=zt(p);if(g&&!(e!=null&&e.forAI))return;const y=[];if(p.hasAttribute("aria-owns")){const k=p.getAttribute("aria-owns").split(/\s+/);for(const _ of k){const E=t.ownerDocument.getElementById(_);E&&y.push(E)}}const v=!g||Cr(p),S=v?vx(p,e):null;S&&(S.ref&&(r.elements.set(S.ref,p),r.refs.set(p,S.ref)),c.children.push(S)),l(S||c,p,y,v)};function l(c,u,d,p){var S;const y=(((S=rr(u))==null?void 0:S.display)||"inline")!=="inline"||u.nodeName==="BR"?" ":"";y&&c.children.push(y),c.children.push(Bi(u,"::before")||"");const v=u.nodeName==="SLOT"?u.assignedNodes():[];if(v.length)for(const k of v)o(c,k,p);else{for(let k=u.firstChild;k;k=k.nextSibling)k.assignedSlot||o(c,k,p);if(u.shadowRoot)for(let k=u.shadowRoot.firstChild;k;k=k.nextSibling)o(c,k,p)}for(const k of d)o(c,k,p);if(c.children.push(Bi(u,"::after")||""),y&&c.children.push(y),c.children.length===1&&c.name===c.children[0]&&(c.children=[]),c.role==="link"&&u.hasAttribute("href")){const k=u.getAttribute("href");c.props.url=k}}vf();try{o(r.root,t,!0)}finally{wf()}return Sx(r.root),wx(r.root),r}function sm(t,e,n,r){if(!(r!=null&&r.forAI))return;let o;return o=t._ariaRef,(!o||o.role!==e||o.name!==n)&&(o={role:e,name:n,ref:((r==null?void 0:r.refPrefix)??"")+"e"+ ++yx},t._ariaRef=o),o.ref}function vx(t,e){const n=t.ownerDocument.activeElement===t;if(t.nodeName==="IFRAME")return{role:"iframe",name:"",ref:sm(t,"iframe","",e),children:[],props:{},element:t,box:ql(t),receivesPointerEvents:!0,active:n};const r=e!=null&&e.forAI?"generic":null,o=nt(t)??r;if(!o||o==="presentation"||o==="none")return null;const l=mt(Vi(t,!1)||""),c=px(t),u={role:o,name:l,ref:sm(t,o,l,e),children:[],props:{},element:t,box:ql(t),receivesPointerEvents:c,active:n};return sf.includes(o)&&(u.checked=jg(t)),Rg.includes(o)&&(u.disabled=Wl(t)),af.includes(o)&&(u.expanded=Og(t)),cf.includes(o)&&(u.level=$g(t)),lf.includes(o)&&(u.pressed=Pg(t)),rf.includes(o)&&(u.selected=Mg(t)),(t instanceof HTMLInputElement||t instanceof HTMLTextAreaElement)&&t.type!=="checkbox"&&t.type!=="radio"&&t.type!=="file"&&(u.children=[t.value]),u}function wx(t){const e=n=>{const r=[];for(const l of n.children||[]){if(typeof l=="string"){r.push(l);continue}const c=e(l);r.push(...c)}return n.role==="generic"&&r.length<=1&&r.every(l=>typeof l!="string"&&Ug(l))?r:(n.children=r,[n])};e(t)}function Sx(t){const e=(r,o)=>{if(!r.length)return;const l=mt(r.join(""));l&&o.push(l),r.length=0},n=r=>{const o=[],l=[];for(const c of r.children||[])typeof c=="string"?l.push(c):(e(l,o),n(c),o.push(c));e(l,o),r.children=o.length?o:[],r.children.length===1&&r.children[0]===r.name&&(r.children=[])};n(t)}function Sf(t,e){return e?t?typeof e=="string"?t===e:!!t.match(new RegExp(e.pattern)):!1:!0}function xx(t,e){return Sf(t,e.text)}function _x(t,e){return Sf(t,e.name)}function Ex(t,e){const n=Kl(t);return{matches:Hg(n.root,e,!1,!1),received:{raw:Gl(n,{mode:"raw"}),regex:Gl(n,{mode:"regex"})}}}function kx(t,e){const n=Kl(t).root;return Hg(n,e,!0,!1).map(o=>o.element)}function xf(t,e,n){var r;return typeof t=="string"&&e.kind==="text"?xx(t,e):t===null||typeof t!="object"||e.kind!=="role"||e.role!=="fragment"&&e.role!==t.role||e.checked!==void 0&&e.checked!==t.checked||e.disabled!==void 0&&e.disabled!==t.disabled||e.expanded!==void 0&&e.expanded!==t.expanded||e.level!==void 0&&e.level!==t.level||e.pressed!==void 0&&e.pressed!==t.pressed||e.selected!==void 0&&e.selected!==t.selected||!_x(t.name,e)||!Sf(t.props.url,(r=e.props)==null?void 0:r.url)?!1:e.containerMode==="contain"?om(t.children||[],e.children||[]):e.containerMode==="equal"?im(t.children||[],e.children||[],!1):e.containerMode==="deep-equal"||n?im(t.children||[],e.children||[],!0):om(t.children||[],e.children||[])}function im(t,e,n){if(e.length!==t.length)return!1;for(let r=0;rt.length)return!1;const n=t.slice(),r=e.slice();for(const o of r){let l=n.shift();for(;l&&!xf(l,o,!1);)l=n.shift();if(!l)return!1}return!0}function Hg(t,e,n,r){const o=[],l=(c,u)=>{if(xf(c,e,r)){const d=typeof c=="string"?u:c;return d&&o.push(d),!n}if(typeof c=="string")return!1;for(const d of c.children||[])if(l(d,c))return!0;return!1};return l(t,null),o}function Gl(t,e){const n=[],r=(e==null?void 0:e.mode)==="regex"?Tx:()=>!0,o=(e==null?void 0:e.mode)==="regex"?bx:u=>u,l=(u,d,p)=>{if(typeof u=="string"){if(d&&!r(d,u))return;const S=yu(o(u));S&&n.push(p+"- text: "+S);return}let g=u.role;if(u.name&&u.name.length<=900){const S=o(u.name);if(S){const k=S.startsWith("/")&&S.endsWith("/")?S:JSON.stringify(S);g+=" "+k}}if(u.checked==="mixed"&&(g+=" [checked=mixed]"),u.checked===!0&&(g+=" [checked]"),u.disabled&&(g+=" [disabled]"),u.expanded&&(g+=" [expanded]"),u.active&&(e!=null&&e.forAI)&&(g+=" [active]"),u.level&&(g+=` [level=${u.level}]`),u.pressed==="mixed"&&(g+=" [pressed=mixed]"),u.pressed===!0&&(g+=" [pressed]"),u.selected===!0&&(g+=" [selected]"),e!=null&&e.forAI&&Ug(u)){const S=u.ref,k=Cx(u)?" [cursor=pointer]":"";S&&(g+=` [ref=${S}]${k}`)}const y=p+"- "+gx(g),v=!!Object.keys(u.props).length;if(!u.children.length&&!v)n.push(y);else if(u.children.length===1&&typeof u.children[0]=="string"&&!v){const S=r(u,u.children[0])?o(u.children[0]):null;S?n.push(y+": "+yu(S)):n.push(y)}else{n.push(y+":");for(const[S,k]of Object.entries(u.props))n.push(p+" - /"+S+": "+yu(k));for(const S of u.children||[])l(S,u,p+" ")}},c=t.root;if(c.role==="fragment")for(const u of c.children||[])l(u,c,"");else l(c,null,"");return n.join(` -`)}function bx(t){const e=[{regex:/\b[\d,.]+[bkmBKM]+\b/,replacement:"[\\d,.]+[bkmBKM]+"},{regex:/\b\d+[hmsp]+\b/,replacement:"\\d+[hmsp]+"},{regex:/\b[\d,.]+[hmsp]+\b/,replacement:"[\\d,.]+[hmsp]+"},{regex:/\b\d+,\d+\b/,replacement:"\\d+,\\d+"},{regex:/\b\d+\.\d{2,}\b/,replacement:"\\d+\\.\\d+"},{regex:/\b\d{2,}\.\d+\b/,replacement:"\\d+\\.\\d+"},{regex:/\b\d{2,}\b/,replacement:"\\d+"}];let n="",r=0;const o=new RegExp(e.map(l=>"("+l.regex.source+")").join("|"),"g");return t.replace(o,(l,...c)=>{const u=c[c.length-2],d=c.slice(0,-2);n+=zl(t.slice(r,u));for(let p=0;pe.length)return!1;const n=e.length<=200&&t.name.length<=200?c1(e,t.name):"";let r=e;for(;n&&r.includes(n);)r=r.replace(n,"");return r.trim().length/e.length>.1}function Ug(t){return t.box.visible&&t.receivesPointerEvents}function Cx(t){var e;return((e=t.box.style)==null?void 0:e.cursor)==="pointer"}const lm=":host{font-size:13px;font-family:system-ui,Ubuntu,Droid Sans,sans-serif;color:#333}svg{position:absolute;height:0}x-pw-tooltip{-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px);background-color:#fff;border-radius:6px;box-shadow:0 .5rem 1.2rem #0000004d;display:none;font-size:12.8px;font-weight:400;left:0;line-height:1.5;max-width:600px;position:absolute;top:0;padding:0;flex-direction:column;overflow:hidden}x-pw-tooltip-line{display:flex;max-width:600px;padding:6px;-webkit-user-select:none;user-select:none;cursor:pointer}x-pw-tooltip-line.selectable:hover{background-color:#f2f2f2;overflow:hidden}x-pw-tooltip-footer{display:flex;max-width:600px;padding:6px;-webkit-user-select:none;user-select:none;color:#777}x-pw-dialog{background-color:#fff;pointer-events:auto;border-radius:6px;box-shadow:0 .5rem 1.2rem #0000004d;display:flex;flex-direction:column;position:absolute;width:400px;height:150px;z-index:10;font-size:13px}x-pw-dialog-body{display:flex;flex-direction:column;flex:auto}x-pw-dialog-body label{margin:5px 8px;display:flex;flex-direction:row;align-items:center}x-pw-highlight{position:absolute;top:0;left:0;width:0;height:0}x-pw-action-point{position:absolute;width:20px;height:20px;background:red;border-radius:10px;margin:-10px 0 0 -10px;z-index:2}x-pw-separator{height:1px;margin:6px 9px;background:#949494e5}x-pw-tool-gripper{height:28px;width:24px;margin:2px 0;cursor:grab}x-pw-tool-gripper:active{cursor:grabbing}x-pw-tool-gripper>x-div{width:16px;height:16px;margin:6px 4px;clip-path:url(#icon-gripper);background-color:#555}x-pw-tools-list>label{display:flex;align-items:center;margin:0 10px;-webkit-user-select:none;user-select:none}x-pw-tools-list{display:flex;width:100%;border-bottom:1px solid #dddddd}x-pw-tool-item{pointer-events:auto;height:28px;width:28px;border-radius:3px}x-pw-tool-item:not(.disabled){cursor:pointer}x-pw-tool-item:not(.disabled):hover{background-color:#dbdbdb}x-pw-tool-item.toggled{background-color:#8acae480}x-pw-tool-item.toggled:not(.disabled):hover{background-color:#8acae4c4}x-pw-tool-item>x-div{width:16px;height:16px;margin:6px;background-color:#3a3a3a}x-pw-tool-item.disabled>x-div{background-color:#61616180;cursor:default}x-pw-tool-item.record.toggled{background-color:transparent}x-pw-tool-item.record.toggled:not(.disabled):hover{background-color:#dbdbdb}x-pw-tool-item.record.toggled>x-div{background-color:#a1260d}x-pw-tool-item.record.disabled.toggled>x-div{opacity:.8}x-pw-tool-item.accept>x-div{background-color:#388a34}x-pw-tool-item.record>x-div{clip-path:url(#icon-circle-large-filled)}x-pw-tool-item.pick-locator>x-div{clip-path:url(#icon-inspect)}x-pw-tool-item.text>x-div{clip-path:url(#icon-whole-word)}x-pw-tool-item.visibility>x-div{clip-path:url(#icon-eye)}x-pw-tool-item.value>x-div{clip-path:url(#icon-symbol-constant)}x-pw-tool-item.snapshot>x-div{clip-path:url(#icon-gist)}x-pw-tool-item.accept>x-div{clip-path:url(#icon-check)}x-pw-tool-item.cancel>x-div{clip-path:url(#icon-close)}x-pw-tool-item.succeeded>x-div{clip-path:url(#icon-pass);background-color:#388a34!important}x-pw-overlay{position:absolute;top:0;max-width:min-content;z-index:2147483647;background:transparent;pointer-events:auto}x-pw-overlay x-pw-tools-list{background-color:#fffd;box-shadow:#0000001a 0 5px 5px;border-radius:3px;border-bottom:none}x-pw-overlay x-pw-tool-item{margin:2px}textarea.text-editor{font-family:system-ui,Ubuntu,Droid Sans,sans-serif;flex:auto;border:none;margin:6px 10px;color:#333;outline:1px solid transparent!important;resize:none;padding:0;font-size:13px}textarea.text-editor.does-not-match{outline:1px solid red!important}x-div{display:block}x-spacer{flex:auto}*{box-sizing:border-box}*[hidden]{display:none!important}x-locator-editor{flex:none;width:100%;height:60px;padding:4px;border-bottom:1px solid #dddddd;outline:1px solid transparent}x-locator-editor.does-not-match{outline:1px solid red}.CodeMirror{width:100%!important;height:100%!important}";class vu{constructor(e){this._renderedEntries=[],this._language="javascript",this._injectedScript=e;const n=e.document;this._isUnderTest=e.isUnderTest,this._glassPaneElement=n.createElement("x-pw-glass"),this._glassPaneElement.style.position="fixed",this._glassPaneElement.style.top="0",this._glassPaneElement.style.right="0",this._glassPaneElement.style.bottom="0",this._glassPaneElement.style.left="0",this._glassPaneElement.style.zIndex="2147483647",this._glassPaneElement.style.pointerEvents="none",this._glassPaneElement.style.display="flex",this._glassPaneElement.style.backgroundColor="transparent";for(const r of["click","auxclick","dragstart","input","keydown","keyup","pointerdown","pointerup","mousedown","mouseup","mouseleave","focus","scroll"])this._glassPaneElement.addEventListener(r,o=>{o.stopPropagation(),o.stopImmediatePropagation()});if(this._actionPointElement=n.createElement("x-pw-action-point"),this._actionPointElement.setAttribute("hidden","true"),this._glassPaneShadow=this._glassPaneElement.attachShadow({mode:this._isUnderTest?"open":"closed"}),typeof this._glassPaneShadow.adoptedStyleSheets.push=="function"){const r=new this._injectedScript.window.CSSStyleSheet;r.replaceSync(lm),this._glassPaneShadow.adoptedStyleSheets.push(r)}else{const r=this._injectedScript.document.createElement("style");r.textContent=lm,this._glassPaneShadow.appendChild(r)}this._glassPaneShadow.appendChild(this._actionPointElement)}install(){this._injectedScript.document.documentElement&&(!this._injectedScript.document.documentElement.contains(this._glassPaneElement)||this._glassPaneElement.nextElementSibling)&&this._injectedScript.document.documentElement.appendChild(this._glassPaneElement)}setLanguage(e){this._language=e}runHighlightOnRaf(e){this._rafRequest&&this._injectedScript.utils.builtins.cancelAnimationFrame(this._rafRequest);const n=this._injectedScript.querySelectorAll(e,this._injectedScript.document.documentElement),r=Tr(this._language,Tn(e)),o=n.length>1?"#f6b26b7f":"#6fa8dc7f";this.updateHighlight(n.map((l,c)=>{const u=n.length>1?` [${c+1} of ${n.length}]`:"";return{element:l,color:o,tooltipText:r+u}})),this._rafRequest=this._injectedScript.utils.builtins.requestAnimationFrame(()=>this.runHighlightOnRaf(e))}uninstall(){this._rafRequest&&this._injectedScript.utils.builtins.cancelAnimationFrame(this._rafRequest),this._glassPaneElement.remove()}showActionPoint(e,n){this._actionPointElement.style.top=n+"px",this._actionPointElement.style.left=e+"px",this._actionPointElement.hidden=!1}hideActionPoint(){this._actionPointElement.hidden=!0}clearHighlight(){var e,n;for(const r of this._renderedEntries)(e=r.highlightElement)==null||e.remove(),(n=r.tooltipElement)==null||n.remove();this._renderedEntries=[]}maskElements(e,n){this.updateHighlight(e.map(r=>({element:r,color:n})))}updateHighlight(e){if(!this._highlightIsUpToDate(e)){this.clearHighlight();for(const n of e){const r=this._createHighlightElement();this._glassPaneShadow.appendChild(r);let o;if(n.tooltipText){o=this._injectedScript.document.createElement("x-pw-tooltip"),this._glassPaneShadow.appendChild(o),o.style.top="0",o.style.left="0",o.style.display="flex";const l=this._injectedScript.document.createElement("x-pw-tooltip-line");l.textContent=n.tooltipText,o.appendChild(l)}this._renderedEntries.push({targetElement:n.element,color:n.color,tooltipElement:o,highlightElement:r})}for(const n of this._renderedEntries){if(n.box=n.targetElement.getBoundingClientRect(),!n.tooltipElement)continue;const{anchorLeft:r,anchorTop:o}=this.tooltipPosition(n.box,n.tooltipElement);n.tooltipTop=o,n.tooltipLeft=r}for(const n of this._renderedEntries){n.tooltipElement&&(n.tooltipElement.style.top=n.tooltipTop+"px",n.tooltipElement.style.left=n.tooltipLeft+"px");const r=n.box;n.highlightElement.style.backgroundColor=n.color,n.highlightElement.style.left=r.x+"px",n.highlightElement.style.top=r.y+"px",n.highlightElement.style.width=r.width+"px",n.highlightElement.style.height=r.height+"px",n.highlightElement.style.display="block",this._isUnderTest&&console.error("Highlight box for test: "+JSON.stringify({x:r.x,y:r.y,width:r.width,height:r.height}))}}}firstBox(){var e;return(e=this._renderedEntries[0])==null?void 0:e.box}tooltipPosition(e,n){const r=n.offsetWidth,o=n.offsetHeight,l=this._glassPaneElement.offsetWidth,c=this._glassPaneElement.offsetHeight;let u=e.left;u+r>l-5&&(u=l-r-5);let d=e.bottom+5;return d+o>c-5&&(e.top>o+5?d=e.top-o-5:d=c-5-o),{anchorLeft:u,anchorTop:d}}_highlightIsUpToDate(e){if(e.length!==this._renderedEntries.length)return!1;for(let n=0;nn))return r+Math.max(e.bottom-t.bottom,0)+Math.max(t.top-e.top,0)}function Ax(t,e,n){const r=e.left-t.right;if(!(r<0||n!==void 0&&r>n))return r+Math.max(e.bottom-t.bottom,0)+Math.max(t.top-e.top,0)}function Ix(t,e,n){const r=e.top-t.bottom;if(!(r<0||n!==void 0&&r>n))return r+Math.max(t.left-e.left,0)+Math.max(e.right-t.right,0)}function Lx(t,e,n){const r=t.top-e.bottom;if(!(r<0||n!==void 0&&r>n))return r+Math.max(t.left-e.left,0)+Math.max(e.right-t.right,0)}function Mx(t,e,n){const r=n===void 0?50:n;let o=0;return t.left-e.right>=0&&(o+=t.left-e.right),e.left-t.right>=0&&(o+=e.left-t.right),e.top-t.bottom>=0&&(o+=e.top-t.bottom),t.top-e.bottom>=0&&(o+=t.top-e.bottom),o>r?void 0:o}const jx=["left-of","right-of","above","below","near"];function qg(t,e,n,r){const o=e.getBoundingClientRect(),l={"left-of":Ax,"right-of":Nx,above:Ix,below:Lx,near:Mx}[t];let c;for(const u of n){if(u===e)continue;const d=l(o,u.getBoundingClientRect(),r);d!==void 0&&(c===void 0||d"?!!n:e.op==="="?r instanceof RegExp?typeof n=="string"&&!!n.match(r):n===r:typeof n!="string"||typeof r!="string"?!1:e.op==="*="?n.includes(r):e.op==="^="?n.startsWith(r):e.op==="$="?n.endsWith(r):e.op==="|="?n===r||n.startsWith(r+"-"):e.op==="~="?n.split(" ").includes(r):!1}function _f(t){const e=t.ownerDocument;return t.nodeName==="SCRIPT"||t.nodeName==="NOSCRIPT"||t.nodeName==="STYLE"||e.head&&e.head.contains(t)}function Tt(t,e){let n=t.get(e);if(n===void 0){if(n={full:"",normalized:"",immediate:[]},!_f(e)){let r="";if(e instanceof HTMLInputElement&&(e.type==="submit"||e.type==="button"))n={full:e.value,normalized:mt(e.value),immediate:[e.value]};else{for(let o=e.firstChild;o;o=o.nextSibling)if(o.nodeType===Node.TEXT_NODE)n.full+=o.nodeValue||"",r+=o.nodeValue||"";else{if(o.nodeType===Node.COMMENT_NODE)continue;r&&n.immediate.push(r),r="",o.nodeType===Node.ELEMENT_NODE&&(n.full+=Tt(t,o).full)}r&&n.immediate.push(r),e.shadowRoot&&(n.full+=Tt(t,e.shadowRoot).full),n.full&&(n.normalized=mt(n.full))}}t.set(e,n)}return n}function ia(t,e,n){if(_f(e)||!n(Tt(t,e)))return"none";for(let r=e.firstChild;r;r=r.nextSibling)if(r.nodeType===Node.ELEMENT_NODE&&n(Tt(t,r)))return"selfAndChildren";return e.shadowRoot&&n(Tt(t,e.shadowRoot))?"selfAndChildren":"self"}function Kg(t,e){const n=Lg(e);if(n)return n.map(l=>Tt(t,l));const r=e.getAttribute("aria-label");if(r!==null&&r.trim())return[{full:r,normalized:mt(r),immediate:[r]}];const o=e.nodeName==="INPUT"&&e.type!=="hidden";if(["BUTTON","METER","OUTPUT","PROGRESS","SELECT","TEXTAREA"].includes(e.nodeName)||o){const l=e.labels;if(l)return[...l].map(c=>Tt(t,c))}return[]}function am(t){return t.displayName||t.name||"Anonymous"}function Px(t){if(t.type)switch(typeof t.type){case"function":return am(t.type);case"string":return t.type;case"object":return t.type.displayName||(t.type.render?am(t.type.render):"")}if(t._currentElement){const e=t._currentElement.type;if(typeof e=="string")return e;if(typeof e=="function")return e.displayName||e.name||"Anonymous"}return""}function Ox(t){var e;return t.key??((e=t._currentElement)==null?void 0:e.key)}function $x(t){if(t.child){const n=[];for(let r=t.child;r;r=r.sibling)n.push(r);return n}if(!t._currentElement)return[];const e=n=>{var o;const r=(o=n._currentElement)==null?void 0:o.type;return typeof r=="function"||typeof r=="string"};if(t._renderedComponent){const n=t._renderedComponent;return e(n)?[n]:[]}return t._renderedChildren?[...Object.values(t._renderedChildren)].filter(e):[]}function Rx(t){var r;const e=t.memoizedProps||((r=t._currentElement)==null?void 0:r.props);if(!e||typeof e=="string")return e;const n={...e};return delete n.children,n}function Gg(t){var r;const e={key:Ox(t),name:Px(t),children:$x(t).map(Gg),rootElements:[],props:Rx(t)},n=t.stateNode||t._hostNode||((r=t._renderedComponent)==null?void 0:r._hostNode);if(n instanceof Element)e.rootElements.push(n);else for(const o of e.children)e.rootElements.push(...o.rootElements);return e}function Qg(t,e,n=[]){e(t)&&n.push(t);for(const r of t.children)Qg(r,e,n);return n}function Jg(t,e=[]){const r=(t.ownerDocument||t).createTreeWalker(t,NodeFilter.SHOW_ELEMENT);do{const o=r.currentNode,l=o,c=Object.keys(l).find(d=>d.startsWith("__reactContainer")&&l[d]!==null);if(c)e.push(l[c].stateNode.current);else{const d="_reactRootContainer";l.hasOwnProperty(d)&&l[d]!==null&&e.push(l[d]._internalRoot.current)}if(o instanceof Element&&o.hasAttribute("data-reactroot"))for(const d of Object.keys(o))(d.startsWith("__reactInternalInstance")||d.startsWith("__reactFiber"))&&e.push(o[d]);const u=o instanceof Element?o.shadowRoot:null;u&&Jg(u,e)}while(r.nextNode());return e}const Dx=()=>({queryAll(t,e){const{name:n,attributes:r}=br(e,!1),c=Jg(t.ownerDocument||t).map(d=>Gg(d)).map(d=>Qg(d,p=>{const g=p.props??{};if(p.key!==void 0&&(g.key=p.key),n&&p.name!==n||p.rootElements.some(y=>!sa(t,y)))return!1;for(const y of r)if(!Vg(g,y))return!1;return!0})).flat(),u=new Set;for(const d of c)for(const p of d.rootElements)u.add(p);return[...u]}}),Xg=["selected","checked","pressed","expanded","level","disabled","name","include-hidden"];Xg.sort();function Ni(t,e,n){if(!e.includes(n))throw new Error(`"${t}" attribute is only supported for roles: ${e.slice().sort().map(r=>`"${r}"`).join(", ")}`)}function as(t,e){if(t.op!==""&&!e.includes(t.value))throw new Error(`"${t.name}" must be one of ${e.map(n=>JSON.stringify(n)).join(", ")}`)}function cs(t,e){if(!e.includes(t.op))throw new Error(`"${t.name}" does not support "${t.op}" matcher`)}function Fx(t,e){const n={role:e};for(const r of t)switch(r.name){case"checked":{Ni(r.name,sf,e),as(r,[!0,!1,"mixed"]),cs(r,["","="]),n.checked=r.op===""?!0:r.value;break}case"pressed":{Ni(r.name,lf,e),as(r,[!0,!1,"mixed"]),cs(r,["","="]),n.pressed=r.op===""?!0:r.value;break}case"selected":{Ni(r.name,rf,e),as(r,[!0,!1]),cs(r,["","="]),n.selected=r.op===""?!0:r.value;break}case"expanded":{Ni(r.name,af,e),as(r,[!0,!1]),cs(r,["","="]),n.expanded=r.op===""?!0:r.value;break}case"level":{if(Ni(r.name,cf,e),typeof r.value=="string"&&(r.value=+r.value),r.op!=="="||typeof r.value!="number"||Number.isNaN(r.value))throw new Error('"level" attribute must be compared to a number');n.level=r.value;break}case"disabled":{as(r,[!0,!1]),cs(r,["","="]),n.disabled=r.op===""?!0:r.value;break}case"name":{if(r.op==="")throw new Error('"name" attribute must have a value');if(typeof r.value!="string"&&!(r.value instanceof RegExp))throw new Error('"name" attribute must be a string or a regular expression');n.name=r.value,n.nameOp=r.op,n.exact=r.caseSensitive;break}case"include-hidden":{as(r,[!0,!1]),cs(r,["","="]),n.includeHidden=r.op===""?!0:r.value;break}default:throw new Error(`Unknown attribute "${r.name}", must be one of ${Xg.map(o=>`"${o}"`).join(", ")}.`)}return n}function Bx(t,e,n){const r=[],o=c=>{if(nt(c)===e.role&&!(e.selected!==void 0&&Mg(c)!==e.selected)&&!(e.checked!==void 0&&jg(c)!==e.checked)&&!(e.pressed!==void 0&&Pg(c)!==e.pressed)&&!(e.expanded!==void 0&&Og(c)!==e.expanded)&&!(e.level!==void 0&&$g(c)!==e.level)&&!(e.disabled!==void 0&&Wl(c)!==e.disabled)&&!(!e.includeHidden&&zt(c))){if(e.name!==void 0){const u=mt(Vi(c,!!e.includeHidden));if(typeof e.name=="string"&&(e.name=mt(e.name)),n&&!e.exact&&e.nameOp==="="&&(e.nameOp="*="),!Wg(u,{op:e.nameOp||"=",value:e.name,caseSensitive:!!e.exact}))return}r.push(c)}},l=c=>{const u=[];c.shadowRoot&&u.push(c.shadowRoot);for(const d of c.querySelectorAll("*"))o(d),d.shadowRoot&&u.push(d.shadowRoot);u.forEach(l)};return l(t),r}function cm(t){return{queryAll:(e,n)=>{const r=br(n,!0),o=r.name.toLowerCase();if(!o)throw new Error("Role must not be empty");const l=Fx(r.attributes,o);vf();try{return Bx(e,l,t)}finally{wf()}}}}class zx{constructor(){this._retainCacheCounter=0,this._cacheText=new Map,this._cacheQueryCSS=new Map,this._cacheMatches=new Map,this._cacheQuery=new Map,this._cacheMatchesSimple=new Map,this._cacheMatchesParents=new Map,this._cacheCallMatches=new Map,this._cacheCallQuery=new Map,this._cacheQuerySimple=new Map,this._engines=new Map,this._engines.set("not",qx),this._engines.set("is",Oi),this._engines.set("where",Oi),this._engines.set("has",Hx),this._engines.set("scope",Ux),this._engines.set("light",Vx),this._engines.set("visible",Wx),this._engines.set("text",Kx),this._engines.set("text-is",Gx),this._engines.set("text-matches",Qx),this._engines.set("has-text",Jx),this._engines.set("right-of",Ai("right-of")),this._engines.set("left-of",Ai("left-of")),this._engines.set("above",Ai("above")),this._engines.set("below",Ai("below")),this._engines.set("near",Ai("near")),this._engines.set("nth-match",Xx);const e=[...this._engines.keys()];e.sort();const n=[...rg];if(n.sort(),e.join("|")!==n.join("|"))throw new Error(`Please keep customCSSNames in sync with evaluator engines: ${e.join("|")} vs ${n.join("|")}`)}begin(){++this._retainCacheCounter}end(){--this._retainCacheCounter,this._retainCacheCounter||(this._cacheQueryCSS.clear(),this._cacheMatches.clear(),this._cacheQuery.clear(),this._cacheMatchesSimple.clear(),this._cacheMatchesParents.clear(),this._cacheCallMatches.clear(),this._cacheCallQuery.clear(),this._cacheQuerySimple.clear(),this._cacheText.clear())}_cached(e,n,r,o){e.has(n)||e.set(n,[]);const l=e.get(n),c=l.find(d=>r.every((p,g)=>d.rest[g]===p));if(c)return c.result;const u=o();return l.push({rest:r,result:u}),u}_checkSelector(e){if(!(typeof e=="object"&&e&&(Array.isArray(e)||"simples"in e&&e.simples.length)))throw new Error(`Malformed selector "${e}"`);return e}matches(e,n,r){const o=this._checkSelector(n);this.begin();try{return this._cached(this._cacheMatches,e,[o,r.scope,r.pierceShadow,r.originalScope],()=>Array.isArray(o)?this._matchesEngine(Oi,e,o,r):(this._hasScopeClause(o)&&(r=this._expandContextForScopeMatching(r)),this._matchesSimple(e,o.simples[o.simples.length-1].selector,r)?this._matchesParents(e,o,o.simples.length-2,r):!1))}finally{this.end()}}query(e,n){const r=this._checkSelector(n);this.begin();try{return this._cached(this._cacheQuery,r,[e.scope,e.pierceShadow,e.originalScope],()=>{if(Array.isArray(r))return this._queryEngine(Oi,e,r);this._hasScopeClause(r)&&(e=this._expandContextForScopeMatching(e));const o=this._scoreMap;this._scoreMap=new Map;let l=this._querySimple(e,r.simples[r.simples.length-1].selector);return l=l.filter(c=>this._matchesParents(c,r,r.simples.length-2,e)),this._scoreMap.size&&l.sort((c,u)=>{const d=this._scoreMap.get(c),p=this._scoreMap.get(u);return d===p?0:d===void 0?1:p===void 0?-1:d-p}),this._scoreMap=o,l})}finally{this.end()}}_markScore(e,n){this._scoreMap&&this._scoreMap.set(e,n)}_hasScopeClause(e){return e.simples.some(n=>n.selector.functions.some(r=>r.name==="scope"))}_expandContextForScopeMatching(e){if(e.scope.nodeType!==1)return e;const n=lt(e.scope);return n?{...e,scope:n,originalScope:e.originalScope||e.scope}:e}_matchesSimple(e,n,r){return this._cached(this._cacheMatchesSimple,e,[n,r.scope,r.pierceShadow,r.originalScope],()=>{if(e===r.scope||n.css&&!this._matchesCSS(e,n.css))return!1;for(const o of n.functions)if(!this._matchesEngine(this._getEngine(o.name),e,o.args,r))return!1;return!0})}_querySimple(e,n){return n.functions.length?this._cached(this._cacheQuerySimple,n,[e.scope,e.pierceShadow,e.originalScope],()=>{let r=n.css;const o=n.functions;r==="*"&&o.length&&(r=void 0);let l,c=-1;r!==void 0?l=this._queryCSS(e,r):(c=o.findIndex(u=>this._getEngine(u.name).query!==void 0),c===-1&&(c=0),l=this._queryEngine(this._getEngine(o[c].name),e,o[c].args));for(let u=0;uthis._matchesEngine(d,p,o[u].args,e)))}for(let u=0;uthis._matchesEngine(d,p,o[u].args,e)))}return l}):this._queryCSS(e,n.css||"*")}_matchesParents(e,n,r,o){return r<0?!0:this._cached(this._cacheMatchesParents,e,[n,r,o.scope,o.pierceShadow,o.originalScope],()=>{const{selector:l,combinator:c}=n.simples[r];if(c===">"){const u=pl(e,o);return!u||!this._matchesSimple(u,l,o)?!1:this._matchesParents(u,n,r-1,o)}if(c==="+"){const u=wu(e,o);return!u||!this._matchesSimple(u,l,o)?!1:this._matchesParents(u,n,r-1,o)}if(c===""){let u=pl(e,o);for(;u;){if(this._matchesSimple(u,l,o)){if(this._matchesParents(u,n,r-1,o))return!0;if(n.simples[r-1].combinator==="")break}u=pl(u,o)}return!1}if(c==="~"){let u=wu(e,o);for(;u;){if(this._matchesSimple(u,l,o)){if(this._matchesParents(u,n,r-1,o))return!0;if(n.simples[r-1].combinator==="~")break}u=wu(u,o)}return!1}if(c===">="){let u=e;for(;u;){if(this._matchesSimple(u,l,o)){if(this._matchesParents(u,n,r-1,o))return!0;if(n.simples[r-1].combinator==="")break}u=pl(u,o)}return!1}throw new Error(`Unsupported combinator "${c}"`)})}_matchesEngine(e,n,r,o){if(e.matches)return this._callMatches(e,n,r,o);if(e.query)return this._callQuery(e,r,o).includes(n);throw new Error('Selector engine should implement "matches" or "query"')}_queryEngine(e,n,r){if(e.query)return this._callQuery(e,r,n);if(e.matches)return this._queryCSS(n,"*").filter(o=>this._callMatches(e,o,r,n));throw new Error('Selector engine should implement "matches" or "query"')}_callMatches(e,n,r,o){return this._cached(this._cacheCallMatches,n,[e,o.scope,o.pierceShadow,o.originalScope,...r],()=>e.matches(n,r,o,this))}_callQuery(e,n,r){return this._cached(this._cacheCallQuery,e,[r.scope,r.pierceShadow,r.originalScope,...n],()=>e.query(r,n,this))}_matchesCSS(e,n){return e.matches(n)}_queryCSS(e,n){return this._cached(this._cacheQueryCSS,n,[e.scope,e.pierceShadow,e.originalScope],()=>{let r=[];function o(l){if(r=r.concat([...l.querySelectorAll(n)]),!!e.pierceShadow){l.shadowRoot&&o(l.shadowRoot);for(const c of l.querySelectorAll("*"))c.shadowRoot&&o(c.shadowRoot)}}return o(e.scope),r})}_getEngine(e){const n=this._engines.get(e);if(!n)throw new Error(`Unknown selector engine "${e}"`);return n}}const Oi={matches(t,e,n,r){if(e.length===0)throw new Error('"is" engine expects non-empty selector list');return e.some(o=>r.matches(t,o,n))},query(t,e,n){if(e.length===0)throw new Error('"is" engine expects non-empty selector list');let r=[];for(const o of e)r=r.concat(n.query(t,o));return e.length===1?r:Yg(r)}},Hx={matches(t,e,n,r){if(e.length===0)throw new Error('"has" engine expects non-empty selector list');return r.query({...n,scope:t},e).length>0}},Ux={matches(t,e,n,r){if(e.length!==0)throw new Error('"scope" engine expects no arguments');const o=n.originalScope||n.scope;return o.nodeType===9?t===o.documentElement:t===o},query(t,e,n){if(e.length!==0)throw new Error('"scope" engine expects no arguments');const r=t.originalScope||t.scope;if(r.nodeType===9){const o=r.documentElement;return o?[o]:[]}return r.nodeType===1?[r]:[]}},qx={matches(t,e,n,r){if(e.length===0)throw new Error('"not" engine expects non-empty selector list');return!r.matches(t,e,n)}},Vx={query(t,e,n){return n.query({...t,pierceShadow:!1},e)},matches(t,e,n,r){return r.matches(t,e,{...n,pierceShadow:!1})}},Wx={matches(t,e,n,r){if(e.length)throw new Error('"visible" engine expects no arguments');return Cr(t)}},Kx={matches(t,e,n,r){if(e.length!==1||typeof e[0]!="string")throw new Error('"text" engine expects a single string');const o=mt(e[0]).toLowerCase(),l=c=>c.normalized.toLowerCase().includes(o);return ia(r._cacheText,t,l)==="self"}},Gx={matches(t,e,n,r){if(e.length!==1||typeof e[0]!="string")throw new Error('"text-is" engine expects a single string');const o=mt(e[0]),l=c=>!o&&!c.immediate.length?!0:c.immediate.some(u=>mt(u)===o);return ia(r._cacheText,t,l)!=="none"}},Qx={matches(t,e,n,r){if(e.length===0||typeof e[0]!="string"||e.length>2||e.length===2&&typeof e[1]!="string")throw new Error('"text-matches" engine expects a regexp body and optional regexp flags');const o=new RegExp(e[0],e.length===2?e[1]:void 0),l=c=>o.test(c.full);return ia(r._cacheText,t,l)==="self"}},Jx={matches(t,e,n,r){if(e.length!==1||typeof e[0]!="string")throw new Error('"has-text" engine expects a single string');if(_f(t))return!1;const o=mt(e[0]).toLowerCase();return(c=>c.normalized.toLowerCase().includes(o))(Tt(r._cacheText,t))}};function Ai(t){return{matches(e,n,r,o){const l=n.length&&typeof n[n.length-1]=="number"?n[n.length-1]:void 0,c=l===void 0?n:n.slice(0,n.length-1);if(n.length<1+(l===void 0?0:1))throw new Error(`"${t}" engine expects a selector list and optional maximum distance in pixels`);const u=o.query(r,c),d=qg(t,e,u,l);return d===void 0?!1:(o._markScore(e,d),!0)}}}const Xx={query(t,e,n){let r=e[e.length-1];if(e.length<2)throw new Error('"nth-match" engine expects non-empty selector list and an index argument');if(typeof r!="number"||r<1)throw new Error('"nth-match" engine expects a one-based index as the last argument');const o=Oi.query(t,e.slice(0,e.length-1),n);return r--,r1){const d=new Set(u.children);u.children=[];let p=c.firstElementChild;for(;p&&u.children.lengthLl(g)))]}else{const u=us(r,t,e,n)||ml(t,e,n);o=[Ll(u)]}}const l=o[0],c=t.parseSelector(l);return{selector:l,selectors:o,elements:t.querySelectorAll(c,n.root??e.ownerDocument)}}finally{wf(),t._evaluator.end()}}function hm(t){return t.filter(e=>e[0].selector[0]!=="/")}function us(t,e,n,r){if(r.root&&!sa(r.root,n))throw new Error("Target element must belong to the root's subtree");if(n===r.root)return[{engine:"css",selector:":scope",score:1}];if(n.ownerDocument.documentElement===n)return[{engine:"css",selector:"html",score:1}];const o=(c,u)=>{const d=c===n;let p=u?d_(e,c,c===n):[];c!==n&&(p=hm(p));const g=f_(e,c,r).filter(S=>!r.omitInternalEngines||!S.engine.startsWith("internal:")).map(S=>[S]);let y=pm(e,r.root??n.ownerDocument,c,[...p,...g],d);p=hm(p);const v=S=>{const k=u&&!S.length,_=[...S,...g].filter(C=>y?Zn(C)=Zn(y))continue;if(E=pm(e,C,c,_,d),!E)return;const B=[...A,...E];(!y||Zn(B){const d=u?t.allowText:t.disallowText;let p=d.get(c);return p===void 0&&(p=o(c,u),d.set(c,p)),p};return o(n,!r.noText)}function f_(t,e,n){const r=[];{for(const c of["data-testid","data-test-id","data-test"])c!==n.testIdAttributeName&&e.getAttribute(c)&&r.push({engine:"css",selector:`[${c}=${ps(e.getAttribute(c))}]`,score:Yx});if(!n.noCSSId){const c=e.getAttribute("id");c&&!h_(c)&&r.push({engine:"css",selector:ay(c),score:a_})}r.push({engine:"css",selector:bn(e),score:oy})}if(e.nodeName==="IFRAME"){for(const c of["name","title"])e.getAttribute(c)&&r.push({engine:"css",selector:`${bn(e)}[${c}=${ps(e.getAttribute(c))}]`,score:Zx});return e.getAttribute(n.testIdAttributeName)&&r.push({engine:"css",selector:`[${n.testIdAttributeName}=${ps(e.getAttribute(n.testIdAttributeName))}]`,score:um}),Ru([r]),r}if(e.getAttribute(n.testIdAttributeName)&&r.push({engine:"internal:testid",selector:`[${n.testIdAttributeName}=${ht(e.getAttribute(n.testIdAttributeName),!0)}]`,score:um}),e.nodeName==="INPUT"||e.nodeName==="TEXTAREA"){const c=e;if(c.placeholder){r.push({engine:"internal:attr",selector:`[placeholder=${ht(c.placeholder,!0)}]`,score:t_});for(const u of ys(c.placeholder))r.push({engine:"internal:attr",selector:`[placeholder=${ht(u.text,!1)}]`,score:ty-u.scoreBonus})}}const o=Kg(t._evaluator._cacheText,e);for(const c of o){const u=c.normalized;r.push({engine:"internal:label",selector:kt(u,!0),score:n_});for(const d of ys(u))r.push({engine:"internal:label",selector:kt(d.text,!1),score:ny-d.scoreBonus})}const l=nt(e);return l&&!["none","presentation"].includes(l)&&r.push({engine:"internal:role",selector:l,score:iy}),e.getAttribute("name")&&["BUTTON","FORM","FIELDSET","FRAME","IFRAME","INPUT","KEYGEN","OBJECT","OUTPUT","SELECT","TEXTAREA","MAP","META","PARAM"].includes(e.nodeName)&&r.push({engine:"css",selector:`${bn(e)}[name=${ps(e.getAttribute("name"))}]`,score:Su}),["INPUT","TEXTAREA"].includes(e.nodeName)&&e.getAttribute("type")!=="hidden"&&e.getAttribute("type")&&r.push({engine:"css",selector:`${bn(e)}[type=${ps(e.getAttribute("type"))}]`,score:Su}),["INPUT","TEXTAREA","SELECT"].includes(e.nodeName)&&e.getAttribute("type")!=="hidden"&&r.push({engine:"css",selector:bn(e),score:Su+1}),Ru([r]),r}function d_(t,e,n){if(e.nodeName==="SELECT")return[];const r=[],o=e.getAttribute("title");if(o){r.push([{engine:"internal:attr",selector:`[title=${ht(o,!0)}]`,score:o_}]);for(const p of ys(o))r.push([{engine:"internal:attr",selector:`[title=${ht(p.text,!1)}]`,score:sy-p.scoreBonus}])}const l=e.getAttribute("alt");if(l&&["APPLET","AREA","IMG","INPUT"].includes(e.nodeName)){r.push([{engine:"internal:attr",selector:`[alt=${ht(l,!0)}]`,score:s_}]);for(const p of ys(l))r.push([{engine:"internal:attr",selector:`[alt=${ht(p.text,!1)}]`,score:ry-p.scoreBonus}])}const c=Tt(t._evaluator._cacheText,e).normalized,u=c?ys(c):[];if(c){if(n){c.length<=80&&r.push([{engine:"internal:text",selector:kt(c,!0),score:i_}]);for(const g of u)r.push([{engine:"internal:text",selector:kt(g.text,!1),score:Il-g.scoreBonus}])}const p={engine:"css",selector:bn(e),score:oy};for(const g of u)r.push([p,{engine:"internal:has-text",selector:kt(g.text,!1),score:Il-g.scoreBonus}]);if(c.length<=80){const g=new RegExp("^"+zl(c)+"$");r.push([p,{engine:"internal:has-text",selector:kt(g,!1),score:fm}])}}const d=nt(e);if(d&&!["none","presentation"].includes(d)){const p=Vi(e,!1);if(p){const g={engine:"internal:role",selector:`${d}[name=${ht(p,!0)}]`,score:r_};r.push([g]);for(const y of ys(p))r.push([{engine:"internal:role",selector:`${d}[name=${ht(y.text,!1)}]`,score:ey-y.scoreBonus}])}else{const g={engine:"internal:role",selector:`${d}`,score:iy};for(const y of u)r.push([g,{engine:"internal:has-text",selector:kt(y.text,!1),score:Il-y.scoreBonus}]);if(c.length<=80){const y=new RegExp("^"+zl(c)+"$");r.push([g,{engine:"internal:has-text",selector:kt(y,!1),score:fm}])}}}return Ru(r),r}function ay(t){return/^[a-zA-Z][a-zA-Z0-9\-\_]+$/.test(t)?"#"+t:`[id=${ps(t)}]`}function xu(t){return t.some(e=>e.engine==="css"&&(e.selector.startsWith("#")||e.selector.startsWith('[id="')))}function ml(t,e,n){const r=n.root??e.ownerDocument,o=[];function l(u){const d=o.slice();u&&d.unshift(u);const p=d.join(" > "),g=t.parseSelector(p);return t.querySelector(g,r,!1)===e?p:void 0}function c(u){const d={engine:"css",selector:u,score:c_},p=t.parseSelector(u),g=t.querySelectorAll(p,r);if(g.length===1)return[d];const y={engine:"nth",selector:String(g.indexOf(e)),score:ly};return[d,y]}for(let u=e;u&&u!==r;u=lt(u)){let d="";if(u.id&&!n.noCSSId){const y=ay(u.id),v=l(y);if(v)return c(v);d=y}const p=u.parentNode,g=[...u.classList].map(p_);for(let y=0;yE.nodeName===v).indexOf(u)===0?bn(u):`${bn(u)}:nth-child(${1+y.indexOf(u)})`,_=l(k);if(_)return c(_);d||(d=k)}else d||(d=bn(u));o.unshift(d)}return c(l())}function Ru(t){for(const e of t)for(const n of e)n.score>e_&&n.score>"),n=r,r==="css"?e.push(o):e.push(`${r}=${o}`);return e.join(" ")}function Zn(t){let e=0;for(let n=0;n({tokens:u,score:Zn(u)}));l.sort((u,d)=>u.score-d.score);let c=null;for(const{tokens:u}of l){const d=t.parseSelector(Ll(u)),p=t.querySelectorAll(d,e);if(p[0]===n&&p.length===1)return u;const g=p.indexOf(n);if(!o||c||g===-1||p.length>5)continue;const y={engine:"nth",selector:String(g),score:ly};c=[...u,y]}return c}function h_(t){let e,n=0;for(let r=0;r="a"&&o<="z"?l="lower":o>="A"&&o<="Z"?l="upper":o>="0"&&o<="9"?l="digit":l="other",l==="lower"&&e==="upper"){e=l;continue}e&&e!==l&&++n,e=l}}return n>=t.length/4}function gl(t,e){if(t.length<=e)return t;t=t.substring(0,e);const n=t.match(/^(.*)\b(.+?)$/);return n?n[1].trimEnd():""}function ys(t){let e=[];{const n=t.match(/^([\d.,]+)[^.,\w]/),r=n?n[1].length:0;if(r){const o=gl(t.substring(r).trimStart(),80);e.push({text:o,scoreBonus:o.length<=30?2:1})}}{const n=t.match(/[^.,\w]([\d.,]+)$/),r=n?n[1].length:0;if(r){const o=gl(t.substring(0,t.length-r).trimEnd(),80);e.push({text:o,scoreBonus:o.length<=30?2:1})}}return t.length<=30?e.push({text:t,scoreBonus:0}):(e.push({text:gl(t,80),scoreBonus:0}),e.push({text:gl(t,30),scoreBonus:1})),e=e.filter(n=>n.text),e.length||e.push({text:t.substring(0,80),scoreBonus:0}),e}function bn(t){return t.nodeName.toLocaleLowerCase().replace(/[:\.]/g,e=>"\\"+e)}function p_(t){let e="";for(let n=0;n=1&&n<=31||n>=48&&n<=57&&(e===0||e===1&&t.charCodeAt(0)===45)?"\\"+n.toString(16)+" ":e===0&&n===45&&t.length===1?"\\"+t.charAt(e):n>=128||n===45||n===95||n>=48&&n<=57||n>=65&&n<=90||n>=97&&n<=122?t.charAt(e):"\\"+t.charAt(e)}function cy(t,e){const n=t.replace(/^[a-zA-Z]:/,"").replace(/\\/g,"/");let r=n.substring(n.lastIndexOf("/")+1);return r.endsWith(e)&&(r=r.substring(0,r.length-e.length)),r}function g_(t,e){return e?e.toUpperCase():""}const y_=/(?:^|[-_/])(\w)/g,uy=t=>t&&t.replace(y_,g_);function v_(t){function e(g){const y=g.name||g._componentTag||g.__playwright_guessedName;if(y)return y;const v=g.__file;if(v)return uy(cy(v,".vue"))}function n(g,y){return g.type.__playwright_guessedName=y,y}function r(g){var v,S,k,_;const y=e(g.type||{});if(y)return y;if(g.root===g)return"Root";for(const E in(S=(v=g.parent)==null?void 0:v.type)==null?void 0:S.components)if(((k=g.parent)==null?void 0:k.type.components[E])===g.type)return n(g,E);for(const E in(_=g.appContext)==null?void 0:_.components)if(g.appContext.components[E]===g.type)return n(g,E);return"Anonymous Component"}function o(g){return g._isBeingDestroyed||g.isUnmounted}function l(g){return g.subTree.type.toString()==="Symbol(Fragment)"}function c(g){const y=[];return g.component&&y.push(g.component),g.suspense&&y.push(...c(g.suspense.activeBranch)),Array.isArray(g.children)&&g.children.forEach(v=>{v.component?y.push(v.component):y.push(...c(v))}),y.filter(v=>{var S;return!o(v)&&!((S=v.type.devtools)!=null&&S.hide)})}function u(g){return l(g)?d(g.subTree):[g.subTree.el]}function d(g){if(!g.children)return[];const y=[];for(let v=0,S=g.children.length;v!!c.component).map(c=>c.component):[]}function o(l){return{name:n(l),children:r(l).map(o),rootElements:[l.$el],props:l._props}}return o(t)}function fy(t,e,n=[]){e(t)&&n.push(t);for(const r of t.children)fy(r,e,n);return n}function dy(t,e=[]){const r=(t.ownerDocument||t).createTreeWalker(t,NodeFilter.SHOW_ELEMENT),o=new Set;do{const l=r.currentNode;l.__vue__&&o.add(l.__vue__.$root),l.__vue_app__&&l._vnode&&l._vnode.component&&e.push({root:l._vnode.component,version:3});const c=l instanceof Element?l.shadowRoot:null;c&&dy(c,e)}while(r.nextNode());for(const l of o)e.push({version:2,root:l});return e}const S_=()=>({queryAll(t,e){const n=t.ownerDocument||t,{name:r,attributes:o}=br(e,!1),u=dy(n).map(p=>p.version===3?v_(p.root):w_(p.root)).map(p=>fy(p,g=>{if(r&&g.name!==r||g.rootElements.some(y=>!sa(t,y)))return!1;for(const y of o)if(!Vg(g.props,y))return!1;return!0})).flat(),d=new Set;for(const p of u)for(const g of p.rootElements)d.add(g);return[...d]}}),mm={queryAll(t,e){e.startsWith("/")&&t.nodeType!==Node.DOCUMENT_NODE&&(e="."+e);const n=[],r=t.ownerDocument||t;if(!r)return n;const o=r.evaluate(e,t,null,XPathResult.ORDERED_NODE_ITERATOR_TYPE);for(let l=o.iterateNext();l;l=o.iterateNext())l.nodeType===Node.ELEMENT_NODE&&n.push(l);return n}};function Ef(t,e,n){return`internal:attr=[${t}=${ht(e,(n==null?void 0:n.exact)||!1)}]`}function x_(t,e){return`internal:testid=[${t}=${ht(e,!0)}]`}function __(t,e){return"internal:label="+kt(t,!!(e!=null&&e.exact))}function E_(t,e){return Ef("alt",t,e)}function k_(t,e){return Ef("title",t,e)}function b_(t,e){return Ef("placeholder",t,e)}function T_(t,e){return"internal:text="+kt(t,!!(e!=null&&e.exact))}function C_(t,e={}){const n=[];return e.checked!==void 0&&n.push(["checked",String(e.checked)]),e.disabled!==void 0&&n.push(["disabled",String(e.disabled)]),e.selected!==void 0&&n.push(["selected",String(e.selected)]),e.expanded!==void 0&&n.push(["expanded",String(e.expanded)]),e.includeHidden!==void 0&&n.push(["include-hidden",String(e.includeHidden)]),e.level!==void 0&&n.push(["level",String(e.level)]),e.name!==void 0&&n.push(["name",ht(e.name,!!e.exact)]),e.pressed!==void 0&&n.push(["pressed",String(e.pressed)]),`internal:role=${t}${n.map(([r,o])=>`[${r}=${o}]`).join("")}`}const Ii=Symbol("selector"),N_=class $i{constructor(e,n,r){if(r!=null&&r.hasText&&(n+=` >> internal:has-text=${kt(r.hasText,!1)}`),r!=null&&r.hasNotText&&(n+=` >> internal:has-not-text=${kt(r.hasNotText,!1)}`),r!=null&&r.has&&(n+=" >> internal:has="+JSON.stringify(r.has[Ii])),r!=null&&r.hasNot&&(n+=" >> internal:has-not="+JSON.stringify(r.hasNot[Ii])),(r==null?void 0:r.visible)!==void 0&&(n+=` >> visible=${r.visible?"true":"false"}`),this[Ii]=n,n){const c=e.parseSelector(n);this.element=e.querySelector(c,e.document,!1),this.elements=e.querySelectorAll(c,e.document)}const o=n,l=this;l.locator=(c,u)=>new $i(e,o?o+" >> "+c:c,u),l.getByTestId=c=>l.locator(x_(e.testIdAttributeNameForStrictErrorAndConsoleCodegen(),c)),l.getByAltText=(c,u)=>l.locator(E_(c,u)),l.getByLabel=(c,u)=>l.locator(__(c,u)),l.getByPlaceholder=(c,u)=>l.locator(b_(c,u)),l.getByText=(c,u)=>l.locator(T_(c,u)),l.getByTitle=(c,u)=>l.locator(k_(c,u)),l.getByRole=(c,u={})=>l.locator(C_(c,u)),l.filter=c=>new $i(e,n,c),l.first=()=>l.locator("nth=0"),l.last=()=>l.locator("nth=-1"),l.nth=c=>l.locator(`nth=${c}`),l.and=c=>new $i(e,o+" >> internal:and="+JSON.stringify(c[Ii])),l.or=c=>new $i(e,o+" >> internal:or="+JSON.stringify(c[Ii]))}};let A_=N_;class I_{constructor(e){this._injectedScript=e}install(){this._injectedScript.window.playwright||(this._injectedScript.window.playwright={$:(e,n)=>this._querySelector(e,!!n),$$:e=>this._querySelectorAll(e),inspect:e=>this._inspect(e),selector:e=>this._selector(e),generateLocator:(e,n)=>this._generateLocator(e,n),ariaSnapshot:(e,n)=>this._injectedScript.ariaSnapshot(e||this._injectedScript.document.body,n),resume:()=>this._resume(),...new A_(this._injectedScript,"")},delete this._injectedScript.window.playwright.filter,delete this._injectedScript.window.playwright.first,delete this._injectedScript.window.playwright.last,delete this._injectedScript.window.playwright.nth,delete this._injectedScript.window.playwright.and,delete this._injectedScript.window.playwright.or)}_querySelector(e,n){if(typeof e!="string")throw new Error("Usage: playwright.query('Playwright >> selector').");const r=this._injectedScript.parseSelector(e);return this._injectedScript.querySelector(r,this._injectedScript.document,n)}_querySelectorAll(e){if(typeof e!="string")throw new Error("Usage: playwright.$$('Playwright >> selector').");const n=this._injectedScript.parseSelector(e);return this._injectedScript.querySelectorAll(n,this._injectedScript.document)}_inspect(e){if(typeof e!="string")throw new Error("Usage: playwright.inspect('Playwright >> selector').");this._injectedScript.window.inspect(this._querySelector(e,!1))}_selector(e){if(!(e instanceof Element))throw new Error("Usage: playwright.selector(element).");return this._injectedScript.generateSelectorSimple(e)}_generateLocator(e,n){if(!(e instanceof Element))throw new Error("Usage: playwright.locator(element).");const r=this._injectedScript.generateSelectorSimple(e);return Tr(n||"javascript",r)}_resume(){this._injectedScript.window.__pw_resume().catch(()=>{})}}function L_(t){try{return t instanceof RegExp||Object.prototype.toString.call(t)==="[object RegExp]"}catch{return!1}}function M_(t){try{return t instanceof Date||Object.prototype.toString.call(t)==="[object Date]"}catch{return!1}}function j_(t){try{return t instanceof URL||Object.prototype.toString.call(t)==="[object URL]"}catch{return!1}}function P_(t){var e;try{return t instanceof Error||t&&((e=Object.getPrototypeOf(t))==null?void 0:e.name)==="Error"}catch{return!1}}function O_(t,e){try{return t instanceof e||Object.prototype.toString.call(t)===`[object ${e.name}]`}catch{return!1}}const hy={i8:Int8Array,ui8:Uint8Array,ui8c:Uint8ClampedArray,i16:Int16Array,ui16:Uint16Array,i32:Int32Array,ui32:Uint32Array,f32:Float32Array,f64:Float64Array,bi64:BigInt64Array,bui64:BigUint64Array};function $_(t){if("toBase64"in t)return t.toBase64();const e=Array.from(new Uint8Array(t.buffer,t.byteOffset,t.byteLength)).map(n=>String.fromCharCode(n)).join("");return btoa(e)}function R_(t,e){const n=atob(t),r=new Uint8Array(n.length);for(let o=0;o";if(typeof globalThis.Document=="function"&&t instanceof globalThis.Document)return"ref: ";if(typeof globalThis.Node=="function"&&t instanceof globalThis.Node)return"ref: "}return py(t,e,n)}function py(t,e,n){var l;const r=e(t);if("fallThrough"in r)t=r.fallThrough;else return r;if(typeof t=="symbol")return{v:"undefined"};if(Object.is(t,void 0))return{v:"undefined"};if(Object.is(t,null))return{v:"null"};if(Object.is(t,NaN))return{v:"NaN"};if(Object.is(t,1/0))return{v:"Infinity"};if(Object.is(t,-1/0))return{v:"-Infinity"};if(Object.is(t,-0))return{v:"-0"};if(typeof t=="boolean"||typeof t=="number"||typeof t=="string")return t;if(typeof t=="bigint")return{bi:t.toString()};if(P_(t)){let c;return(l=t.stack)!=null&&l.startsWith(t.name+": "+t.message)?c=t.stack:c=`${t.name}: ${t.message} -${t.stack}`,{e:{n:t.name,m:t.message,s:c}}}if(M_(t))return{d:t.toJSON()};if(j_(t))return{u:t.toJSON()};if(L_(t))return{r:{p:t.source,f:t.flags}};for(const[c,u]of Object.entries(hy))if(O_(t,u))return{ta:{b:$_(t),k:c}};const o=n.visited.get(t);if(o)return{ref:o};if(Array.isArray(t)){const c=[],u=++n.lastId;n.visited.set(t,u);for(let d=0;d({fallThrough:r}))}_promiseAwareJsonValueNoThrow(e){const n=r=>{try{return this.jsonValue(!0,r)}catch{return}};return e&&typeof e=="object"&&typeof e.then=="function"?(async()=>{const r=await e;return n(r)})():n(e)}}class my{constructor(e,n){this._testIdAttributeNameForStrictErrorAndConsoleCodegen="data-testid",this.utils={asLocator:Tr,cacheNormalizedWhitespaces:l1,elementText:Tt,getAriaRole:nt,getElementAccessibleDescription:rm,getElementAccessibleName:Vi,isElementVisible:Cr,isInsideScope:sa,normalizeWhiteSpace:mt,parseAriaSnapshot:nf,builtins:null},this.window=e,this.document=e.document,this.isUnderTest=n.isUnderTest,this.utils.builtins=new F_(e,n.isUnderTest).builtins,this._sdkLanguage=n.sdkLanguage,this._testIdAttributeNameForStrictErrorAndConsoleCodegen=n.testIdAttributeName,this._evaluator=new zx,this.consoleApi=new I_(this),this.onGlobalListenersRemoved=new Set,this._autoClosingTags=new Set(["AREA","BASE","BR","COL","COMMAND","EMBED","HR","IMG","INPUT","KEYGEN","LINK","MENUITEM","META","PARAM","SOURCE","TRACK","WBR"]),this._booleanAttributes=new Set(["checked","selected","disabled","readonly","multiple"]),this._eventTypes=new Map([["auxclick","mouse"],["click","mouse"],["dblclick","mouse"],["mousedown","mouse"],["mouseeenter","mouse"],["mouseleave","mouse"],["mousemove","mouse"],["mouseout","mouse"],["mouseover","mouse"],["mouseup","mouse"],["mouseleave","mouse"],["mousewheel","mouse"],["keydown","keyboard"],["keyup","keyboard"],["keypress","keyboard"],["textInput","keyboard"],["touchstart","touch"],["touchmove","touch"],["touchend","touch"],["touchcancel","touch"],["pointerover","pointer"],["pointerout","pointer"],["pointerenter","pointer"],["pointerleave","pointer"],["pointerdown","pointer"],["pointerup","pointer"],["pointermove","pointer"],["pointercancel","pointer"],["gotpointercapture","pointer"],["lostpointercapture","pointer"],["focus","focus"],["blur","focus"],["drag","drag"],["dragstart","drag"],["dragend","drag"],["dragover","drag"],["dragenter","drag"],["dragleave","drag"],["dragexit","drag"],["drop","drag"],["wheel","wheel"],["deviceorientation","deviceorientation"],["deviceorientationabsolute","deviceorientation"],["devicemotion","devicemotion"]]),this._hoverHitTargetInterceptorEvents=new Set(["mousemove"]),this._tapHitTargetInterceptorEvents=new Set(["pointerdown","pointerup","touchstart","touchend","touchcancel"]),this._mouseHitTargetInterceptorEvents=new Set(["mousedown","mouseup","pointerdown","pointerup","click","auxclick","dblclick","contextmenu"]),this._allHitTargetInterceptorEvents=new Set([...this._hoverHitTargetInterceptorEvents,...this._tapHitTargetInterceptorEvents,...this._mouseHitTargetInterceptorEvents]),this._engines=new Map,this._engines.set("xpath",mm),this._engines.set("xpath:light",mm),this._engines.set("_react",Dx()),this._engines.set("_vue",S_()),this._engines.set("role",cm(!1)),this._engines.set("text",this._createTextEngine(!0,!1)),this._engines.set("text:light",this._createTextEngine(!1,!1)),this._engines.set("id",this._createAttributeEngine("id",!0)),this._engines.set("id:light",this._createAttributeEngine("id",!1)),this._engines.set("data-testid",this._createAttributeEngine("data-testid",!0)),this._engines.set("data-testid:light",this._createAttributeEngine("data-testid",!1)),this._engines.set("data-test-id",this._createAttributeEngine("data-test-id",!0)),this._engines.set("data-test-id:light",this._createAttributeEngine("data-test-id",!1)),this._engines.set("data-test",this._createAttributeEngine("data-test",!0)),this._engines.set("data-test:light",this._createAttributeEngine("data-test",!1)),this._engines.set("css",this._createCSSEngine()),this._engines.set("nth",{queryAll:()=>[]}),this._engines.set("visible",this._createVisibleEngine()),this._engines.set("internal:control",this._createControlEngine()),this._engines.set("internal:has",this._createHasEngine()),this._engines.set("internal:has-not",this._createHasNotEngine()),this._engines.set("internal:and",{queryAll:()=>[]}),this._engines.set("internal:or",{queryAll:()=>[]}),this._engines.set("internal:chain",this._createInternalChainEngine()),this._engines.set("internal:label",this._createInternalLabelEngine()),this._engines.set("internal:text",this._createTextEngine(!0,!0)),this._engines.set("internal:has-text",this._createInternalHasTextEngine()),this._engines.set("internal:has-not-text",this._createInternalHasNotTextEngine()),this._engines.set("internal:attr",this._createNamedAttributeEngine()),this._engines.set("internal:testid",this._createNamedAttributeEngine()),this._engines.set("internal:role",cm(!0)),this._engines.set("internal:describe",this._createDescribeEngine()),this._engines.set("aria-ref",this._createAriaRefEngine());for(const{name:r,source:o}of n.customEngines)this._engines.set(r,this.eval(o));this._stableRafCount=n.stableRafCount,this._browserName=n.browserName,JS({browserNameForWorkarounds:n.browserName}),this._setupGlobalListenersRemovalDetection(),this._setupHitTargetInterceptors(),this.isUnderTest&&(this.window.__injectedScript=this)}eval(e){return this.window.eval(e)}testIdAttributeNameForStrictErrorAndConsoleCodegen(){return this._testIdAttributeNameForStrictErrorAndConsoleCodegen}parseSelector(e){const n=Ji(e);return i1(n,r=>{if(!this._engines.has(r.name))throw this.createStacklessError(`Unknown engine "${r.name}" while parsing selector ${e}`)}),n}generateSelector(e,n){return dm(this,e,n)}generateSelectorSimple(e,n){return dm(this,e,{...n,testIdAttributeName:this._testIdAttributeNameForStrictErrorAndConsoleCodegen}).selector}querySelector(e,n,r){const o=this.querySelectorAll(e,n);if(r&&o.length>1)throw this.strictModeViolationError(e,o);return o[0]}_queryNth(e,n){const r=[...e];let o=+n.body;return o===-1&&(o=r.length-1),new Set(r.slice(o,o+1))}_queryLayoutSelector(e,n,r){const o=n.name,l=n.body,c=[],u=this.querySelectorAll(l.parsed,r);for(const d of e){const p=qg(o,d,u,l.distance);p!==void 0&&c.push({element:d,score:p})}return c.sort((d,p)=>d.score-p.score),new Set(c.map(d=>d.element))}ariaSnapshot(e,n){if(e.nodeType!==Node.ELEMENT_NODE)throw this.createStacklessError("Can only capture aria snapshot of Element nodes.");return this._lastAriaSnapshot=Kl(e,n),Gl(this._lastAriaSnapshot,n)}ariaSnapshotForRecorder(){const e=Kl(this.document.body,{forAI:!0});return{ariaSnapshot:Gl(e,{forAI:!0}),refs:e.refs}}getAllByAria(e,n){return kx(e.documentElement,n)}querySelectorAll(e,n){if(e.capture!==void 0){if(e.parts.some(o=>o.name==="nth"))throw this.createStacklessError("Can't query n-th element in a request with the capture.");const r={parts:e.parts.slice(0,e.capture+1)};if(e.capturer.has(c)))}else if(o.name==="internal:or"){const l=this.querySelectorAll(o.body.parsed,n);r=new Set(Yg(new Set([...r,...l])))}else if(jx.includes(o.name))r=this._queryLayoutSelector(r,o,n);else{const l=new Set;for(const c of r){const u=this._queryEngineAll(o,c);for(const d of u)l.add(d)}r=l}return[...r]}finally{this._evaluator.end()}}_queryEngineAll(e,n){const r=this._engines.get(e.name).queryAll(n,e.body);for(const o of r)if(!("nodeName"in o))throw this.createStacklessError(`Expected a Node but got ${Object.prototype.toString.call(o)}`);return r}_createAttributeEngine(e,n){const r=o=>[{simples:[{selector:{css:`[${e}=${JSON.stringify(o)}]`,functions:[]},combinator:""}]}];return{queryAll:(o,l)=>this._evaluator.query({scope:o,pierceShadow:n},r(l))}}_createCSSEngine(){return{queryAll:(e,n)=>this._evaluator.query({scope:e,pierceShadow:!0},n)}}_createTextEngine(e,n){return{queryAll:(o,l)=>{const{matcher:c,kind:u}=vl(l,n),d=[];let p=null;const g=v=>{if(u==="lax"&&p&&p.contains(v))return!1;const S=ia(this._evaluator._cacheText,v,c);S==="none"&&(p=v),(S==="self"||S==="selfAndChildren"&&u==="strict"&&!n)&&d.push(v)};o.nodeType===Node.ELEMENT_NODE&&g(o);const y=this._evaluator._queryCSS({scope:o,pierceShadow:e},"*");for(const v of y)g(v);return d}}}_createInternalHasTextEngine(){return{queryAll:(e,n)=>{if(e.nodeType!==1)return[];const r=e,o=Tt(this._evaluator._cacheText,r),{matcher:l}=vl(n,!0);return l(o)?[r]:[]}}}_createInternalHasNotTextEngine(){return{queryAll:(e,n)=>{if(e.nodeType!==1)return[];const r=e,o=Tt(this._evaluator._cacheText,r),{matcher:l}=vl(n,!0);return l(o)?[]:[r]}}}_createInternalLabelEngine(){return{queryAll:(e,n)=>{const{matcher:r}=vl(n,!0);return this._evaluator._queryCSS({scope:e,pierceShadow:!0},"*").filter(l=>Kg(this._evaluator._cacheText,l).some(c=>r(c)))}}}_createNamedAttributeEngine(){return{queryAll:(n,r)=>{const o=br(r,!0);if(o.name||o.attributes.length!==1)throw new Error("Malformed attribute selector: "+r);const{name:l,value:c,caseSensitive:u}=o.attributes[0],d=u?null:c.toLowerCase();let p;return c instanceof RegExp?p=y=>!!y.match(c):u?p=y=>y===c:p=y=>y.toLowerCase().includes(d),this._evaluator._queryCSS({scope:n,pierceShadow:!0},`[${l}]`).filter(y=>p(y.getAttribute(l)))}}}_createDescribeEngine(){return{queryAll:n=>n.nodeType!==1?[]:[n]}}_createControlEngine(){return{queryAll(e,n){if(n==="enter-frame")return[];if(n==="return-empty")return[];if(n==="component")return e.nodeType!==1?[]:[e.childElementCount===1?e.firstElementChild:e];throw new Error(`Internal error, unknown internal:control selector ${n}`)}}}_createHasEngine(){return{queryAll:(n,r)=>n.nodeType!==1?[]:!!this.querySelector(r.parsed,n,!1)?[n]:[]}}_createHasNotEngine(){return{queryAll:(n,r)=>n.nodeType!==1?[]:!!this.querySelector(r.parsed,n,!1)?[]:[n]}}_createVisibleEngine(){return{queryAll:(n,r)=>{if(n.nodeType!==1)return[];const o=r==="true";return Cr(n)===o?[n]:[]}}}_createInternalChainEngine(){return{queryAll:(n,r)=>this.querySelectorAll(r.parsed,n)}}extend(e,n){const r=this.window.eval(` - (() => { - const module = {}; - ${e} - return module.exports.default(); - })()`);return new r(this,n)}async viewportRatio(e){return await new Promise(n=>{const r=new IntersectionObserver(o=>{n(o[0].intersectionRatio),r.disconnect()});r.observe(e),this.utils.builtins.requestAnimationFrame(()=>{})})}getElementBorderWidth(e){if(e.nodeType!==Node.ELEMENT_NODE||!e.ownerDocument||!e.ownerDocument.defaultView)return{left:0,top:0};const n=e.ownerDocument.defaultView.getComputedStyle(e);return{left:parseInt(n.borderLeftWidth||"",10),top:parseInt(n.borderTopWidth||"",10)}}describeIFrameStyle(e){if(!e.ownerDocument||!e.ownerDocument.defaultView)return"error:notconnected";const n=e.ownerDocument.defaultView;for(let o=e;o;o=lt(o))if(n.getComputedStyle(o).transform!=="none")return"transformed";const r=n.getComputedStyle(e);return{left:parseInt(r.borderLeftWidth||"",10)+parseInt(r.paddingLeft||"",10),top:parseInt(r.borderTopWidth||"",10)+parseInt(r.paddingTop||"",10)}}retarget(e,n){let r=e.nodeType===Node.ELEMENT_NODE?e:e.parentElement;if(!r)return null;if(n==="none")return r;if(!r.matches("input, textarea, select")&&!r.isContentEditable&&(n==="button-link"?r=r.closest("button, [role=button], a, [role=link]")||r:r=r.closest("button, [role=button], [role=checkbox], [role=radio]")||r),n==="follow-label"&&!r.matches("a, input, textarea, button, select, [role=link], [role=button], [role=checkbox], [role=radio]")&&!r.isContentEditable){const o=r.closest("label");o&&o.control&&(r=o.control)}return r}async checkElementStates(e,n){if(n.includes("stable")){const r=await this._checkElementIsStable(e);if(r===!1)return{missingState:"stable"};if(r==="error:notconnected")return"error:notconnected"}for(const r of n)if(r!=="stable"){const o=this.elementState(e,r);if(o.received==="error:notconnected")return"error:notconnected";if(!o.matches)return{missingState:r}}}async _checkElementIsStable(e){const n=Symbol("continuePolling");let r,o=0,l=0;const c=()=>{const y=this.retarget(e,"no-follow-label");if(!y)return"error:notconnected";const v=this.utils.builtins.performance.now();if(this._stableRafCount>1&&v-l<15)return n;l=v;const S=y.getBoundingClientRect(),k={x:S.top,y:S.left,width:S.width,height:S.height};if(r){if(!(k.x===r.x&&k.y===r.y&&k.width===r.width&&k.height===r.height))return!1;if(++o>=this._stableRafCount)return!0}return r=k,n};let u,d;const p=new Promise((y,v)=>{u=y,d=v}),g=()=>{try{const y=c();y!==n?u(y):this.utils.builtins.requestAnimationFrame(g)}catch(y){d(y)}};return this.utils.builtins.requestAnimationFrame(g),p}_createAriaRefEngine(){return{queryAll:(n,r)=>{var l,c;const o=(c=(l=this._lastAriaSnapshot)==null?void 0:l.elements)==null?void 0:c.get(r);return o&&o.isConnected?[o]:[]}}}elementState(e,n){const r=this.retarget(e,["visible","hidden"].includes(n)?"none":"follow-label");if(!r||!r.isConnected)return n==="hidden"?{matches:!0,received:"hidden"}:{matches:!1,received:"error:notconnected"};if(n==="visible"||n==="hidden"){const o=Cr(r);return{matches:n==="visible"?o:!o,received:o?"visible":"hidden"}}if(n==="disabled"||n==="enabled"){const o=Wl(r);return{matches:n==="disabled"?o:!o,received:o?"disabled":"enabled"}}if(n==="editable"){const o=Wl(r),l=fx(r);if(l==="error")throw this.createStacklessError("Element is not an ,