From 4c88d6e768e3914572a2a74968f1a6f63f0ed618 Mon Sep 17 00:00:00 2001 From: mrhid6 Date: Wed, 12 Aug 2026 15:23:02 +0000 Subject: [PATCH] feat: Publish an OpenAPI 3.1 document and a Scalar reference MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Generated from swaggo v2 annotations, committed rather than built into the image: the runtime stage is scratch and adding codegen puts the toolchain in the build. CI regenerates and diffs, so an annotation edited without regenerating fails the build — without that the annotations would drift while still looking authoritative. Scalar is vendored rather than loaded from a CDN, because air-gapped self-hosted installs are supported and a reference page that fails closed offline is a support ticket. --- .gitea/workflows/server-deploy.yml | 18 + server/internal/api/docs/doc.go | 23 + server/internal/api/docs/openapi.json | 8516 +++++++++++++++++ server/internal/api/docs/scalar.standalone.js | 2384 +++++ server/internal/api/openapi.go | 71 + server/internal/api/scopes.go | 7 + 6 files changed, 11019 insertions(+) create mode 100644 server/internal/api/docs/doc.go create mode 100644 server/internal/api/docs/openapi.json create mode 100644 server/internal/api/docs/scalar.standalone.js create mode 100644 server/internal/api/openapi.go diff --git a/.gitea/workflows/server-deploy.yml b/.gitea/workflows/server-deploy.yml index 64d1907..17a41b8 100644 --- a/.gitea/workflows/server-deploy.yml +++ b/.gitea/workflows/server-deploy.yml @@ -95,6 +95,24 @@ jobs: docker login ${{ vars.DOCKER_HOST }} \ -u "${{ secrets.REGISTRY_USER }}" --password-stdin + - name: Set up Go + if: steps.changed.outputs.server == 'true' + uses: actions/setup-go@v5 + with: + go-version: "1.26" + cache: true + cache-dependency-path: server/go.sum + + - name: Verify the OpenAPI document is current + if: steps.changed.outputs.server == 'true' + run: | + go install github.com/swaggo/swag/v2/cmd/swag@v2.0.0-rc5 + cd server + swag init --generalInfo cmd/main.go --dir ./,../shared \ + --output internal/api/docs --outputTypes json --v3.1 + mv -f internal/api/docs/swagger.json internal/api/docs/openapi.json + git diff --exit-code internal/api/docs/openapi.json + - name: Build and push server image if: steps.changed.outputs.server == 'true' run: | diff --git a/server/internal/api/docs/doc.go b/server/internal/api/docs/doc.go new file mode 100644 index 0000000..f4852ac --- /dev/null +++ b/server/internal/api/docs/doc.go @@ -0,0 +1,23 @@ +// Package docs holds the generated OpenAPI document and the vendored Scalar +// bundle that renders it. +// +// openapi.json is generated by `swag init` and committed rather than built into +// the image: server/Dockerfile produces a scratch runtime from a Go build +// stage, and adding codegen there means putting the toolchain in the image. +// server-deploy.yml regenerates and diffs it, so an annotation edited without +// regenerating fails the build. +// +// scalar.standalone.js is vendored from +// https://cdn.jsdelivr.net/npm/@scalar/api-reference@latest/dist/browser/standalone.js +// and refreshed by hand. Fetched at build time it would break an air-gapped +// install; fetched at page load it would break an air-gapped install more +// visibly. +package docs + +import _ "embed" + +//go:embed openapi.json +var OpenAPI []byte + +//go:embed scalar.standalone.js +var ScalarJS []byte diff --git a/server/internal/api/docs/openapi.json b/server/internal/api/docs/openapi.json new file mode 100644 index 0000000..8de7249 --- /dev/null +++ b/server/internal/api/docs/openapi.json @@ -0,0 +1,8516 @@ +{ + "components": { + "schemas": { + "api.AcknowledgedResponse": { + "properties": { + "acknowledged": { + "type": "boolean" + } + }, + "type": "object" + }, + "api.AgentVersionResponse": { + "properties": { + "version": { + "type": "string" + } + }, + "type": "object" + }, + "api.AuditEventsResponse": { + "properties": { + "events": { + "items": { + "$ref": "#/components/schemas/models.AuditEvent" + }, + "type": "array", + "uniqueItems": false + }, + "total": { + "type": "integer" + } + }, + "type": "object" + }, + "api.CancelledResponse": { + "properties": { + "cancelled": { + "type": "boolean" + } + }, + "type": "object" + }, + "api.ConsoleConnectResponse": { + "properties": { + "session_id": { + "type": "string" + }, + "token": { + "type": "string" + }, + "ws_path": { + "type": "string" + } + }, + "type": "object" + }, + "api.CreateServerResponse": { + "properties": { + "server": { + "$ref": "#/components/schemas/models.Server" + }, + "server_id": { + "type": "string" + }, + "token": { + "type": "string" + } + }, + "type": "object" + }, + "api.CreateTokenRequest": { + "properties": { + "expires_in_days": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "role": { + "type": "string" + }, + "scopes": { + "items": { + "type": "string" + }, + "type": "array", + "uniqueItems": false + } + }, + "type": "object" + }, + "api.CreateTokenResponse": { + "properties": { + "record": { + "$ref": "#/components/schemas/models.APIToken" + }, + "token": { + "description": "Token is the plaintext, returned exactly once and stored nowhere.", + "type": "string" + } + }, + "type": "object" + }, + "api.DeletedResponse": { + "properties": { + "deleted": { + "type": "boolean" + } + }, + "type": "object" + }, + "api.ErrorResponse": { + "properties": { + "code": { + "type": "string" + }, + "error": { + "type": "string" + } + }, + "type": "object" + }, + "api.GenerateKeyResponse": { + "properties": { + "command_id": { + "type": "string" + }, + "message": { + "type": "string" + }, + "server_id": { + "type": "string" + } + }, + "type": "object" + }, + "api.GroupResponse": { + "properties": { + "group": { + "type": "string" + } + }, + "type": "object" + }, + "api.KeyDetailResponse": { + "properties": { + "_id": { + "type": "string" + }, + "assignments": {}, + "created_at": { + "type": "string" + }, + "fingerprint": { + "type": "string" + }, + "generated_by_server_id": { + "type": "string" + }, + "has_passphrase": { + "type": "boolean" + }, + "has_private_key": { + "type": "boolean" + }, + "instance_id": { + "type": "string" + }, + "key_id": { + "type": "string" + }, + "label": { + "type": "string" + }, + "public_key": { + "type": "string" + }, + "source": { + "type": "string" + } + }, + "type": "object" + }, + "api.LicenceErrorResponse": { + "properties": { + "error": { + "type": "string" + }, + "reason": { + "type": "string" + } + }, + "type": "object" + }, + "api.LicencePostResponse": { + "properties": { + "expires_at": { + "type": "string" + }, + "state": { + "$ref": "#/components/schemas/license.State" + }, + "tier": { + "type": "string" + } + }, + "type": "object" + }, + "api.LimitExceededResponse": { + "properties": { + "current": { + "type": "integer" + }, + "error": { + "type": "string" + }, + "limit": { + "type": "string" + }, + "max": { + "type": "integer" + } + }, + "type": "object" + }, + "api.ListTokensResponse": { + "properties": { + "all": { + "type": "boolean" + }, + "tokens": { + "items": { + "$ref": "#/components/schemas/models.APIToken" + }, + "type": "array", + "uniqueItems": false + } + }, + "type": "object" + }, + "api.MessageResponse": { + "properties": { + "message": { + "type": "string" + } + }, + "type": "object" + }, + "api.NewServerResponse": { + "properties": { + "install_command": { + "type": "string" + }, + "install_command_ps": { + "type": "string" + }, + "pre_reg_token": { + "type": "string" + }, + "server_id": { + "type": "string" + } + }, + "type": "object" + }, + "api.OKResponse": { + "properties": { + "ok": { + "type": "boolean" + } + }, + "type": "object" + }, + "api.OccurrencesResponse": { + "properties": { + "occurrences": { + "items": { + "type": "string" + }, + "type": "array", + "uniqueItems": false + } + }, + "type": "object" + }, + "api.PrivateKeyResponse": { + "properties": { + "private_key": { + "type": "string" + } + }, + "type": "object" + }, + "api.QueuedResponse": { + "properties": { + "queued": { + "type": "integer" + } + }, + "type": "object" + }, + "api.RevealSecretResponse": { + "properties": { + "value": { + "type": "string" + } + }, + "type": "object" + }, + "api.RevokedResponse": { + "properties": { + "revoked": { + "type": "boolean" + } + }, + "type": "object" + }, + "api.RunWorkflowResponse": { + "properties": { + "run_id": { + "type": "string" + } + }, + "type": "object" + }, + "api.SavedResponse": { + "properties": { + "saved": { + "type": "boolean" + } + }, + "type": "object" + }, + "api.ScheduleResponse": { + "properties": { + "next_run_at": { + "type": "string" + }, + "schedule": { + "$ref": "#/components/schemas/models.Schedule" + } + }, + "type": "object" + }, + "api.SecretGroupResponse": { + "properties": { + "group": { + "type": "string" + }, + "secrets": { + "items": { + "$ref": "#/components/schemas/models.Secret" + }, + "type": "array", + "uniqueItems": false + } + }, + "type": "object" + }, + "api.SecretsTokenResponse": { + "properties": { + "token": { + "type": "string" + } + }, + "type": "object" + }, + "api.SeedDefaultsResponse": { + "properties": { + "created": { + "type": "integer" + }, + "updated": { + "type": "integer" + } + }, + "type": "object" + }, + "api.ServerDetailResponse": { + "properties": { + "_id": { + "type": "string" + }, + "agent_version": { + "type": "string" + }, + "available_updates": { + "items": { + "$ref": "#/components/schemas/models.PackageUpdate" + }, + "type": "array", + "uniqueItems": false + }, + "console_protocols": { + "items": { + "type": "string" + }, + "type": "array", + "uniqueItems": false + }, + "created_at": { + "type": "string" + }, + "hostname": { + "type": "string" + }, + "instance_id": { + "type": "string" + }, + "inventory": { + "$ref": "#/components/schemas/models.Inventory" + }, + "ip_address": { + "type": "string" + }, + "keys": {}, + "last_seen": { + "type": "string" + }, + "os_info": { + "type": "string" + }, + "os_type": { + "type": "string" + }, + "pre_reg_expires": { + "type": "string" + }, + "pre_reg_token": { + "type": "string" + }, + "rdp_port": { + "type": "integer" + }, + "server_id": { + "type": "string" + }, + "ssh_port": { + "type": "integer" + }, + "status": { + "type": "string" + }, + "tags": { + "additionalProperties": { + "type": "string" + }, + "type": "object" + }, + "updates_checked_at": { + "type": "string" + } + }, + "type": "object" + }, + "api.StatusResponse": { + "properties": { + "status": { + "type": "string" + } + }, + "type": "object" + }, + "api.TagsResponse": { + "properties": { + "tags": { + "additionalProperties": { + "type": "string" + }, + "type": "object" + } + }, + "type": "object" + }, + "api.TestProviderResponse": { + "properties": { + "message": { + "type": "string" + }, + "ok": { + "type": "boolean" + } + }, + "type": "object" + }, + "api.TokenScopesResponse": { + "properties": { + "scopes": { + "items": { + "type": "string" + }, + "type": "array", + "uniqueItems": false + } + }, + "type": "object" + }, + "api.UpdateAgentResponse": { + "properties": { + "message": { + "type": "string" + }, + "version": { + "type": "string" + } + }, + "type": "object" + }, + "api.UpdatedResponse": { + "properties": { + "updated": { + "type": "boolean" + } + }, + "type": "object" + }, + "api.VulnSummaryResponse": { + "properties": { + "counts": { + "additionalProperties": { + "type": "integer" + }, + "type": "object" + }, + "db_version": { + "type": "integer" + }, + "last_error": { + "type": "string" + }, + "last_full_scan_at": { + "type": "string" + }, + "pulled_at": { + "type": "string" + } + }, + "type": "object" + }, + "api.WorkloadLogsResponse": { + "properties": { + "text": { + "type": "string" + }, + "truncated": { + "type": "boolean" + } + }, + "type": "object" + }, + "api.acceptFindingRequest": { + "properties": { + "reason": { + "type": "string" + }, + "until": { + "type": "string" + } + }, + "type": "object" + }, + "api.authProviderView": { + "properties": { + "_id": { + "type": "string" + }, + "callback_notice": { + "description": "CallbackNotice marks a provider whose redirect URI changed at the upgrade\nto per-provider callbacks. Set only by migration 0005; cleared when an\nadministrator acknowledges it in settings.", + "type": "boolean" + }, + "callback_url": { + "type": "string" + }, + "client_id": { + "type": "string" + }, + "client_secret_set": { + "type": "boolean" + }, + "created_at": { + "type": "string" + }, + "enabled": { + "type": "boolean" + }, + "instance_id": { + "type": "string" + }, + "issuer": { + "type": "string" + }, + "kind": { + "description": "\"oidc\" | \"oauth2\"", + "type": "string" + }, + "name": { + "type": "string" + }, + "order": { + "type": "integer" + }, + "preset": { + "description": "\"\" for custom", + "type": "string" + }, + "provider_id": { + "type": "string" + }, + "scopes": { + "items": { + "type": "string" + }, + "type": "array", + "uniqueItems": false + }, + "updated_at": { + "type": "string" + } + }, + "type": "object" + }, + "api.licenceResponse": { + "properties": { + "days_remaining": { + "type": "integer" + }, + "deployment": { + "description": "Deployment is what tells the UI whether this instance owns its licence.\nOn cloud the licence is injected by admin and there is nothing for a\ncustomer to paste, so the UI sends them to the portal instead.", + "type": "string" + }, + "expires_at": { + "type": "string" + }, + "features": { + "additionalProperties": { + "type": "boolean" + }, + "type": "object" + }, + "instance_id": { + "type": "string" + }, + "limits": { + "$ref": "#/components/schemas/license.Limits" + }, + "reason": { + "type": "string" + }, + "source": { + "type": "string" + }, + "state": { + "$ref": "#/components/schemas/license.State" + }, + "support_level": { + "type": "string" + }, + "tier": { + "type": "string" + }, + "usage": { + "$ref": "#/components/schemas/api.licenceUsageResponse" + } + }, + "type": "object" + }, + "api.licenceUsageResponse": { + "properties": { + "channels": { + "type": "integer" + }, + "monitors": { + "type": "integer" + }, + "secret_groups": { + "type": "integer" + }, + "servers": { + "type": "integer" + } + }, + "type": "object" + }, + "api.vulnGroup": { + "properties": { + "cve_id": { + "type": "string" + }, + "findings": { + "items": { + "$ref": "#/components/schemas/models.VulnFinding" + }, + "type": "array", + "uniqueItems": false + }, + "server_count": { + "type": "integer" + }, + "severity": { + "type": "string" + }, + "title": { + "type": "string" + } + }, + "type": "object" + }, + "auth.Preset": { + "properties": { + "id": { + "type": "string" + }, + "input_hint": { + "type": "string" + }, + "input_label": { + "description": "empty means the preset asks for nothing", + "type": "string" + }, + "kind": { + "description": "models.KindOIDC | models.KindOAuth2", + "type": "string" + }, + "label": { + "description": "shown in the add-provider picker", + "type": "string" + } + }, + "type": "object" + }, + "license.Limits": { + "properties": { + "audit_retention_days": { + "type": "integer" + }, + "max_channels": { + "type": "integer" + }, + "max_monitors": { + "type": "integer" + }, + "max_secret_groups": { + "type": "integer" + }, + "max_servers": { + "type": "integer" + } + }, + "type": "object" + }, + "license.State": { + "enum": [ + "valid", + "expired", + "invalid" + ], + "type": "string", + "x-enum-varnames": [ + "StateValid", + "StateExpired", + "StateInvalid" + ] + }, + "models.APIToken": { + "properties": { + "created_at": { + "type": "string" + }, + "created_by_ip": { + "type": "string" + }, + "expires_at": { + "description": "ExpiresAt nil means the token never expires. Whether that is allowed is\na per-instance policy, settings.api_token_max_days.", + "type": "string" + }, + "hint": { + "description": "Hint is the first 8 characters of the plaintext, stored in clear so the\nlist can identify a token without revealing it.", + "type": "string" + }, + "instance_id": { + "type": "string" + }, + "last_used_at": { + "type": "string" + }, + "name": { + "type": "string" + }, + "role": { + "type": "string" + }, + "scopes": { + "items": { + "type": "string" + }, + "type": "array", + "uniqueItems": false + }, + "token_id": { + "type": "string" + }, + "user_email": { + "description": "Email of the owning user, joined at read time for the list. Never stored.", + "type": "string" + }, + "user_id": { + "type": "string" + } + }, + "type": "object" + }, + "models.Acceptance": { + "properties": { + "at": { + "type": "string" + }, + "by": { + "type": "string" + }, + "reason": { + "type": "string" + }, + "until": { + "type": "string" + } + }, + "type": "object" + }, + "models.AlertSettings": { + "properties": { + "offline_channel_ids": { + "items": { + "type": "string" + }, + "type": "array", + "uniqueItems": false + }, + "offline_threshold_minutes": { + "type": "integer" + } + }, + "type": "object" + }, + "models.Assignment": { + "properties": { + "_id": { + "type": "string" + }, + "assigned_at": { + "type": "string" + }, + "instance_id": { + "type": "string" + }, + "key_id": { + "type": "string" + }, + "revoked_at": { + "type": "string" + }, + "server_id": { + "type": "string" + } + }, + "type": "object" + }, + "models.AuditEvent": { + "properties": { + "actor": { + "type": "string" + }, + "created_at": { + "type": "string" + }, + "details": { + "type": "string" + }, + "event_type": { + "type": "string" + }, + "id": { + "type": "string" + }, + "instance_id": { + "type": "string" + }, + "key_id": { + "type": "string" + }, + "server_id": { + "type": "string" + } + }, + "type": "object" + }, + "models.CPUInfo": { + "properties": { + "cores": { + "type": "integer" + }, + "load1": { + "type": "number" + }, + "model": { + "type": "string" + }, + "usage_pct": { + "type": "number" + } + }, + "type": "object" + }, + "models.GroupSummary": { + "properties": { + "group": { + "type": "string" + }, + "key_count": { + "type": "integer" + }, + "updated_at": { + "type": "string" + } + }, + "type": "object" + }, + "models.Incident": { + "properties": { + "cause": { + "type": "string" + }, + "incident_id": { + "type": "string" + }, + "instance_id": { + "type": "string" + }, + "monitor_id": { + "type": "string" + }, + "resolved_at": { + "type": "string" + }, + "started_at": { + "type": "string" + } + }, + "type": "object" + }, + "models.InputParam": { + "properties": { + "default": { + "type": "string" + }, + "description": { + "type": "string" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "models.InstalledPackage": { + "properties": { + "arch": { + "type": "string" + }, + "epoch": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "source_name": { + "description": "SourceName is what the Debian and Ubuntu feeds are keyed on. One advisory\nagainst \"openssl\" covers the binaries libssl3, openssl and libssl-dev;\nmatching on binary name alone finds one of the three.", + "type": "string" + }, + "version": { + "type": "string" + } + }, + "type": "object" + }, + "models.Inventory": { + "properties": { + "cpu": { + "$ref": "#/components/schemas/models.CPUInfo" + }, + "kernel": { + "type": "string" + }, + "memory": { + "$ref": "#/components/schemas/models.MemInfo" + }, + "metrics_at": { + "type": "string" + }, + "partitions": { + "items": { + "$ref": "#/components/schemas/models.Partition" + }, + "type": "array", + "uniqueItems": false + }, + "static_at": { + "type": "string" + }, + "swap_total_bytes": { + "type": "integer" + }, + "swap_used_bytes": { + "type": "integer" + } + }, + "type": "object" + }, + "models.Key": { + "properties": { + "_id": { + "type": "string" + }, + "created_at": { + "type": "string" + }, + "fingerprint": { + "type": "string" + }, + "generated_by_server_id": { + "type": "string" + }, + "has_passphrase": { + "type": "boolean" + }, + "has_private_key": { + "type": "boolean" + }, + "instance_id": { + "type": "string" + }, + "key_id": { + "type": "string" + }, + "label": { + "type": "string" + }, + "public_key": { + "type": "string" + }, + "source": { + "type": "string" + } + }, + "type": "object" + }, + "models.MemInfo": { + "properties": { + "total_bytes": { + "type": "integer" + }, + "used_bytes": { + "type": "integer" + } + }, + "type": "object" + }, + "models.Monitor": { + "properties": { + "_id": { + "type": "string" + }, + "channel_ids": { + "items": { + "type": "string" + }, + "type": "array", + "uniqueItems": false + }, + "created_at": { + "type": "string" + }, + "enabled": { + "type": "boolean" + }, + "instance_id": { + "type": "string" + }, + "interval_sec": { + "type": "integer" + }, + "monitor_id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "retries": { + "type": "integer" + }, + "runner": { + "type": "string" + }, + "state": { + "$ref": "#/components/schemas/models.MonitorState" + }, + "target": { + "$ref": "#/components/schemas/models.MonitorTarget" + }, + "type": { + "type": "string" + } + }, + "type": "object" + }, + "models.MonitorState": { + "properties": { + "cert_expiry_at": { + "type": "string" + }, + "fails": { + "type": "integer" + }, + "last_check_at": { + "type": "string" + }, + "last_notified_at": { + "type": "string" + }, + "latency_ms": { + "type": "integer" + }, + "message": { + "type": "string" + }, + "status": { + "type": "string" + } + }, + "type": "object" + }, + "models.MonitorTarget": { + "properties": { + "expected_status": { + "type": "integer" + }, + "host": { + "type": "string" + }, + "insecure": { + "type": "boolean" + }, + "keyword": { + "type": "string" + }, + "method": { + "type": "string" + }, + "port": { + "type": "integer" + }, + "tls_warn_days": { + "type": "integer" + }, + "url": { + "type": "string" + } + }, + "type": "object" + }, + "models.NotificationChannel": { + "properties": { + "_id": { + "type": "string" + }, + "channel_id": { + "type": "string" + }, + "config": { + "additionalProperties": { + "type": "string" + }, + "type": "object" + }, + "created_at": { + "type": "string" + }, + "enabled": { + "type": "boolean" + }, + "instance_id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "type": { + "type": "string" + } + }, + "type": "object" + }, + "models.OSRelease": { + "properties": { + "arch": { + "type": "string" + }, + "family": { + "type": "string" + }, + "version_id": { + "type": "string" + } + }, + "type": "object" + }, + "models.PackageUpdate": { + "properties": { + "current_version": { + "type": "string" + }, + "name": { + "type": "string" + }, + "new_version": { + "type": "string" + } + }, + "type": "object" + }, + "models.Partition": { + "properties": { + "device": { + "type": "string" + }, + "fstype": { + "type": "string" + }, + "mountpoint": { + "type": "string" + }, + "total_bytes": { + "type": "integer" + }, + "used_bytes": { + "type": "integer" + } + }, + "type": "object" + }, + "models.ResolvedStep": { + "properties": { + "inputs": { + "additionalProperties": { + "type": "string" + }, + "type": "object" + }, + "interpreter": { + "type": "string" + }, + "max_retries": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "on_failure": { + "type": "string" + }, + "order": { + "type": "integer" + }, + "script": { + "type": "string" + }, + "secret_refs": { + "items": { + "type": "string" + }, + "type": "array", + "uniqueItems": false + } + }, + "type": "object" + }, + "models.Rollup": { + "properties": { + "checks": { + "type": "integer" + }, + "instance_id": { + "type": "string" + }, + "monitor_id": { + "type": "string" + }, + "period_start": { + "type": "string" + }, + "sum_latency": { + "type": "integer" + }, + "up_count": { + "type": "integer" + } + }, + "type": "object" + }, + "models.Schedule": { + "properties": { + "cron": { + "description": "5-field: minute hour dom month dow", + "type": "string" + }, + "enabled": { + "type": "boolean" + }, + "tz": { + "description": "IANA name, e.g. Europe/London", + "type": "string" + } + }, + "type": "object" + }, + "models.Secret": { + "properties": { + "group": { + "type": "string" + }, + "instance_id": { + "type": "string" + }, + "key": { + "type": "string" + }, + "updated_at": { + "type": "string" + } + }, + "type": "object" + }, + "models.SecretsSettings": { + "properties": { + "read_token_set": { + "type": "boolean" + }, + "rotated_at": { + "type": "string" + } + }, + "type": "object" + }, + "models.Server": { + "properties": { + "_id": { + "type": "string" + }, + "agent_version": { + "type": "string" + }, + "available_updates": { + "items": { + "$ref": "#/components/schemas/models.PackageUpdate" + }, + "type": "array", + "uniqueItems": false + }, + "console_protocols": { + "items": { + "type": "string" + }, + "type": "array", + "uniqueItems": false + }, + "created_at": { + "type": "string" + }, + "hostname": { + "type": "string" + }, + "instance_id": { + "type": "string" + }, + "inventory": { + "$ref": "#/components/schemas/models.Inventory" + }, + "ip_address": { + "type": "string" + }, + "last_seen": { + "type": "string" + }, + "os_info": { + "type": "string" + }, + "os_type": { + "type": "string" + }, + "pre_reg_expires": { + "type": "string" + }, + "pre_reg_token": { + "type": "string" + }, + "rdp_port": { + "type": "integer" + }, + "server_id": { + "type": "string" + }, + "ssh_port": { + "type": "integer" + }, + "status": { + "type": "string" + }, + "tags": { + "additionalProperties": { + "type": "string" + }, + "type": "object" + }, + "updates_checked_at": { + "type": "string" + } + }, + "type": "object" + }, + "models.ServerPackages": { + "properties": { + "collected_at": { + "type": "string" + }, + "db_version": { + "type": "integer" + }, + "hash": { + "type": "string" + }, + "os": { + "$ref": "#/components/schemas/models.OSRelease" + }, + "packages": { + "items": { + "$ref": "#/components/schemas/models.InstalledPackage" + }, + "type": "array", + "uniqueItems": false + }, + "scan_pending": { + "type": "boolean" + }, + "scanned_at": { + "type": "string" + }, + "server_id": { + "type": "string" + }, + "status": { + "description": "Status distinguishes a scanned host from one whose distribution we hold\nno feed for. Reporting zero findings for an unsupported distribution is\nindistinguishable from reporting a clean host, and one of those is a lie.", + "type": "string" + } + }, + "type": "object" + }, + "models.ServerRun": { + "properties": { + "finished_at": { + "type": "string" + }, + "hostname": { + "type": "string" + }, + "run_env": { + "additionalProperties": { + "type": "string" + }, + "type": "object" + }, + "server_id": { + "type": "string" + }, + "started_at": { + "type": "string" + }, + "status": { + "type": "string" + }, + "steps": { + "items": { + "$ref": "#/components/schemas/models.StepRun" + }, + "type": "array", + "uniqueItems": false + } + }, + "type": "object" + }, + "models.ServerWorkloads": { + "properties": { + "collected_at": { + "type": "string" + }, + "docker_error": { + "type": "string" + }, + "docker_ok": { + "description": "A host with no Docker and a host with Docker running nothing both produce\nan empty list. One should read \"not in use here\", the other \"nothing\nrunning\", and only the second deserves any alarm.\n\nThe error strings separate a third case the booleans cannot: installed\nwith the daemon down. \"Not installed\" and \"installed but not responding\"\nare different problems with different fixes.", + "type": "boolean" + }, + "hash": { + "type": "string" + }, + "server_id": { + "type": "string" + }, + "systemd_error": { + "type": "string" + }, + "systemd_ok": { + "type": "boolean" + }, + "workloads": { + "items": { + "$ref": "#/components/schemas/models.Workload" + }, + "type": "array", + "uniqueItems": false + } + }, + "type": "object" + }, + "models.Settings": { + "properties": { + "alerts": { + "$ref": "#/components/schemas/models.AlertSettings" + }, + "api_token_max_days": { + "description": "APITokenMaxDays caps how long a newly created API token may live.\n\nA pointer for the same reason the retention fields are: absent must mean\nthe default, and the default here is no cap at all — never-expire tokens\nare allowed until an instance decides otherwise, so an upgrade changes\nnothing. Nil or 0 is no cap. A positive value refuses both a longer\nexpiry and a token with no expiry.\n\nIt is a policy on issuance, not on use: raising or lowering it never\ninvalidates a token that already exists.", + "type": "integer" + }, + "instance_id": { + "type": "string" + }, + "local_login_enabled": { + "description": "LocalLoginEnabled is a pointer because it is absent on every settings\ndocument written before this feature existed, and a plain bool would read\nabsent as disabled — turning off password login for the entire fleet at\nupgrade. Nil means enabled.", + "type": "boolean" + }, + "secrets": { + "$ref": "#/components/schemas/models.SecretsSettings" + }, + "vuln_finding_retention_days": { + "description": "VulnFindingRetentionDays is a pointer for the same reason\nWorkflowLogRetentionDays is: absent must mean the default, not zero.\nNil is 90 days, 0 is forever. Only \"fixed\" findings are ever swept.", + "type": "integer" + }, + "workflow_log_retention_days": { + "type": "integer" + } + }, + "type": "object" + }, + "models.Skip": { + "properties": { + "at": { + "type": "string" + }, + "due": { + "type": "string" + }, + "reason": { + "description": "\"missed\" | \"already_running\"", + "type": "string" + } + }, + "type": "object" + }, + "models.StepOverride": { + "properties": { + "script": { + "type": "string" + }, + "secret_refs": { + "items": { + "type": "string" + }, + "type": "array", + "uniqueItems": false + } + }, + "type": "object" + }, + "models.StepRun": { + "properties": { + "attempts": { + "type": "integer" + }, + "exit_code": { + "type": "integer" + }, + "finished_at": { + "type": "string" + }, + "log_offset": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "order": { + "type": "integer" + }, + "output_env": { + "additionalProperties": { + "type": "string" + }, + "type": "object" + }, + "started_at": { + "type": "string" + }, + "status": { + "type": "string" + } + }, + "type": "object" + }, + "models.User": { + "properties": { + "_id": { + "type": "string" + }, + "auth_source": { + "type": "string" + }, + "created_at": { + "type": "string" + }, + "email": { + "type": "string" + }, + "hq_user_id": { + "description": "HQUserID is the customer_users.user_id this row was projected from,\nabsent on locally-created users.", + "type": "string" + }, + "instance_id": { + "type": "string" + }, + "last_login": { + "type": "string" + }, + "role": { + "type": "string" + }, + "user_id": { + "type": "string" + } + }, + "type": "object" + }, + "models.VulnAlertRule": { + "properties": { + "channel_ids": { + "items": { + "type": "string" + }, + "type": "array", + "uniqueItems": false + }, + "created_at": { + "type": "string" + }, + "enabled": { + "type": "boolean" + }, + "id": { + "type": "string" + }, + "min_severity": { + "type": "string" + }, + "name": { + "type": "string" + }, + "tags": { + "additionalProperties": { + "type": "string" + }, + "type": "object" + }, + "updated_at": { + "type": "string" + } + }, + "type": "object" + }, + "models.VulnFinding": { + "properties": { + "accepted": { + "$ref": "#/components/schemas/models.Acceptance" + }, + "cve_id": { + "type": "string" + }, + "cvss_score": { + "type": "number" + }, + "first_seen": { + "type": "string" + }, + "fixed_at": { + "type": "string" + }, + "fixed_in": { + "description": "FixedIn empty means no vendor fix has been published. That is a real and\ncommon state and must never be conflated with \"not vulnerable\" — it is\nthe finding most in need of acceptance, since there is nothing to patch.", + "type": "string" + }, + "id": { + "type": "string" + }, + "installed_version": { + "type": "string" + }, + "last_seen": { + "type": "string" + }, + "package_name": { + "type": "string" + }, + "references": { + "items": { + "type": "string" + }, + "type": "array", + "uniqueItems": false + }, + "server_id": { + "type": "string" + }, + "severity": { + "type": "string" + }, + "state": { + "type": "string" + }, + "title": { + "type": "string" + } + }, + "type": "object" + }, + "models.Workflow": { + "properties": { + "created_at": { + "type": "string" + }, + "instance_id": { + "type": "string" + }, + "last_run_at": { + "type": "string" + }, + "last_skipped": { + "$ref": "#/components/schemas/models.Skip" + }, + "name": { + "type": "string" + }, + "next_run_at": { + "type": "string" + }, + "schedule": { + "$ref": "#/components/schemas/models.Schedule" + }, + "steps": { + "items": { + "$ref": "#/components/schemas/models.WorkflowStepRef" + }, + "type": "array", + "uniqueItems": false + }, + "target_server_ids": { + "items": { + "type": "string" + }, + "type": "array", + "uniqueItems": false + }, + "target_tags": { + "additionalProperties": { + "type": "string" + }, + "type": "object" + }, + "updated_at": { + "type": "string" + }, + "workflow_id": { + "type": "string" + } + }, + "type": "object" + }, + "models.WorkflowRun": { + "properties": { + "finished_at": { + "type": "string" + }, + "instance_id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "run_id": { + "type": "string" + }, + "server_runs": { + "items": { + "$ref": "#/components/schemas/models.ServerRun" + }, + "type": "array", + "uniqueItems": false + }, + "started_at": { + "type": "string" + }, + "status": { + "type": "string" + }, + "steps_snapshot": { + "items": { + "$ref": "#/components/schemas/models.ResolvedStep" + }, + "type": "array", + "uniqueItems": false + }, + "triggered_by": { + "type": "string" + }, + "workflow_id": { + "type": "string" + } + }, + "type": "object" + }, + "models.WorkflowStep": { + "properties": { + "created_at": { + "type": "string" + }, + "declared_inputs": { + "items": { + "$ref": "#/components/schemas/models.InputParam" + }, + "type": "array", + "uniqueItems": false + }, + "declared_outputs": { + "items": { + "type": "string" + }, + "type": "array", + "uniqueItems": false + }, + "description": { + "type": "string" + }, + "instance_id": { + "type": "string" + }, + "interpreter": { + "type": "string" + }, + "name": { + "type": "string" + }, + "script": { + "type": "string" + }, + "secret_refs": { + "items": { + "type": "string" + }, + "type": "array", + "uniqueItems": false + }, + "slug": { + "type": "string" + }, + "source": { + "type": "string" + }, + "step_id": { + "type": "string" + }, + "updated_at": { + "type": "string" + } + }, + "type": "object" + }, + "models.WorkflowStepRef": { + "properties": { + "inline": { + "$ref": "#/components/schemas/models.WorkflowStep" + }, + "inputs": { + "additionalProperties": { + "type": "string" + }, + "type": "object" + }, + "max_retries": { + "type": "integer" + }, + "on_failure": { + "type": "string" + }, + "order": { + "type": "integer" + }, + "overrides": { + "$ref": "#/components/schemas/models.StepOverride" + }, + "step_id": { + "type": "string" + } + }, + "type": "object" + }, + "models.Workload": { + "properties": { + "health": { + "type": "string" + }, + "id": { + "description": "container id, or unit name", + "type": "string" + }, + "image": { + "type": "string" + }, + "kind": { + "description": "container | unit", + "type": "string" + }, + "name": { + "type": "string" + }, + "ports": { + "items": { + "type": "string" + }, + "type": "array", + "uniqueItems": false + }, + "protected": { + "description": "Protected is computed agent-side and reported so the UI can render the\naction disabled with a reason rather than offering a button whose refusal\nis already known. The field is the courtesy; the agent's own check is the\nboundary.", + "type": "boolean" + }, + "restarts": { + "type": "integer" + }, + "stack": { + "description": "compose project label", + "type": "string" + }, + "started_at": { + "type": "string" + }, + "state": { + "description": "State is deliberately NOT collapsed into a shared vocabulary across the\ntwo kinds. Containers report running/exited/paused/restarting/created;\nunits report active/inactive/failed/activating. A failed unit and an\nexited container mean different things, and flattening them loses the\ndistinction the operator needs.", + "type": "string" + } + }, + "type": "object" + }, + "services.PackageHit": { + "properties": { + "name": { + "type": "string" + }, + "server_id": { + "type": "string" + }, + "version": { + "type": "string" + } + }, + "type": "object" + }, + "services.WorkloadHit": { + "properties": { + "server_id": { + "type": "string" + }, + "workload": { + "$ref": "#/components/schemas/models.Workload" + } + }, + "type": "object" + } + }, + "securitySchemes": { + "cookieAuth": { + "description": "The External Secrets read token, rotated under Settings. It reaches /api/secrets/{group}/values and nothing else. It is a different credential from an API token, and the two must never be substituted for one another.", + "in": "header", + "name": "Authorization", + "type": "apiKey" + } + } + }, + "info": { + "description": "The Vantage control plane REST API. Authenticate with a browser session cookie, or with an API token created under Settings → API tokens.", + "title": "Vantage API", + "version": "1.0" + }, + "externalDocs": { + "description": "", + "url": "" + }, + "paths": { + "/agent/latest-version": { + "get": { + "description": "Reads the latest agent/v* tag from the Gitea release API.", + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.AgentVersionResponse" + } + } + }, + "description": "OK" + }, + "503": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Service Unavailable" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Get the latest agent version", + "tags": [ + "servers" + ] + } + }, + "/audit": { + "get": { + "description": "Every mutating API path writes an audit event. Paginated with a total, since a short page is not proof of the end of the log.", + "parameters": [ + { + "description": "Free-text search", + "in": "query", + "name": "q", + "schema": { + "type": "string" + } + }, + { + "description": "Filter by category", + "in": "query", + "name": "category", + "schema": { + "type": "string" + } + }, + { + "description": "Max events to return", + "in": "query", + "name": "limit", + "schema": { + "type": "integer" + } + }, + { + "description": "Events to skip", + "in": "query", + "name": "skip", + "schema": { + "type": "integer" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.AuditEventsResponse" + } + } + }, + "description": "OK" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "List audit events", + "tags": [ + "audit" + ] + } + }, + "/auth/presets": { + "get": { + "description": "Preset providers (Entra, Google, Okta, GitHub) that expand to a real issuer on save.", + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "items": { + "$ref": "#/components/schemas/auth.Preset" + }, + "type": "array" + } + } + }, + "description": "OK" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "List SSO presets", + "tags": [ + "auth-providers" + ] + } + }, + "/auth/providers": { + "get": { + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "items": { + "$ref": "#/components/schemas/api.authProviderView" + }, + "type": "array" + } + } + }, + "description": "OK" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "List SSO providers", + "tags": [ + "auth-providers" + ] + }, + "post": { + "requestBody": { + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "type": "object" + }, + { + "properties": { + "client_id": { + "type": "string" + }, + "client_secret": { + "type": "string" + }, + "enabled": { + "type": "boolean" + }, + "issuer_input": { + "type": "string" + }, + "name": { + "type": "string" + }, + "preset": { + "type": "string" + } + }, + "title": "body", + "type": "object" + } + ] + } + } + }, + "description": "Provider parameters", + "required": true + }, + "responses": { + "201": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.authProviderView" + } + } + }, + "description": "Created" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Create an SSO provider", + "tags": [ + "auth-providers" + ] + } + }, + "/auth/providers/{id}": { + "delete": { + "description": "Refused when the instance would be left with no way in (no local login and no other enabled provider).", + "parameters": [ + { + "description": "Provider ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.DeletedResponse" + } + } + }, + "description": "OK" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + }, + "409": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Conflict" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Delete an SSO provider", + "tags": [ + "auth-providers" + ] + }, + "put": { + "parameters": [ + { + "description": "Provider ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "type": "object" + }, + { + "properties": { + "client_id": { + "type": "string" + }, + "client_secret": { + "type": "string" + }, + "enabled": { + "type": "boolean" + }, + "issuer_input": { + "type": "string" + }, + "name": { + "type": "string" + }, + "order": { + "type": "integer" + } + }, + "title": "body", + "type": "object" + } + ] + } + } + }, + "description": "Fields to update", + "required": true + }, + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.SavedResponse" + } + } + }, + "description": "OK" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + }, + "409": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Conflict" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Update an SSO provider", + "tags": [ + "auth-providers" + ] + } + }, + "/auth/providers/{id}/ack-notice": { + "post": { + "parameters": [ + { + "description": "Provider ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.AcknowledgedResponse" + } + } + }, + "description": "OK" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Acknowledge a provider migration notice", + "tags": [ + "auth-providers" + ] + } + }, + "/auth/providers/{id}/test": { + "post": { + "description": "Proves the configuration is reachable. It signs nobody in.", + "parameters": [ + { + "description": "Provider ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.TestProviderResponse" + } + } + }, + "description": "OK" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Test an SSO provider's reachability", + "tags": [ + "auth-providers" + ] + } + }, + "/channels": { + "get": { + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "items": { + "$ref": "#/components/schemas/models.NotificationChannel" + }, + "type": "array" + } + } + }, + "description": "OK" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "List notification channels", + "tags": [ + "channels" + ] + }, + "post": { + "requestBody": { + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "type": "object" + }, + { + "$ref": "#/components/schemas/models.NotificationChannel", + "summary": "body", + "description": "Channel to create" + } + ] + } + } + }, + "description": "Channel to create", + "required": true + }, + "responses": { + "201": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/models.NotificationChannel" + } + } + }, + "description": "Created" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.LimitExceededResponse" + } + } + }, + "description": "Forbidden" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Create a notification channel", + "tags": [ + "channels" + ] + } + }, + "/channels/{id}": { + "delete": { + "parameters": [ + { + "description": "Channel ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "No Content" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Delete a notification channel", + "tags": [ + "channels" + ] + }, + "put": { + "parameters": [ + { + "description": "Channel ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "type": "object" + }, + { + "properties": { + "config": { + "additionalProperties": { + "type": "string" + }, + "type": "object" + }, + "enabled": { + "type": "boolean" + }, + "name": { + "type": "string" + }, + "type": { + "type": "string" + } + }, + "title": "body", + "type": "object" + } + ] + } + } + }, + "description": "Fields to update", + "required": true + }, + "responses": { + "204": { + "description": "No Content" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Update a notification channel", + "tags": [ + "channels" + ] + } + }, + "/channels/{id}/test": { + "post": { + "parameters": [ + { + "description": "Channel ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.StatusResponse" + } + } + }, + "description": "OK" + }, + "502": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Gateway" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Send a test notification", + "tags": [ + "channels" + ] + } + }, + "/console/connect": { + "post": { + "description": "Mints a one-time session token for the /console/tunnel websocket. Requires a live agent — answers 409 agent_offline otherwise.", + "requestBody": { + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "type": "object" + }, + { + "properties": { + "key_id": { + "type": "string" + }, + "protocol": { + "type": "string" + }, + "rdp_password": { + "type": "string" + }, + "rdp_username": { + "type": "string" + }, + "server_id": { + "type": "string" + }, + "ssh_username": { + "type": "string" + } + }, + "title": "body", + "type": "object" + } + ] + } + } + }, + "description": "Session parameters", + "required": true + }, + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ConsoleConnectResponse" + } + } + }, + "description": "OK" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + }, + "409": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Conflict" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Open a browser console session", + "tags": [ + "console" + ] + } + }, + "/console/tunnel": { + "get": { + "description": "Upgrades the browser's connection to a websocket and joins it to guacd, relayed through the agent. Consumes the one-time session token from /console/connect.", + "parameters": [ + { + "description": "One-time session token", + "in": "query", + "name": "token", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "101": { + "description": "Switching Protocols" + }, + "401": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Unauthorized" + }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Forbidden" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + }, + "409": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Conflict" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Console websocket tunnel", + "tags": [ + "console" + ] + } + }, + "/docs": { + "get": { + "description": "Renders the Scalar reference against this instance's own OpenAPI document.", + "responses": { + "200": { + "content": { + "text/html": { + "schema": { + "type": "string" + } + } + }, + "description": "HTML page" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "API reference page", + "tags": [ + "docs" + ] + } + }, + "/docs/scalar.js": { + "get": { + "description": "Served locally rather than from a CDN so the reference page works on an air-gapped install.", + "responses": { + "200": { + "content": { + "application/javascript": { + "schema": { + "type": "string" + } + } + }, + "description": "javascript bundle" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Get the vendored Scalar bundle", + "tags": [ + "docs" + ] + } + }, + "/install": { + "get": { + "description": "Dynamically generated shell script that downloads, verifies and installs the agent, seeded with a pre-registration token.", + "parameters": [ + { + "description": "Server ID", + "in": "query", + "name": "server_id", + "required": true, + "schema": { + "type": "string" + } + }, + { + "description": "Pre-registration token", + "in": "query", + "name": "token", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "text/plain": { + "schema": { + "type": "string" + } + } + }, + "description": "shell script" + } + }, + "summary": "Agent install script (Linux)", + "tags": [ + "install" + ] + } + }, + "/instance/users": { + "get": { + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "items": { + "$ref": "#/components/schemas/models.User" + }, + "type": "array" + } + } + }, + "description": "OK" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "List instance members", + "tags": [ + "instance-users" + ] + }, + "post": { + "description": "Only an owner can create another owner.", + "requestBody": { + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "type": "object" + }, + { + "properties": { + "email": { + "type": "string" + }, + "password": { + "type": "string" + }, + "role": { + "type": "string" + } + }, + "title": "body", + "type": "object" + } + ] + } + } + }, + "description": "New member", + "required": true + }, + "responses": { + "201": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/models.User" + } + } + }, + "description": "Created" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Forbidden" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Create an instance member", + "tags": [ + "instance-users" + ] + } + }, + "/instance/users/{id}": { + "delete": { + "description": "A caller cannot remove their own account. Only an owner can remove another owner.", + "parameters": [ + { + "description": "User ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.DeletedResponse" + } + } + }, + "description": "OK" + }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Forbidden" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + }, + "409": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Conflict" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Remove an instance member", + "tags": [ + "instance-users" + ] + } + }, + "/instance/users/{id}/role": { + "put": { + "description": "A caller cannot change their own role. Only an owner can change owner roles.", + "parameters": [ + { + "description": "User ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "type": "object" + }, + { + "properties": { + "role": { + "type": "string" + } + }, + "title": "body", + "type": "object" + } + ] + } + } + }, + "description": "New role", + "required": true + }, + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.OKResponse" + } + } + }, + "description": "OK" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Forbidden" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + }, + "409": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Conflict" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Change an instance member's role", + "tags": [ + "instance-users" + ] + } + }, + "/keys": { + "get": { + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "items": { + "$ref": "#/components/schemas/models.Key" + }, + "type": "array" + } + } + }, + "description": "OK" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "List keys", + "tags": [ + "keys" + ] + }, + "post": { + "requestBody": { + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "type": "object" + }, + { + "properties": { + "label": { + "type": "string" + }, + "passphrase": { + "type": "string" + }, + "private_key": { + "type": "string" + }, + "public_key": { + "type": "string" + } + }, + "title": "body", + "type": "object" + } + ] + } + } + }, + "description": "Key material", + "required": true + }, + "responses": { + "201": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/models.Key" + } + } + }, + "description": "Created" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Upload a key", + "tags": [ + "keys" + ] + } + }, + "/keys/{id}": { + "delete": { + "parameters": [ + { + "description": "Key ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.DeletedResponse" + } + } + }, + "description": "OK" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Delete a key", + "tags": [ + "keys" + ] + }, + "get": { + "description": "Returns a key together with the servers it is assigned to.", + "parameters": [ + { + "description": "Key ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.KeyDetailResponse" + } + } + }, + "description": "OK" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Get a key", + "tags": [ + "keys" + ] + } + }, + "/keys/{id}/assign": { + "post": { + "parameters": [ + { + "description": "Key ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "type": "object" + }, + { + "properties": { + "server_id": { + "type": "string" + } + }, + "title": "body", + "type": "object" + } + ] + } + } + }, + "description": "Target server", + "required": true + }, + "responses": { + "201": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/models.Assignment" + } + } + }, + "description": "Created" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Assign a key to a server", + "tags": [ + "keys" + ] + } + }, + "/keys/{id}/assign/{serverId}": { + "delete": { + "description": "Soft revocation: sets revoked_at rather than deleting, preserving audit history.", + "parameters": [ + { + "description": "Key ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + }, + { + "description": "Server ID", + "in": "path", + "name": "serverId", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.RevokedResponse" + } + } + }, + "description": "OK" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Revoke a key assignment", + "tags": [ + "keys" + ] + } + }, + "/keys/{id}/private-key": { + "get": { + "description": "Returns the decrypted private key. Reading is a keys:read action even though the material is sensitive.", + "parameters": [ + { + "description": "Key ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.PrivateKeyResponse" + } + } + }, + "description": "OK" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Get a key's private material", + "tags": [ + "keys" + ] + } + }, + "/license": { + "get": { + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.licenceResponse" + } + } + }, + "description": "OK" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Get this instance's licence state", + "tags": [ + "licence" + ] + }, + "post": { + "description": "Self-hosted only; a cloud instance's licence is injected by admin and this endpoint answers 409 cloud_managed. Exempt from the licence gate, since pasting a valid licence is the way out of degraded mode. Rate limited to 10 attempts per instance per hour.", + "requestBody": { + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "type": "object" + }, + { + "properties": { + "blob": { + "type": "string" + } + }, + "title": "body", + "type": "object" + } + ] + } + } + }, + "description": "Licence key blob", + "required": true + }, + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.LicencePostResponse" + } + } + }, + "description": "OK" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.LicenceErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "409": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.LicenceErrorResponse" + } + } + }, + "description": "Conflict" + }, + "429": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Too Many Requests" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Set this instance's licence", + "tags": [ + "licence" + ] + } + }, + "/monitors": { + "get": { + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "items": { + "$ref": "#/components/schemas/models.Monitor" + }, + "type": "array" + } + } + }, + "description": "OK" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "List monitors", + "tags": [ + "monitors" + ] + }, + "post": { + "requestBody": { + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "type": "object" + }, + { + "$ref": "#/components/schemas/models.Monitor", + "summary": "body", + "description": "Monitor to create" + } + ] + } + } + }, + "description": "Monitor to create", + "required": true + }, + "responses": { + "201": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/models.Monitor" + } + } + }, + "description": "Created" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.LimitExceededResponse" + } + } + }, + "description": "Forbidden" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Create a monitor", + "tags": [ + "monitors" + ] + } + }, + "/monitors/{id}": { + "delete": { + "parameters": [ + { + "description": "Monitor ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "204": { + "description": "No Content" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Delete a monitor", + "tags": [ + "monitors" + ] + }, + "get": { + "parameters": [ + { + "description": "Monitor ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/models.Monitor" + } + } + }, + "description": "OK" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Get a monitor", + "tags": [ + "monitors" + ] + }, + "put": { + "parameters": [ + { + "description": "Monitor ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "type": "object" + }, + { + "properties": { + "channel_ids": { + "items": { + "type": "string" + }, + "type": "array" + }, + "enabled": { + "type": "boolean" + }, + "interval_sec": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "retries": { + "type": "integer" + }, + "runner": { + "type": "string" + }, + "target": { + "$ref": "#/components/schemas/models.MonitorTarget" + }, + "type": { + "type": "string" + } + }, + "title": "body", + "type": "object" + } + ] + } + } + }, + "description": "Fields to update", + "required": true + }, + "responses": { + "204": { + "description": "No Content" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Update a monitor", + "tags": [ + "monitors" + ] + } + }, + "/monitors/{id}/incidents": { + "get": { + "parameters": [ + { + "description": "Monitor ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "items": { + "$ref": "#/components/schemas/models.Incident" + }, + "type": "array" + } + } + }, + "description": "OK" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "List a monitor's incidents", + "tags": [ + "monitors" + ] + } + }, + "/monitors/{id}/uptime": { + "get": { + "description": "Hourly rollups for the last 30 days.", + "parameters": [ + { + "description": "Monitor ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "items": { + "$ref": "#/components/schemas/models.Rollup" + }, + "type": "array" + } + } + }, + "description": "OK" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Get a monitor's uptime rollups", + "tags": [ + "monitors" + ] + } + }, + "/openapi.json": { + "get": { + "description": "Generated from swaggo annotations at build time and committed; served verbatim.", + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "additionalProperties": {}, + "type": "object" + } + } + }, + "description": "OK" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Get the OpenAPI document", + "tags": [ + "docs" + ] + } + }, + "/packages/search": { + "get": { + "parameters": [ + { + "description": "Package name", + "in": "query", + "name": "name", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "items": { + "$ref": "#/components/schemas/services.PackageHit" + }, + "type": "array" + } + } + }, + "description": "OK" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Search packages fleet-wide", + "tags": [ + "vulnerabilities" + ] + } + }, + "/runs/{runId}": { + "get": { + "parameters": [ + { + "description": "Run ID", + "in": "path", + "name": "runId", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/models.WorkflowRun" + } + } + }, + "description": "OK" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Get a run", + "tags": [ + "workflows" + ] + } + }, + "/runs/{runId}/cancel": { + "post": { + "parameters": [ + { + "description": "Run ID", + "in": "path", + "name": "runId", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.CancelledResponse" + } + } + }, + "description": "OK" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Cancel a run", + "tags": [ + "workflows" + ] + } + }, + "/runs/{runId}/servers/{serverId}/logs": { + "get": { + "description": "Streams the stored log in pages rather than loading it whole; capped at 200k lines per server-run.", + "parameters": [ + { + "description": "Run ID", + "in": "path", + "name": "runId", + "required": true, + "schema": { + "type": "string" + } + }, + { + "description": "Server ID", + "in": "path", + "name": "serverId", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "text/plain": { + "schema": { + "type": "string" + } + } + }, + "description": "plain-text log" + }, + "400": { + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "404": { + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Get a run's log for one server", + "tags": [ + "workflows" + ] + } + }, + "/runs/{runId}/servers/{serverId}/logs/stream": { + "get": { + "description": "Server-sent events; sends new lines every 500ms until the server's run reaches a terminal state.", + "parameters": [ + { + "description": "Run ID", + "in": "path", + "name": "runId", + "required": true, + "schema": { + "type": "string" + } + }, + { + "description": "Server ID", + "in": "path", + "name": "serverId", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "text/event-stream": { + "schema": { + "type": "string" + } + } + }, + "description": "text/event-stream" + }, + "400": { + "content": { + "text/event-stream": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "500": { + "content": { + "text/event-stream": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Stream a run's log for one server (SSE)", + "tags": [ + "workflows" + ] + } + }, + "/secrets": { + "get": { + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "items": { + "$ref": "#/components/schemas/models.GroupSummary" + }, + "type": "array" + } + } + }, + "description": "OK" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "List secret groups", + "tags": [ + "secrets" + ] + }, + "post": { + "requestBody": { + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "type": "object" + }, + { + "properties": { + "group": { + "type": "string" + }, + "values": { + "additionalProperties": { + "type": "string" + }, + "type": "object" + } + }, + "title": "body", + "type": "object" + } + ] + } + } + }, + "description": "Group and its initial key/value pairs", + "required": true + }, + "responses": { + "201": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.GroupResponse" + } + } + }, + "description": "Created" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.LimitExceededResponse" + } + } + }, + "description": "Forbidden" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Create a secret group", + "tags": [ + "secrets" + ] + } + }, + "/secrets/{group}": { + "delete": { + "parameters": [ + { + "description": "Secret group name", + "in": "path", + "name": "group", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.DeletedResponse" + } + } + }, + "description": "OK" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Delete a secret group", + "tags": [ + "secrets" + ] + }, + "get": { + "description": "Returns the group's key metadata, not decrypted values. See POST /secrets/{group}/reveal for a value.", + "parameters": [ + { + "description": "Secret group name", + "in": "path", + "name": "group", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.SecretGroupResponse" + } + } + }, + "description": "OK" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Get a secret group's keys", + "tags": [ + "secrets" + ] + }, + "put": { + "parameters": [ + { + "description": "Secret group name", + "in": "path", + "name": "group", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "type": "object" + }, + { + "additionalProperties": { + "type": "string" + }, + "title": "body", + "type": "object" + } + ] + } + } + }, + "description": "Key/value pairs", + "required": true + }, + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.SavedResponse" + } + } + }, + "description": "OK" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.LimitExceededResponse" + } + } + }, + "description": "Forbidden" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Replace a secret group's keys", + "tags": [ + "secrets" + ] + } + }, + "/secrets/{group}/reveal": { + "post": { + "parameters": [ + { + "description": "Secret group name", + "in": "path", + "name": "group", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "type": "object" + }, + { + "properties": { + "key": { + "type": "string" + } + }, + "title": "body", + "type": "object" + } + ] + } + } + }, + "description": "Key to reveal", + "required": true + }, + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.RevealSecretResponse" + } + } + }, + "description": "OK" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Reveal a secret value", + "tags": [ + "secrets" + ] + } + }, + "/secrets/{group}/values": { + "get": { + "description": "Consumed by Kubernetes External Secrets Operator. Authenticated with a bearer token whose SHA-256 hash is stored in settings — a different credential from an API token, never substitutable for one.", + "parameters": [ + { + "description": "Secret group name", + "in": "path", + "name": "group", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "additionalProperties": { + "type": "string" + }, + "type": "object" + } + } + }, + "description": "OK" + }, + "401": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Unauthorized" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "esoAuth": [] + } + ], + "summary": "Read a secret group's values (ESO)", + "tags": [ + "secrets" + ] + } + }, + "/secrets/{group}/{key}": { + "delete": { + "parameters": [ + { + "description": "Secret group name", + "in": "path", + "name": "group", + "required": true, + "schema": { + "type": "string" + } + }, + { + "description": "Key name", + "in": "path", + "name": "key", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.DeletedResponse" + } + } + }, + "description": "OK" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Delete a key from a secret group", + "tags": [ + "secrets" + ] + } + }, + "/servers": { + "get": { + "description": "Returns every server in the instance, optionally filtered by tag (repeatable, key:value).", + "parameters": [ + { + "description": "Filter by tag as key:value, repeatable", + "in": "query", + "name": "tag", + "schema": { + "items": { + "type": "string" + }, + "type": "array" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "items": { + "$ref": "#/components/schemas/models.Server" + }, + "type": "array" + } + } + }, + "description": "OK" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "List servers", + "tags": [ + "servers" + ] + }, + "post": { + "description": "Creates a server record and a single-use pre-registration token (TTL 1 hour).", + "responses": { + "201": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.CreateServerResponse" + } + } + }, + "description": "Created" + }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.LimitExceededResponse" + } + } + }, + "description": "Forbidden" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Add a server", + "tags": [ + "servers" + ] + } + }, + "/servers/new": { + "get": { + "description": "Identical to POST /servers; also reachable by GET for the install page. Mints a new pre-registration token.", + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.NewServerResponse" + } + } + }, + "description": "OK" + }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.LimitExceededResponse" + } + } + }, + "description": "Forbidden" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Add a server (install page)", + "tags": [ + "servers" + ] + }, + "post": { + "description": "Identical to POST /servers; also reachable by GET for the install page. Mints a new pre-registration token.", + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.NewServerResponse" + } + } + }, + "description": "OK" + }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.LimitExceededResponse" + } + } + }, + "description": "Forbidden" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Add a server (install page)", + "tags": [ + "servers" + ] + } + }, + "/servers/tags": { + "get": { + "description": "Returns every tag key currently used by any server, with the values seen for each.", + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "additionalProperties": { + "items": { + "type": "string" + }, + "type": "array" + }, + "type": "object" + } + } + }, + "description": "OK" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "List known tags", + "tags": [ + "servers" + ] + } + }, + "/servers/{id}": { + "delete": { + "parameters": [ + { + "description": "Server ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.DeletedResponse" + } + } + }, + "description": "OK" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Delete a server", + "tags": [ + "servers" + ] + }, + "get": { + "description": "Returns a server together with its resolved key assignments.", + "parameters": [ + { + "description": "Server ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ServerDetailResponse" + } + } + }, + "description": "OK" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Get a server", + "tags": [ + "servers" + ] + } + }, + "/servers/{id}/apply-updates": { + "post": { + "description": "Dispatches ApplyUpdatesCmd. Exempt from the licence gate: security patching is never paywalled.", + "parameters": [ + { + "description": "Server ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "202": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.MessageResponse" + } + } + }, + "description": "Accepted" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + }, + "503": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Service Unavailable" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Apply pending OS updates on a server", + "tags": [ + "servers" + ] + } + }, + "/servers/{id}/generate-key": { + "post": { + "description": "Dispatches an agent command that generates a keypair on the target server and reports it back.", + "parameters": [ + { + "description": "Server ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "type": "object" + }, + { + "properties": { + "comment": { + "type": "string" + }, + "key_size": { + "type": "integer" + }, + "key_type": { + "type": "string" + }, + "label": { + "type": "string" + }, + "passphrase": { + "type": "string" + } + }, + "title": "body", + "type": "object" + } + ] + } + } + }, + "description": "Key generation parameters" + }, + "responses": { + "202": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.GenerateKeyResponse" + } + } + }, + "description": "Accepted" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + }, + "503": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Service Unavailable" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Generate a key on a server", + "tags": [ + "keys" + ] + } + }, + "/servers/{id}/packages": { + "get": { + "description": "A server that has not reported yet answers reported=false rather than 404 — that is the normal state for the first hour after install.", + "parameters": [ + { + "description": "Server ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/models.ServerPackages" + } + } + }, + "description": "OK" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Get a server's package inventory", + "tags": [ + "vulnerabilities" + ] + } + }, + "/servers/{id}/tags": { + "put": { + "description": "Replaces the whole tag map for a server. Last write wins.", + "parameters": [ + { + "description": "Server ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "type": "object" + }, + { + "properties": { + "tags": { + "additionalProperties": { + "type": "string" + }, + "type": "object" + } + }, + "title": "body", + "type": "object" + } + ] + } + } + }, + "description": "New tag map", + "required": true + }, + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.TagsResponse" + } + } + }, + "description": "OK" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Replace a server's tags", + "tags": [ + "servers" + ] + } + }, + "/servers/{id}/update-agent": { + "post": { + "description": "Dispatches UpdateAgentCmd to the agent, telling it to download and replace itself.", + "parameters": [ + { + "description": "Server ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "202": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.UpdateAgentResponse" + } + } + }, + "description": "Accepted" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + }, + "503": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Service Unavailable" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Update a server's agent", + "tags": [ + "servers" + ] + } + }, + "/servers/{id}/vulnerabilities": { + "get": { + "parameters": [ + { + "description": "Server ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "items": { + "$ref": "#/components/schemas/models.VulnFinding" + }, + "type": "array" + } + } + }, + "description": "OK" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "List a server's vulnerabilities", + "tags": [ + "vulnerabilities" + ] + } + }, + "/servers/{id}/workloads": { + "get": { + "description": "Returns the stored snapshot. A server that has never reported answers an empty list, not 404.", + "parameters": [ + { + "description": "Server ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/models.ServerWorkloads" + } + } + }, + "description": "OK" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Get a server's workload snapshot", + "tags": [ + "workloads" + ] + } + }, + "/servers/{id}/workloads/refresh": { + "post": { + "description": "Nudges the agent to report now. Returns no data; the client refetches once the agent has written it.", + "parameters": [ + { + "description": "Server ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "202": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.MessageResponse" + } + } + }, + "description": "Accepted" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + }, + "503": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Service Unavailable" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Request a fresh workload report", + "tags": [ + "workloads" + ] + } + }, + "/servers/{id}/workloads/{wid}/action": { + "post": { + "description": "Owner and admin only. The protected set (vantage-agent.service and the agent's own container) is enforced agent-side and answers 409, not an error.", + "parameters": [ + { + "description": "Server ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + }, + { + "description": "Workload ID", + "in": "path", + "name": "wid", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "type": "object" + }, + { + "properties": { + "action": { + "type": "string" + }, + "kind": { + "type": "string" + } + }, + "title": "body", + "type": "object" + } + ] + } + } + }, + "description": "Action (start/stop/restart) and kind (container/unit)", + "required": true + }, + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.MessageResponse" + } + } + }, + "description": "OK" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + }, + "409": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Conflict" + }, + "502": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Gateway" + }, + "503": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Service Unavailable" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Start, stop or restart a workload", + "tags": [ + "workloads" + ] + } + }, + "/servers/{id}/workloads/{wid}/logs": { + "get": { + "description": "Owner and admin only, and audited: container output is arbitrary and cannot be masked. Capped at 500 lines and 256KB, whichever binds first.", + "parameters": [ + { + "description": "Server ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + }, + { + "description": "Workload ID", + "in": "path", + "name": "wid", + "required": true, + "schema": { + "type": "string" + } + }, + { + "description": "container or unit (default container)", + "in": "query", + "name": "kind", + "schema": { + "type": "string" + } + }, + { + "description": "Lines to return, clamped to the cap", + "in": "query", + "name": "tail", + "schema": { + "type": "integer" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.WorkloadLogsResponse" + } + } + }, + "description": "OK" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + }, + "502": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Gateway" + }, + "503": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Service Unavailable" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Read a workload's logs", + "tags": [ + "workloads" + ] + } + }, + "/settings": { + "get": { + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/models.Settings" + } + } + }, + "description": "OK" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Get instance settings", + "tags": [ + "settings" + ] + }, + "put": { + "description": "Owner and admin only. Refuses a change that would leave neither local login nor an enabled auth provider.", + "requestBody": { + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "type": "object" + }, + { + "properties": { + "alerts": { + "$ref": "#/components/schemas/models.AlertSettings" + }, + "api_token_max_days": { + "type": "integer" + }, + "local_login_enabled": { + "type": "boolean" + }, + "workflow_log_retention_days": { + "type": "integer" + } + }, + "title": "body", + "type": "object" + } + ] + } + } + }, + "description": "Settings to save", + "required": true + }, + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.SavedResponse" + } + } + }, + "description": "OK" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "409": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Conflict" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Save instance settings", + "tags": [ + "settings" + ] + } + }, + "/settings/secrets-token": { + "post": { + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.SecretsTokenResponse" + } + } + }, + "description": "OK" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Rotate the ESO read token", + "tags": [ + "settings" + ] + } + }, + "/steps": { + "get": { + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "items": { + "$ref": "#/components/schemas/models.WorkflowStep" + }, + "type": "array" + } + } + }, + "description": "OK" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "List workflow steps", + "tags": [ + "workflows" + ] + }, + "post": { + "requestBody": { + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "type": "object" + }, + { + "$ref": "#/components/schemas/models.WorkflowStep", + "summary": "body", + "description": "Step to create" + } + ] + } + } + }, + "description": "Step to create", + "required": true + }, + "responses": { + "201": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/models.WorkflowStep" + } + } + }, + "description": "Created" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Create a workflow step", + "tags": [ + "workflows" + ] + } + }, + "/steps/import": { + "post": { + "requestBody": { + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "type": "object" + }, + { + "$ref": "#/components/schemas/models.WorkflowStep", + "summary": "body", + "description": "Exported step document" + } + ] + } + } + }, + "description": "Exported step document", + "required": true + }, + "responses": { + "201": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/models.WorkflowStep" + } + } + }, + "description": "Created" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Import a step from an exported JSON document", + "tags": [ + "workflows" + ] + } + }, + "/steps/parse": { + "post": { + "requestBody": { + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "type": "object" + }, + { + "$ref": "#/components/schemas/models.WorkflowStep", + "summary": "body", + "description": "Step document to parse" + } + ] + } + } + }, + "description": "Step document to parse", + "required": true + }, + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/models.WorkflowStep" + } + } + }, + "description": "OK" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Parse a step document without saving it", + "tags": [ + "workflows" + ] + } + }, + "/steps/seed-defaults": { + "post": { + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.SeedDefaultsResponse" + } + } + }, + "description": "OK" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Sync the default step library", + "tags": [ + "workflows" + ] + } + }, + "/steps/usage": { + "get": { + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "additionalProperties": { + "type": "integer" + }, + "type": "object" + } + } + }, + "description": "OK" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Count workflows using each step", + "tags": [ + "workflows" + ] + } + }, + "/steps/{id}": { + "delete": { + "description": "A step with source \"default\" is read-only and refuses with 409.", + "parameters": [ + { + "description": "Step ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.DeletedResponse" + } + } + }, + "description": "OK" + }, + "409": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Conflict" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Delete a workflow step", + "tags": [ + "workflows" + ] + }, + "put": { + "description": "A step with source \"default\" is read-only and refuses with 409, because seeding rewrites it on every boot.", + "parameters": [ + { + "description": "Step ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "type": "object" + }, + { + "$ref": "#/components/schemas/models.WorkflowStep", + "summary": "body", + "description": "Step fields" + } + ] + } + } + }, + "description": "Step fields", + "required": true + }, + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.UpdatedResponse" + } + } + }, + "description": "OK" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "409": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Conflict" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Update a workflow step", + "tags": [ + "workflows" + ] + } + }, + "/steps/{id}/export": { + "get": { + "parameters": [ + { + "description": "Step ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/models.WorkflowStep" + } + } + }, + "description": "OK" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Export a step as a downloadable JSON document", + "tags": [ + "workflows" + ] + } + }, + "/tokens": { + "get": { + "description": "Returns the caller's own tokens. Owner and admin may pass all=true to see every token in the instance.", + "parameters": [ + { + "description": "Include every token in the instance (owner and admin only)", + "in": "query", + "name": "all", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ListTokensResponse" + } + } + }, + "description": "OK" + }, + "401": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Unauthorized" + }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Forbidden" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "List API tokens", + "tags": [ + "tokens" + ] + }, + "post": { + "description": "The plaintext token is returned exactly once and stored nowhere. A token's role and scopes cannot exceed the creator's own.", + "requestBody": { + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "type": "object" + }, + { + "$ref": "#/components/schemas/api.CreateTokenRequest", + "summary": "body", + "description": "Token parameters" + } + ] + } + } + }, + "description": "Token parameters", + "required": true + }, + "responses": { + "201": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.CreateTokenResponse" + } + } + }, + "description": "Created" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Forbidden" + }, + "409": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Conflict" + }, + "422": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Unprocessable Entity" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Create an API token", + "tags": [ + "tokens" + ] + } + }, + "/tokens/scopes": { + "get": { + "description": "Advertises the scope vocabulary so the UI never hardcodes it.", + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.TokenScopesResponse" + } + } + }, + "description": "OK" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "List available token scopes", + "tags": [ + "tokens" + ] + } + }, + "/tokens/{id}": { + "delete": { + "parameters": [ + { + "description": "Token ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.RevokedResponse" + } + } + }, + "description": "OK" + }, + "401": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Unauthorized" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Revoke an API token", + "tags": [ + "tokens" + ] + } + }, + "/update": { + "get": { + "description": "Dynamically generated shell script that downloads and installs the latest agent.", + "responses": { + "200": { + "content": { + "text/plain": { + "schema": { + "type": "string" + } + } + }, + "description": "shell script" + } + }, + "summary": "Agent update script (Linux)", + "tags": [ + "install" + ] + } + }, + "/vuln-rules": { + "get": { + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "items": { + "$ref": "#/components/schemas/models.VulnAlertRule" + }, + "type": "array" + } + } + }, + "description": "OK" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "List vulnerability alert rules", + "tags": [ + "vulnerabilities" + ] + }, + "post": { + "requestBody": { + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "type": "object" + }, + { + "$ref": "#/components/schemas/models.VulnAlertRule", + "summary": "body", + "description": "Rule to create" + } + ] + } + } + }, + "description": "Rule to create", + "required": true + }, + "responses": { + "201": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/models.VulnAlertRule" + } + } + }, + "description": "Created" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Create a vulnerability alert rule", + "tags": [ + "vulnerabilities" + ] + } + }, + "/vuln-rules/{id}": { + "delete": { + "parameters": [ + { + "description": "Rule ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.StatusResponse" + } + } + }, + "description": "OK" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Delete a vulnerability alert rule", + "tags": [ + "vulnerabilities" + ] + }, + "put": { + "parameters": [ + { + "description": "Rule ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "type": "object" + }, + { + "$ref": "#/components/schemas/models.VulnAlertRule", + "summary": "body", + "description": "Rule fields" + } + ] + } + } + }, + "description": "Rule fields", + "required": true + }, + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.StatusResponse" + } + } + }, + "description": "OK" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Update a vulnerability alert rule", + "tags": [ + "vulnerabilities" + ] + } + }, + "/vulnerabilities": { + "get": { + "description": "Groups findings by CVE, most severe first — the same CVE on forty servers is one decision, not forty rows.", + "parameters": [ + { + "description": "Filter by severity", + "in": "query", + "name": "severity", + "schema": { + "type": "string" + } + }, + { + "description": "Filter by state (default open)", + "in": "query", + "name": "state", + "schema": { + "type": "string" + } + }, + { + "description": "Filter by server ID", + "in": "query", + "name": "server", + "schema": { + "type": "string" + } + }, + { + "description": "Filter by tag as key:value, repeatable", + "in": "query", + "name": "tag", + "schema": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + { + "description": "Filter by whether a vendor fix exists", + "in": "query", + "name": "has_fix", + "schema": { + "type": "boolean" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "items": { + "$ref": "#/components/schemas/api.vulnGroup" + }, + "type": "array" + } + } + }, + "description": "OK" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "List vulnerabilities", + "tags": [ + "vulnerabilities" + ] + } + }, + "/vulnerabilities/rescan": { + "post": { + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.QueuedResponse" + } + } + }, + "description": "OK" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Queue the fleet for a vulnerability rescan", + "tags": [ + "vulnerabilities" + ] + } + }, + "/vulnerabilities/summary": { + "get": { + "description": "Counts travel with the database version and pull time, since a fleet scanned against a stale database must say so wherever its findings are read.", + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.VulnSummaryResponse" + } + } + }, + "description": "OK" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Get vulnerability counts and database freshness", + "tags": [ + "vulnerabilities" + ] + } + }, + "/vulnerabilities/{id}/accept": { + "delete": { + "parameters": [ + { + "description": "Finding ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/models.VulnFinding" + } + } + }, + "description": "OK" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Return an accepted finding to open", + "tags": [ + "vulnerabilities" + ] + }, + "post": { + "description": "Requires a reason and a future expiry. Reopens automatically at expiry — permanent dismissal is never allowed.", + "parameters": [ + { + "description": "Finding ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "type": "object" + }, + { + "$ref": "#/components/schemas/api.acceptFindingRequest", + "summary": "body", + "description": "Reason and expiry" + } + ] + } + } + }, + "description": "Reason and expiry", + "required": true + }, + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/models.VulnFinding" + } + } + }, + "description": "OK" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Accept a finding", + "tags": [ + "vulnerabilities" + ] + } + }, + "/workflows": { + "get": { + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "items": { + "$ref": "#/components/schemas/models.Workflow" + }, + "type": "array" + } + } + }, + "description": "OK" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "List workflows", + "tags": [ + "workflows" + ] + }, + "post": { + "requestBody": { + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "type": "object" + }, + { + "$ref": "#/components/schemas/models.Workflow", + "summary": "body", + "description": "Workflow to create" + } + ] + } + } + }, + "description": "Workflow to create", + "required": true + }, + "responses": { + "201": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/models.Workflow" + } + } + }, + "description": "Created" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Create a workflow", + "tags": [ + "workflows" + ] + } + }, + "/workflows/{id}": { + "delete": { + "parameters": [ + { + "description": "Workflow ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.DeletedResponse" + } + } + }, + "description": "OK" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Delete a workflow", + "tags": [ + "workflows" + ] + }, + "get": { + "parameters": [ + { + "description": "Workflow ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/models.Workflow" + } + } + }, + "description": "OK" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Get a workflow", + "tags": [ + "workflows" + ] + }, + "put": { + "parameters": [ + { + "description": "Workflow ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "type": "object" + }, + { + "$ref": "#/components/schemas/models.Workflow", + "summary": "body", + "description": "Workflow fields" + } + ] + } + } + }, + "description": "Workflow fields", + "required": true + }, + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/models.Workflow" + } + } + }, + "description": "OK" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Update a workflow", + "tags": [ + "workflows" + ] + } + }, + "/workflows/{id}/run": { + "post": { + "description": "Snapshots the resolved steps into a WorkflowRun and dispatches to every targeted server.", + "parameters": [ + { + "description": "Workflow ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "202": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.RunWorkflowResponse" + } + } + }, + "description": "Accepted" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "503": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Service Unavailable" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Run a workflow", + "tags": [ + "workflows" + ] + } + }, + "/workflows/{id}/runs": { + "get": { + "parameters": [ + { + "description": "Workflow ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + }, + { + "description": "Max runs to return (default 50)", + "in": "query", + "name": "limit", + "schema": { + "type": "integer" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "items": { + "$ref": "#/components/schemas/models.WorkflowRun" + }, + "type": "array" + } + } + }, + "description": "OK" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "List a workflow's runs", + "tags": [ + "workflows" + ] + } + }, + "/workflows/{id}/schedule": { + "put": { + "description": "Standard 5-field cron and an IANA zone, both validated at save time.", + "parameters": [ + { + "description": "Workflow ID", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "type": "object" + }, + { + "$ref": "#/components/schemas/models.Schedule", + "summary": "body", + "description": "Schedule" + } + ] + } + } + }, + "description": "Schedule", + "required": true + }, + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ScheduleResponse" + } + } + }, + "description": "OK" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Not Found" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Set a workflow's schedule", + "tags": [ + "workflows" + ] + } + }, + "/workflows/{id}/schedule/preview": { + "get": { + "description": "Exists so the browser and the scheduler agree on what a cron string means.", + "parameters": [ + { + "description": "5-field cron expression", + "in": "query", + "name": "cron", + "required": true, + "schema": { + "type": "string" + } + }, + { + "description": "IANA time zone name", + "in": "query", + "name": "tz", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.OccurrencesResponse" + } + } + }, + "description": "OK" + }, + "400": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Bad Request" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Preview the next occurrences of a cron schedule", + "tags": [ + "workflows" + ] + } + }, + "/workloads": { + "get": { + "description": "Answers the fleet-wide question, which is the reason the snapshot is stored rather than fetched on demand and discarded.", + "parameters": [ + { + "description": "Filter by image name", + "in": "query", + "name": "image", + "schema": { + "type": "string" + } + }, + { + "description": "Filter by compose stack", + "in": "query", + "name": "stack", + "schema": { + "type": "string" + } + }, + { + "description": "Filter by state", + "in": "query", + "name": "state", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "items": { + "$ref": "#/components/schemas/services.WorkloadHit" + }, + "type": "array" + } + } + }, + "description": "OK" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/api.ErrorResponse" + } + } + }, + "description": "Internal Server Error" + } + }, + "security": [ + { + "cookieAuth": [] + }, + { + "bearerAuth": [] + } + ], + "summary": "Search workloads fleet-wide", + "tags": [ + "workloads" + ] + } + } + }, + "openapi": "3.1.0", + "servers": [ + { + "url": "/api" + } + ] +} \ No newline at end of file diff --git a/server/internal/api/docs/scalar.standalone.js b/server/internal/api/docs/scalar.standalone.js new file mode 100644 index 0000000..715edc0 --- /dev/null +++ b/server/internal/api/docs/scalar.standalone.js @@ -0,0 +1,2384 @@ +/** + * _____ _________ __ ___ ____ + * / ___// ____/ | / / / | / __ \ + * \__ \/ / / /| | / / / /| | / /_/ / + * ___/ / /___/ ___ |/ /___/ ___ |/ _, _/ + * /____/\____/_/ |_/_____/_/ |_/_/ |_| + * + * @scalar/api-reference 1.64.1 + * + * Website: https://scalar.com + * GitHub: https://github.com/scalar/scalar + * License: https://github.com/scalar/scalar/blob/main/LICENSE +**/ + +(function(){try{if(typeof document<`u`){var e=document.createElement(`style`);e.nonce=document.head.querySelector(`meta[property=csp-nonce]`)?.content,e.setAttribute(`id`,`scalar-style`),e.appendChild(document.createTextNode(`/*! tailwindcss v4.3.3 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-font-weight:initial;--tw-border-style:solid;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-backdrop-blur:initial;--tw-backdrop-brightness:initial;--tw-backdrop-contrast:initial;--tw-backdrop-grayscale:initial;--tw-backdrop-hue-rotate:initial;--tw-backdrop-invert:initial;--tw-backdrop-opacity:initial;--tw-backdrop-saturate:initial;--tw-backdrop-sepia:initial;--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-scale-x:1;--tw-scale-y:1;--tw-scale-z:1;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-space-x-reverse:0;--tw-divide-y-reverse:0;--tw-gradient-position:initial;--tw-gradient-from:#0000;--tw-gradient-via:#0000;--tw-gradient-to:#0000;--tw-gradient-stops:initial;--tw-gradient-via-stops:initial;--tw-gradient-from-position:0%;--tw-gradient-via-position:50%;--tw-gradient-to-position:100%;--tw-mask-linear:linear-gradient(#fff, #fff);--tw-mask-radial:linear-gradient(#fff, #fff);--tw-mask-conic:linear-gradient(#fff, #fff);--tw-mask-left:linear-gradient(#fff, #fff);--tw-mask-right:linear-gradient(#fff, #fff);--tw-mask-bottom:linear-gradient(#fff, #fff);--tw-mask-top:linear-gradient(#fff, #fff);--tw-mask-top-from-position:0%;--tw-mask-top-to-position:100%;--tw-mask-top-from-color:black;--tw-mask-top-to-color:transparent;--tw-mask-bottom-from-position:0%;--tw-mask-bottom-to-position:100%;--tw-mask-bottom-from-color:black;--tw-mask-bottom-to-color:transparent;--tw-leading:initial;--tw-ordinal:initial;--tw-slashed-zero:initial;--tw-numeric-figure:initial;--tw-numeric-spacing:initial;--tw-numeric-fraction:initial;--tw-outline-style:solid;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-duration:initial;--tw-ease:initial;--tw-content:""}[data-v-0aba6db2],[data-v-0aba6db2]:before,[data-v-0aba6db2]:after,[data-v-0aba6db2]::backdrop{--tw-outline-style:solid}}}@layer scalar-base{body{line-height:inherit;margin:0}:root{--scalar-border-width:.5px;--scalar-radius:3px;--scalar-radius-max:20px;--scalar-radius-md:min(var(--scalar-radius), var(--scalar-radius-max));--scalar-radius-lg:min(calc(var(--scalar-radius) * 2), var(--scalar-radius-max));--scalar-radius-xl:min(calc(var(--scalar-radius) * 8 / 3), var(--scalar-radius-max));--scalar-radius-2xl:min(calc(var(--scalar-radius) * 4), var(--scalar-radius-max));--scalar-radius-3xl:min(calc(var(--scalar-radius) * 16 / 3), var(--scalar-radius-max));--scalar-radius-full:calc(var(--scalar-radius) * 9999);--scalar-font:"Inter", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--scalar-font-code:"JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--scalar-heading-1:24px;--scalar-page-description:16px;--scalar-heading-2:20px;--scalar-heading-3:16px;--scalar-heading-4:16px;--scalar-heading-5:16px;--scalar-heading-6:16px;--scalar-paragraph:16px;--scalar-small:14px;--scalar-mini:13px;--scalar-micro:12px;--scalar-bold:600;--scalar-semibold:500;--scalar-regular:400;--scalar-font-size-1:21px;--scalar-font-size-2:16px;--scalar-font-size-3:14px;--scalar-font-size-4:13px;--scalar-font-size-5:12px;--scalar-font-size-6:12px;--scalar-font-size-7:10px;--scalar-line-height-1:32px;--scalar-line-height-2:24px;--scalar-line-height-3:20px;--scalar-line-height-4:18px;--scalar-line-height-5:16px;--scalar-font-normal:400;--scalar-font-medium:500;--scalar-font-bold:700;--scalar-text-decoration:none;--scalar-text-decoration-hover:underline;--scalar-link-font-weight:inherit;--scalar-sidebar-indent:20px;--scalar-sidebar-padding:12px}.dark-mode{--lightningcss-light: ;--lightningcss-dark:initial;color-scheme:dark;--scalar-scrollbar-color:#ffffff2e;--scalar-scrollbar-color-active:#ffffff5c;--scalar-button-1:#fff;--scalar-button-1-hover:#ffffffe6;--scalar-button-1-color:black;--scalar-shadow-1:0 1px 3px 0 #0000001a;--scalar-shadow-2:0 0 0 .5px var(--scalar-border-color), #0f0f0f33 0px 3px 6px, #0f0f0f66 0px 9px 24px;--scalar-lifted-brightness:1.45;--scalar-backdrop-brightness:.5;--scalar-text-decoration-color:currentColor;--scalar-text-decoration-color-hover:currentColor}.light-mode{--lightningcss-light:initial;--lightningcss-dark: ;color-scheme:light;--scalar-scrollbar-color-active:#0000005c;--scalar-scrollbar-color:#0000002e;--scalar-button-1:#000;--scalar-button-1-hover:#000c;--scalar-button-1-color:#fff;--scalar-shadow-1:0 1px 3px 0 #0000001c;--scalar-shadow-2:#00000014 0px 13px 20px 0px, #00000014 0px 3px 8px 0px, #eeeeed 0px 0 0 .5px;--scalar-lifted-brightness:1;--scalar-backdrop-brightness:1;--scalar-text-decoration-color:currentColor;--scalar-text-decoration-color-hover:currentColor}.light-mode .dark-mode{--lightningcss-light: !important;--lightningcss-dark:initial!important;color-scheme:dark!important}@media (width<=460px){:root{--scalar-font-size-1:22px;--scalar-font-size-2:14px;--scalar-font-size-3:12px}}@media (width<=720px){:root{--scalar-heading-1:24px;--scalar-page-description:20px}}@media (resolution<=1.5x){@supports ((-moz-appearance:none)){:root{--scalar-border-width:1px}}}:root{--scalar-text-decoration:underline;--scalar-text-decoration-hover:underline}.light-mode{--scalar-background-1:#fff;--scalar-background-2:#f6f6f6;--scalar-background-3:#e7e7e7;--scalar-background-accent:#8ab4f81f;--scalar-color-1:#1b1b1b;--scalar-color-2:#757575;--scalar-color-3:#8e8e8e;--scalar-color-accent:#09f;--scalar-border-color:#dfdfdf}.dark-mode{--scalar-background-1:#0f0f0f;--scalar-background-2:#1a1a1a;--scalar-background-3:#272727;--scalar-color-1:#e7e7e7;--scalar-color-2:#a4a4a4;--scalar-color-3:#797979;--scalar-color-accent:#00aeff;--scalar-background-accent:#3ea6ff1f;--scalar-border-color:#2d2d2d}.light-mode,.dark-mode{--scalar-sidebar-background-1:var(--scalar-background-1);--scalar-sidebar-color-1:var(--scalar-color-1);--scalar-sidebar-color-2:var(--scalar-color-2);--scalar-sidebar-border-color:var(--scalar-border-color);--scalar-sidebar-item-hover-background:var(--scalar-background-2);--scalar-sidebar-item-hover-color:var(--scalar-sidebar-color-2);--scalar-sidebar-item-active-background:var(--scalar-background-2);--scalar-sidebar-color-active:var(--scalar-sidebar-color-1);--scalar-sidebar-indent-border:var(--scalar-sidebar-border-color);--scalar-sidebar-indent-border-hover:var(--scalar-sidebar-border-color);--scalar-sidebar-indent-border-active:var(--scalar-sidebar-border-color);--scalar-sidebar-search-background:var(--scalar-background-2)}@supports (color:color-mix(in lab, red, red)){.light-mode,.dark-mode{--scalar-sidebar-search-background:color-mix(in srgb, var(--scalar-background-2), var(--scalar-background-1))}}.light-mode,.dark-mode{--scalar-sidebar-search-color:var(--scalar-color-3);--scalar-sidebar-search-border-color:var(--scalar-border-color)}.light-mode{--scalar-color-green:#069061;--scalar-color-red:#ef0006;--scalar-color-yellow:#edbe20;--scalar-color-blue:#0082d0;--scalar-color-orange:#ff5800;--scalar-color-purple:#5203d1;--scalar-link-color:var(--scalar-color-1);--scalar-link-color-hover:var(--scalar-link-color);--scalar-button-1:#000;--scalar-button-1-hover:#000c;--scalar-button-1-color:#fff;--scalar-tooltip-background:var(--scalar-background-1)}@supports (color:color-mix(in lab, red, red)){.light-mode{--scalar-tooltip-background:color-mix(in srgb, var(--scalar-background-1), transparent 10%)}}.light-mode{--scalar-tooltip-color:var(--scalar-color-1);--scalar-color-alert:var(--scalar-color-orange)}@supports (color:color-mix(in lab, red, red)){.light-mode{--scalar-color-alert:color-mix(in srgb, var(--scalar-color-orange), var(--scalar-color-1) 20%)}}.light-mode{--scalar-color-danger:var(--scalar-color-red)}@supports (color:color-mix(in lab, red, red)){.light-mode{--scalar-color-danger:color-mix(in srgb, var(--scalar-color-red), var(--scalar-color-1) 20%)}}.light-mode{--scalar-background-alert:var(--scalar-color-orange)}@supports (color:color-mix(in lab, red, red)){.light-mode{--scalar-background-alert:color-mix(in srgb, var(--scalar-color-orange), var(--scalar-background-1) 95%)}}.light-mode{--scalar-background-danger:var(--scalar-color-red)}@supports (color:color-mix(in lab, red, red)){.light-mode{--scalar-background-danger:color-mix(in srgb, var(--scalar-color-red), var(--scalar-background-1) 95%)}}.dark-mode{--scalar-color-green:#00b648;--scalar-color-red:#dc1b19;--scalar-color-yellow:#ffc90d;--scalar-color-blue:#4eb3ec;--scalar-color-orange:#ff8d4d;--scalar-color-purple:#b191f9;--scalar-link-color:var(--scalar-color-1);--scalar-link-color-hover:var(--scalar-link-color);--scalar-button-1:#fff;--scalar-button-1-hover:#ffffffe6;--scalar-button-1-color:black;--scalar-tooltip-background:var(--scalar-background-1)}@supports (color:color-mix(in lab, red, red)){.dark-mode{--scalar-tooltip-background:color-mix(in srgb, var(--scalar-background-1), #fff 10%)}}.dark-mode{--scalar-tooltip-color:#fffffff2;--scalar-color-danger:var(--scalar-color-red)}@supports (color:color-mix(in lab, red, red)){.dark-mode{--scalar-color-danger:color-mix(in srgb, var(--scalar-color-red), var(--scalar-background-1) 20%)}}.dark-mode{--scalar-background-alert:var(--scalar-color-orange)}@supports (color:color-mix(in lab, red, red)){.dark-mode{--scalar-background-alert:color-mix(in srgb, var(--scalar-color-orange), var(--scalar-background-1) 95%)}}.dark-mode{--scalar-background-danger:var(--scalar-color-red)}@supports (color:color-mix(in lab, red, red)){.dark-mode{--scalar-background-danger:color-mix(in srgb, var(--scalar-color-red), var(--scalar-background-1) 95%)}}@supports (color:color(display-p3 1 1 1)){.light-mode{--scalar-color-accent:color(display-p3 0 .6 1);--scalar-color-green:color(display-p3 .023529 .564706 .380392);--scalar-color-red:color(display-p3 .937255 0 .023529);--scalar-color-yellow:color(display-p3 .929412 .745098 .12549);--scalar-color-blue:color(display-p3 0 .509804 .815686);--scalar-color-orange:color(display-p3 1 .4 .02);--scalar-color-purple:color(display-p3 .321569 .011765 .819608)}.dark-mode{--scalar-color-accent:color(display-p3 .07 .67 1);--scalar-color-green:color(display-p3 0 .713725 .282353);--scalar-color-red:color(display-p3 .862745 .105882 .098039);--scalar-color-yellow:color(display-p3 1 .788235 .05098);--scalar-color-blue:color(display-p3 .305882 .701961 .92549);--scalar-color-orange:color(display-p3 1 .552941 .301961);--scalar-color-purple:color(display-p3 .694118 .568627 .976471)}}:root,:host{--leading-snug:1.375;--leading-normal:1.5;--leading-relaxed:1.625;--ease-in:cubic-bezier(.4, 0, 1, 1);--ease-out:cubic-bezier(0, 0, .2, 1);--ease-in-out:cubic-bezier(.4, 0, .2, 1);--animate-pulse:pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4, 0, .2, 1)}body{background-color:var(--scalar-background-1);margin:0}}@layer scalar-theme;:where(.scalar-app){font-family:var(--scalar-font);color:var(--scalar-color-1);-webkit-text-size-adjust:100%;tab-size:4;line-height:1.15}:where(.scalar-app) *,:where(.scalar-app) :before,:where(.scalar-app) :after{box-sizing:border-box;border-style:solid;border-width:0;border-color:var(--scalar-border-color);outline-width:1px;outline-style:none;outline-color:var(--scalar-color-accent);font-feature-settings:inherit;font-variation-settings:inherit;font-family:inherit;font-size:inherit;font-weight:inherit;font-style:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;text-decoration:inherit;text-align:inherit;line-height:inherit;color:inherit;margin:unset;padding:unset;text-rendering:optimizelegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}:where(.scalar-app) :before,:where(.scalar-app) :after{--tw-content:""}:where(.scalar-app) button,:where(.scalar-app) input,:where(.scalar-app) optgroup,:where(.scalar-app) select,:where(.scalar-app) textarea{background:0 0}:where(.scalar-app) ::file-selector-button{background:0 0}:where(.scalar-app) ol,:where(.scalar-app) ul,:where(.scalar-app) menu{list-style:none}:where(.scalar-app) input:where(:not([type=button],[type=reset],[type=submit])),:where(.scalar-app) select,:where(.scalar-app) textarea{border-radius:var(--scalar-radius-md);border-width:1px}:where(.scalar-app) input,:where(.scalar-app) select,:where(.scalar-app) textarea{text-align:start}:where(.scalar-app) input::placeholder,:where(.scalar-app) text-area::placeholder{color:var(--scalar-color-3);font-family:var(--scalar-font)}:where(.scalar-app) ::-webkit-input-placeholder{color:var(--scalar-color-3);font-family:var(--scalar-font)}:where(.scalar-app) input[type=search]::-webkit-search-cancel-button{appearance:none}:where(.scalar-app) input[type=search]::-webkit-search-decoration{appearance:none}:where(.scalar-app) summary::-webkit-details-marker{display:none}:where(.scalar-app) input:-webkit-autofill{-webkit-background-clip:text!important;background-clip:text!important}:where(.scalar-app) :focus-visible{outline-style:solid}:where(.scalar-app) button:focus-visible,:where(.scalar-app) [role=button]:focus-visible{outline-offset:-1px}:where(.scalar-app) button,:where(.scalar-app) [role=button]{cursor:pointer}:where(.scalar-app) :disabled{cursor:default}:where(.scalar-app) img,:where(.scalar-app) svg,:where(.scalar-app) video,:where(.scalar-app) canvas,:where(.scalar-app) audio,:where(.scalar-app) iframe,:where(.scalar-app) embed,:where(.scalar-app) object{vertical-align:middle;display:block}:where(.scalar-app) [hidden]{display:none}.scalar-app .cm-scroller,.scalar-app .custom-scroll{scrollbar-color:transparent transparent;scrollbar-width:thin;-webkit-overflow-scrolling:touch;overflow-y:auto}.scalar-app .custom-scroll-self-contain-overflow{overscroll-behavior:contain}.scalar-app .cm-scroller:hover,.scalar-app .custom-scroll:hover,.scalar-app.scalar-scrollbars-obtrusive .cm-scroller,.scalar-app.scalar-scrollbars-obtrusive .custom-scroll{scrollbar-color:var(--scalar-scrollbar-color,transparent) transparent}.scalar-app .cm-scroller:hover::-webkit-scrollbar-thumb{background:var(--scalar-scrollbar-color);background-clip:content-box;border:3px solid #0000}.scalar-app .custom-scroll:hover::-webkit-scrollbar-thumb{background:var(--scalar-scrollbar-color);background-clip:content-box;border:3px solid #0000}.scalar-app .cm-scroller::-webkit-scrollbar-thumb:active{background:var(--scalar-scrollbar-color-active);background-clip:content-box;border:3px solid #0000}.scalar-app .custom-scroll::-webkit-scrollbar-thumb:active{background:var(--scalar-scrollbar-color-active);background-clip:content-box;border:3px solid #0000}.scalar-app .cm-scroller::-webkit-scrollbar-corner{background:0 0}.scalar-app .custom-scroll::-webkit-scrollbar-corner{background:0 0}.scalar-app .cm-scroller::-webkit-scrollbar{width:12px;height:12px}.scalar-app .custom-scroll::-webkit-scrollbar{width:12px;height:12px}.scalar-app .cm-scroller::-webkit-scrollbar-track{background:0 0}.scalar-app .custom-scroll::-webkit-scrollbar-track{background:0 0}.scalar-app .cm-scroller::-webkit-scrollbar-thumb{background:padding-box content-box;border:3px solid #0000;border-radius:20px}.scalar-app .custom-scroll::-webkit-scrollbar-thumb{background:padding-box content-box;border:3px solid #0000;border-radius:20px}@media (pointer:coarse){.scalar-app .cm-scroller,.scalar-app .custom-scroll{padding-right:12px}}:where(.scalar-app) [class*=rotate-],:where(.scalar-app) [class*=translate-],:where(.scalar-app) [class*=scale-]{transform:none}.loader-wrapper[data-v-27df5cd8]{--loader-size:50%;justify-content:center;align-items:center;display:flex;position:relative}.svg-loader[data-v-27df5cd8]{width:var(--loader-size);height:var(--loader-size);fill:none;stroke:currentColor;background-color:#0000;top:1rem;right:.9rem;overflow:visible}.svg-path[data-v-27df5cd8]{stroke-width:12px;fill:none;transition:all .3s}.svg-x-mark[data-v-27df5cd8]{stroke-dasharray:57;stroke-dashoffset:57px;transition-delay:0s}.svg-check-mark[data-v-27df5cd8]{stroke-dasharray:149;stroke-dashoffset:149px;transition-delay:0s}.icon-is-invalid .svg-x-mark[data-v-27df5cd8],.icon-is-valid .svg-check-mark[data-v-27df5cd8]{stroke-dashoffset:0;transition-delay:.3s}.circular-loader[data-v-27df5cd8]{transform-origin:50%;background:0 0;animation:.7s linear infinite rotate-27df5cd8,.4s fade-in-27df5cd8;transform:scale(3.5)}.loader-path[data-v-27df5cd8]{stroke-dasharray:50 200;stroke-dashoffset:-100px;stroke-linecap:round}.loader-path-off[data-v-27df5cd8]{stroke-dasharray:50 200;stroke-dashoffset:-100px;opacity:0;transition:opacity .3s}@keyframes fade-in-27df5cd8{0%{opacity:0}70%{opacity:0}to{opacity:1}}@keyframes rotate-27df5cd8{0%{transform:scale(3.5)rotate(0)}to{transform:scale(3.5)rotate(360deg)}}.scalar-app .hljs-regexp,.scalar-app .hljs-string,.scalar-app .hljs-built_in,.scalar-app .hljs-subst,.scalar-app .hljs-name,.scalar-app .hljs-doctag,.scalar-app .hljs-section,.scalar-app .hljs-title{color:var(--scalar-color-blue)}.scalar-code-block pre{font-variant-ligatures:none}.scalar-code-block.bg-b-1 .scalar-code-copy-backdrop{background-color:var(--scalar-background-1)}.scalar-code-block.bg-b-2 .scalar-code-copy-backdrop{background-color:var(--scalar-background-2)}.scalar-code-block.bg-b-2 .scalar-code-copy{background-color:var(--scalar-background-3)}.toggle-icon-ellipse[data-v-60be8692]{background:var(--scalar-background-1);border-radius:50%;width:7px;height:7px;transition:width .3s ease-in-out,height .3s ease-in-out;display:inline-block;position:relative;overflow:hidden;box-shadow:inset 0 0 0 1px}.toggle-icon-moon-mask[data-v-60be8692]{background:var(--scalar-background-1);border:1px solid;border-radius:50%;width:100%;height:100%;transition:transform .3s ease-in-out;display:block;position:absolute;bottom:2.5px;left:2.5px;transform:translate(4px,-4px)}.toggle-icon-sun-ray[data-v-60be8692]{background:currentColor;border-radius:8px;width:12px;height:1px;transition:transform .3s ease-in-out;position:absolute}.toggle-icon-sun-ray[data-v-60be8692]:nth-of-type(2){transform:rotate(90deg)}.toggle-icon-sun-ray[data-v-60be8692]:nth-of-type(3){transform:rotate(45deg)}.toggle-icon-sun-ray[data-v-60be8692]:nth-of-type(4){transform:rotate(-45deg)}.toggle-icon-dark .toggle-icon-ellipse[data-v-60be8692]{width:10px;height:10px;-webkit-mask-image:radial-gradient(circle at 0 100%,pink 10px,#0000 12px);mask-image:radial-gradient(circle at 0 100%,pink 10px,#0000 12px)}.toggle-icon-dark .toggle-icon-sun-ray[data-v-60be8692]{transform:scale(0)}.toggle-icon-dark .toggle-icon-moon-mask[data-v-60be8692]{transform:translate(0)}.dark-mode .scalar-dropdown-item[data-v-f5e0d3d8]:hover,.dark-mode .scalar-dropdown-item[data-highlighted][data-v-f5e0d3d8],.dark-mode .scalar-dropdown-item[data-v-3402682d]:hover{filter:brightness(1.1)}.scalar-icon[data-v-b651bb23],.scalar-icon[data-v-b651bb23] *{stroke-width:var(--c07589c2)}.scalar-app :where(code.hljs) *{font-size:inherit;font-family:var(--scalar-font-code);text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;tab-size:4;line-height:1.4}.scalar-app code.hljs{all:unset;font-size:inherit;color:var(--scalar-color-2);font-family:var(--scalar-font-code);counter-reset:linenumber}.scalar-app .hljs{color:var(--scalar-color-2);background:0 0}.scalar-app .hljs .line:before{color:var(--scalar-color-3);counter-increment:linenumber;content:counter(linenumber);min-width:calc(var(--line-digits) * 1ch);text-align:right;margin-right:.875rem;display:inline-block}.scalar-app .hljs-comment,.scalar-app .hljs-quote{color:var(--scalar-color-3);font-style:italic}.scalar-app .hljs-number{color:var(--scalar-color-orange)}.scalar-app .hljs-regexp,.scalar-app .hljs-string,.scalar-app .hljs-built_in{color:var(--scalar-color-blue)}.scalar-app .hljs-title.class_{color:var(--scalar-color-1)}.scalar-app .hljs-keyword{color:var(--scalar-color-purple)}.scalar-app .hljs-title.function_{color:var(--scalar-color-orange)}.scalar-app .hljs-subst,.scalar-app .hljs-name{color:var(--scalar-color-blue)}.scalar-app .hljs-attr,.scalar-app .hljs-attribute{color:var(--scalar-color-1)}.scalar-app .hljs-addition,.scalar-app .hljs-literal,.scalar-app .hljs-selector-tag,.scalar-app .hljs-type{color:var(--scalar-color-green)}.scalar-app .hljs-selector-attr,.scalar-app .hljs-selector-pseudo{color:var(--scalar-color-orange)}.scalar-app .hljs-doctag,.scalar-app .hljs-section,.scalar-app .hljs-title{color:var(--scalar-color-blue)}.scalar-app .hljs-selector-id,.scalar-app .hljs-template-variable,.scalar-app .hljs-variable{color:var(--scalar-color-1)}.scalar-app .hljs-name,.scalar-app .hljs-section,.scalar-app .hljs-strong{font-weight:var(--scalar-semibold)}.scalar-app .hljs-bullet,.scalar-app .hljs-link,.scalar-app .hljs-meta,.scalar-app .hljs-symbol{color:var(--scalar-color-blue)}.scalar-app .hljs-deletion{color:var(--scalar-color-red)}.scalar-app .hljs-formula{background:var(--scalar-color-1)}.scalar-app .hljs-emphasis{font-style:italic}.scalar-app .credential .credential-value{color:#0000;font-size:0}.scalar-app .credential:after{content:"·····";color:var(--scalar-color-3);-webkit-user-select:none;user-select:none}.hljs.language-html{color:var(--scalar-color-1)}.hljs.language-html .hljs-attr{color:var(--scalar-color-2)}.hljs.language-curl .hljs-string{color:var(--scalar-color-blue)}.hljs.language-curl .hljs-literal{color:var(--scalar-color-1)}.hljs.language-php .hljs-variable{color:var(--scalar-color-blue)}.hljs.language-objectivec .hljs-meta{color:var(--scalar-color-1)}.hljs.language-objectivec .hljs-built_in{color:var(--scalar-color-orange)}.scalar-app .markdown{--scalar-refs-heading-spacing:24px;--markdown-border:var(--scalar-border-width) solid var(--scalar-border-color);--markdown-spacing-sm:12px;--markdown-spacing-md:16px;--markdown-line-height:1.625;--markdown-heading-line-height:1.15;font-family:var(--scalar-font);word-break:break-word;line-height:var(--markdown-line-height)}.scalar-app .markdown>*{margin-bottom:var(--markdown-spacing-md)}.scalar-app .markdown>:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):last-child{margin-bottom:0}.scalar-app .markdown h1,.scalar-app .markdown h2,.scalar-app .markdown h3,.scalar-app .markdown h4,.scalar-app .markdown h5,.scalar-app .markdown h6{font-weight:var(--scalar-bold);margin-top:var(--scalar-refs-heading-spacing);margin-bottom:var(--markdown-spacing-sm);line-height:var(--markdown-heading-line-height,1.15);scroll-margin-top:1rem;display:block}.scalar-app .markdown h1{font-size:1.5rem}.scalar-app .markdown h2,.scalar-app .markdown h3{font-size:1.25rem}.scalar-app .markdown h4,.scalar-app .markdown h5,.scalar-app .markdown h6{font-size:1rem}.scalar-app .markdown b,.scalar-app .markdown strong{font-weight:var(--scalar-bold)}.scalar-app .markdown p{color:inherit;line-height:var(--markdown-line-height);display:block}.scalar-app .markdown img{border-radius:var(--scalar-radius-md);max-width:100%;display:inline-block;overflow:hidden}.scalar-app .markdown ul,.scalar-app .markdown ol{line-height:var(--markdown-line-height);flex-direction:column;gap:2px;padding-left:1.6em;display:flex}.scalar-app .markdown li{margin-top:2px;padding-left:7px}.scalar-app ol>li::marker{font:var(--scalar-font);font-variant-numeric:tabular-nums;font-weight:var(--scalar-semibold);white-space:nowrap}.scalar-app ol>*>li::marker{font:var(--scalar-font);font-variant-numeric:tabular-nums;font-weight:var(--scalar-semibold);white-space:nowrap}.scalar-app .markdown ol{list-style-type:decimal}.scalar-app .markdown ol ol{list-style-type:lower-alpha}.scalar-app .markdown ol ol ol ol,.scalar-app .markdown ol ol ol ol ol ol ol{list-style-type:decimal}.scalar-app .markdown ol ol ol ol ol,.scalar-app .markdown ol ol ol ol ol ol ol ol{list-style-type:lower-alpha}.scalar-app .markdown ol ol ol,.scalar-app .markdown ol ol ol ol ol ol,.scalar-app .markdown ol ol ol ol ol ol ol ol ol{list-style-type:lower-roman}.scalar-app .markdown ul>li,.scalar-app .markdown ul>*>li{list-style-type:disc}.scalar-app .markdown table{table-layout:fixed;border:var(--scalar-border-width) solid var(--scalar-border-color);border-radius:var(--scalar-radius-md);border-spacing:0;width:max-content;max-width:100%;margin:1em 0;display:table;position:relative;overflow-x:auto}.scalar-app .markdown tbody,.scalar-app .markdown thead{vertical-align:middle}.scalar-app .markdown tbody{display:table-row-group}.scalar-app .markdown thead{display:table-header-group}.scalar-app .markdown tr{border-color:inherit;vertical-align:inherit;display:table-row}.scalar-app .markdown td,.scalar-app .markdown th{vertical-align:top;min-width:1em;line-height:var(--markdown-line-height);word-break:break-word;font-size:var(--scalar-small);color:var(--scalar-color-1);border-right:var(--markdown-border);border-bottom:var(--markdown-border);padding:8.5px 16px;display:table-cell;position:relative}.scalar-app .markdown td>*,.scalar-app .markdown th>*{margin-bottom:0}.scalar-app .markdown th:empty{display:none}.scalar-app .markdown td:first-of-type,.scalar-app .markdown th:first-of-type{border-left:none}.scalar-app .markdown td:last-of-type,.scalar-app .markdown th:last-of-type{border-right:none}.scalar-app .markdown tr:last-of-type td{border-bottom:none}.scalar-app .markdown th{font-weight:var(--scalar-bold);text-align:left;background:var(--scalar-background-2);border-left-color:#0000}.scalar-app .markdown th:first-of-type{border-top-left-radius:var(--scalar-radius-md)}.scalar-app .markdown th:last-of-type{border-top-right-radius:var(--scalar-radius-md)}.scalar-app .markdown tr>[align=left]{text-align:left}.scalar-app .markdown tr>[align=right]{text-align:right}.scalar-app .markdown tr>[align=center]{text-align:center}.scalar-app .markdown details{border:var(--markdown-border);border-radius:var(--scalar-radius-xl);color:var(--scalar-color-1)}.scalar-app .markdown details>:not(summary){margin:var(--markdown-spacing-md);margin-bottom:0}.scalar-app .markdown details>p:has(>strong):not(:has(:not(strong))){margin-bottom:8px}.scalar-app .markdown details>p:has(>strong):not(:has(:not(strong)))+*{margin-top:0}.scalar-app .markdown details>table{width:calc(100% - calc(var(--markdown-spacing-md) * 2))}.scalar-app .markdown summary{border-radius:var(--scalar-radius);min-height:40px;font-weight:var(--scalar-semibold);line-height:var(--markdown-line-height);cursor:pointer;-webkit-user-select:none;user-select:none;align-items:flex-start;gap:8px;padding:7px 14px;display:flex;position:relative}.scalar-app .markdown summary:hover{background-color:var(--scalar-background-2)}.scalar-app .markdown details[open]{padding-bottom:var(--markdown-spacing-md)}.scalar-app .markdown details[open]>summary{border-bottom:var(--markdown-border);border-bottom-right-radius:0;border-bottom-left-radius:0}.scalar-app .markdown summary:before{content:"";width:var(--markdown-spacing-md);height:var(--markdown-spacing-md);background-color:var(--scalar-color-3);flex-shrink:0;margin-top:5px;display:block;-webkit-mask-image:url("data:image/svg+xml,");mask-image:url("data:image/svg+xml,")}.scalar-app .markdown summary:hover:before{background-color:var(--scalar-color-1)}.scalar-app .markdown details[open]>summary:before{transition:transform .1s ease-in-out;transform:rotate(90deg)}.scalar-app .markdown details:has(+details){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0;margin-bottom:0}.scalar-app .markdown details:has(+details)+details{border-top-left-radius:0;border-top-right-radius:0}.scalar-app .markdown details:has(+details)+details>summary{border-top-left-radius:0;border-top-right-radius:0}.scalar-app .markdown a{--font-color:var(--scalar-link-color,var(--scalar-color-accent));--font-visited:var(--scalar-link-color-visited,var(--scalar-color-2));-webkit-text-decoration:var(--scalar-text-decoration);-webkit-text-decoration:var(--scalar-text-decoration);-webkit-text-decoration:var(--scalar-text-decoration);text-decoration:var(--scalar-text-decoration);color:var(--font-color);font-weight:var(--scalar-link-font-weight,var(--scalar-semibold));text-underline-offset:.25rem;text-decoration-thickness:1px;-webkit-text-decoration-color:var(--font-color);-webkit-text-decoration-color:var(--font-color);-webkit-text-decoration-color:var(--font-color);text-decoration-color:var(--font-color)}@supports (color:color-mix(in lab, red, red)){.scalar-app .markdown a{-webkit-text-decoration-color:color-mix(in srgb, var(--font-color) 30%, transparent);-webkit-text-decoration-color:color-mix(in srgb, var(--font-color) 30%, transparent);-webkit-text-decoration-color:color-mix(in srgb, var(--font-color) 30%, transparent);text-decoration-color:color-mix(in srgb, var(--font-color) 30%, transparent)}}.scalar-app .markdown a:hover{-webkit-text-decoration-color:var(--scalar-color-1,currentColor);-webkit-text-decoration-color:var(--scalar-color-1,currentColor);-webkit-text-decoration-color:var(--scalar-color-1,currentColor);text-decoration-color:var(--scalar-color-1,currentColor);color:var(--scalar-link-color-hover,var(--scalar-color-accent));-webkit-text-decoration:var(--scalar-text-decoration-hover);-webkit-text-decoration:var(--scalar-text-decoration-hover);-webkit-text-decoration:var(--scalar-text-decoration-hover);-webkit-text-decoration:var(--scalar-text-decoration-hover);text-decoration:var(--scalar-text-decoration-hover)}.scalar-app .markdown a:visited{color:var(--font-visited)}.scalar-app .markdown em{font-style:italic}.scalar-app .markdown sup,.scalar-app .markdown sub{font-size:var(--scalar-micro);font-weight:450}.scalar-app .markdown sup{vertical-align:super}.scalar-app .markdown sub{vertical-align:sub}.scalar-app .markdown del{text-decoration:line-through}.scalar-app .markdown code{font-family:var(--scalar-font-code);background-color:var(--scalar-background-2);box-shadow:0 0 0 var(--scalar-border-width) var(--scalar-border-color);font-size:var(--scalar-micro);border-radius:var(--scalar-radius-md);padding:0 3px}.scalar-app .markdown .hljs{font-size:var(--scalar-small)}.scalar-app .markdown pre code{white-space:pre;padding:var(--markdown-spacing-sm);margin:var(--markdown-spacing-sm) 0;-webkit-overflow-scrolling:touch;min-width:100px;max-width:100%;line-height:1.5;display:block;overflow-x:auto}.scalar-app .markdown hr{border:none;border-bottom:var(--markdown-border)}.scalar-app .markdown blockquote{border-left:2px solid var(--scalar-border-color);padding-left:var(--markdown-spacing-sm)}.scalar-app .markdown blockquote>*{margin-bottom:var(--markdown-spacing-sm)}.scalar-app .markdown li.task-list-item{list-style:none;position:relative}.scalar-app .markdown li.task-list-item>input{appearance:none;width:var(--markdown-spacing-md);height:var(--markdown-spacing-md);border:1px solid var(--scalar-color-3);border-radius:var(--scalar-radius);display:inline;position:absolute;top:.225em;left:-1.4em}.scalar-app .markdown li.task-list-item>input[type=checkbox]:checked{background-color:var(--scalar-color-1);border-color:var(--scalar-color-1)}.scalar-app .markdown li.task-list-item>input[type=checkbox]:before{content:"";border:solid var(--scalar-background-1);opacity:0;border-width:0 1.5px 1.5px 0;width:5px;height:10px;position:absolute;top:1px;left:5px;transform:rotate(45deg)}.scalar-app .markdown li.task-list-item>input[type=checkbox]:checked:before{opacity:1}.scalar-app .markdown .markdown-alert{border-radius:var(--scalar-radius-md);background-color:var(--scalar-background-2);align-items:stretch}@supports (color:color-mix(in lab, red, red)){.scalar-app .markdown .markdown-alert{background-color:color-mix(in srgb, var(--scalar-background-2), transparent)}}.scalar-app .markdown .markdown-alert{border:var(--markdown-border);gap:var(--markdown-spacing-sm);padding:10px 14px;display:flex;position:relative}.scalar-app .markdown .markdown-alert .markdown-alert-icon:before{content:"";background-color:currentColor;flex-shrink:0;width:18px;height:18px;margin-top:3px;display:block;-webkit-mask-position:50%;mask-position:50%;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}.scalar-app .markdown .markdown-alert.markdown-alert-note{background-color:var(--scalar-color-blue)}@supports (color:color-mix(in lab, red, red)){.scalar-app .markdown .markdown-alert.markdown-alert-note{background-color:color-mix(in srgb, var(--scalar-color-blue), transparent 97%)}}.scalar-app .markdown .markdown-alert.markdown-alert-note{border:var(--scalar-border-width) solid var(--scalar-color-blue)}@supports (color:color-mix(in lab, red, red)){.scalar-app .markdown .markdown-alert.markdown-alert-note{border:var(--scalar-border-width) solid color-mix(in srgb, var(--scalar-color-blue), transparent 50%)}}.scalar-app .markdown .markdown-alert.markdown-alert-tip{background-color:var(--scalar-color-2)}@supports (color:color-mix(in lab, red, red)){.scalar-app .markdown .markdown-alert.markdown-alert-tip{background-color:color-mix(in srgb, var(--scalar-color-2), transparent 97%)}}.scalar-app .markdown .markdown-alert.markdown-alert-tip{border:var(--scalar-border-width) solid var(--scalar-color-2)}@supports (color:color-mix(in lab, red, red)){.scalar-app .markdown .markdown-alert.markdown-alert-tip{border:var(--scalar-border-width) solid color-mix(in srgb, var(--scalar-color-2), transparent 50%)}}.scalar-app .markdown .markdown-alert.markdown-alert-note .markdown-alert-icon:before,.scalar-app .markdown .markdown-alert.markdown-alert-tip .markdown-alert-icon:before{color:var(--scalar-color-blue);-webkit-mask-image:url("data:image/svg+xml,");mask-image:url("data:image/svg+xml,")}.scalar-app .markdown .markdown-alert.markdown-alert-important,.scalar-app .markdown .markdown-alert.markdown-alert-warning{background-color:var(--scalar-color-orange)}@supports (color:color-mix(in lab, red, red)){.scalar-app .markdown .markdown-alert.markdown-alert-important,.scalar-app .markdown .markdown-alert.markdown-alert-warning{background-color:color-mix(in srgb, var(--scalar-color-orange), transparent 97%)}}.scalar-app .markdown .markdown-alert.markdown-alert-important,.scalar-app .markdown .markdown-alert.markdown-alert-warning{border:var(--scalar-border-width) solid var(--scalar-color-orange)}@supports (color:color-mix(in lab, red, red)){.scalar-app .markdown .markdown-alert.markdown-alert-important,.scalar-app .markdown .markdown-alert.markdown-alert-warning{border:var(--scalar-border-width) solid color-mix(in srgb, var(--scalar-color-orange), transparent 50%)}}.scalar-app .markdown .markdown-alert.markdown-alert-important .markdown-alert-icon:before,.scalar-app .markdown .markdown-alert.markdown-alert-warning .markdown-alert-icon:before{-webkit-mask-image:url("data:image/svg+xml,");mask-image:url("data:image/svg+xml,")}.scalar-app .markdown .markdown-alert.markdown-alert-caution{background-color:var(--scalar-color-red)}@supports (color:color-mix(in lab, red, red)){.scalar-app .markdown .markdown-alert.markdown-alert-caution{background-color:color-mix(in srgb, var(--scalar-color-red), transparent 97%)}}.scalar-app .markdown .markdown-alert.markdown-alert-caution{border:var(--scalar-border-width) solid var(--scalar-color-red)}@supports (color:color-mix(in lab, red, red)){.scalar-app .markdown .markdown-alert.markdown-alert-caution{border:var(--scalar-border-width) solid color-mix(in srgb, var(--scalar-color-red), transparent 50%)}}.scalar-app .markdown .markdown-alert.markdown-alert-caution .markdown-alert-icon:before{color:var(--scalar-color-red);-webkit-mask-image:url("data:image/svg+xml,");mask-image:url("data:image/svg+xml,")}.scalar-app .markdown .markdown-alert.markdown-alert-success{background-color:var(--scalar-color-green)}@supports (color:color-mix(in lab, red, red)){.scalar-app .markdown .markdown-alert.markdown-alert-success{background-color:color-mix(in srgb, var(--scalar-color-green), transparent 97%)}}.scalar-app .markdown .markdown-alert.markdown-alert-success{border:var(--scalar-border-width) solid var(--scalar-color-green)}@supports (color:color-mix(in lab, red, red)){.scalar-app .markdown .markdown-alert.markdown-alert-success{border:var(--scalar-border-width) solid color-mix(in srgb, var(--scalar-color-green), transparent 50%)}}.scalar-app .markdown .markdown-alert.markdown-alert-success .markdown-alert-icon:before{color:var(--scalar-color-green);-webkit-mask-image:url("data:image/svg+xml,");mask-image:url("data:image/svg+xml,")}.scalar-app .markdown .markdown-alert.markdown-alert-note .markdown-alert-icon:before{color:var(--scalar-color-blue)}.scalar-app .markdown .markdown-alert.markdown-alert-tip .markdown-alert-icon:before{color:var(--scalar-color-2)}.scalar-app .markdown .markdown-alert.markdown-alert-important .markdown-alert-icon:before{color:var(--scalar-color-purple)}.scalar-app .markdown .markdown-alert.markdown-alert-warning .markdown-alert-icon:before{color:var(--scalar-color-orange)}.scalar-app .markdown .markdown-alert .markdown-alert-content{line-height:var(--markdown-line-height);margin:0}.scalar-app .markdown.markdown-summary.markdown-summary :before,.scalar-app .markdown.markdown-summary.markdown-summary :after{content:none}.scalar-app .markdown.markdown-summary.markdown-summary :not(strong,em,a){font-size:inherit;font-weight:inherit;line-height:var(--markdown-line-height);display:contents}.scalar-app .markdown.markdown-summary.markdown-summary img,.scalar-app .markdown.markdown-summary.markdown-summary svg,.scalar-app .markdown.markdown-summary.markdown-summary hr,.scalar-app .markdown.markdown-summary.markdown-summary pre{display:none}.scalar-modal-layout[data-v-5bb1dcc2]{animation:.3s ease-in-out forwards fadein-layout-5bb1dcc2}.scalar-modal[data-v-5bb1dcc2]{box-shadow:var(--scalar-shadow-2);animation:.3s ease-in-out .1s forwards fadein-modal-5bb1dcc2;transform:translateY(10px)}.scalar-modal-layout-full[data-v-5bb1dcc2]{opacity:1!important;background:0 0!important}.modal-content-search .modal-body[data-v-5bb1dcc2]{flex-direction:column;max-height:440px;padding:0;display:flex;overflow:hidden}@media (width<=720px) and (height<=480px){.scalar-modal-layout .scalar-modal[data-v-5bb1dcc2]{max-height:90svh;margin-top:5svh}}@keyframes fadein-layout-5bb1dcc2{0%{opacity:0}to{opacity:1}}@keyframes fadein-modal-5bb1dcc2{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translate(0)}}.full-size-styles[data-v-5bb1dcc2]{margin:initial;border-right:var(--scalar-border-width) solid var(--scalar-border-color);animation:.3s ease-in-out forwards fadein-layout-5bb1dcc2;left:0;transform:translate(0);background-color:var(--scalar-background-1)!important;max-height:100%!important;box-shadow:none!important;border-radius:0!important;position:absolute!important;top:0!important}@media (width>=800px){.full-size-styles[data-v-5bb1dcc2]{width:50dvw!important}}.full-size-styles[data-v-5bb1dcc2]:after{content:"";width:50dvw;height:100dvh;position:absolute;top:0;right:-50dvw}.group\\/item>*>.scalar-sidebar-indent .scalar-sidebar-indent-border[data-v-3e080c68]{inset-block:-1px}.group\\/item:first-child>*>.scalar-sidebar-indent .scalar-sidebar-indent-border[data-v-3e080c68]{top:0}.group\\/item:last-child>*>.scalar-sidebar-indent .scalar-sidebar-indent-border[data-v-3e080c68]{bottom:0}.group\\/item:last-of-type>.group\\/button>.group\\/button-label>.group\\/button-loading{width:66.6667%}.group\\/items.-translate-x-full .group\\/button{transition-behavior:allow-discrete;max-height:0;transition-property:display,max-height;transition-duration:0s;transition-delay:.3s;display:none}.group\\/item.group\\/nested-items-open>*>.group\\/items.translate-x-0 .group\\/button{max-height:3.40282e38px;display:flex}.animate-sidebar-border-bottom{animation:forwards border-bottom;animation-timeline:scroll();animation-range-end:1px}@keyframes border-bottom{0%{border-bottom-width:0}to{border-bottom-width:var(--scalar-border-width)}}.group\\/sidebar-section:first-of-type>.group\\/spacer-before,.group\\/sidebar-section:last-of-type>.group\\/spacer-after{height:0}.group\\/sidebar-section:has(+.group\\/sidebar-section)>.group\\/spacer-after{height:0;margin-bottom:-1px}:where(body,dialog)>.scalar-tooltip{--scalar-tooltip-padding-x:8px;--scalar-tooltip-padding-y:6px;padding:var(--scalar-tooltip-padding-y) var(--scalar-tooltip-padding-x);z-index:99999;max-width:320px;font-size:var(--scalar-font-size-5);--tw-font-weight:var(--scalar-regular);line-height:16px;font-weight:var(--scalar-regular);overflow-wrap:break-word;color:var(--scalar-tooltip-color)}:where(body,dialog)>.scalar-tooltip[data-side=top]{padding-bottom:calc(var(--scalar-tooltip-padding-y) + var(--scalar-tooltip-offset))}:where(body,dialog)>.scalar-tooltip[data-side=bottom]{padding-top:calc(var(--scalar-tooltip-padding-y) + var(--scalar-tooltip-offset))}:where(body,dialog)>.scalar-tooltip[data-side=left]{padding-right:calc(var(--scalar-tooltip-padding-x) + var(--scalar-tooltip-offset))}:where(body,dialog)>.scalar-tooltip[data-side=right]{padding-left:calc(var(--scalar-tooltip-padding-x) + var(--scalar-tooltip-offset))}:where(body,dialog)>.scalar-tooltip:before{content:"";z-index:calc(1 * -1);border-radius:var(--scalar-radius-lg);border-style:var(--tw-border-style);border-width:var(--scalar-border-width);background-color:var(--scalar-tooltip-background);--tw-shadow:var(--scalar-shadow-1);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);--tw-backdrop-blur:blur(8px);-webkit-backdrop-filter:var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );backdrop-filter:var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );position:absolute;inset:0}:where(body,dialog)>.scalar-tooltip[data-side=top]:before{bottom:var(--scalar-tooltip-offset)}:where(body,dialog)>.scalar-tooltip[data-side=bottom]:before{top:var(--scalar-tooltip-offset)}:where(body,dialog)>.scalar-tooltip[data-side=left]:before{right:var(--scalar-tooltip-offset)}:where(body,dialog)>.scalar-tooltip[data-side=right]:before{left:var(--scalar-tooltip-offset)}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-backdrop-blur{syntax:"*";inherits:false}@property --tw-backdrop-brightness{syntax:"*";inherits:false}@property --tw-backdrop-contrast{syntax:"*";inherits:false}@property --tw-backdrop-grayscale{syntax:"*";inherits:false}@property --tw-backdrop-hue-rotate{syntax:"*";inherits:false}@property --tw-backdrop-invert{syntax:"*";inherits:false}@property --tw-backdrop-opacity{syntax:"*";inherits:false}@property --tw-backdrop-saturate{syntax:"*";inherits:false}@property --tw-backdrop-sepia{syntax:"*";inherits:false}.scalar-virtual-text-search-input[data-v-95edadbb]::-webkit-search-cancel-button{display:none}.scalar-virtual-text[data-v-77b9d685]:focus{outline:none}.scalar-virtual-text-highlight[data-v-77b9d685]{background:var(--scalar-background-accent);color:inherit;border-radius:var(--scalar-radius);padding:1px 0}.scalar-virtual-text-highlight-active[data-v-77b9d685]{background:var(--scalar-color-accent);color:var(--scalar-background-1);border-radius:var(--scalar-radius)}.sidebar-heading-type[data-v-bdef8365]{text-transform:uppercase;color:var(--method-color,var(--scalar-color-1));font-size:10px;line-height:14px;font-weight:var(--scalar-bold);font-family:var(--scalar-font-code);white-space:nowrap;flex-shrink:0;align-items:center;gap:4px;display:inline-flex;overflow:hidden}.http-bg-gradient[data-v-86e2b3ea]{background:linear-gradient(#ffffffbf,#00000009)}.http-bg-gradient[data-v-86e2b3ea]:hover{background:linear-gradient(#00000009,#ffffffbf)}.dark-mode .http-bg-gradient[data-v-86e2b3ea]{background:linear-gradient(#ffffff09,#00000026)}.dark-mode .http-bg-gradient[data-v-86e2b3ea]:hover{background:linear-gradient(#00000026,#ffffff09)}.ascii-art-animate .ascii-art-line[data-v-9a695e58]{border-right:1ch solid #0000;animation:4s step-end 1s both typewriter-9a695e58,.5s step-end infinite blinkTextCursor-9a695e58}@keyframes typewriter-9a695e58{0%{width:0}to{width:100%}}@keyframes blinkTextCursor-9a695e58{0%{border-right-color:currentColor}50%{border-right-color:#0000}}.open-api-client-button[data-v-cd067f84]{cursor:pointer;text-align:center;white-space:nowrap;width:100%;height:31px;font-size:var(--scalar-small);border-radius:var(--scalar-radius);box-shadow:0 0 0 .5px var(--scalar-border-color);color:var(--scalar-sidebar-color-1);justify-content:center;align-items:center;gap:6px;padding:9px 12px;line-height:1.385;text-decoration:none;display:flex}.open-api-client-button[data-v-cd067f84]:hover{background:var(--scalar-sidebar-item-hover-background,var(--scalar-background-2))}.fade-request-section-content[data-v-07ff8fc3]{background:linear-gradient(to left, var(--scalar-background-1) 64%, transparent)}.filter-hover[data-v-07ff8fc3]{height:100%;padding-left:24px;padding-right:39px;transition:width 0s ease-in-out .2s;position:absolute;right:0;overflow:hidden}.filter-hover[data-v-07ff8fc3]:hover{z-index:10;width:100%}.filter-hover[data-v-07ff8fc3]:has(:focus-visible){z-index:10;width:100%}.filter-hover[data-v-07ff8fc3]:before{content:"";background-color:var(--scalar-background-1);opacity:0;pointer-events:none;width:100%;height:fit-content;transition:all .3s ease-in-out;position:absolute;top:0;left:0}.filter-hover-item[data-v-07ff8fc3]{opacity:0}.filter-hover-item[data-v-07ff8fc3]:not(:last-of-type){transform:translateY(3px)}.filter-hover:hover .filter-hover-item[data-v-07ff8fc3]{transition:opacity .2s ease-in-out,transform .2s ease-in-out}.filter-hover:hover .filter-hover-item[data-v-07ff8fc3]:last-of-type{transition-delay:50ms}.filter-hover:hover .filter-hover-item[data-v-07ff8fc3]:nth-last-of-type(2){transition-delay:.1s}.filter-hover:hover .filter-hover-item[data-v-07ff8fc3]:nth-last-of-type(3){transition-delay:.15s}.filter-hover:hover .filter-hover-item[data-v-07ff8fc3]:nth-last-of-type(4){transition-delay:.2s}.filter-hover:hover .filter-hover-item[data-v-07ff8fc3]:nth-last-of-type(5){transition-delay:.25s}.filter-hover:hover .filter-hover-item[data-v-07ff8fc3]:nth-last-of-type(6){transition-delay:.3s}.filter-hover:hover .filter-hover-item[data-v-07ff8fc3]:nth-last-of-type(7){transition-delay:.35s}.filter-hover:hover .filter-hover-item[data-v-07ff8fc3]{opacity:1;transform:translate(0)}.filter-hover:has(:focus-visible) .filter-hover-item[data-v-07ff8fc3]{opacity:1;transform:translate(0)}.filter-hover[data-v-07ff8fc3]:hover:before{opacity:.9;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}.filter-hover[data-v-07ff8fc3]:has(:focus-visible):before{opacity:.9;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}.filter-button[data-v-07ff8fc3]{top:50%;transform:translateY(-50%)}.context-bar-group:hover .context-bar-group-hover\\:text-c-1[data-v-07ff8fc3]{--tw-text-opacity:1;color:rgb(var(--scalar-color-1) / var(--tw-text-opacity))}.context-bar-group:has(:focus-visible) .context-bar-group-hover\\:text-c-1[data-v-07ff8fc3]{--tw-text-opacity:1;color:rgb(var(--scalar-color-1) / var(--tw-text-opacity))}.context-bar-group:hover .context-bar-group-hover\\:hidden[data-v-07ff8fc3]{display:none}.context-bar-group:has(:focus-visible) .context-bar-group-hover\\:hidden[data-v-07ff8fc3]{display:none}[data-v-dfc591f4] .cm-editor{background:0 0;outline:none;height:100%;padding:0}[data-v-dfc591f4] .cm-placeholder{color:var(--scalar-color-3)}[data-v-dfc591f4] .cm-content{font-family:var(--scalar-font-code);font-size:var(--scalar-small);max-height:20px;padding:8px 0}[data-v-dfc591f4] .cm-tooltip{filter:brightness(var(--scalar-lifted-brightness));border-radius:var(--scalar-radius);box-shadow:var(--scalar-shadow-2);background:0 0!important;border:none!important;outline:none!important;overflow:hidden!important}[data-v-dfc591f4] .cm-tooltip-autocomplete ul li{padding:3px 6px!important}[data-v-dfc591f4] .cm-completionIcon-type:after{color:var(--scalar-color-3)!important}[data-v-dfc591f4] .cm-tooltip-autocomplete ul li[aria-selected]{background:var(--scalar-background-2)!important;color:var(--scalar-color-1)!important}[data-v-dfc591f4] .cm-tooltip-autocomplete ul{position:relative;padding:6px!important}[data-v-dfc591f4] .cm-tooltip-autocomplete ul li:hover{border-radius:3px;color:var(--scalar-color-1)!important;background:var(--scalar-background-3)!important}[data-v-dfc591f4] .cm-activeLine,[data-v-dfc591f4] .cm-activeLineGutter{background-color:#0000}[data-v-dfc591f4] .cm-selectionMatch,[data-v-dfc591f4] .cm-matchingBracket{border-radius:var(--scalar-radius);background:var(--scalar-background-4)!important}[data-v-dfc591f4] .cm-css-color-picker-wrapper{outline:1px solid var(--scalar-background-3);border-radius:3px;display:inline-flex;overflow:hidden}[data-v-dfc591f4] .cm-gutters{color:var(--scalar-color-3);font-size:var(--scalar-small);background-color:#0000;border-right:none;border-radius:0 0 0 3px;line-height:22px}[data-v-dfc591f4] .cm-gutters:before{content:"";border-radius:var(--scalar-radius) 0 0 var(--scalar-radius);background-color:var(--scalar-background-1);width:calc(100% - 2px);height:calc(100% - 4px);position:absolute;top:2px;left:2px}[data-v-dfc591f4] .cm-gutterElement{justify-content:flex-end;align-items:center;display:flex;position:relative;font-family:var(--scalar-font-code)!important;padding-left:0!important;padding-right:6px!important}[data-v-dfc591f4] .cm-lineNumbers .cm-gutterElement{min-width:fit-content}[data-v-dfc591f4] .cm-gutter+.cm-gutter :not(.cm-foldGutter) .cm-gutterElement{padding-left:0!important}[data-v-dfc591f4] .cm-scroller{overflow:auto}.line-wrapping[data-v-dfc591f4]:focus-within .cm-content{white-space:break-spaces;word-break:break-all;min-height:fit-content;padding:3px 6px;display:inline-table}.cm-pill{border-radius:var(--scalar-radius-full);font-size:var(--scalar-small);padding:0 9px;display:inline-block;color:var(--scalar-color-1)!important}.light-mode .cm-pill{background:var(--scalar-background-3)!important}.dark-mode .cm-pill{background:var(--tw-bg-base)!important}@supports (color:color-mix(in lab, red, red)){.dark-mode .cm-pill{background:color-mix(in srgb, var(--tw-bg-base), transparent 90%)!important}}.cm-pill--context-fn{border:1px dashed var(--scalar-color-3)}@supports (color:color-mix(in lab, red, red)){.cm-pill--context-fn{border:1px dashed color-mix(in srgb, var(--scalar-color-3), transparent 35%)}}.cm-pill--context-fn{padding:0 8px}.light-mode .cm-pill--context-fn{background:var(--scalar-background-3)!important}@supports (color:color-mix(in lab, red, red)){.light-mode .cm-pill--context-fn{background:color-mix(in srgb, var(--scalar-background-3), transparent 40%)!important}}.dark-mode .cm-pill--context-fn{background:var(--scalar-background-3)!important}@supports (color:color-mix(in lab, red, red)){.dark-mode .cm-pill--context-fn{background:color-mix(in srgb, var(--scalar-background-3), transparent 55%)!important}}.cm-pill:first-of-type{margin-left:0}.cm-editor .cm-widgetBuffer{display:none}.cm-foldPlaceholder:hover{color:var(--scalar-color-1)}.cm-foldGutter .cm-gutterElement{font-size:var(--scalar-heading-4);padding:2px!important}.cm-foldGutter .cm-gutterElement:first-of-type{display:none}.cm-foldGutter .cm-gutterElement .cm-foldMarker{padding:2px}.cm-foldGutter .cm-gutterElement:hover .cm-foldMarker{background:var(--scalar-background-2);border-radius:var(--scalar-radius);color:var(--scalar-color-1)}.code-input-lite[data-v-f03d0c9d]{align-items:center;display:flex}.code-input-lite__editor[data-v-f03d0c9d]{font:inherit;letter-spacing:inherit;min-width:0;color:var(--scalar-color-1);caret-color:var(--scalar-color-1);white-space:pre;scrollbar-width:none;box-sizing:border-box;background:0 0;outline:none;flex:1;padding:0 .5em;line-height:1.44;position:relative;overflow:auto hidden}.code-input-lite__editor[data-v-f03d0c9d]::-webkit-scrollbar{display:none}.code-input-lite--empty .code-input-lite__editor[data-v-f03d0c9d]:not(:focus):before{content:attr(data-placeholder);color:var(--scalar-color-3);pointer-events:none;align-items:center;display:flex;position:absolute;top:0;bottom:0;left:.5em}.code-input-lite--error .code-input-lite__editor[data-v-f03d0c9d]{outline:1px solid var(--scalar-color-red)}.scalar-pill{color:var(--scalar-color-2);border-radius:var(--scalar-radius-full);font-family:var(--scalar-font-code);vertical-align:baseline;background:var(--scalar-background-3);cursor:text;-webkit-user-select:all;user-select:all;margin-right:.35em;padding:.125em .6em;font-size:.9em;line-height:1.4;display:inline-block}.dark-mode .scalar-pill{background:var(--tw-bg-base,var(--scalar-color-1))}@supports (color:color-mix(in lab, red, red)){.dark-mode .scalar-pill{background:color-mix(in srgb, var(--tw-bg-base,var(--scalar-color-1)), transparent 90%)}}.light-mode .scalar-pill{background:var(--scalar-background-3)}.scalar-pill--context-fn{box-shadow:0 0 0 1px var(--scalar-color-3) inset}@supports (color:color-mix(in lab, red, red)){.scalar-pill--context-fn{box-shadow:0 0 0 1px color-mix(in srgb, var(--scalar-color-3), transparent 35%) inset}}.dark-mode .scalar-pill--context-fn{background:var(--scalar-background-3)}@supports (color:color-mix(in lab, red, red)){.dark-mode .scalar-pill--context-fn{background:color-mix(in srgb, var(--scalar-background-3), transparent 55%)}}.light-mode .scalar-pill--context-fn{background:var(--scalar-background-3)}@supports (color:color-mix(in lab, red, red)){.light-mode .scalar-pill--context-fn{background:color-mix(in srgb, var(--scalar-background-3), transparent 40%)}}[data-v-042c21ca] .code-input-lite__editor{font-family:var(--scalar-font);font-size:var(--scalar-small);background-color:#0000;padding:5px 8px}[data-v-042c21ca] .scalar-pill:not(:last-of-type){margin-right:.15em}[data-v-042c21ca] .scalar-pill:not(:first-of-type){margin-left:.5px}[data-v-dcc3af8c] .cm-content{font-size:var(--scalar-small)}[data-v-a6f4752a] .code-input-lite__editor{font-family:var(--scalar-font);font-size:var(--scalar-small);background-color:#0000;padding:5px 8px}[data-v-a6f4752a] .scalar-pill:not(:last-of-type){margin-right:.15em}[data-v-a6f4752a] .scalar-pill:not(:first-of-type){margin-left:.5px}.required[data-v-a6f4752a]:after{content:"Required"}input[data-v-a6f4752a]::placeholder{color:var(--scalar-color-3)}.scalar-password-input[data-v-a6f4752a]{text-security:disc;-webkit-text-security:disc;-moz-text-security:disc}.oauth-scope-row-action-rail{--oauth-scope-row-rail-bg:var(--scalar-background-1)}@supports (color:color-mix(in lab, red, red)){.oauth-scope-row-action-rail{--oauth-scope-row-rail-bg:color-mix(in srgb, var(--scalar-background-1), var(--scalar-background-2))}}.oauth-scope-row-action-rail{background:linear-gradient(90deg, var(--oauth-scope-row-rail-bg) 0%, var(--oauth-scope-row-rail-bg) 30%, var(--oauth-scope-row-rail-bg) 100%)}@supports (color:color-mix(in lab, red, red)){.oauth-scope-row-action-rail{background:linear-gradient(90deg, color-mix(in srgb, var(--oauth-scope-row-rail-bg), transparent 100%) 0%, color-mix(in srgb, var(--oauth-scope-row-rail-bg), transparent 20%) 30%, var(--oauth-scope-row-rail-bg) 100%)}}.no-scrollbar::-webkit-scrollbar{display:none}.no-scrollbar{-ms-overflow-style:none;scrollbar-width:none}.request-section-content[data-v-1ac895c0]{--scalar-border-width:.5px}.request-section-content-filter[data-v-1ac895c0]{box-shadow:0 -10px 0 10px var(--scalar-background-1)}.request-item:focus-within .request-meta-buttons[data-v-1ac895c0]{opacity:1}.group-hover-input[data-v-1ac895c0]{border-width:var(--scalar-border-width);border-color:#0000}.group:hover .group-hover-input[data-v-1ac895c0]{background:var(--scalar-background-1)}@supports (color:color-mix(in lab, red, red)){.group:hover .group-hover-input[data-v-1ac895c0]{background:color-mix(in srgb, var(--scalar-background-1), var(--scalar-background-2))}}.group:hover .group-hover-input[data-v-1ac895c0]{border-color:var(--scalar-border-color)}.group-hover-input[data-v-1ac895c0]:focus{border-color:var(--scalar-border-color)!important;background:0 0!important}[data-v-8c1df828] .cm-editor{font-size:var(--scalar-small);background-color:#0000;outline:none}[data-v-8c1df828] .cm-gutters{background-color:var(--scalar-background-1);border-radius:var(--scalar-radius) 0 0 var(--scalar-radius)}[data-v-8c1df828] .cm-scroller{min-width:100%;overflow:auto}.light-mode .bg-preview[data-v-8bc927e4]{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23000' fill-opacity='10%25'%3E%3Crect width='8' height='8' /%3E%3Crect x='8' y='8' width='8' height='8' /%3E%3C/svg%3E")}.dark-mode .bg-preview[data-v-8bc927e4]{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FFF' fill-opacity='10%25'%3E%3Crect width='8' height='8' /%3E%3Crect x='8' y='8' width='8' height='8' /%3E%3C/svg%3E")}.scalar-code-block[data-v-bb31ac6f] .hljs *{font-size:var(--scalar-small)}.response-body-virtual[data-headlessui-state=open],.response-body-virtual[data-headlessui-state=open] .diclosure-panel{flex-direction:column;flex-grow:1;display:flex}.scalar-version-number[data-v-0895623d]{width:76px;height:76px;font-size:8px;font-family:var(--scalar-font-code);box-shadow:inset 2px 0px 0 2px var(--scalar-background-2);text-align:center;text-transform:initial;-webkit-text-decoration-color:var(--scalar-color-3);-webkit-text-decoration-color:var(--scalar-color-3);-webkit-text-decoration-color:var(--scalar-color-3);text-decoration-color:var(--scalar-color-3);border-radius:9px 9px 16px 12px;flex-direction:column;justify-content:center;align-items:center;margin-top:-113px;margin-left:-36px;line-height:11px;display:flex;position:absolute;transform:skewY(13deg)}.scalar-version-number a[data-v-0895623d]{background:var(--scalar-background-2);border:.5px solid var(--scalar-border-color);border-radius:3px;padding:2px 4px;font-weight:700;text-decoration:none}.gitbook-show[data-v-0895623d]{display:none}.v-enter-active[data-v-b80db6e2]{transition:opacity .5s}.v-enter-from[data-v-b80db6e2]{opacity:0}.animate-response-heading .response-heading[data-v-7a7c6611]{opacity:1;animation:.2s ease-in-out forwards push-response-7a7c6611}@keyframes push-response-7a7c6611{0%{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(-4px)}}.animate-response-heading .animate-response-children[data-v-7a7c6611]{opacity:0;animation:.2s ease-in-out 50ms forwards response-spans-7a7c6611}@keyframes response-spans-7a7c6611{0%{opacity:0;transform:translateY(4px)}to{opacity:1;transform:translateY(0)}}.description[data-v-649f9a0d] .markdown{font-weight:var(--scalar-semibold);color:var(--scalar-color--1);padding:0;display:block}.description[data-v-649f9a0d] .markdown>:first-child{margin-top:0}.address-bar-history-button[data-v-12140f4f]:hover{background:var(--scalar-background-3)}.address-bar-history-button[data-v-12140f4f]:focus-within{background:var(--scalar-background-2)}[data-v-d37cbfcc] .cm-editor{outline:none;width:100%;height:100%}[data-v-d37cbfcc] .cm-line{padding:0}[data-v-d37cbfcc] .cm-content{font-size:var(--scalar-small);align-items:center;padding:0;display:flex}.scroll-timeline-x[data-v-d37cbfcc]{-ms-overflow-style:none;-webkit-mask-image:linear-gradient(90deg,#0000 0,#000 6px calc(100% - 24px),#0000 100%);mask-image:linear-gradient(90deg,#0000 0,#000 6px calc(100% - 24px),#0000 100%)}.scroll-timeline-x-hidden[data-v-d37cbfcc]{overflow-x:auto}.scroll-timeline-x-hidden[data-v-d37cbfcc] .cm-scroller{scrollbar-width:none;-ms-overflow-style:none;padding-right:20px;overflow:auto}.scroll-timeline-x-hidden[data-v-d37cbfcc]::-webkit-scrollbar{width:0;height:0;display:none}.scroll-timeline-x-hidden[data-v-d37cbfcc] .cm-scroller::-webkit-scrollbar{width:0;height:0;display:none}.scroll-timeline-x-address[data-v-d37cbfcc]{scrollbar-width:none;line-height:27px}.scroll-timeline-x-address[data-v-d37cbfcc]:after{content:"";cursor:text;width:24px;height:100%;position:absolute;right:0}.scroll-timeline-x-address[data-v-d37cbfcc]:empty:before{content:"Enter URL or cURL request";color:var(--scalar-color-3);pointer-events:none}.address-bar-bg-states[data-v-d37cbfcc]{--scalar-address-bar-bg:var(--scalar-background-1)}@supports (color:color-mix(in lab, red, red)){.address-bar-bg-states[data-v-d37cbfcc]{--scalar-address-bar-bg:color-mix(in srgb, var(--scalar-background-1), var(--scalar-background-2))}}.address-bar-bg-states[data-v-d37cbfcc]{background:var(--scalar-address-bar-bg)}.address-bar-bg-states[data-v-d37cbfcc]:has(.cm-focused){--scalar-address-bar-bg:var(--scalar-background-1);border-color:var(--scalar-border-color);outline-width:1px;outline-style:solid}:is(.address-bar-bg-states:has(.cm-focused) .fade-left[data-v-d37cbfcc],.address-bar-bg-states:has(.cm-focused) .fade-right[data-v-d37cbfcc]){--scalar-address-bar-bg:var(--scalar-background-1)}.app-exit-button[data-v-42c563b3]{color:#fff;background:#0000001a}.app-exit-button[data-v-42c563b3]:hover{background:#ffffff1a}[data-radix-popper-content-wrapper]:has(.scalar-api-client-context-menu){z-index:1000!important}.resizer[data-v-e2c54c18]{cursor:col-resize;z-index:100;border-right:2px solid #0000;width:5px;transition:border-right-color .3s;position:absolute;top:0;bottom:0;right:0}.scalar-dragging{cursor:col-resize}.resizer:hover,.scalar-dragging .resizer{border-right-color:var(--scalar-background-3)}.scalar-dragging:after{content:"";display:block;position:absolute;inset:0}[data-v-5b336842] .code-input-lite__editor{font-family:var(--scalar-font);font-size:var(--scalar-small);background-color:#0000;padding:5px 8px}[data-v-5b336842] .scalar-pill:not(:last-of-type){margin-right:.15em}[data-v-5b336842] .scalar-pill:not(:first-of-type){margin-left:.5px}.scalar .scalar-app-layout[data-v-77897d1c]{background:var(--scalar-background-1);border:var(--scalar-border-width) solid var(--scalar-border-color);border-radius:8px;width:100%;max-width:1390px;height:calc(100% - 120px);margin:auto;position:relative;overflow:hidden}@media (width<=720px) and (height<=480px){.scalar .scalar-app-layout[data-v-77897d1c]{height:100%;max-height:90svh}}.scalar .scalar-app-exit[data-v-77897d1c]{cursor:pointer;z-index:-1;background:#00000038;width:100vw;height:100vh;position:fixed;top:0;left:0}.dark-mode .scalar .scalar-app-exit[data-v-77897d1c]{background:#00000073}.scalar .scalar-app-exit[data-v-77897d1c]:before{text-align:center;color:#fff;opacity:.6;font-family:sans-serif;font-size:30px;font-weight:100;line-height:50px;position:absolute;top:0;right:12px}.scalar .scalar-app-exit[data-v-77897d1c]:hover:before{opacity:1}.scalar-container[data-v-77897d1c]{visibility:hidden;opacity:0;pointer-events:none;will-change:opacity;justify-content:center;align-items:center;width:100%;height:100%;transition:opacity .35s,visibility 0s linear .35s;display:flex;position:fixed;top:0;bottom:0;left:0;overflow:hidden}.scalar-container.scalar-client--open[data-v-77897d1c]{opacity:1;visibility:visible;pointer-events:auto;transition:opacity .35s}.scalar .url-form-input[data-v-77897d1c]{min-height:auto!important}.scalar .scalar-container[data-v-77897d1c]{line-height:normal}.ref-search-meta[data-v-d1af4404]{background:var(--scalar-background-1);border-bottom-left-radius:var(--scalar-radius-lg);border-bottom-right-radius:var(--scalar-radius-lg);font-size:var(--scalar-font-size-4);color:var(--scalar-color-3);font-weight:var(--scalar-semibold);border-top:var(--scalar-border-width) solid var(--scalar-border-color);gap:12px;padding:6px 12px;display:flex}.request-card[data-v-e8761738]{color:var(--scalar-color-1);font-size:var(--scalar-font-size-3)}.request-method[data-v-e8761738]{font-family:var(--scalar-font-code);text-transform:uppercase;margin-right:6px}.request-card-footer[data-v-e8761738]{flex-shrink:0;justify-content:flex-end;padding:6px;display:flex;position:relative}.request-card-footer-addon[data-v-e8761738]{flex:1;align-items:center;min-width:0;display:flex}.request-editor-section[data-v-e8761738]{flex:1;display:flex}.request-card-simple[data-v-e8761738]{font-size:var(--scalar-small);justify-content:space-between;align-items:center;padding:8px 8px 8px 12px;display:flex}.code-snippet[data-v-e8761738]{flex-direction:column;width:100%;display:flex}.authenticationProvided[data-v-e3416cd5]{color:var(--scalar-color-1);font-weight:var(--scalar-semibold);min-height:40px;font-size:var(--scalar-font-size-3);align-items:center;gap:6px;display:flex;position:relative}.authenticationRequired[data-v-d15ef40b]{color:var(--scalar-color-blue);font-weight:var(--scalar-semibold);min-height:40px;font-size:var(--scalar-font-size-3);align-items:center;gap:6px;display:flex;position:relative}.askForAuthentication[data-v-19cedfcd]{border-top:var(--scalar-border-width) solid var(--scalar-border-color);border-bottom:var(--scalar-border-width) solid var(--scalar-border-color);width:100%;box-shadow:0 var(--scalar-border-width) 0 var(--scalar-background-1), 0 calc(-1 * var(--scalar-border-width)) 0 var(--scalar-background-1);flex-direction:column;margin-bottom:12px;padding:0;display:flex;position:relative}.authContent[data-v-19cedfcd]{grid-template-rows:0fr;width:100%;max-width:520px;min-height:0;margin:auto;transition:grid-template-rows .2s ease-out;display:grid;overflow:hidden}.authContentInner[data-v-19cedfcd]>div{margin:36px 0 48px}.authContent[data-v-19cedfcd] .markdown{margin-bottom:0!important}.askForAuthentication.open .authContent[data-v-19cedfcd]{grid-template-rows:1fr}.continueButton[data-v-19cedfcd]{align-self:flex-end}.toggleButton[data-v-19cedfcd]{cursor:pointer;text-align:left;color:var(--scalar-color-3);border-radius:var(--scalar-radius-lg);background:0 0;border:none;justify-content:space-between;align-items:center;display:flex;position:relative}.authContentInner[data-v-19cedfcd]{min-height:0;overflow:hidden}.authorizeButton[data-v-19cedfcd]{z-index:1;gap:5px;display:flex;background:var(--scalar-color-blue)!important;color:#fff!important;margin:0!important}.autosendPaused[data-v-d08225db]{color:var(--scalar-color-blue);font-weight:var(--scalar-semibold);min-height:40px;font-size:var(--scalar-font-size-3);align-items:center;gap:6px;display:flex;position:relative}.playIcon[data-v-5a1d2b16]{z-index:1;background:var(--scalar-background-1);border-radius:var(--scalar-radius-full);justify-content:center;align-items:center;width:16px;height:16px;padding:4px;display:flex;position:relative}.playIcon[data-v-5a1d2b16]:before{content:"";box-sizing:border-box;border:1.75px solid;border-bottom-color:#0000;border-image:initial;border-radius:var(--scalar-radius-full);background:var(--scalar-background-1);width:16px;height:16px;animation:.42s linear infinite rotation-5a1d2b16;display:inline-block;position:absolute}.buildingRequest[data-v-5a1d2b16]{color:var(--scalar-color-blue);font-weight:var(--scalar-semibold);min-height:40px;font-size:var(--scalar-font-size-3);align-items:center;gap:6px;display:flex;position:relative}.buildingRequest svg[data-v-5a1d2b16]{z-index:1;border-radius:var(--scalar-radius-full);width:100%;height:100%}@keyframes rotation-5a1d2b16{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.requestApproved[data-v-bb311586]{color:var(--scalar-color-green);font-weight:var(--scalar-semibold);min-height:40px;font-size:var(--scalar-font-size-3);align-items:center;gap:6px;display:flex;position:relative}.requestFailed[data-v-29140773]{color:var(--scalar-color-red);font-weight:var(--scalar-semibold);min-height:40px;font-size:var(--scalar-font-size-3);align-items:center;gap:6px;display:flex;position:relative}.requestFailedIcon[data-v-29140773]{border-radius:var(--scalar-radius-full);width:16px;height:16px;padding:4px;box-shadow:inset 0 0 0 1.5px}.requestRejected[data-v-9803a54c]{color:var(--scalar-color-red);font-weight:var(--scalar-semibold);min-height:40px;font-size:var(--scalar-font-size-3);align-items:center;gap:6px;display:flex;position:relative}.requestSuccess[data-v-acc2c0d8]{color:var(--scalar-color-1);font-weight:var(--scalar-semibold);min-height:40px;font-size:var(--scalar-font-size-3);align-items:center;gap:6px;display:flex;position:relative}.light-mode .bg-preview[data-v-92f84612]{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23000' fill-opacity='10%25'%3E%3Crect width='8' height='8' /%3E%3Crect x='8' y='8' width='8' height='8' /%3E%3C/svg%3E")}.dark-mode .bg-preview[data-v-92f84612]{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FFF' fill-opacity='10%25'%3E%3Crect width='8' height='8' /%3E%3Crect x='8' y='8' width='8' height='8' /%3E%3C/svg%3E")}.playIcon[data-v-a375f414]{z-index:1;background:var(--scalar-background-1);border-radius:var(--scalar-radius-full);justify-content:center;align-items:center;width:16px;height:16px;padding:4px;display:flex;position:relative}.playIcon[data-v-a375f414]:before{content:"";box-sizing:border-box;border:1.75px solid;border-bottom-color:#0000;border-image:initial;border-radius:var(--scalar-radius-full);background:var(--scalar-background-1);width:16px;height:16px;animation:.42s linear infinite rotation-a375f414;display:inline-block;position:absolute}.sendingRequest[data-v-a375f414]{color:var(--scalar-color-blue);font-weight:var(--scalar-semibold);min-height:40px;font-size:var(--scalar-font-size-3);align-items:center;gap:6px;display:flex;position:relative}.sendingRequest svg[data-v-a375f414]{z-index:1;border-radius:var(--scalar-radius-full);width:100%;height:100%}@keyframes rotation-a375f414{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.requestHeaderContainer[data-v-1e1f4549]{justify-content:space-between;align-items:center;padding:0 5px;display:flex}.requestPreview[data-v-1e1f4549]{border-radius:var(--scalar-radius-2xl);flex-direction:column;width:100%;display:flex;position:relative}.requestContent[data-v-1e1f4549]{grid-template-rows:0fr;min-height:0;transition:grid-template-rows .2s ease-out;display:grid;overflow:hidden}.requestPreview.open .requestContent[data-v-1e1f4549]{grid-template-rows:1fr}.requestPreview.succeeded[data-v-1e1f4549]{padding:0}.requestContentInner[data-v-1e1f4549]{min-height:0;overflow:hidden}.code[data-v-1e1f4549]{font-size:var(--scalar-font-size-4);border-radius:var(--scalar-radius-2xl);background:var(--scalar-background-2);flex-direction:column;display:flex}@supports (color:color-mix(in lab, red, red)){.code[data-v-1e1f4549]{background:color-mix(in srgb, var(--scalar-background-2), var(--scalar-background-1))}}.code[data-v-1e1f4549]{margin-bottom:12px;overflow:hidden}.dark-mode .code[data-v-1e1f4549]{background:var(--scalar-background-2)}.code h1[data-v-1e1f4549]{font-size:var(--scalar-font-size-3);color:var(--scalar-color-3);padding:8px}.code[data-v-1e1f4549] .codeBlock{max-height:calc(50vh - 100px);padding-top:0}.autosendContainer[data-v-1e1f4549]{justify-content:space-between;display:flex}.sendButton[data-v-1e1f4549]{background:var(--scalar-color-blue);color:#fff;font-weight:var(--scalar-semibold);padding:5px 10px}.sendButton[data-v-1e1f4549]:hover,.sendButton[data-v-1e1f4549]:active{background:var(--scalar-color-blue)}@supports (color:color-mix(in lab, red, red)){.sendButton[data-v-1e1f4549]:hover,.sendButton[data-v-1e1f4549]:active{background:color-mix(in srgb, var(--scalar-color-blue), black 10%)}}.sendButton[data-v-1e1f4549]:hover,.sendButton[data-v-1e1f4549]:active{color:#fff!important}.toggleButton[data-v-1e1f4549]{cursor:pointer;text-align:left;color:var(--scalar-color-3);border-radius:var(--scalar-radius-lg);background:0 0;border:none;justify-content:space-between;align-items:center;display:flex;position:relative}.toggleButton[data-v-1e1f4549]:hover{text-decoration:underline}.executeRequestTool[data-v-9025b7d4]{border-top:var(--scalar-border-width) solid var(--scalar-border-color);border-bottom:var(--scalar-border-width) solid var(--scalar-border-color);box-shadow:0 var(--scalar-border-width) 0 var(--scalar-background-1), 0 calc(-1 * var(--scalar-border-width)) 0 var(--scalar-background-1);flex-direction:column;gap:10px;margin-bottom:12px;display:flex}.playIcon[data-v-0248d9dc]{z-index:1;background:var(--scalar-background-1);border-radius:var(--scalar-radius-full);justify-content:center;align-items:center;width:16px;height:16px;padding:4px;display:flex;position:relative}.playIcon[data-v-0248d9dc]:before{content:"";box-sizing:border-box;border:1.5px solid;border-bottom-color:#0000;border-image:initial;border-radius:var(--scalar-radius-full);background:var(--scalar-background-1);width:16px;height:16px;animation:.42s linear infinite rotation-0248d9dc;display:inline-block;position:absolute}.loadingApiSpecs[data-v-0248d9dc]{color:var(--scalar-color-2);font-weight:var(--scalar-semibold);font-size:var(--scalar-font-size-3);align-items:center;gap:6px;margin-bottom:10px;display:flex}.loadingApiSpecs svg[data-v-0248d9dc]{z-index:1;border-radius:var(--scalar-radius-full);width:100%;height:100%}@keyframes rotation-0248d9dc{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.contextItem[data-v-0509fef2]{white-space:nowrap;color:var(--scalar-color-2);cursor:pointer;vertical-align:middle;border-radius:var(--scalar-radius-2xl);background:var(--scalar-background-2);align-items:center;padding:5px 10px;font-size:10px;display:flex}@supports (color:color-mix(in lab, red, red)){.contextItem[data-v-0509fef2]{background:color-mix(in srgb, var(--scalar-background-2), var(--scalar-background-1))}}.contextItem[data-v-0509fef2]{max-width:200px}.contextItemText[data-v-0509fef2]{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.shimmer[data-v-0509fef2]{background:var(--scalar-background-2);background-image:linear-gradient(90deg, #202020 0%, var(--scalar-background-2) 40%, var(--scalar-background-3) 80%);background-size:200% 100%;animation:1.4s ease-in-out infinite shimmer-0509fef2}.light-mode .shimmer[data-v-0509fef2]{background:var(--scalar-background-2);background-image:linear-gradient(90deg, #fafafa 0%, var(--scalar-background-2) 40%, var(--scalar-background-3) 80%);background-size:200% 100%;animation:1.4s ease-in-out infinite shimmer-0509fef2}@keyframes shimmer-0509fef2{0%{background-position:200% 0}to{background-position:-200% 0}}.playIcon[data-v-43864661]{z-index:1;background:var(--scalar-background-1);border-radius:var(--scalar-radius-full);justify-content:center;align-items:center;width:16px;height:16px;padding:4px;display:flex;position:relative}.playIcon[data-v-43864661]:before{content:"";box-sizing:border-box;border:1.5px solid;border-bottom-color:#0000;border-image:initial;border-radius:var(--scalar-radius-full);background:var(--scalar-background-1);width:16px;height:16px;animation:.42s linear infinite rotation-43864661;display:inline-block;position:absolute}.sendingRequest[data-v-43864661]{color:var(--scalar-color-2);font-weight:var(--scalar-semibold);font-size:var(--scalar-font-size-3);align-items:center;gap:6px;margin-bottom:10px;display:flex}.sendingRequest svg[data-v-43864661]{z-index:1;border-radius:var(--scalar-radius-full);width:100%;height:100%}@keyframes rotation-43864661{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.operations[data-v-cbff70ed]{flex-wrap:wrap;align-items:center;gap:5px;margin-bottom:12px;display:flex}.operations[data-v-cbff70ed]:empty{margin-bottom:-12px}.overflowPopover[data-v-cbff70ed]{flex-direction:column;gap:5px;padding:8px;display:flex}.catalogModal .scalar-modal-body{flex-direction:column;display:flex}.searchInput[data-v-18b2aea2]{border:var(--scalar-border-width) solid var(--scalar-border-color);border-radius:var(--scalar-radius-lg);margin-bottom:10px}.catalog[data-v-18b2aea2]{font-size:var(--scalar-font-size-3);grid-template-columns:1fr 1fr;gap:10px;display:grid;overflow-y:scroll}.item[data-v-18b2aea2]{background-color:var(--scalar-background-2);border-radius:var(--scalar-radius-lg);align-items:center;gap:10px;padding:15px;transition:background-color .16s;display:flex}.item[data-v-18b2aea2]:hover{background-color:var(--scalar-background-3)!important}@supports (color:color-mix(in lab, red, red)){.item[data-v-18b2aea2]:hover{background-color:color-mix(in srgb, var(--scalar-background-3), transparent 40%)!important}}.left[data-v-18b2aea2]{align-items:center}.right[data-v-18b2aea2]{flex-direction:column;display:flex}.logo[data-v-18b2aea2]{width:25px}.item-top[data-v-18b2aea2]{gap:10px;display:flex}.version[data-v-18b2aea2]{background:var(--scalar-background-3);border-radius:var(--scalar-radius);font-size:var(--scalar-font-size-5);color:var(--scalar-color-3);padding:2px 5px}.description[data-v-18b2aea2]{color:var(--scalar-color-2)}.dropdown-item[data-v-e2c3bd19]{align-items:center;gap:10px;display:flex}.approvalSection[data-v-fb5102df]{background:var(--scalar-color-blue);width:100%;margin-bottom:-16px;padding:8px 8px 24px 12px}@supports (color:color-mix(in lab, red, red)){.approvalSection[data-v-fb5102df]{background:color-mix(in srgb, var(--scalar-color-blue), var(--scalar-background-1) 95%)}}.approvalSection[data-v-fb5102df]{border:var(--scalar-border-width) solid var(--scalar-border-color);border-radius:var(--scalar-radius-3xl) var(--scalar-radius-3xl) 0 0;justify-content:space-between;align-items:center;display:flex;position:absolute;top:0;transform:translateY(calc(16px - 100%))}.approvalText[data-v-fb5102df]{font-weight:var(--scalar-semibold);font-size:var(--scalar-font-size-3)}.approveContainer[data-v-fb5102df]{gap:5px;display:flex}.actionButton[data-v-fb5102df]{font-weight:var(--scalar-semibold);border-radius:var(--scalar-radius-full);font-size:var(--scalar-font-size-3);align-items:center;padding:6px 12px;display:flex}.rejectButton[data-v-fb5102df]{color:#fff;background:var(--scalar-color-red)}.rejectButton[data-v-fb5102df]:hover,.rejectButton[data-v-fb5102df]:active{background:var(--scalar-color-red)}@supports (color:color-mix(in lab, red, red)){.rejectButton[data-v-fb5102df]:hover,.rejectButton[data-v-fb5102df]:active{background:color-mix(in srgb, var(--scalar-color-red), var(--scalar-background-1) 10%)}}.rejectButton[data-v-fb5102df]:hover,.rejectButton[data-v-fb5102df]:active{color:#fff!important}.approveButton[data-v-fb5102df]{color:#fff;background:var(--scalar-color-blue)}.approveButton[data-v-fb5102df]:hover,.approveButton[data-v-fb5102df]:active{background:var(--scalar-color-blue)}@supports (color:color-mix(in lab, red, red)){.approveButton[data-v-fb5102df]:hover,.approveButton[data-v-fb5102df]:active{background:color-mix(in srgb, var(--scalar-color-blue), var(--scalar-background-1) 10%)}}.approveButton[data-v-fb5102df]:hover,.approveButton[data-v-fb5102df]:active{color:#fff!important}.error[data-v-130cb1d5]{border:var(--scalar-border-width) solid var(--scalar-border-color);border-radius:var(--scalar-radius-3xl) var(--scalar-radius-3xl) 0 0;background:var(--scalar-color-red);align-items:center;margin-bottom:-16px;padding:8px 8px 24px 12px;display:flex}@supports (color:color-mix(in lab, red, red)){.error[data-v-130cb1d5]{background:color-mix(in srgb, var(--scalar-color-red), var(--scalar-background-1) 95%)}}.error[data-v-130cb1d5]{font-weight:var(--scalar-semibold);font-size:var(--scalar-font-size-3);position:absolute;top:0;transform:translateY(calc(16px - 100%))}.freeMessagesInfoSection[data-v-1921dede]{background:var(--scalar-color-blue);width:100%;margin-bottom:-16px;padding:8px 8px 24px 12px;position:relative}@supports (color:color-mix(in lab, red, red)){.freeMessagesInfoSection[data-v-1921dede]{background:color-mix(in srgb, var(--scalar-color-blue), var(--scalar-background-1) 95%)}}.freeMessagesInfoSection[data-v-1921dede]{border:var(--scalar-border-width) solid var(--scalar-border-color);border-radius:var(--scalar-radius-3xl) var(--scalar-radius-3xl) 0 0;justify-content:space-between;align-items:center;display:flex}.infoText[data-v-1921dede]{font-weight:var(--scalar-semibold);font-size:var(--scalar-font-size-3)}.actionsContainer[data-v-1921dede]{align-items:center;gap:8px;display:flex}.actionButton[data-v-1921dede]{font-weight:var(--scalar-semibold);border-radius:var(--scalar-radius-full);align-items:center;padding:6px 12px;display:flex}.upgradeButton[data-v-1921dede]{color:#fff;font-size:var(--scalar-font-size-3);background:var(--scalar-color-blue)}.upgradeButton[data-v-1921dede]:hover,.upgradeButton[data-v-1921dede]:active{background:var(--scalar-color-blue)}@supports (color:color-mix(in lab, red, red)){.upgradeButton[data-v-1921dede]:hover,.upgradeButton[data-v-1921dede]:active{background:color-mix(in srgb, var(--scalar-color-blue), var(--scalar-background-1) 10%)}}.upgradeButton[data-v-1921dede]:hover,.upgradeButton[data-v-1921dede]:active{color:#fff!important}.closeButton[data-v-1921dede]{border-radius:var(--scalar-radius-full);width:28px;height:28px;color:var(--scalar-color-2);cursor:pointer;background:0 0;border:none;justify-content:center;align-items:center;display:flex}.closeButton[data-v-1921dede]:hover{background:var(--scalar-color-blue)}@supports (color:color-mix(in lab, red, red)){.closeButton[data-v-1921dede]:hover{background:color-mix(in srgb, var(--scalar-color-blue), var(--scalar-background-1) 80%)}}.closeButton[data-v-1921dede]:hover{color:var(--scalar-color-1)}.paymentSection[data-v-9d163ea1]{background:var(--scalar-color-blue);width:100%;margin-bottom:-16px;padding:8px 8px 24px 12px;position:relative}@supports (color:color-mix(in lab, red, red)){.paymentSection[data-v-9d163ea1]{background:color-mix(in srgb, var(--scalar-color-blue), var(--scalar-background-1) 95%)}}.paymentSection[data-v-9d163ea1]{border:var(--scalar-border-width) solid var(--scalar-border-color);border-radius:var(--scalar-radius-3xl) var(--scalar-radius-3xl) 0 0;justify-content:space-between;align-items:center;display:flex;position:absolute;top:0;transform:translateY(calc(16px - 100%))}.approvalText[data-v-9d163ea1]{font-weight:var(--scalar-semibold);font-size:var(--scalar-font-size-3)}.paymentContainer[data-v-9d163ea1]{gap:5px;display:flex}.actionButton[data-v-9d163ea1]{font-weight:var(--scalar-semibold);border-radius:var(--scalar-radius-full);align-items:center;padding:6px 12px;display:flex}.rejectButton[data-v-9d163ea1]{color:#fff;background:var(--scalar-color-red)}.rejectButton[data-v-9d163ea1]:hover,.rejectButton[data-v-9d163ea1]:active{background:var(--scalar-color-red)}@supports (color:color-mix(in lab, red, red)){.rejectButton[data-v-9d163ea1]:hover,.rejectButton[data-v-9d163ea1]:active{background:color-mix(in srgb, var(--scalar-color-red), var(--scalar-background-1) 10%)}}.rejectButton[data-v-9d163ea1]:hover,.rejectButton[data-v-9d163ea1]:active{color:#fff!important}.approveButton[data-v-9d163ea1]{color:#fff;font-size:var(--scalar-font-size-3);background:var(--scalar-color-blue)}.approveButton[data-v-9d163ea1]:hover,.approveButton[data-v-9d163ea1]:active{background:var(--scalar-color-blue)}@supports (color:color-mix(in lab, red, red)){.approveButton[data-v-9d163ea1]:hover,.approveButton[data-v-9d163ea1]:active{background:color-mix(in srgb, var(--scalar-color-blue), var(--scalar-background-1) 10%)}}.approveButton[data-v-9d163ea1]:hover,.approveButton[data-v-9d163ea1]:active{color:#fff!important}.paymentInfo[data-v-9d163ea1]{width:300px;box-shadow:var(--scalar-shadow-2);background:var(--scalar-background-1);border-radius:var(--scalar-radius-3xl);pointer-events:none;opacity:0;padding:12px;transition:all .2s ease-in-out;position:absolute;bottom:70px;right:0;transform:translateY(-5px)}.paymentInfo h3[data-v-9d163ea1]{font-size:var(--scalar-font-size-1);font-weight:var(--scalar-bold);margin-bottom:18px}.paymentInfo h3 span[data-v-9d163ea1]{font-size:var(--scalar-font-size-2)}.dark-mode .paymentInfo[data-v-9d163ea1]{background:var(--scalar-background-2)}.paymentContainer:hover .paymentInfo[data-v-9d163ea1]{opacity:1;transform:translate(0)}.paymentInfoItem[data-v-9d163ea1]{font-size:var(--scalar-font-size-3);color:var(--scalar-color-2);font-weight:var(--scalar-semibold);justify-content:space-between;margin-top:8px;display:flex}.paymentInfoSection[data-v-9d163ea1]:not(:last-child){border-bottom:var(--scalar-border-width) solid var(--scalar-border-color);padding-bottom:8px}.searchItem[data-v-3e0405c7]{font-size:var(--scalar-font-size-3);align-items:center;gap:9px;padding:8px 10px;display:flex}.searchInput[data-v-3e0405c7]{margin-bottom:5px}.searchItem[data-v-3e0405c7]:hover{background:var(--scalar-background-2)}.searchItemLogo[data-v-3e0405c7]{width:15px}.searchIcon[data-v-3e0405c7]{margin-right:7px}.searchResultsEmpty[data-v-3e0405c7]{font-size:var(--scalar-font-size-3);color:var(--scalar-color-2);margin:10px}.uploadSection[data-v-9621c76b]{background:var(--scalar-color-blue);width:100%;margin-bottom:-16px;padding:8px 8px 24px 12px;position:relative}@supports (color:color-mix(in lab, red, red)){.uploadSection[data-v-9621c76b]{background:color-mix(in srgb, var(--scalar-color-blue), var(--scalar-background-1) 95%)}}.uploadSection[data-v-9621c76b]{border:var(--scalar-border-width) solid var(--scalar-border-color);border-radius:var(--scalar-radius-3xl) var(--scalar-radius-3xl) 0 0;justify-content:space-between;align-items:center;display:flex;position:absolute;top:0;transform:translateY(calc(16px - 100%))}.uploadSection.error[data-v-9621c76b]{background:var(--scalar-color-red)}@supports (color:color-mix(in lab, red, red)){.uploadSection.error[data-v-9621c76b]{background:color-mix(in srgb, var(--scalar-color-red), var(--scalar-background-1) 95%)}}.uploadSection.done[data-v-9621c76b]{background:var(--scalar-color-green)}@supports (color:color-mix(in lab, red, red)){.uploadSection.done[data-v-9621c76b]{background:color-mix(in srgb, var(--scalar-color-green), var(--scalar-background-1) 95%)}}.uploadText[data-v-9621c76b]{font-weight:var(--scalar-semibold);font-size:var(--scalar-font-size-3)}.icon[data-v-9621c76b]{width:20px;height:20px}.actionContainer[data-v-5e4d9063]{background:var(--scalar-background-2)}@supports (color:color-mix(in lab, red, red)){.actionContainer[data-v-5e4d9063]{background:color-mix(in srgb, var(--scalar-background-2), var(--scalar-background-1))}}.actionContainer[data-v-5e4d9063]{border:var(--scalar-border-width) solid var(--scalar-border-color);border-radius:var(--scalar-radius-3xl);width:100%;box-shadow:0 24px 0 2px var(--scalar-background-1);position:relative}.promptForm[data-v-5e4d9063]{background:var(--scalar-background-1);width:100%;box-shadow:var(--scalar-shadow-1), 0 0 0 var(--scalar-border-width) var(--scalar-border-color);border-radius:var(--scalar-radius-3xl);flex-direction:column;display:flex;position:relative}.inputActionsContainer[data-v-5e4d9063]{justify-content:space-between;padding:0 8px 8px;display:flex}.inputActionsLeft[data-v-5e4d9063]{flex-wrap:wrap;align-items:center;gap:5px;display:flex}.inputActionsRight[data-v-5e4d9063]{gap:5px;display:flex;position:relative}.apiPill[data-v-5e4d9063]{font-size:var(--scalar-font-size-3);border:var(--scalar-border-width) solid var(--scalar-border-color);color:var(--scalar-color-2);font-weight:var(--scalar-semibold);border-radius:var(--scalar-radius-3xl);pointer-events:all;z-index:1;-webkit-user-select:none;user-select:none;align-items:center;gap:4px;height:28px;padding:0 8px;display:flex}.apiPillLogo[data-v-5e4d9063]{width:15px}.apiPillRemove[data-v-5e4d9063]{border-radius:var(--scalar-radius-full);justify-content:center;align-items:center;width:24px;height:24px;margin-right:-6px;display:flex}.apiPill:hover .apiPillRemove[data-v-5e4d9063]{background:var(--scalar-background-2)}.dark-mode .apiPill:hover .apiPillRemove[data-v-5e4d9063]{background:var(--scalar-background-3)}.apiPillRemove[data-v-5e4d9063]:hover{color:var(--scalar-color-1)}.prompt[data-v-5e4d9063]{resize:none;field-sizing:content;z-index:1;scrollbar-width:thin;word-wrap:break-word;width:100%;max-width:100%;min-height:64px;max-height:250px;font-family:var(--scalar-font);border:none;outline:none;padding:12px 12px 14px;font-size:16px;overflow-y:auto}.dark-mode .promptForm[data-v-5e4d9063]{background:var(--scalar-background-2)}.prompt[data-v-5e4d9063]:disabled{color:var(--scalar-color-3)}.addAPIButton[data-v-5e4d9063]{color:var(--scalar-color-2);font-size:var(--scalar-font-size-3);width:28px;height:28px;font-weight:var(--scalar-bold);border-radius:var(--scalar-radius-full);pointer-events:all;z-index:1;box-shadow:0 0 0 var(--scalar-border-width) var(--scalar-border-color);justify-content:center;align-items:center;gap:4px;display:flex}.addAPIButton[data-v-5e4d9063]:hover{background:var(--scalar-background-2)}@supports (color:color-mix(in lab, red, red)){.addAPIButton[data-v-5e4d9063]:hover{background:color-mix(in srgb, var(--scalar-background-2), var(--scalar-background-1))}}.addAPIButton[data-v-5e4d9063]:hover{box-shadow:0 0 0 var(--scalar-border-width) var(--scalar-border-color)}.dark-mode .addAPIButton[data-v-5e4d9063]:hover{background:var(--scalar-background-3)}.settingsButton[data-v-5e4d9063]{z-index:1;color:var(--scalar-color-3)!important;border-radius:var(--scalar-radius-full)!important;margin:0!important}.settingsButton[aria-disabled=true][data-v-5e4d9063]{background:var(--scalar-background-2)}.dark-mode .settingsButton[data-v-5e4d9063]:hover{background:var(--scalar-background-3)}.sendButton[data-v-5e4d9063]{z-index:1;border:var(--scalar-border-width) solid var(--scalar-color-blue);background:var(--scalar-color-blue)!important;border-radius:var(--scalar-radius-full)!important;margin:0!important}.sendButton[data-v-5e4d9063]:not([aria-disabled=true]){color:#fff!important}.sendButton[data-v-5e4d9063]:not([aria-disabled=true]):hover{background:var(--scalar-color-blue)!important}@supports (color:color-mix(in lab, red, red)){.sendButton[data-v-5e4d9063]:not([aria-disabled=true]):hover{background:color-mix(in srgb, var(--scalar-color-blue), transparent 10%)!important}}.sendButton[aria-disabled=true][data-v-5e4d9063]{border:var(--scalar-border-width) solid var(--scalar-border-color);background:var(--scalar-background-2)!important;color:var(--scalar-color-3)!important}.dark-mode .sendButton[aria-disabled=true][data-v-5e4d9063]{background:var(--scalar-background-3)!important}.contextContainer[data-v-5e4d9063]{width:100%;color:var(--scalar-color-2);font-size:var(--scalar-font-size-3);-webkit-user-select:none;user-select:none;justify-content:space-between;padding:10px 12px 12px;display:flex}.settingsButton[data-v-5e4d9063]{font-weight:var(--scalar-semibold);border-radius:var(--scalar-radius-lg);margin:-4px -6px;padding:4px 6px}.settingsButton[data-v-5e4d9063]:hover{background:var(--scalar-background-2);box-shadow:0 0 var(--scalar-border-width) 0 var(--scalar-border-color);cursor:pointer}.agentLabel[data-v-5e4d9063]{cursor:text;width:100%;height:100%;font-size:0;position:absolute}.sendCheckboxContinue[data-v-5e4d9063]:has(input){border-radius:var(--scalar-radius-3xl);background:var(--scalar-background-2);box-shadow:0 0 0 1.5px var(--scalar-background-2);color:var(--scalar-color-2);font-size:var(--scalar-font-size-3);font-weight:var(--scalar-semibold);-webkit-user-select:none;user-select:none;align-items:center;height:28px;display:flex}.dark-mode .sendCheckboxContinue[data-v-5e4d9063]:has(input){background:var(--scalar-background-3);box-shadow:0 0 0 1.5px var(--scalar-background-3)}.addMoreContext[data-v-5e4d9063]{height:40px;font-size:var(--scalar-font-size-3);color:var(--scalar-color-3);align-items:center;padding:0 8px 0 12px;display:flex;position:relative}.addMoreContext[data-v-5e4d9063]:before{content:"";background:var(--scalar-background-1);width:8px;height:8px}@supports (color:color-mix(in lab, red, red)){.addMoreContext[data-v-5e4d9063]:before{background:color-mix(in srgb, var(--scalar-background-1), var(--scalar-background-2))}}.addMoreContext[data-v-5e4d9063]:before{box-shadow:-.5px -.5px 0 var(--scalar-border-color), inset .5px .5px 1px var(--scalar-border-color);position:absolute;top:-3px;left:18px;transform:rotate(45deg)}.dark-mode .addMoreContext[data-v-5e4d9063]:before{box-shadow:-.5px -.5px 0 var(--scalar-border-color)}.addAPIContext[data-v-5e4d9063]{border-radius:var(--scalar-radius-full);border:var(--scalar-border-width) solid var(--scalar-border-color);justify-content:center;align-items:center;width:28px;height:28px;display:flex}.termsAgree[data-v-5e4d9063]{cursor:pointer;height:inherit;border-radius:var(--scalar-radius-3xl);align-items:center;gap:5px;margin:0 5px;display:flex}.termsAgree[data-v-5e4d9063]:hover{color:var(--scalar-color-1)}.termsAgree:hover .termsAgreeIcon[data-v-5e4d9063]{background:var(--scalar-color-1);color:var(--scalar-background-1)}.termsAgreeIcon[data-v-5e4d9063]{width:inherit;height:inherit;border-radius:var(--scalar-radius-full);background:var(--scalar-background-2);padding:2px}.chat[data-v-6573ec87]{flex-direction:column;flex:1;width:100%;max-width:744px;padding:24px 0;display:flex}.userMessage[data-v-6573ec87]{border-radius:var(--scalar-radius-3xl);background:var(--scalar-background-2);width:fit-content;max-width:80%;color:var(--scalar-color-1);padding-top:6px;padding-bottom:6px;margin-bottom:12px;margin-left:auto;padding-inline:16px;font-size:16px;line-height:24px}div+.userMessage[data-v-6573ec87]{margin-top:64px}.chat[data-v-6573ec87]>div:has(.executeRequestTool)+div:has(.executeRequestTool){margin-top:-12px}.spacer[data-v-6573ec87]{width:100%;min-height:280px}.formContainer[data-v-6573ec87]{z-index:1;width:100%;max-width:744px;position:fixed;bottom:20px}.chat[data-v-6573ec87] .markdown{margin-bottom:12px}.agentLogo[data-v-f9ec1d34]{margin-bottom:15px}.startContainer[data-v-f9ec1d34]{flex-direction:column;justify-content:center;align-items:center;width:100%;max-width:720px;height:100%;display:flex;position:relative}.promptText[data-v-f9ec1d34]{font-size:1.5rem;font-weight:var(--scalar-font-bold);margin-bottom:50px}.disclaimerText[data-v-f9ec1d34]{text-align:center;color:var(--scalar-color-3);font-size:var(--scalar-font-size-3);text-wrap:balance;margin-top:40px;line-height:1.44}.disclaimerLink[data-v-f9ec1d34]{text-decoration:underline}.wrapper[data-v-f1eee0af]{flex-direction:column;align-items:center;width:100%;height:100%;display:flex}.docSettings[data-v-01a25619]{font-size:var(--scalar-font-size-3);flex-direction:column;gap:12px;max-height:600px;margin-bottom:12px;display:flex}.documentName[data-v-01a25619]{font-weight:var(--scalar-semibold)}.settingsModal .scalar-modal-layout{z-index:10!important}.settingsModal .scalar-modal-body{overflow:hidden auto}.documentList[data-v-dd2544e6]{font-size:var(--scalar-font-size-3);flex-direction:column;margin-bottom:12px;display:flex}.document[data-v-dd2544e6]{border-top:var(--scalar-border-width) solid var(--scalar-border-color);border-bottom:var(--scalar-border-width) solid var(--scalar-border-color);flex-direction:column;width:calc(100% + 24px);padding:0 12px;display:flex;position:relative;left:-12px}.document[data-v-dd2544e6]:first-of-type:not(:last-of-type){border-bottom:none}.documentName[data-v-dd2544e6]{font-weight:var(--scalar-semibold);color:var(--scalar-color-2);align-items:center;gap:4px;padding:12px 0;display:flex}.documentNameActive[data-v-dd2544e6]{color:var(--scalar-color-1)}.settingsHeading[data-v-dd2544e6]{font-size:19px;font-weight:var(--scalar-semibold);align-items:center;gap:5px;margin-bottom:12px;display:flex}.proxyUrlContainer[data-v-dd2544e6]{font-size:var(--scalar-font-size-3);flex-direction:column;gap:5px;display:flex}.proxyUrlContainer label[data-v-dd2544e6]{font-weight:var(--scalar-semibold)}.noDocuments[data-v-dd2544e6]{color:var(--scalar-color-2);margin-bottom:10px}@media print{.scalar-app{--full-height:100%!important;--refs-header-height:0px!important;--refs-viewport-offset:0px!important;--refs-sidebar-width:0px!important}.references-layout{min-height:0!important;display:block!important}.t-doc__sidebar,.t-doc__header,.references-footer,.section-flare,.agent-scalar,.agent-scalar-overlay{display:none!important}.scalar-app .sticky,.scalar-app .examples,.scalar-app .operation-example-card,.scalar-app .endpoints-card,.scalar-app .channels-card,.scalar-app .sticky-cards,.scalar-app .callback-list-item-title{z-index:auto!important;position:static!important;top:auto!important}.scalar-app .examples>*,.scalar-app .operation-example-card{max-height:none!important}.scalar-app .endpoints,.scalar-app .channels,.scalar-app .scalar-card-content{overflow:visible!important}.scalar-app .property,.scalar-app .parameter-item,.scalar-app .scalar-card{break-inside:avoid}.scalar-app h1,.scalar-app h2,.scalar-app h3{break-after:avoid}}.scalar-app .\\@container{container-type:inline-size}.scalar-app .pointer-events-auto{pointer-events:auto}.scalar-app .pointer-events-none{pointer-events:none}.scalar-app .collapse{visibility:collapse}.scalar-app .invisible{visibility:hidden}.scalar-app .visible{visibility:visible}.scalar-app .floating-bg:before{background-color:var(--scalar-background-2);border-radius:var(--scalar-radius);content:"";opacity:0;z-index:1;width:calc(100% + 8px);height:calc(100% - 4px);transition:opacity .2s ease-in-out;position:absolute;top:2.5px;left:-4px}.scalar-app .floating-bg:hover:before{opacity:1}.scalar-app .centered{--tw-translate-y:calc(calc(1 / 2 * 100%) * -1);--tw-translate-x:calc(calc(1 / 2 * 100%) * -1);translate:var(--tw-translate-x) var(--tw-translate-y);position:absolute;top:50%;left:50%}.scalar-app .centered-y{--tw-translate-y:calc(calc(1 / 2 * 100%) * -1);translate:var(--tw-translate-x) var(--tw-translate-y);position:absolute;top:50%}.scalar-app .sr-only{clip-path:inset(50%);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.scalar-app .absolute{position:absolute}.scalar-app .fixed{position:fixed}.scalar-app .relative{position:relative}.scalar-app .static{position:static}.scalar-app .sticky{position:sticky}.scalar-app .inset-0{inset:0}.scalar-app .inset-x-0{inset-inline:0}.scalar-app .inset-x-1{inset-inline:4px}.scalar-app .inset-x-px{inset-inline:1px}.scalar-app .-inset-y-0\\.5{inset-block:-2px}.scalar-app .-inset-y-0\\.75{inset-block:-3px}.scalar-app .inset-y-0{inset-block:0}.scalar-app .inset-y-0\\.5{inset-block:2px}.scalar-app .-top-1{top:-4px}.scalar-app .-top-2{top:-8px}.scalar-app .top-\\(--nested-items-offset\\)\\!{top:var(--nested-items-offset)!important}.scalar-app .top-\\(--refs-header-height\\){top:var(--refs-header-height)}.scalar-app .top-\\(--scalar-custom-header-height\\,0\\){top:var(--scalar-custom-header-height,0)}.scalar-app .top-\\(--scalar-sidebar-sticky-offset\\,0\\){top:var(--scalar-sidebar-sticky-offset,0)}.scalar-app .top-0{top:0}.scalar-app .top-0\\.5{top:2px}.scalar-app .top-1\\/2{top:50%}.scalar-app .top-2{top:8px}.scalar-app .top-2\\.5{top:10px}.scalar-app .top-3\\.5{top:14px}.scalar-app .top-12{top:48px}.scalar-app .top-\\[1lh\\]{top:1lh}.scalar-app .top-\\[calc\\(10px\\+0\\.5lh\\)\\]{top:calc(10px + .5lh)}.scalar-app .top-\\[calc\\(100\\%\\+4px\\)\\]{top:calc(100% + 4px)}.scalar-app .top-px{top:1px}.scalar-app .-right-1{right:-4px}.scalar-app .-right-1\\.5{right:-6px}.scalar-app .-right-\\[30px\\]{right:-30px}.scalar-app .right-0{right:0}.scalar-app .right-0\\.75{right:3px}.scalar-app .right-1{right:4px}.scalar-app .right-1\\.5{right:6px}.scalar-app .right-1\\.25{right:5px}.scalar-app .right-2{right:8px}.scalar-app .right-2\\.5{right:10px}.scalar-app .right-4{right:16px}.scalar-app .right-7{right:28px}.scalar-app .right-12{right:48px}.scalar-app .bottom-1{bottom:4px}.scalar-app .bottom-4{bottom:16px}.scalar-app .bottom-\\[var\\(--scalar-border-width\\)\\]{bottom:var(--scalar-border-width)}.scalar-app .-left-4\\.5{left:-18px}.scalar-app .-left-5{left:-20px}.scalar-app .-left-6{left:-24px}.scalar-app .left-0{left:0}.scalar-app .left-1\\/2{left:50%}.scalar-app .left-2{left:8px}.scalar-app .left-2\\.5{left:10px}.scalar-app .left-3{left:12px}.scalar-app .left-4{left:16px}.scalar-app .left-border{left:var(--scalar-border-width)}.scalar-app .left-px{left:1px}.scalar-app .left-refs-w-sidebar{left:var(--refs-sidebar-width)}.scalar-app .-z-1{z-index:calc(1 * -1)}.scalar-app .-z-2{z-index:calc(2 * -1)}.scalar-app .z-0{z-index:0}.scalar-app .z-1{z-index:1}.scalar-app .z-10{z-index:10}.scalar-app .z-50{z-index:50}.scalar-app .z-\\[1\\]{z-index:1}.scalar-app .z-context{z-index:1000}.scalar-app .z-context-plus{z-index:1001}.scalar-app .z-overlay{z-index:10000}.scalar-app .z-tooltip{z-index:99999}.scalar-app .order-789{order:789}.scalar-app .order-last{order:9999}.scalar-app .col-span-full{grid-column:1/-1}.scalar-app .container{width:100%}@media (width>=400px){.scalar-app .container{max-width:400px}}@media (width>=600px){.scalar-app .container{max-width:600px}}@media (width>=800px){.scalar-app .container{max-width:800px}}@media (width>=1000px){.scalar-app .container{max-width:1000px}}@media (width>=1200px){.scalar-app .container{max-width:1200px}}@media (width>=96rem){.scalar-app .container{max-width:96rem}}.scalar-app .\\!m-0{margin:0!important}.scalar-app .-m-0\\.5{margin:-2px}.scalar-app .-m-1{margin:-4px}.scalar-app .-m-2{margin:-8px}.scalar-app .-m-px{margin:-1px}.scalar-app .m-0{margin:0}.scalar-app .m-1{margin:4px}.scalar-app .m-auto{margin:auto}.scalar-app .-mx-\\(--scalar-sidebar-padding\\){margin-inline:calc(var(--scalar-sidebar-padding) * -1)}.scalar-app .-mx-0\\.25{margin-inline:-1px}.scalar-app .-mx-0\\.75{margin-inline:-3px}.scalar-app .-mx-2{margin-inline:-8px}.scalar-app .-mx-px{margin-inline:-1px}.scalar-app .mx-0\\.5{margin-inline:2px}.scalar-app .mx-1{margin-inline:4px}.scalar-app .mx-1\\.5{margin-inline:6px}.scalar-app .mx-px{margin-inline:1px}.scalar-app .-my-0\\.5{margin-block:-2px}.scalar-app .-my-1{margin-block:-4px}.scalar-app .-my-1\\.5{margin-block:-6px}.scalar-app .-my-2{margin-block:-8px}.scalar-app .-my-px{margin-block:-1px}.scalar-app .my-0\\.75{margin-block:3px}.scalar-app .my-1\\.5{margin-block:6px}.scalar-app .my-2{margin-block:8px}.scalar-app .my-3{margin-block:12px}.scalar-app .my-12{margin-block:48px}.scalar-app .-mt-\\(--scalar-sidebar-padding\\){margin-top:calc(var(--scalar-sidebar-padding) * -1)}.scalar-app .-mt-1{margin-top:-4px}.scalar-app .-mt-1\\.5{margin-top:-6px}.scalar-app .-mt-\\[\\.5px\\]{margin-top:-.5px}.scalar-app .mt-0{margin-top:0}.scalar-app .mt-0\\.5{margin-top:2px}.scalar-app .mt-0\\.25{margin-top:1px}.scalar-app .mt-1{margin-top:4px}.scalar-app .mt-2{margin-top:8px}.scalar-app .mt-3{margin-top:12px}.scalar-app .mt-4{margin-top:16px}.scalar-app .mt-6{margin-top:24px}.scalar-app .mt-\\[15svh\\]{margin-top:15svh}.scalar-app .mt-\\[20svh\\]{margin-top:20svh}.scalar-app .mt-auto{margin-top:auto}.scalar-app .mt-px{margin-top:1px}.scalar-app .-mr-0\\.5{margin-right:-2px}.scalar-app .-mr-1{margin-right:-4px}.scalar-app .-mr-1\\.5{margin-right:-6px}.scalar-app .-mr-px{margin-right:-1px}.scalar-app .mr-0{margin-right:0}.scalar-app .mr-0\\.5{margin-right:2px}.scalar-app .mr-0\\.75{margin-right:3px}.scalar-app .mr-1{margin-right:4px}.scalar-app .mr-1\\.5{margin-right:6px}.scalar-app .mr-1\\.25{margin-right:5px}.scalar-app .mr-2{margin-right:8px}.scalar-app .mr-3{margin-right:12px}.scalar-app .mr-\\[calc\\(20px-var\\(--scalar-sidebar-indent\\)\\)\\]{margin-right:calc(20px - var(--scalar-sidebar-indent))}.scalar-app .mr-auto{margin-right:auto}.scalar-app .-mb-1{margin-bottom:-4px}.scalar-app .-mb-\\[var\\(--scalar-border-width\\)\\]{margin-bottom:calc(var(--scalar-border-width) * -1)}.scalar-app .mb-0{margin-bottom:0}.scalar-app .mb-1{margin-bottom:4px}.scalar-app .mb-1\\.5{margin-bottom:6px}.scalar-app .mb-2{margin-bottom:8px}.scalar-app .mb-3{margin-bottom:12px}.scalar-app .mb-4{margin-bottom:16px}.scalar-app .-ml-0\\.5{margin-left:-2px}.scalar-app .-ml-0\\.25{margin-left:-1px}.scalar-app .-ml-0\\.75{margin-left:-3px}.scalar-app .ml-1{margin-left:4px}.scalar-app .ml-2{margin-left:8px}.scalar-app .ml-auto{margin-left:auto}.scalar-app .box-border{box-sizing:border-box}.scalar-app .box-content{box-sizing:content-box}.scalar-app .flex-center{justify-content:center;align-items:center;display:flex}.scalar-app .line-clamp-\\(--markdown-clamp\\){-webkit-line-clamp:var(--markdown-clamp);-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.scalar-app .line-clamp-1{-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.scalar-app .\\!block{display:block!important}.scalar-app .\\!hidden{display:none!important}.scalar-app .block{display:block}.scalar-app .contents{display:contents}.scalar-app .flex{display:flex}.scalar-app .grid{display:grid}.scalar-app .hidden{display:none}.scalar-app .inline{display:inline}.scalar-app .inline-block{display:inline-block}.scalar-app .inline-flex{display:inline-flex}.scalar-app .table{display:table}.scalar-app .field-sizing-content{field-sizing:content}.scalar-app .aspect-\\[4\\/3\\]{aspect-ratio:4/3}.scalar-app .aspect-square{aspect-ratio:1}.scalar-app .size-1\\.5{width:6px;height:6px}.scalar-app .size-2\\.5{width:10px;height:10px}.scalar-app .size-2\\.75{width:11px;height:11px}.scalar-app .size-3{width:12px;height:12px}.scalar-app .size-3\\.5{width:14px;height:14px}.scalar-app .size-3\\/4{width:75%;height:75%}.scalar-app .size-4{width:16px;height:16px}.scalar-app .size-4\\.5{width:18px;height:18px}.scalar-app .size-5{width:20px;height:20px}.scalar-app .size-6{width:24px;height:24px}.scalar-app .size-8{width:32px;height:32px}.scalar-app .size-10{width:40px;height:40px}.scalar-app .size-\\[23px\\]{width:23px;height:23px}.scalar-app .size-full{width:100%;height:100%}.scalar-app .h-\\(--refs-sidebar-height\\){height:var(--refs-sidebar-height)}.scalar-app .h-\\(--scalar-address-bar-height\\){height:var(--scalar-address-bar-height)}.scalar-app .h-\\(--scalar-header-height\\){height:var(--scalar-header-height)}.scalar-app .h-0{height:0}.scalar-app .h-1{height:4px}.scalar-app .h-1\\.5{height:6px}.scalar-app .h-2{height:8px}.scalar-app .h-2\\.5{height:10px}.scalar-app .h-2\\.25{height:9px}.scalar-app .h-3{height:12px}.scalar-app .h-3\\.5{height:14px}.scalar-app .h-4{height:16px}.scalar-app .h-4\\.5{height:18px}.scalar-app .h-5{height:20px}.scalar-app .h-6{height:24px}.scalar-app .h-7{height:28px}.scalar-app .h-8{height:32px}.scalar-app .h-9{height:36px}.scalar-app .h-10{height:40px}.scalar-app .h-20{height:80px}.scalar-app .h-28{height:112px}.scalar-app .h-\\[calc\\(100\\%\\+16px\\)\\]{height:calc(100% + 16px)}.scalar-app .h-\\[calc\\(100\\%_-_50px\\)\\]{height:calc(100% - 50px)}.scalar-app .h-auto{height:auto}.scalar-app .h-border{height:var(--scalar-border-width)}.scalar-app .h-dvh{height:100dvh}.scalar-app .h-fit{height:fit-content}.scalar-app .h-full{height:100%}.scalar-app .h-lh{height:1lh}.scalar-app .h-min{height:min-content}.scalar-app .h-px{height:1px}.scalar-app .\\!max-h-\\[initial\\]{max-height:initial!important}.scalar-app .max-h-8{max-height:32px}.scalar-app .max-h-40{max-height:160px}.scalar-app .max-h-80{max-height:320px}.scalar-app .max-h-\\[60svh\\]{max-height:60svh}.scalar-app .max-h-\\[60vh\\]{max-height:60vh}.scalar-app .max-h-\\[80svh\\]{max-height:80svh}.scalar-app .max-h-\\[90svh\\]{max-height:90svh}.scalar-app .max-h-\\[auto\\]{max-height:auto}.scalar-app .max-h-\\[calc\\(100\\%-32px\\)\\]{max-height:calc(100% - 32px)}.scalar-app .max-h-\\[inherit\\]{max-height:inherit}.scalar-app .max-h-dvh{max-height:100dvh}.scalar-app .max-h-fit{max-height:fit-content}.scalar-app .max-h-radix-popper{max-height:calc(var(--radix-popper-available-height) - 8px)}.scalar-app .max-h-screen{max-height:100vh}.scalar-app .min-h-0{min-height:0}.scalar-app .min-h-3{min-height:12px}.scalar-app .min-h-7{min-height:28px}.scalar-app .min-h-8{min-height:32px}.scalar-app .min-h-10{min-height:40px}.scalar-app .min-h-11{min-height:44px}.scalar-app .min-h-16{min-height:64px}.scalar-app .min-h-20{min-height:80px}.scalar-app .min-h-\\[64px\\]{min-height:64px}.scalar-app .min-h-\\[calc\\(4rem\\+0\\.5px\\)\\]{min-height:calc(4rem + .5px)}.scalar-app .min-h-fit{min-height:fit-content}.scalar-app .min-h-header{min-height:48px}.scalar-app .\\!w-fit{width:fit-content!important}.scalar-app .w-\\(--refs-sidebar-width\\){width:var(--refs-sidebar-width)}.scalar-app .w-0\\.5{width:2px}.scalar-app .w-1\\.5{width:6px}.scalar-app .w-1\\/2{width:50%}.scalar-app .w-2\\.5{width:10px}.scalar-app .w-2\\.25{width:9px}.scalar-app .w-2\\/3{width:66.6667%}.scalar-app .w-3{width:12px}.scalar-app .w-3\\/4{width:75%}.scalar-app .w-3\\/5{width:60%}.scalar-app .w-4{width:16px}.scalar-app .w-4\\.5{width:18px}.scalar-app .w-4\\/5{width:80%}.scalar-app .w-5{width:20px}.scalar-app .w-6{width:24px}.scalar-app .w-7{width:28px}.scalar-app .w-8{width:32px}.scalar-app .w-11\\/12{width:91.6667%}.scalar-app .w-12{width:48px}.scalar-app .w-14{width:56px}.scalar-app .w-24{width:96px}.scalar-app .w-28{width:112px}.scalar-app .w-36{width:144px}.scalar-app .w-40{width:160px}.scalar-app .w-56{width:224px}.scalar-app .w-64{width:256px}.scalar-app .w-72{width:288px}.scalar-app .w-120{width:480px}.scalar-app .w-\\[38px\\]{width:38px}.scalar-app .w-\\[calc\\(100vw-12px\\)\\]{width:calc(100vw - 12px)}.scalar-app .w-\\[var\\(--scalar-sidebar-indent\\)\\]{width:var(--scalar-sidebar-indent)}.scalar-app .w-auto{width:auto}.scalar-app .w-border{width:var(--scalar-border-width)}.scalar-app .w-content{width:720px}.scalar-app .w-dvw{width:100dvw}.scalar-app .w-fit{width:fit-content}.scalar-app .w-full{width:100%}.scalar-app .w-max{width:max-content}.scalar-app .w-px{width:1px}.scalar-app .max-w-\\(--refs-content-max-width\\){max-width:var(--refs-content-max-width)}.scalar-app .max-w-3xl{max-width:768px}.scalar-app .max-w-64{max-width:256px}.scalar-app .max-w-\\[9rem\\]{max-width:9rem}.scalar-app .max-w-\\[100\\%\\]{max-width:100%}.scalar-app .max-w-\\[160px\\]{max-width:160px}.scalar-app .max-w-\\[220px\\]{max-width:220px}.scalar-app .max-w-\\[360px\\]{max-width:360px}.scalar-app .max-w-\\[480px\\]{max-width:480px}.scalar-app .max-w-\\[540px\\]{max-width:540px}.scalar-app .max-w-\\[640px\\]{max-width:640px}.scalar-app .max-w-\\[800px\\]{max-width:800px}.scalar-app .max-w-\\[1000px\\]{max-width:1000px}.scalar-app .max-w-\\[inherit\\]{max-width:inherit}.scalar-app .max-w-full{max-width:100%}.scalar-app .max-w-screen-padded-4{max-width:calc(100vw - 32px)}.scalar-app .max-w-xs{max-width:320px}.scalar-app .min-w-0{min-width:0}.scalar-app .min-w-2\\.25{min-width:9px}.scalar-app .min-w-3{min-width:12px}.scalar-app .min-w-4{min-width:16px}.scalar-app .min-w-4\\.5{min-width:18px}.scalar-app .min-w-6{min-width:24px}.scalar-app .min-w-7{min-width:28px}.scalar-app .min-w-8{min-width:32px}.scalar-app .min-w-32{min-width:128px}.scalar-app .min-w-48{min-width:192px}.scalar-app .min-w-\\[4\\.5rem\\]{min-width:4.5rem}.scalar-app .min-w-fit{min-width:fit-content}.scalar-app .min-w-full{min-width:100%}.scalar-app .min-w-min{min-width:min-content}.scalar-app .flex-1{flex:1}.scalar-app .flex-shrink,.scalar-app .shrink{flex-shrink:1}.scalar-app .shrink-0{flex-shrink:0}.scalar-app .flex-grow,.scalar-app .grow{flex-grow:1}.scalar-app .grow-3{flex-grow:3}.scalar-app .-translate-x-1\\/2{--tw-translate-x:calc(calc(1 / 2 * 100%) * -1);translate:var(--tw-translate-x) var(--tw-translate-y)}.scalar-app .-translate-x-full{--tw-translate-x:-100%;translate:var(--tw-translate-x) var(--tw-translate-y)}.scalar-app .translate-x-0{--tw-translate-x:0px;translate:var(--tw-translate-x) var(--tw-translate-y)}.scalar-app .translate-x-1\\.25{--tw-translate-x:calc(4px * 1.25);translate:var(--tw-translate-x) var(--tw-translate-y)}.scalar-app .translate-x-2\\.5{--tw-translate-x:calc(4px * 2.5);translate:var(--tw-translate-x) var(--tw-translate-y)}.scalar-app .translate-x-\\[14px\\]{--tw-translate-x:14px;translate:var(--tw-translate-x) var(--tw-translate-y)}.scalar-app .translate-x-full{--tw-translate-x:100%;translate:var(--tw-translate-x) var(--tw-translate-y)}.scalar-app .-translate-y-1\\.5{--tw-translate-y:calc(4px * -1.5);translate:var(--tw-translate-x) var(--tw-translate-y)}.scalar-app .-translate-y-1\\/2{--tw-translate-y:calc(calc(1 / 2 * 100%) * -1);translate:var(--tw-translate-x) var(--tw-translate-y)}.scalar-app .translate-y-0{--tw-translate-y:0px;translate:var(--tw-translate-x) var(--tw-translate-y)}.scalar-app .translate-y-1\\.5{--tw-translate-y:calc(4px * 1.5);translate:var(--tw-translate-x) var(--tw-translate-y)}.scalar-app .translate-y-\\[200\\%\\]{--tw-translate-y:200%;translate:var(--tw-translate-x) var(--tw-translate-y)}.scalar-app .scale-0{--tw-scale-x:0%;--tw-scale-y:0%;--tw-scale-z:0%;scale:var(--tw-scale-x) var(--tw-scale-y)}.scalar-app .scale-100{--tw-scale-x:100%;--tw-scale-y:100%;--tw-scale-z:100%;scale:var(--tw-scale-x) var(--tw-scale-y)}.scalar-app .rotate-45{rotate:45deg}.scalar-app .rotate-90{rotate:90deg}.scalar-app .rotate-180{rotate:180deg}.scalar-app .transform{transform:var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,)}.scalar-app .animate-pulse{animation:var(--animate-pulse)}.scalar-app .cursor-auto{cursor:auto}.scalar-app .cursor-default{cursor:default}.scalar-app .cursor-help{cursor:help}.scalar-app .cursor-not-allowed{cursor:not-allowed}.scalar-app .cursor-pointer{cursor:pointer}.scalar-app .cursor-text{cursor:text}.scalar-app .resize{resize:both}.scalar-app .resize-none{resize:none}.scalar-app .scroll-mt-16{scroll-margin-top:64px}.scalar-app .scroll-mt-24{scroll-margin-top:96px}.scalar-app .list-none{list-style-type:none}.scalar-app .appearance-none{appearance:none}.scalar-app .grid-flow-col{grid-auto-flow:column}.scalar-app .auto-rows-auto{grid-auto-rows:auto}.scalar-app .grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.scalar-app .grid-cols-\\[44px_1fr_repeat\\(3\\,auto\\)\\]{grid-template-columns:44px 1fr repeat(3,auto)}.scalar-app .flex-col{flex-direction:column}.scalar-app .flex-row{flex-direction:row}.scalar-app .flex-wrap{flex-wrap:wrap}.scalar-app .content-end{align-content:flex-end}.scalar-app .content-start{align-content:flex-start}.scalar-app .items-baseline{align-items:baseline}.scalar-app .items-center{align-items:center}.scalar-app .items-end{align-items:flex-end}.scalar-app .items-start{align-items:flex-start}.scalar-app .items-stretch{align-items:stretch}.scalar-app .justify-between{justify-content:space-between}.scalar-app .justify-center{justify-content:center}.scalar-app .justify-end{justify-content:flex-end}.scalar-app .justify-start{justify-content:flex-start}.scalar-app .justify-stretch{justify-content:stretch}.scalar-app .gap-0\\.5{gap:2px}.scalar-app .gap-0\\.75{gap:3px}.scalar-app .gap-1{gap:4px}.scalar-app .gap-1\\.5{gap:6px}.scalar-app .gap-1\\.75{gap:7px}.scalar-app .gap-2{gap:8px}.scalar-app .gap-2\\.5{gap:10px}.scalar-app .gap-2\\.25{gap:9px}.scalar-app .gap-3{gap:12px}.scalar-app .gap-4{gap:16px}.scalar-app .gap-5{gap:20px}.scalar-app .gap-6{gap:24px}.scalar-app .gap-7{gap:28px}.scalar-app .gap-10{gap:40px}.scalar-app .gap-12{gap:48px}.scalar-app .gap-\\[1\\.5px\\]{gap:1.5px}.scalar-app .gap-px{gap:1px}.scalar-app .gap-x-2\\.5{column-gap:10px}:where(.scalar-app .space-x-1>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(4px * var(--tw-space-x-reverse));margin-inline-end:calc(4px * calc(1 - var(--tw-space-x-reverse)))}:where(.scalar-app .divide-y>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(var(--scalar-border-width) * var(--tw-divide-y-reverse));border-bottom-width:calc(var(--scalar-border-width) * calc(1 - var(--tw-divide-y-reverse)))}.scalar-app .self-center{align-self:center}.scalar-app .self-end{align-self:flex-end}.scalar-app .self-start{align-self:flex-start}.scalar-app .truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.scalar-app .overflow-auto{overflow:auto}.scalar-app .overflow-hidden{overflow:hidden}.scalar-app .overflow-visible{overflow:visible}.scalar-app .overflow-x-auto{overflow-x:auto}.scalar-app .overflow-x-hidden{overflow-x:hidden}.scalar-app .overflow-y-auto{overflow-y:auto}.scalar-app .overflow-y-hidden{overflow-y:hidden}.scalar-app .overflow-y-scroll{overflow-y:scroll}.scalar-app .overscroll-contain{overscroll-behavior:contain}.scalar-app .\\!rounded-none{border-radius:0!important}.scalar-app .rounded{border-radius:var(--scalar-radius-md)}.scalar-app .rounded-2xl{border-radius:var(--scalar-radius-2xl)}.scalar-app .rounded-3xl{border-radius:var(--scalar-radius-3xl)}.scalar-app .rounded-\\[inherit\\]{border-radius:inherit}.scalar-app .rounded-full{border-radius:var(--scalar-radius-full)}.scalar-app .rounded-lg{border-radius:var(--scalar-radius-lg)}.scalar-app .rounded-md{border-radius:var(--scalar-radius-md)}.scalar-app .rounded-none{border-radius:0}.scalar-app .rounded-px{border-radius:1px}.scalar-app .rounded-xl{border-radius:var(--scalar-radius-xl)}.scalar-app .rounded-t{border-top-left-radius:var(--scalar-radius-md);border-top-right-radius:var(--scalar-radius-md)}.scalar-app .rounded-t-lg{border-top-left-radius:var(--scalar-radius-lg);border-top-right-radius:var(--scalar-radius-lg)}.scalar-app .rounded-t-none{border-top-left-radius:0;border-top-right-radius:0}.scalar-app .rounded-t-xl{border-top-left-radius:var(--scalar-radius-xl);border-top-right-radius:var(--scalar-radius-xl)}.scalar-app .\\!rounded-b-xl{border-bottom-right-radius:var(--scalar-radius-xl)!important;border-bottom-left-radius:var(--scalar-radius-xl)!important}.scalar-app .rounded-b{border-bottom-right-radius:var(--scalar-radius-md);border-bottom-left-radius:var(--scalar-radius-md)}.scalar-app .rounded-b-lg{border-bottom-right-radius:var(--scalar-radius-lg);border-bottom-left-radius:var(--scalar-radius-lg)}.scalar-app .rounded-b-none{border-bottom-right-radius:0;border-bottom-left-radius:0}.scalar-app .rounded-b-xl{border-bottom-right-radius:var(--scalar-radius-xl);border-bottom-left-radius:var(--scalar-radius-xl)}.scalar-app .border{border-style:var(--tw-border-style);border-width:var(--scalar-border-width)}.scalar-app .border-0{border-style:var(--tw-border-style);border-width:0}.scalar-app .border-1,.scalar-app .border-\\[1px\\]{border-style:var(--tw-border-style);border-width:1px}.scalar-app .border-x{border-inline-style:var(--tw-border-style);border-inline-width:var(--scalar-border-width)}.scalar-app .border-x-0{border-inline-style:var(--tw-border-style);border-inline-width:0}.scalar-app .border-y{border-block-style:var(--tw-border-style);border-block-width:var(--scalar-border-width)}.scalar-app .border-t{border-top-style:var(--tw-border-style);border-top-width:var(--scalar-border-width)}.scalar-app .border-t-0{border-top-style:var(--tw-border-style);border-top-width:0}.scalar-app .\\!border-r{border-right-style:var(--tw-border-style)!important;border-right-width:var(--scalar-border-width)!important}.scalar-app .border-r{border-right-style:var(--tw-border-style);border-right-width:var(--scalar-border-width)}.scalar-app .border-r-0{border-right-style:var(--tw-border-style);border-right-width:0}.scalar-app .border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:var(--scalar-border-width)}.scalar-app .border-b-0{border-bottom-style:var(--tw-border-style);border-bottom-width:0}.scalar-app .border-l{border-left-style:var(--tw-border-style);border-left-width:var(--scalar-border-width)}.scalar-app .border-l-0{border-left-style:var(--tw-border-style);border-left-width:0}.scalar-app .border-dashed{--tw-border-style:dashed;border-style:dashed}.scalar-app .border-none{--tw-border-style:none;border-style:none}.scalar-app .\\!border-current{border-color:currentColor!important}.scalar-app .border-\\(--scalar-background-3\\){border-color:var(--scalar-background-3)}.scalar-app .border-border-header{border-color:var(--scalar-header-border-color,var(--scalar-border-color))}.scalar-app .border-c-accent,.scalar-app .border-c-accent\\/30{border-color:var(--scalar-color-accent)}@supports (color:color-mix(in lab, red, red)){.scalar-app .border-c-accent\\/30{border-color:color-mix(in oklab, var(--scalar-color-accent) 30%, transparent)}}.scalar-app .border-c-alert{border-color:var(--scalar-color-alert)}.scalar-app .border-c-danger{border-color:var(--scalar-color-danger)}.scalar-app .border-sidebar-border{border-color:var(--scalar-sidebar-border-color,var(--scalar-border-color))}.scalar-app .border-sidebar-border-search{border-color:var(--scalar-sidebar-search-border-color,var(--scalar-border-color))}.scalar-app .border-transparent{border-color:#0000}.scalar-app .border-r-transparent{border-right-color:#0000}.scalar-app .border-b-sidebar-border{border-bottom-color:var(--scalar-sidebar-border-color,var(--scalar-border-color))}.scalar-app .bg-\\(--bg-light\\){background-color:var(--bg-light)}.scalar-app .bg-b-1,.scalar-app .bg-b-1\\.5{background-color:var(--scalar-background-1)}@supports (color:color-mix(in lab, red, red)){.scalar-app .bg-b-1\\.5{background-color:color-mix(in srgb, var(--scalar-background-1), var(--scalar-background-2))}}.scalar-app .bg-b-2{background-color:var(--scalar-background-2)}.scalar-app .bg-b-3{background-color:var(--scalar-background-3)}.scalar-app .bg-b-alert{background-color:var(--scalar-background-alert)}.scalar-app .bg-b-btn{background-color:var(--scalar-button-1)}.scalar-app .bg-b-danger{background-color:var(--scalar-background-danger)}.scalar-app .bg-b-header-1{background-color:var(--scalar-header-background-1,var(--scalar-background-1))}.scalar-app .bg-b-header-cta{background-color:var(--scalar-header-call-to-action-color,var(--scalar-button-1))}.scalar-app .bg-b-tooltip{background-color:var(--scalar-tooltip-background)}.scalar-app .bg-backdrop{background-color:#00000038}.scalar-app .bg-border{background-color:var(--scalar-border-color)}.scalar-app .bg-c-accent,.scalar-app .bg-c-accent\\/5{background-color:var(--scalar-color-accent)}@supports (color:color-mix(in lab, red, red)){.scalar-app .bg-c-accent\\/5{background-color:color-mix(in oklab, var(--scalar-color-accent) 5%, transparent)}}.scalar-app .bg-c-accent\\/10{background-color:var(--scalar-color-accent)}@supports (color:color-mix(in lab, red, red)){.scalar-app .bg-c-accent\\/10{background-color:color-mix(in oklab, var(--scalar-color-accent) 10%, transparent)}}.scalar-app .bg-c-danger{background-color:var(--scalar-color-danger)}.scalar-app .bg-current{background-color:currentColor}.scalar-app .bg-green{background-color:var(--scalar-color-green)}.scalar-app .bg-inherit{background-color:inherit}.scalar-app .bg-sidebar-b-1{background-color:var(--scalar-sidebar-background-1,var(--scalar-background-1))}.scalar-app .bg-sidebar-b-active{background-color:var(--scalar-sidebar-item-active-background,var(--scalar-background-2))}.scalar-app .bg-sidebar-b-search{background-color:var(--scalar-sidebar-search-background,var(--scalar-background-2))}.scalar-app .bg-sidebar-c-2\\/15{background-color:var(--scalar-sidebar-color-2,var(--scalar-color-2))}@supports (color:color-mix(in lab, red, red)){.scalar-app .bg-sidebar-c-2\\/15{background-color:color-mix(in oklab, var(--scalar-sidebar-color-2,var(--scalar-color-2)) 15%, transparent)}}.scalar-app .bg-sidebar-indent-border{background-color:var(--scalar-sidebar-indent-border,var(--scalar-border-color))}.scalar-app .bg-sidebar-indent-border-active{background-color:var(--scalar-sidebar-indent-border-active,var(--scalar-color-accent))}.scalar-app .bg-transparent{background-color:#0000}.scalar-app .bg-linear-to-b{--tw-gradient-position:to bottom}@supports (background-image:linear-gradient(in lab, red, red)){.scalar-app .bg-linear-to-b{--tw-gradient-position:to bottom in oklab}}.scalar-app .bg-linear-to-b{background-image:linear-gradient(var(--tw-gradient-stops))}.scalar-app .bg-linear-to-l{--tw-gradient-position:to left}@supports (background-image:linear-gradient(in lab, red, red)){.scalar-app .bg-linear-to-l{--tw-gradient-position:to left in oklab}}.scalar-app .bg-linear-to-l{background-image:linear-gradient(var(--tw-gradient-stops))}.scalar-app .from-b-1{--tw-gradient-from:var(--scalar-background-1);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))}.scalar-app .from-40\\%{--tw-gradient-from-position:40%}.scalar-app .to-b-1\\.5{--tw-gradient-to:var(--scalar-background-1)}@supports (color:color-mix(in lab, red, red)){.scalar-app .to-b-1\\.5{--tw-gradient-to:color-mix(in srgb, var(--scalar-background-1), var(--scalar-background-2))}}.scalar-app .to-b-1\\.5{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))}.scalar-app .to-b-2{--tw-gradient-to:var(--scalar-background-2);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))}.scalar-app .to-transparent{--tw-gradient-to:transparent;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))}.scalar-app .mask-y-from-\\[calc\\(100\\%-8px\\)\\]{-webkit-mask-image:var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic);-webkit-mask-image:var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic);-webkit-mask-image:var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic);mask-image:var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic);--tw-mask-linear:var(--tw-mask-left), var(--tw-mask-right), var(--tw-mask-bottom), var(--tw-mask-top);--tw-mask-top:linear-gradient(to top, var(--tw-mask-top-from-color) var(--tw-mask-top-from-position), var(--tw-mask-top-to-color) var(--tw-mask-top-to-position));--tw-mask-top-from-position:calc(100% - 8px);--tw-mask-bottom:linear-gradient(to bottom, var(--tw-mask-bottom-from-color) var(--tw-mask-bottom-from-position), var(--tw-mask-bottom-to-color) var(--tw-mask-bottom-to-position));--tw-mask-bottom-from-position:calc(100% - 8px);-webkit-mask-composite:source-in;-webkit-mask-composite:source-in;-webkit-mask-composite:source-in;mask-composite:intersect}.scalar-app .mask-y-to-100\\%{-webkit-mask-image:var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic);-webkit-mask-image:var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic);-webkit-mask-image:var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic);mask-image:var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic);--tw-mask-linear:var(--tw-mask-left), var(--tw-mask-right), var(--tw-mask-bottom), var(--tw-mask-top);--tw-mask-top:linear-gradient(to top, var(--tw-mask-top-from-color) var(--tw-mask-top-from-position), var(--tw-mask-top-to-color) var(--tw-mask-top-to-position));--tw-mask-top-to-position:100%;--tw-mask-bottom:linear-gradient(to bottom, var(--tw-mask-bottom-from-color) var(--tw-mask-bottom-from-position), var(--tw-mask-bottom-to-color) var(--tw-mask-bottom-to-position));--tw-mask-bottom-to-position:100%;-webkit-mask-composite:source-in;-webkit-mask-composite:source-in;-webkit-mask-composite:source-in;mask-composite:intersect}.scalar-app .mask-repeat{-webkit-mask-repeat:repeat;mask-repeat:repeat}.scalar-app .fill-current{fill:currentColor}.scalar-app .\\!p-0{padding:0!important}.scalar-app .p-\\(--scalar-sidebar-padding\\){padding:var(--scalar-sidebar-padding)}.scalar-app .p-0{padding:0}.scalar-app .p-0\\.5{padding:2px}.scalar-app .p-0\\.75{padding:3px}.scalar-app .p-1{padding:4px}.scalar-app .p-1\\.5{padding:6px}.scalar-app .p-1\\.25{padding:5px}.scalar-app .p-1\\.75{padding:7px}.scalar-app .p-2{padding:8px}.scalar-app .p-2\\.5{padding:10px}.scalar-app .p-3{padding:12px}.scalar-app .p-4{padding:16px}.scalar-app .p-7{padding:28px}.scalar-app .p-\\[3px\\]{padding:3px}.scalar-app .p-px{padding:1px}.scalar-app .px-\\(--scalar-sidebar-padding\\){padding-inline:var(--scalar-sidebar-padding)}.scalar-app .px-0{padding-inline:0}.scalar-app .px-0\\.5{padding-inline:2px}.scalar-app .px-0\\.75{padding-inline:3px}.scalar-app .px-1{padding-inline:4px}.scalar-app .px-1\\.5{padding-inline:6px}.scalar-app .px-1\\.25{padding-inline:5px}.scalar-app .px-2{padding-inline:8px}.scalar-app .px-2\\.5{padding-inline:10px}.scalar-app .px-3{padding-inline:12px}.scalar-app .px-3\\.5{padding-inline:14px}.scalar-app .px-4{padding-inline:16px}.scalar-app .px-5{padding-inline:20px}.scalar-app .px-6{padding-inline:24px}.scalar-app .px-15{padding-inline:60px}.scalar-app .py-0{padding-block:0}.scalar-app .py-0\\.5{padding-block:2px}.scalar-app .py-0\\.25{padding-block:1px}.scalar-app .py-0\\.75{padding-block:3px}.scalar-app .py-1{padding-block:4px}.scalar-app .py-1\\.5{padding-block:6px}.scalar-app .py-1\\.25{padding-block:5px}.scalar-app .py-1\\.75{padding-block:7px}.scalar-app .py-2{padding-block:8px}.scalar-app .py-2\\.5{padding-block:10px}.scalar-app .py-2\\.25{padding-block:9px}.scalar-app .py-3{padding-block:12px}.scalar-app .py-4{padding-block:16px}.scalar-app .py-\\[6\\.75px\\]{padding-block:6.75px}.scalar-app .py-px{padding-block:1px}.scalar-app .pt-\\(--scalar-sidebar-padding\\){padding-top:var(--scalar-sidebar-padding)}.scalar-app .pt-1{padding-top:4px}.scalar-app .pt-2{padding-top:8px}.scalar-app .pt-3{padding-top:12px}.scalar-app .pt-px{padding-top:1px}.scalar-app .pr-0{padding-right:0}.scalar-app .pr-0\\.75{padding-right:3px}.scalar-app .pr-1{padding-right:4px}.scalar-app .pr-1\\.5{padding-right:6px}.scalar-app .pr-2{padding-right:8px}.scalar-app .pr-2\\.5{padding-right:10px}.scalar-app .pr-2\\.25{padding-right:9px}.scalar-app .pr-3{padding-right:12px}.scalar-app .pr-6{padding-right:24px}.scalar-app .pr-8{padding-right:32px}.scalar-app .pr-10{padding-right:40px}.scalar-app .pr-12{padding-right:48px}.scalar-app .pr-20{padding-right:80px}.scalar-app .pr-\\[100\\%\\]{padding-right:100%}.scalar-app .pb-1{padding-bottom:4px}.scalar-app .pb-1\\.5{padding-bottom:6px}.scalar-app .pb-3{padding-bottom:12px}.scalar-app .pb-6{padding-bottom:24px}.scalar-app .pb-12{padding-bottom:48px}.scalar-app .\\!pl-3{padding-left:12px!important}.scalar-app .pl-1{padding-left:4px}.scalar-app .pl-1\\.25{padding-left:5px}.scalar-app .pl-2{padding-left:8px}.scalar-app .pl-3{padding-left:12px}.scalar-app .pl-4{padding-left:16px}.scalar-app .pl-8{padding-left:32px}.scalar-app .pl-8\\.5{padding-left:34px}.scalar-app .pl-\\[100\\%\\]{padding-left:100%}.scalar-app .pl-px{padding-left:1px}.scalar-app .text-center{text-align:center}.scalar-app .text-left{text-align:left}.scalar-app .text-right{text-align:right}.scalar-app .text-start{text-align:start}.scalar-app .font-code{font-family:var(--scalar-font-code)}.scalar-app .font-sans{font-family:var(--scalar-font)}.scalar-app .text-base{font-size:var(--scalar-font-size-3);line-height:var(--tw-leading,calc(1 / .875))}.scalar-app .text-base\\/4{font-size:var(--scalar-font-size-3);line-height:16px}.scalar-app .text-base\\/5{font-size:var(--scalar-font-size-3);line-height:20px}.scalar-app .text-base\\/5\\.25{font-size:var(--scalar-font-size-3);line-height:21px}.scalar-app .text-lg{font-size:var(--scalar-font-size-2);line-height:var(--tw-leading,calc(1.25 / 1))}.scalar-app .text-sm\\/4{font-size:var(--scalar-font-size-4);line-height:16px}.scalar-app .text-sm\\/none{font-size:var(--scalar-font-size-4);line-height:1}.scalar-app .text-xs\\/4{font-size:var(--scalar-font-size-5);line-height:16px}.scalar-app .text-3xs{font-size:var(--scalar-font-size-7)}.scalar-app .text-\\[6px\\]{font-size:6px}.scalar-app .text-\\[9px\\]{font-size:9px}.scalar-app .text-\\[10px\\]{font-size:10px}.scalar-app .text-\\[11px\\]{font-size:11px}.scalar-app .text-sm{font-size:var(--scalar-font-size-4)}.scalar-app .text-xs{font-size:var(--scalar-font-size-5)}.scalar-app .text-xxs{font-size:var(--scalar-font-size-6)}.scalar-app .leading-5{--tw-leading:calc(4px * 5);line-height:20px}.scalar-app .leading-5\\.5{--tw-leading:calc(4px * 5.5);line-height:22px}.scalar-app .leading-6{--tw-leading:calc(4px * 6);line-height:24px}.scalar-app .leading-\\[1\\.44\\]{--tw-leading:1.44;line-height:1.44}.scalar-app .leading-\\[1\\.45\\]{--tw-leading:1.45;line-height:1.45}.scalar-app .leading-\\[7px\\]{--tw-leading:7px;line-height:7px}.scalar-app .leading-\\[20px\\]{--tw-leading:20px;line-height:20px}.scalar-app .leading-\\[22px\\]{--tw-leading:22px;line-height:22px}.scalar-app .leading-\\[normal\\]{--tw-leading:normal;line-height:normal}.scalar-app .leading-none{--tw-leading:1;line-height:1}.scalar-app .leading-normal{--tw-leading:var(--leading-normal);line-height:var(--leading-normal)}.scalar-app .leading-relaxed{--tw-leading:var(--leading-relaxed);line-height:var(--leading-relaxed)}.scalar-app .leading-snug{--tw-leading:var(--leading-snug);line-height:var(--leading-snug)}.scalar-app .font-bold{--tw-font-weight:var(--scalar-bold);font-weight:var(--scalar-bold)}.scalar-app .font-medium{--tw-font-weight:var(--scalar-semibold);font-weight:var(--scalar-semibold)}.scalar-app .font-normal{--tw-font-weight:var(--scalar-regular);font-weight:var(--scalar-regular)}.scalar-app .font-sidebar{--tw-font-weight:var(--scalar-sidebar-font-weight,var(--scalar-regular));font-weight:var(--scalar-sidebar-font-weight,var(--scalar-regular))}.scalar-app .font-sidebar-active{--tw-font-weight:var(--scalar-sidebar-font-weight-active,var(--scalar-semibold));font-weight:var(--scalar-sidebar-font-weight-active,var(--scalar-semibold))}.scalar-app .text-balance{text-wrap:balance}.scalar-app .text-nowrap{text-wrap:nowrap}.scalar-app .text-pretty{text-wrap:pretty}.scalar-app .text-wrap{text-wrap:wrap}.scalar-app .break-words,.scalar-app .wrap-break-word{overflow-wrap:break-word}.scalar-app .text-ellipsis{text-overflow:ellipsis}.scalar-app .whitespace-nowrap{white-space:nowrap}.scalar-app .whitespace-pre{white-space:pre}.scalar-app .whitespace-pre-wrap{white-space:pre-wrap}.scalar-app .\\!text-c-1{color:var(--scalar-color-1)!important}.scalar-app .text-\\[color\\:var\\(--scalar-color-3\\)\\]{color:var(--scalar-color-3)}.scalar-app .text-b-1{color:var(--scalar-background-1)}.scalar-app .text-b-2{color:var(--scalar-background-2)}.scalar-app .text-blue{color:var(--scalar-color-blue)}.scalar-app .text-c-1{color:var(--scalar-color-1)}.scalar-app .text-c-2{color:var(--scalar-color-2)}.scalar-app .text-c-3{color:var(--scalar-color-3)}.scalar-app .text-c-accent{color:var(--scalar-color-accent)}.scalar-app .text-c-alert{color:var(--scalar-color-alert)}.scalar-app .text-c-btn{color:var(--scalar-button-1-color)}.scalar-app .text-c-danger{color:var(--scalar-color-danger)}.scalar-app .text-c-header-1{color:var(--scalar-header-color-1,var(--scalar-color-1))}.scalar-app .text-c-header-2{color:var(--scalar-header-color-2,var(--scalar-color-2))}.scalar-app .text-c-header-cta{color:var(--scalar-button-1-color)}.scalar-app .text-c-tooltip{color:var(--scalar-tooltip-color)}.scalar-app .text-current{color:currentColor}.scalar-app .text-green{color:var(--scalar-color-green)}.scalar-app .text-grey{color:var(--scalar-color-3)}.scalar-app .text-orange{color:var(--scalar-color-orange)}.scalar-app .text-purple{color:var(--scalar-color-purple)}.scalar-app .text-red{color:var(--scalar-color-red)}.scalar-app .text-sidebar-c-1{color:var(--scalar-sidebar-color-1,var(--scalar-color-1))}.scalar-app .text-sidebar-c-2{color:var(--scalar-sidebar-color-2,var(--scalar-color-2))}.scalar-app .text-sidebar-c-active{color:var(--scalar-sidebar-color-active,var(--scalar-sidebar-color-1))}.scalar-app .text-sidebar-c-search{color:var(--scalar-sidebar-search-color,var(--scalar-color-3))}.scalar-app .text-transparent{color:#0000}.scalar-app .text-white{color:#fff}.scalar-app .text-yellow{color:var(--scalar-color-yellow)}.scalar-app .capitalize{text-transform:capitalize}.scalar-app .uppercase{text-transform:uppercase}.scalar-app .italic{font-style:italic}.scalar-app .ordinal{--tw-ordinal:ordinal;font-variant-numeric:var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,)}.scalar-app .tabular-nums{--tw-numeric-spacing:tabular-nums;font-variant-numeric:var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,)}.scalar-app .line-through{text-decoration-line:line-through}.scalar-app .no-underline{text-decoration-line:none}.scalar-app .underline{text-decoration-line:underline}.scalar-app .decoration-c-3{-webkit-text-decoration-color:var(--scalar-color-3);-webkit-text-decoration-color:var(--scalar-color-3);-webkit-text-decoration-color:var(--scalar-color-3);text-decoration-color:var(--scalar-color-3)}.scalar-app .decoration-dotted{text-decoration-style:dotted}.scalar-app .underline-offset-2{text-underline-offset:2px}.scalar-app .opacity-0{opacity:0}.scalar-app .opacity-40{opacity:.4}.scalar-app .opacity-50{opacity:.5}.scalar-app .opacity-100{opacity:1}.scalar-app .bg-blend-normal{background-blend-mode:normal}.scalar-app .shadow{--tw-shadow:var(--scalar-shadow-1);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.scalar-app .shadow-\\[-8px_0_4px_var\\(--scalar-background-1\\)\\]{--tw-shadow:-8px 0 4px var(--tw-shadow-color,var(--scalar-background-1));box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.scalar-app .shadow-border{--tw-shadow:inset 0 0 0 var(--scalar-border-width) var(--scalar-border-color);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.scalar-app .shadow-lg{--tw-shadow:var(--scalar-shadow-2);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.scalar-app .shadow-md{--tw-shadow:var(--scalar-shadow-1);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.scalar-app .shadow-none{--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.scalar-app .ring{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.scalar-app .outline{outline-style:var(--tw-outline-style);outline-width:1px}.scalar-app .-outline-offset-1{outline-offset:calc(1px * -1)}.scalar-app .-outline-offset-2{outline-offset:calc(2px * -1)}.scalar-app .outline-offset-1{outline-offset:1px}.scalar-app .outline-offset-2{outline-offset:2px}.scalar-app .outline-offset-\\[-1px\\]{outline-offset:-1px}.scalar-app .outline-c-danger{outline-color:var(--scalar-color-danger)}.scalar-app .blur{--tw-blur:blur(8px);filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.scalar-app .brightness-90{--tw-brightness:brightness(90%);filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.scalar-app .brightness-lifted{--tw-brightness:brightness(var(--scalar-lifted-brightness));filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.scalar-app .filter{filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.scalar-app .backdrop-blur{--tw-backdrop-blur:blur(8px);-webkit-backdrop-filter:var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,)}.scalar-app .backdrop-filter{-webkit-backdrop-filter:var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,)}.scalar-app .transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.scalar-app .transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.scalar-app .transition-opacity{transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.scalar-app .transition-transform{transition-property:transform,translate,scale,rotate;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.scalar-app .transition-none{transition-property:none}.scalar-app .duration-100{--tw-duration:.1s;transition-duration:.1s}.scalar-app .duration-150{--tw-duration:.15s;transition-duration:.15s}.scalar-app .duration-200{--tw-duration:.2s;transition-duration:.2s}.scalar-app .duration-300{--tw-duration:.3s;transition-duration:.3s}.scalar-app .duration-400{--tw-duration:.4s;transition-duration:.4s}.scalar-app .duration-500{--tw-duration:.5s;transition-duration:.5s}.scalar-app .ease-\\[cubic-bezier\\(0\\.77\\,0\\,0\\.175\\,1\\)\\]{--tw-ease:cubic-bezier(.77,0,.175,1);transition-timing-function:cubic-bezier(.77,0,.175,1)}.scalar-app .ease-in{--tw-ease:var(--ease-in);transition-timing-function:var(--ease-in)}.scalar-app .ease-in-out{--tw-ease:var(--ease-in-out);transition-timing-function:var(--ease-in-out)}.scalar-app .ease-out{--tw-ease:var(--ease-out);transition-timing-function:var(--ease-out)}.scalar-app .ease-spring{--tw-ease:linear(0, .008 1.1%, .034 2.3%, .134 4.9%, .264 7.3%, .683 14.3%, .797 16.5%, .89 18.6%, .967 20.7%, 1.027 22.8%, 1.073 25%, 1.104 27.3%, 1.123 30.6%, 1.119 34.3%, 1.018 49.5%, .988 58.6%, .985 65.2%, 1 84.5%, 1);transition-timing-function:linear(0, .008 1.1%, .034 2.3%, .134 4.9%, .264 7.3%, .683 14.3%, .797 16.5%, .89 18.6%, .967 20.7%, 1.027 22.8%, 1.073 25%, 1.104 27.3%, 1.123 30.6%, 1.119 34.3%, 1.018 49.5%, .988 58.6%, .985 65.2%, 1 84.5%, 1)}.scalar-app .outline-none{--tw-outline-style:none;outline-style:none}.scalar-app .select-none{-webkit-user-select:none;user-select:none}.scalar-app .\\[--scalar-address-bar-height\\:0px\\]{--scalar-address-bar-height:0px}.scalar-app .\\[--scalar-address-bar-height\\:32px\\]{--scalar-address-bar-height:32px}.scalar-app .\\[grid-area\\:header\\]{grid-area:header}.scalar-app .\\[grid-area\\:navigation\\]{grid-area:navigation}:is(.scalar-app .\\*\\:flex>*){display:flex}:is(.scalar-app .\\*\\:size-3>*){width:12px;height:12px}:is(.scalar-app .\\*\\:size-4>*){width:16px;height:16px}:is(.scalar-app .\\*\\:h-5>*){height:20px}:is(.scalar-app .\\*\\:h-8>*){height:32px}:is(.scalar-app .\\*\\:min-w-5>*){min-width:20px}:is(.scalar-app .\\*\\:flex-1>*){flex:1}:is(.scalar-app .\\*\\:cursor-pointer>*){cursor:pointer}:is(.scalar-app .\\*\\:items-center>*){align-items:center}:is(.scalar-app .\\*\\:justify-center>*){justify-content:center}:is(.scalar-app .\\*\\:gap-1>*){gap:4px}:is(.scalar-app .\\*\\:rounded>*){border-radius:var(--scalar-radius-md)}:is(.scalar-app .\\*\\:rounded-none>*){border-radius:0}:is(.scalar-app .\\*\\:border>*){border-style:var(--tw-border-style);border-width:var(--scalar-border-width)}:is(.scalar-app .\\*\\:border-t>*){border-top-style:var(--tw-border-style);border-top-width:var(--scalar-border-width)}:is(.scalar-app .\\*\\:border-border>*){border-color:var(--scalar-border-color)}:is(.scalar-app .\\*\\:px-1>*){padding-inline:4px}:is(.scalar-app .\\*\\:px-1\\.5>*){padding-inline:6px}:is(.scalar-app .\\*\\:pl-4>*){padding-left:16px}.scalar-app .group-first\\/row\\:border-t-0:is(:where(.group\\/row):first-child *){border-top-style:var(--tw-border-style);border-top-width:0}.scalar-app .group-last\\:mr-0:is(:where(.group):last-child *){margin-right:0}.scalar-app .group-last\\:border-b-transparent:is(:where(.group):last-child *){border-bottom-color:#0000}.scalar-app .group-last\\/label\\:rounded-br-lg:is(:where(.group\\/label):last-child *){border-bottom-right-radius:var(--scalar-radius-lg)}.scalar-app .group-open\\:rotate-90:is(:where(.group):is([open],:popover-open,:open) *){rotate:90deg}.scalar-app .group-open\\:flex-wrap:is(:where(.group):is([open],:popover-open,:open) *){flex-wrap:wrap}.scalar-app .group-open\\:whitespace-normal:is(:where(.group):is([open],:popover-open,:open) *){white-space:normal}.scalar-app .group-focus-within\\:flex:is(:where(.group):focus-within *){display:flex}.scalar-app .group-focus-within\\/parameter-item\\:opacity-100:is(:where(.group\\/parameter-item):focus-within *),.scalar-app .group-focus-within\\/scope-row\\:opacity-100:is(:where(.group\\/scope-row):focus-within *){opacity:1}@media (hover:hover){.scalar-app .group-hover\\:flex:is(:where(.group):hover *){display:flex}.scalar-app .group-hover\\:pr-10:is(:where(.group):hover *){padding-right:40px}.scalar-app .group-hover\\:text-c-1:is(:where(.group):hover *){color:var(--scalar-color-1)}.scalar-app .group-hover\\:opacity-100:is(:where(.group):hover *){opacity:1}.scalar-app .group-hover\\/button\\:bg-sidebar-indent-border-hover:is(:where(.group\\/button):hover *){background-color:var(--scalar-sidebar-indent-border-hover,var(--scalar-border-color))}.scalar-app .group-hover\\/button\\:text-c-header-1:is(:where(.group\\/button):hover *){color:var(--scalar-header-color-1,var(--scalar-color-1))}.scalar-app .group-hover\\/button\\:opacity-0:is(:where(.group\\/button):hover *){opacity:0}.scalar-app .group-hover\\/copy-button\\:bg-b-1\\.5:is(:where(.group\\/copy-button):hover *){background-color:var(--scalar-background-1)}@supports (color:color-mix(in lab, red, red)){.scalar-app .group-hover\\/copy-button\\:bg-b-1\\.5:is(:where(.group\\/copy-button):hover *){background-color:color-mix(in srgb, var(--scalar-background-1), var(--scalar-background-2))}}.scalar-app .group-hover\\/heading\\:opacity-100:is(:where(.group\\/heading):hover *),.scalar-app .group-hover\\/item\\:opacity-100:is(:where(.group\\/item):hover *),.scalar-app .group-hover\\/parameter-item\\:opacity-100:is(:where(.group\\/parameter-item):hover *),.scalar-app .group-hover\\/params\\:opacity-100:is(:where(.group\\/params):hover *){opacity:1}.scalar-app .group-hover\\/row\\:flex:is(:where(.group\\/row):hover *){display:flex}.scalar-app .group-hover\\/scope-row\\:text-c-1:is(:where(.group\\/scope-row):hover *){color:var(--scalar-color-1)}.scalar-app .group-hover\\/scope-row\\:opacity-100:is(:where(.group\\/scope-row):hover *){opacity:1}.scalar-app .group-hover\\/scopes-accordion\\:text-c-2:is(:where(.group\\/scopes-accordion):hover *){color:var(--scalar-color-2)}}.scalar-app .group-focus-visible\\:outline:is(:where(.group):focus-visible *){outline-style:var(--tw-outline-style);outline-width:1px}.scalar-app .group-focus-visible\\/button\\:opacity-0:is(:where(.group\\/button):focus-visible *){opacity:0}.scalar-app .group-focus-visible\\/toggle\\:outline:is(:where(.group\\/toggle):focus-visible *){outline-style:var(--tw-outline-style);outline-width:1px}.scalar-app .group-has-focus-visible\\/heading\\:opacity-100:is(:where(.group\\/heading):has(:focus-visible) *){opacity:1}.scalar-app .group-has-\\[\\.cm-focused\\]\\:z-1:is(:where(.group):has(.cm-focused) *),.scalar-app .group-has-\\[\\.code-input-lite__editor\\:focus\\]\\:z-1:is(:where(.group):has(:is(.code-input-lite editor:focus)) *){z-index:1}.scalar-app .group-has-\\[\\.code-input-lite__editor\\:focus\\]\\:flex:is(:where(.group):has(:is(.code-input-lite editor:focus)) *){display:flex}.scalar-app .group-has-\\[\\.code-input-lite__editor\\:focus\\]\\:pr-10:is(:where(.group):has(:is(.code-input-lite editor:focus)) *){padding-right:40px}.scalar-app .group-has-\\[\\:focus-visible\\]\\/cell\\:border-c-accent:is(:where(.group\\/cell):has(:focus-visible) *){border-color:var(--scalar-color-accent)}.scalar-app .group-has-\\[\\:focus-visible\\]\\/cell\\:opacity-100:is(:where(.group\\/cell):has(:focus-visible) *){opacity:1}.scalar-app .group-has-\\[\\:focus-visible\\]\\/input\\:block:is(:where(.group\\/input):has(:focus-visible) *){display:block}.scalar-app .group-has-\\[input\\]\\/label\\:mr-0:is(:where(.group\\/label):has(:is(input)) *){margin-right:0}.scalar-app .group-has-\\[\\~\\*_\\[aria-expanded\\=true\\]\\]\\/button\\:opacity-0:is(:where(.group\\/button):has(~* [aria-expanded=true]) *),.scalar-app .group-has-\\[\\~\\*\\:focus-within\\]\\/button\\:opacity-0:is(:where(.group\\/button):has(~:focus-within) *),.scalar-app .group-has-\\[\\~\\*\\:hover\\]\\/button\\:opacity-0:is(:where(.group\\/button):has(~:hover) *){opacity:0}.scalar-app .group-aria-expanded\\/button\\:rotate-180:is(:where(.group\\/button)[aria-expanded=true] *),.scalar-app .group-aria-expanded\\/combobox-button\\:rotate-180:is(:where(.group\\/combobox-button)[aria-expanded=true] *){rotate:180deg}.scalar-app .group-hocus\\/copy-button\\:sr-only:is(:is(:where(.group\\/copy-button):hover,:where(.group\\/copy-button):focus-visible) *){clip-path:inset(50%);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.scalar-app .group-hocus\\/copy-button\\:not-sr-only:is(:is(:where(.group\\/copy-button):hover,:where(.group\\/copy-button):focus-visible) *){clip-path:none;white-space:normal;width:auto;height:auto;margin:0;padding:0;position:static;overflow:visible}.scalar-app .group-hocus\\/copy-button\\:block:is(:is(:where(.group\\/copy-button):hover,:where(.group\\/copy-button):focus-visible) *){display:block}.scalar-app .group-hocus-within\\/code-block\\:-left-0\\.5:is(:is(:where(.group\\/code-block):hover,:where(.group\\/code-block):focus-within) *){left:-2px}.scalar-app .group-hocus-within\\/code-block\\:inline:is(:is(:where(.group\\/code-block):hover,:where(.group\\/code-block):focus-within) *){display:inline}.scalar-app .group-hocus-within\\/code-block\\:opacity-100:is(:is(:where(.group\\/code-block):hover,:where(.group\\/code-block):focus-within) *){opacity:1}.scalar-app .group-\\[\\.alert\\]\\:bg-b-alert:is(:where(.group).alert *){background-color:var(--scalar-background-alert)}.scalar-app .group-\\[\\.alert\\]\\:bg-transparent:is(:where(.group).alert *){background-color:#0000}.scalar-app .group-\\[\\.alert\\]\\:shadow-none:is(:where(.group).alert *){--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.scalar-app .group-\\[\\.alert\\]\\:outline-orange:is(:where(.group).alert *){outline-color:var(--scalar-color-orange)}.scalar-app .group-\\[\\.error\\]\\:bg-b-danger:is(:where(.group).error *){background-color:var(--scalar-background-danger)}.scalar-app .group-\\[\\.error\\]\\:bg-transparent:is(:where(.group).error *){background-color:#0000}.scalar-app .group-\\[\\.error\\]\\:text-red:is(:where(.group).error *){color:var(--scalar-color-red)}.scalar-app .group-\\[\\.error\\]\\:shadow-none:is(:where(.group).error *){--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.scalar-app .group-\\[\\.error\\]\\:outline-red:is(:where(.group).error *){outline-color:var(--scalar-color-red)}.scalar-app .peer-checked\\:text-c-1:is(:where(.peer):checked~*){color:var(--scalar-color-1)}@media (hover:hover){.scalar-app .peer-hover\\/button\\:opacity-100:is(:where(.peer\\/button):hover~*){opacity:1}}.scalar-app .peer-focus-visible\\/button\\:opacity-100:is(:where(.peer\\/button):focus-visible~*){opacity:1}.scalar-app .peer-has-\\[\\.cm-focused\\]\\:opacity-0:is(:where(.peer):has(.cm-focused)~*),.scalar-app .peer-has-\\[\\.code-input-lite__editor\\:focus\\]\\:opacity-0:is(:where(.peer):has(:is(.code-input-lite editor:focus))~*){opacity:0}.scalar-app .peer-has-\\[\\.color-selector\\]\\:hidden:is(:where(.peer):has(.color-selector)~*){display:none}.scalar-app .placeholder\\:font-\\[inherit\\]::placeholder{font-family:inherit}:is(.scalar-app .\\*\\:not-first\\:before\\:content-\\[\\'_·_\\'\\]>*):not(:first-child):before{--tw-content:" · ";content:var(--tw-content)}.scalar-app .after\\:pointer-events-none:after{content:var(--tw-content);pointer-events:none}.scalar-app .after\\:absolute:after{content:var(--tw-content);position:absolute}.scalar-app .after\\:inset-0:after{content:var(--tw-content);inset:0}.scalar-app .after\\:inset-x-0:after{content:var(--tw-content);inset-inline:0}.scalar-app .after\\:-top-0\\.5:after{content:var(--tw-content);top:-2px}.scalar-app .after\\:-bottom-0\\.5:after{content:var(--tw-content);bottom:-2px}.scalar-app .after\\:block:after{content:var(--tw-content);display:block}.scalar-app .after\\:h-0\\.75:after{content:var(--tw-content);height:3px}.scalar-app .after\\:rounded:after{content:var(--tw-content);border-radius:var(--scalar-radius-md)}.scalar-app .after\\:bg-blue:after{content:var(--tw-content);background-color:var(--scalar-color-blue)}.scalar-app .after\\:opacity-15:after{content:var(--tw-content);opacity:.15}.scalar-app .after\\:content-\\[\\'\\:\\'\\]:after{--tw-content:":";content:var(--tw-content)}.scalar-app .first\\:ml-auto:first-child{margin-left:auto}.scalar-app .first\\:rounded-t-\\[inherit\\]:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}:is(.scalar-app .\\*\\:first\\:rounded-l>*):first-child{border-top-left-radius:var(--scalar-radius-md);border-bottom-left-radius:var(--scalar-radius-md)}:is(.scalar-app .\\*\\:first\\:border-t-0>*):first-child,:is(.scalar-app .first\\:\\*\\:border-t-0:first-child>*){border-top-style:var(--tw-border-style);border-top-width:0}.scalar-app .last\\:rounded-b-\\[inherit\\]:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.scalar-app .last\\:rounded-b-lg:last-child{border-bottom-right-radius:var(--scalar-radius-lg);border-bottom-left-radius:var(--scalar-radius-lg)}.scalar-app .last\\:border-r-0:last-child{border-right-style:var(--tw-border-style);border-right-width:0}:is(.scalar-app .\\*\\:last\\:rounded-r>*):last-child{border-top-right-radius:var(--scalar-radius-md);border-bottom-right-radius:var(--scalar-radius-md)}.scalar-app .last-of-type\\:first-of-type\\:border-b-0:last-of-type:first-of-type{border-bottom-style:var(--tw-border-style);border-bottom-width:0}.scalar-app .empty\\:hidden:empty{display:none}.scalar-app .focus-within\\:text-c-1:focus-within{color:var(--scalar-color-1)}.scalar-app .focus-within\\:opacity-100:focus-within{opacity:1}.scalar-app .focus-within\\:outline-none:focus-within{--tw-outline-style:none;outline-style:none}@media (hover:hover){.scalar-app .hover\\:bg-b-1\\.5:hover{background-color:var(--scalar-background-1)}@supports (color:color-mix(in lab, red, red)){.scalar-app .hover\\:bg-b-1\\.5:hover{background-color:color-mix(in srgb, var(--scalar-background-1), var(--scalar-background-2))}}.scalar-app .hover\\:bg-b-2:hover{background-color:var(--scalar-background-2)}.scalar-app .hover\\:bg-b-3:hover{background-color:var(--scalar-background-3)}.scalar-app .hover\\:bg-b-header-2:hover{background-color:var(--scalar-header-background-2,var(--scalar-background-2))}.scalar-app .hover\\:bg-c-accent\\/20:hover{background-color:var(--scalar-color-accent)}@supports (color:color-mix(in lab, red, red)){.scalar-app .hover\\:bg-c-accent\\/20:hover{background-color:color-mix(in oklab, var(--scalar-color-accent) 20%, transparent)}}.scalar-app .hover\\:bg-h-btn:hover{background-color:var(--scalar-button-1-hover)}.scalar-app .hover\\:bg-h-header-cta:hover{background-color:var(--scalar-header-call-to-action-color,var(--scalar-button-1))}@supports (color:color-mix(in lab, red, red)){.scalar-app .hover\\:bg-h-header-cta:hover{background-color:color-mix(in srgb, var(--scalar-header-call-to-action-color,var(--scalar-button-1)), var(--scalar-header-background-1,var(--scalar-background-1)) 15%)}}.scalar-app .hover\\:bg-sidebar-b-1:hover{background-color:var(--scalar-sidebar-background-1,var(--scalar-background-1))}.scalar-app .hover\\:bg-sidebar-b-hover:hover{background-color:var(--scalar-sidebar-item-hover-background,var(--scalar-background-2))}.scalar-app .hover\\:bg-linear-to-b:hover{--tw-gradient-position:to bottom}@supports (background-image:linear-gradient(in lab, red, red)){.scalar-app .hover\\:bg-linear-to-b:hover{--tw-gradient-position:to bottom in oklab}}.scalar-app .hover\\:bg-linear-to-b:hover{background-image:linear-gradient(var(--tw-gradient-stops))}.scalar-app .hover\\:bg-linear-to-t:hover{--tw-gradient-position:to top}@supports (background-image:linear-gradient(in lab, red, red)){.scalar-app .hover\\:bg-linear-to-t:hover{--tw-gradient-position:to top in oklab}}.scalar-app .hover\\:bg-linear-to-t:hover{background-image:linear-gradient(var(--tw-gradient-stops))}.scalar-app .hover\\:text-c-1:hover{color:var(--scalar-color-1)}.scalar-app .hover\\:text-c-2:hover{color:var(--scalar-color-2)}.scalar-app .hover\\:text-c-header-1:hover{color:var(--scalar-header-color-1,var(--scalar-color-1))}.scalar-app .hover\\:text-sidebar-c-1:hover{color:var(--scalar-sidebar-color-1,var(--scalar-color-1))}.scalar-app .hover\\:text-sidebar-c-hover:hover{color:var(--scalar-sidebar-item-hover-color,var(--scalar-sidebar-color-2))}.scalar-app .hover\\:underline:hover{text-decoration-line:underline}.scalar-app .hover\\:opacity-100:hover{opacity:1}.scalar-app .hover\\:brightness-75:hover{--tw-brightness:brightness(75%);filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.scalar-app .hover\\:brightness-90:hover{--tw-brightness:brightness(90%);filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}}.scalar-app .focus\\:border-b-1:focus{border-bottom-style:var(--tw-border-style);border-bottom-width:1px;border-color:var(--scalar-background-1)}.scalar-app .focus\\:text-c-1:focus{color:var(--scalar-color-1)}.scalar-app .focus\\:outline-none:focus{--tw-outline-style:none;outline-style:none}.scalar-app .focus-visible\\:border-c-btn:focus-visible{border-color:var(--scalar-button-1-color)}.scalar-app .focus-visible\\:opacity-100:focus-visible{opacity:1}.scalar-app .focus-visible\\:outline:focus-visible{outline-style:var(--tw-outline-style);outline-width:1px}.scalar-app .focus-visible\\:outline-offset-2:focus-visible{outline-offset:2px}.scalar-app .active\\:bg-b-btn:active{background-color:var(--scalar-button-1)}.scalar-app .active\\:text-c-1:active{color:var(--scalar-color-1)}.scalar-app .active\\:brightness-90:active{--tw-brightness:brightness(90%);filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.scalar-app .disabled\\:pointer-events-none:disabled{pointer-events:none}.scalar-app .disabled\\:cursor-default:disabled{cursor:default}.scalar-app .disabled\\:text-c-2:disabled{color:var(--scalar-color-2)}.scalar-app .disabled\\:opacity-30:disabled{opacity:.3}.scalar-app .has-focus-visible\\:outline:has(:focus-visible){outline-style:var(--tw-outline-style);outline-width:1px}.scalar-app .has-\\[\\:focus-visible\\]\\:absolute:has(:focus-visible){position:absolute}.scalar-app .has-\\[\\:focus-visible\\]\\:z-1:has(:focus-visible){z-index:1}.scalar-app .has-\\[\\:focus-visible\\]\\:rounded-\\[4px\\]:has(:focus-visible){border-radius:4px}.scalar-app .has-\\[\\:focus-visible\\]\\:bg-b-1:has(:focus-visible){background-color:var(--scalar-background-1)}.scalar-app .has-\\[\\:focus-visible\\]\\:bg-sidebar-b-1:has(:focus-visible){background-color:var(--scalar-sidebar-background-1,var(--scalar-background-1))}.scalar-app .has-\\[\\:focus-visible\\]\\:opacity-100:has(:focus-visible){opacity:1}:is(.scalar-app .has-\\[\\:focus-visible\\]\\:outline:has(:focus-visible),.scalar-app .has-\\[input\\:focus-visible\\]\\:outline:has(:is(input:focus-visible))){outline-style:var(--tw-outline-style);outline-width:1px}.scalar-app .has-\\[\\&\\[aria-expanded\\=true\\]\\]\\:opacity-100:has([aria-expanded=true]){opacity:1}@media not all and (width>=800px){.scalar-app .max-md\\:absolute\\!{position:absolute!important}.scalar-app .max-md\\:top-4{top:16px}.scalar-app .max-md\\:z-5{z-index:5}.scalar-app .max-md\\:w-full\\!{width:100%!important}.scalar-app .max-md\\:pt-2{padding-top:8px}.scalar-app .max-md\\:pt-12{padding-top:48px}.scalar-app .max-md\\:pl-4\\!{padding-left:16px!important}.scalar-app .max-md\\:pl-10{padding-left:40px}.scalar-app .max-md\\:pl-14{padding-left:56px}}@media (width>=800px){.scalar-app .md\\:pointer-events-none{pointer-events:none}.scalar-app .md\\:absolute{position:absolute}.scalar-app .md\\:inset-x-1{inset-inline:4px}.scalar-app .md\\:top-1\\/2{top:50%}.scalar-app .md\\:mt-0{margin-top:0}.scalar-app .md\\:-ml-1\\.25{margin-left:-5px}.scalar-app .md\\:w-\\[calc\\(100vw-16px\\)\\]{width:calc(100vw - 16px)}.scalar-app .md\\:-translate-y-1\\/2{--tw-translate-y:calc(calc(1 / 2 * 100%) * -1);translate:var(--tw-translate-x) var(--tw-translate-y)}.scalar-app .md\\:flex-row{flex-direction:row}.scalar-app .md\\:px-1\\.5{padding-inline:6px}.scalar-app .md\\:opacity-0{opacity:0}:is(.scalar-app .md\\:\\*\\:border-t-0>*){border-top-style:var(--tw-border-style);border-top-width:0}@media (hover:hover){.scalar-app .md\\:group-hover\\/upload\\:pointer-events-auto:is(:where(.group\\/upload):hover *){pointer-events:auto}.scalar-app .md\\:group-hover\\/upload\\:opacity-100:is(:where(.group\\/upload):hover *){opacity:1}}}@media (width>=1000px){.scalar-app .lg\\:-mr-1{margin-right:-4px}.scalar-app .lg\\:flex{display:flex}.scalar-app .lg\\:hidden{display:none}.scalar-app .lg\\:min-h-header{min-height:48px}.scalar-app .lg\\:w-\\[calc\\(100vw-32px\\)\\]{width:calc(100vw - 32px)}.scalar-app .lg\\:w-full{width:100%}.scalar-app .lg\\:p-0{padding:0}.scalar-app .lg\\:pr-24{padding-right:96px}}@media (width>=1200px){.scalar-app .xl\\:flex{display:flex}.scalar-app .xl\\:h-full{height:100%}.scalar-app .xl\\:min-w-0{min-width:0}.scalar-app .xl\\:flex-row{flex-direction:row}.scalar-app .xl\\:overflow-hidden{overflow:hidden}.scalar-app .xl\\:rounded-none{border-radius:0}.scalar-app .xl\\:pr-0\\.5{padding-right:2px}.scalar-app .xl\\:pl-2{padding-left:8px}:is(.scalar-app .\\*\\:xl\\:border-t-0>*){border-top-style:var(--tw-border-style);border-top-width:0}:is(.scalar-app .\\*\\:xl\\:border-l>*){border-left-style:var(--tw-border-style);border-left-width:var(--scalar-border-width)}:is(.scalar-app .\\*\\:first\\:xl\\:border-l-0>*):first-child{border-left-style:var(--tw-border-style);border-left-width:0}}@container (width>=768px){.scalar-app .\\@3xl\\:order-0{order:0}.scalar-app .\\@3xl\\:mb-0{margin-bottom:0}.scalar-app .\\@3xl\\:ml-0\\.75{margin-left:3px}.scalar-app .\\@3xl\\:flex{display:flex}.scalar-app .\\@3xl\\:hidden{display:none}.scalar-app .\\@3xl\\:flex-nowrap{flex-wrap:nowrap}}.scalar-app .dark\\:bg-\\(--bg-dark\\):where(.dark-mode,.dark-mode *){background-color:var(--bg-dark)}.scalar-app .dark\\:bg-b-1\\.5:where(.dark-mode,.dark-mode *){background-color:var(--scalar-background-1)}@supports (color:color-mix(in lab, red, red)){.scalar-app .dark\\:bg-b-1\\.5:where(.dark-mode,.dark-mode *){background-color:color-mix(in srgb, var(--scalar-background-1), var(--scalar-background-2))}}.scalar-app .dark\\:bg-b-2:where(.dark-mode,.dark-mode *){background-color:var(--scalar-background-2)}.scalar-app .dark\\:bg-b-3:where(.dark-mode,.dark-mode *){background-color:var(--scalar-background-3)}.scalar-app .dark\\:bg-backdrop-dark:where(.dark-mode,.dark-mode *){background-color:#00000073}.scalar-app .dark\\:bg-linear-to-t:where(.dark-mode,.dark-mode *){--tw-gradient-position:to top}@supports (background-image:linear-gradient(in lab, red, red)){.scalar-app .dark\\:bg-linear-to-t:where(.dark-mode,.dark-mode *){--tw-gradient-position:to top in oklab}}.scalar-app .dark\\:bg-linear-to-t:where(.dark-mode,.dark-mode *){background-image:linear-gradient(var(--tw-gradient-stops))}@media (hover:hover){.scalar-app .dark\\:group-hover\\/copy-button\\:bg-b-1\\.5:where(.dark-mode,.dark-mode *):is(:where(.group\\/copy-button):hover *){background-color:var(--scalar-background-1)}@supports (color:color-mix(in lab, red, red)){.scalar-app .dark\\:group-hover\\/copy-button\\:bg-b-1\\.5:where(.dark-mode,.dark-mode *):is(:where(.group\\/copy-button):hover *){background-color:color-mix(in srgb, var(--scalar-background-1), var(--scalar-background-2))}}.scalar-app .dark\\:hover\\:bg-b-2:where(.dark-mode,.dark-mode *):hover{background-color:var(--scalar-background-2)}.scalar-app .dark\\:hover\\:bg-b-3:where(.dark-mode,.dark-mode *):hover{background-color:var(--scalar-background-3)}.scalar-app .dark\\:hover\\:bg-linear-to-b:where(.dark-mode,.dark-mode *):hover{--tw-gradient-position:to bottom}@supports (background-image:linear-gradient(in lab, red, red)){.scalar-app .dark\\:hover\\:bg-linear-to-b:where(.dark-mode,.dark-mode *):hover{--tw-gradient-position:to bottom in oklab}}.scalar-app .dark\\:hover\\:bg-linear-to-b:where(.dark-mode,.dark-mode *):hover{background-image:linear-gradient(var(--tw-gradient-stops))}.scalar-app .dark\\:hover\\:bg-linear-to-t:where(.dark-mode,.dark-mode *):hover{--tw-gradient-position:to top}@supports (background-image:linear-gradient(in lab, red, red)){.scalar-app .dark\\:hover\\:bg-linear-to-t:where(.dark-mode,.dark-mode *):hover{--tw-gradient-position:to top in oklab}}.scalar-app .dark\\:hover\\:bg-linear-to-t:where(.dark-mode,.dark-mode *):hover{background-image:linear-gradient(var(--tw-gradient-stops))}}.scalar-app .ui-open\\:rotate-90[data-headlessui-state~=open],:where([data-headlessui-state~=open]) :is(.scalar-app .ui-open\\:rotate-90){rotate:90deg}.scalar-app .ui-open\\:rotate-180[data-headlessui-state~=open],:where([data-headlessui-state~=open]) :is(.scalar-app .ui-open\\:rotate-180){rotate:180deg}.scalar-app .last\\:ui-open\\:border-b-0:last-child[data-headlessui-state~=open],:where([data-headlessui-state~=open]) :is(.scalar-app .last\\:ui-open\\:border-b-0:last-child){border-bottom-style:var(--tw-border-style);border-bottom-width:0}.scalar-app .ui-not-open\\:hidden[data-headlessui-state]:not([data-headlessui-state~=open]),:where([data-headlessui-state]:not([data-headlessui-state~=open])) :is(.scalar-app .ui-not-open\\:hidden):not([data-headlessui-state]){display:none}.scalar-app .ui-not-open\\:rotate-0[data-headlessui-state]:not([data-headlessui-state~=open]),:where([data-headlessui-state]:not([data-headlessui-state~=open])) :is(.scalar-app .ui-not-open\\:rotate-0):not([data-headlessui-state]){rotate:0deg}:is(.scalar-app .ui-active\\:\\*\\:bg-b-2[data-headlessui-state~=active]>*),:is(:where([data-headlessui-state~=active]) :is(.scalar-app .ui-active\\:\\*\\:bg-b-2)>*){background-color:var(--scalar-background-2)}@media (width<=720px) and (height<=480px){.scalar-app .zoomed\\:static{position:static}.scalar-app .zoomed\\:p-1{padding:4px}.scalar-app .zoomed\\:whitespace-normal\\!{white-space:normal!important}}.scalar-app .highlighted\\:bg-b-2[data-highlighted]{background-color:var(--scalar-background-2)}.app-platform-mac :is(.scalar-app .mac\\:h-12){height:48px}.app-platform-mac :is(.scalar-app .mac\\:app-drag-region){-webkit-app-region:drag}@container narrow-references-container (width<=900px){.scalar-app .narrow\\:mb-3{margin-bottom:12px}.scalar-app .narrow\\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.scalar-app .narrow\\:flex-col{flex-direction:column}.scalar-app .narrow\\:justify-start{justify-content:flex-start}.scalar-app .narrow\\:gap-0{gap:0}.scalar-app .narrow\\:gap-3{gap:12px}.scalar-app .narrow\\:border{border-style:var(--tw-border-style);border-width:var(--scalar-border-width)}.scalar-app .narrow\\:border-r-0{border-right-style:var(--tw-border-style);border-right-width:0}.scalar-app .narrow\\:first\\:ml-0:first-child{margin-left:0}}.scalar-app .\\[\\&_a\\]\\:underline a{text-decoration-line:underline}.scalar-app .\\[\\&_a\\:hover\\]\\:text-c-1 a:hover{color:var(--scalar-color-1)}.scalar-app .\\[\\&_code\\]\\:font-code code{font-family:var(--scalar-font-code)}.scalar-app .\\[\\&_em\\]\\:text-c-1 em{color:var(--scalar-color-1)}.scalar-app .\\[\\&_em\\]\\:not-italic em{font-style:normal}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-scale-x{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-y{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-z{syntax:"*";inherits:false;initial-value:1}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-space-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-divide-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-gradient-position{syntax:"*";inherits:false}@property --tw-gradient-from{syntax:"";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:"";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:"";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:"*";inherits:false}@property --tw-gradient-via-stops{syntax:"*";inherits:false}@property --tw-gradient-from-position{syntax:"";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:"";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:"";inherits:false;initial-value:100%}@property --tw-mask-linear{syntax:"*";inherits:false;initial-value:linear-gradient(#fff, #fff)}@property --tw-mask-radial{syntax:"*";inherits:false;initial-value:linear-gradient(#fff, #fff)}@property --tw-mask-conic{syntax:"*";inherits:false;initial-value:linear-gradient(#fff, #fff)}@property --tw-mask-left{syntax:"*";inherits:false;initial-value:linear-gradient(#fff, #fff)}@property --tw-mask-right{syntax:"*";inherits:false;initial-value:linear-gradient(#fff, #fff)}@property --tw-mask-bottom{syntax:"*";inherits:false;initial-value:linear-gradient(#fff, #fff)}@property --tw-mask-top{syntax:"*";inherits:false;initial-value:linear-gradient(#fff, #fff)}@property --tw-mask-top-from-position{syntax:"*";inherits:false;initial-value:0%}@property --tw-mask-top-to-position{syntax:"*";inherits:false;initial-value:100%}@property --tw-mask-top-from-color{syntax:"*";inherits:false;initial-value:black}@property --tw-mask-top-to-color{syntax:"*";inherits:false;initial-value:transparent}@property --tw-mask-bottom-from-position{syntax:"*";inherits:false;initial-value:0%}@property --tw-mask-bottom-to-position{syntax:"*";inherits:false;initial-value:100%}@property --tw-mask-bottom-from-color{syntax:"*";inherits:false;initial-value:black}@property --tw-mask-bottom-to-color{syntax:"*";inherits:false;initial-value:transparent}@property --tw-leading{syntax:"*";inherits:false}@property --tw-ordinal{syntax:"*";inherits:false}@property --tw-slashed-zero{syntax:"*";inherits:false}@property --tw-numeric-figure{syntax:"*";inherits:false}@property --tw-numeric-spacing{syntax:"*";inherits:false}@property --tw-numeric-fraction{syntax:"*";inherits:false}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}@property --tw-content{syntax:"*";inherits:false;initial-value:""}@keyframes pulse{50%{opacity:.5}}@media (width<=1000px){.agent-scalar.agent-scalar[data-v-3496197b]{border-top-left-radius:var(--scalar-radius-lg);border-top-right-radius:var(--scalar-radius-lg);inset-inline:0;top:48px}.agent-scalar.agent-scalar[data-v-3496197b],.agent-scalar-overlay.agent-scalar-overlay[data-v-3496197b]{z-index:15}}.scalar-mcp-layer[data-v-8151784b]{background:0 0;flex-direction:column;justify-content:flex-end;gap:2px;height:32px;transition:all .4s ease-in-out;display:flex;position:relative}.scalar-mcp-layer[data-v-8151784b]:hover{height:172px}.scalar-mcp-layer-link[data-v-8151784b]:hover{cursor:pointer!important}.scalar-mcp-layer .scalar-mcp-layer-link[data-v-8151784b]{font:inherit;cursor:pointer;text-align:center;white-space:nowrap;width:100%;height:31px;font-size:var(--scalar-small);border-radius:var(--scalar-radius);border:var(--scalar-border-width) solid var(--scalar-border-color);color:var(--scalar-sidebar-color-1);background:var(--scalar-background-1);align-items:center;gap:6px;padding:9px 6px;line-height:1.385;text-decoration:none;transition:transform .2s ease-in-out;display:flex;position:absolute;bottom:0}.scalar-mcp-layer-link[data-v-8151784b]:after{content:"";width:100%;height:2px;position:absolute;bottom:-2px;left:0}.scalar-mcp-layer div.scalar-mcp-layer-link[data-v-8151784b]{cursor:default}.scalar-mcp-layer .scalar-mcp-layer-link[data-v-8151784b]:last-child{position:relative;transform:translate(0,0)}.scalar-mcp-layer .scalar-mcp-layer-link[data-v-8151784b]:nth-last-child(2){transform:translateY(-2px)scale(.99)}.scalar-mcp-layer:hover a[data-v-8151784b]:nth-last-child(2){transform:translateY(calc(-100% - 2px))scale(.99)}.scalar-mcp-layer .scalar-mcp-layer-link[data-v-8151784b]:nth-last-child(3){transform:translateY(-4px)scale(.98)}.scalar-mcp-layer:hover a[data-v-8151784b]:nth-last-child(3){transform:translateY(calc(-200% - 4px))scale(1)}.scalar-mcp-layer .scalar-mcp-layer-link[data-v-8151784b]:nth-last-child(4){transform:translateY(-6px)scale(.97)}.scalar-mcp-layer:hover a[data-v-8151784b]:nth-last-child(4){transform:translateY(calc(-300% - 6px))scale(1)}.scalar-mcp-layer .scalar-mcp-layer-link[data-v-8151784b]:nth-last-child(5){transform:translateY(-8px)scale(.96)}.scalar-mcp-layer:hover .scalar-mcp-layer-link[data-v-8151784b]:nth-last-child(5){transform:translateY(calc(-400% - 8px))scale(1)}.scalar-mcp-layer:hover .scalar-mcp-layer-link[data-v-8151784b]{transition:transform .2s ease-in-out .1s}.scalar-mcp-layer .scalar-mcp-layer-link[data-v-8151784b]:hover{background:var(--scalar-background-2)}.scalar-mcp-layer .mcp-logo[data-v-8151784b]{width:16px;height:16px;color:var(--scalar-sidebar-color-1)}.mcp-nav[data-v-8151784b]{color:var(--scalar-sidebar-color-2)}.references-classic-header[data-v-8a3822ca]{max-width:var(--refs-content-max-width);align-items:center;gap:12px;margin:auto;padding:12px 0;display:flex}.references-classic-header-content[data-v-8a3822ca]{flex-grow:1;gap:12px;display:flex}.references-classic-header-container[data-v-8a3822ca]{padding:0 60px;position:relative}@container narrow-references-container (width<=900px){.references-classic-header[data-v-8a3822ca]{padding:12px 24px}.references-classic-header-container[data-v-8a3822ca]{padding:0}}.references-classic-header-icon[data-v-8a3822ca]{height:24px;color:var(--scalar-color-1)}.client-libraries-more[data-v-da3e3bd2]{flex:1 1 0;min-width:0;display:flex}.client-libraries[data-v-da3e3bd2]{cursor:pointer;white-space:nowrap;width:100%;color:var(--scalar-color-3);-webkit-user-select:none;user-select:none;border-bottom:1px solid #0000;justify-content:center;align-items:center;gap:6px;padding:8px 2px;display:flex;position:relative}.client-libraries[data-v-da3e3bd2]:not(.client-libraries__active):hover:before{content:"";background:var(--scalar-background-2);z-index:0;border-radius:var(--scalar-radius);width:calc(100% - 4px);height:calc(100% - 4px);position:absolute;top:2px;left:2px}.client-libraries[data-v-da3e3bd2]:active{color:var(--scalar-color-1)}.client-libraries[data-v-da3e3bd2]:focus-visible{box-shadow:inset 0 0 0 1px var(--scalar-color-accent);outline:none}.client-libraries-icon[data-v-da3e3bd2]{aspect-ratio:1;box-sizing:border-box;color:currentColor;justify-content:center;align-items:center;width:100%;min-width:14px;max-width:14px;max-height:14px;display:flex;position:relative}.client-libraries-icon__more svg[data-v-da3e3bd2]{height:initial}.client-libraries__active[data-v-da3e3bd2]{color:var(--scalar-color-1);border-bottom:1px solid var(--scalar-color-1)}.client-libraries .client-libraries-text[data-v-da3e3bd2]{font-size:var(--scalar-small);align-items:center;display:flex;position:relative}.client-libraries__active .client-libraries-text[data-v-da3e3bd2]{color:var(--scalar-color-1);font-weight:var(--scalar-semibold)}@media screen and (width<=600px){.references-classic .client-libraries[data-v-da3e3bd2]{flex-direction:column}}@container client-libraries-list (width<400px){.client-libraries-more[data-v-da3e3bd2]{flex:none}.client-libraries__select[data-v-da3e3bd2]{width:fit-content}.client-libraries__select .client-libraries-icon__more+span[data-v-da3e3bd2]{display:none}}.selected-client[data-v-34beffcc]{color:var(--scalar-color-1);font-size:var(--scalar-small);font-family:var(--scalar-font-code);white-space:nowrap;text-overflow:ellipsis;background:var(--scalar-background-1);border-top:none;border:var(--scalar-border-width) solid var(--scalar-border-color);border-bottom-left-radius:var(--scalar-radius-xl);border-bottom-right-radius:var(--scalar-radius-xl);min-height:fit-content;padding:9px 12px;overflow:hidden}.client-libraries-heading[data-v-34beffcc]{font-size:var(--scalar-small);font-weight:var(--scalar-font-medium);color:var(--scalar-color-1);background-color:var(--scalar-background-2);border:var(--scalar-border-width) solid var(--scalar-border-color);border-top-left-radius:var(--scalar-radius-xl);border-top-right-radius:var(--scalar-radius-xl);align-items:center;max-height:32px;padding:9px 12px;display:flex}.client-libraries-list[data-v-34beffcc]{background-color:var(--scalar-background-1);border-left:var(--scalar-border-width) solid var(--scalar-border-color);border-right:var(--scalar-border-width) solid var(--scalar-border-color);justify-content:center;padding:0 12px;display:flex;overflow:hidden;container:client-libraries-list/inline-size}.client-libraries-tabs[data-v-34beffcc]{flex:1 1 0;min-width:0;display:flex}.client-libraries[data-v-34beffcc]{cursor:pointer;white-space:nowrap;width:100%;color:var(--scalar-color-3);-webkit-user-select:none;user-select:none;border-bottom:1px solid #0000;justify-content:center;align-items:center;gap:6px;padding:8px 2px;display:flex;position:relative}.client-libraries[data-v-34beffcc]:not(.client-libraries__active):hover:before{content:"";background:var(--scalar-background-2);z-index:0;border-radius:var(--scalar-radius);width:calc(100% - 4px);height:calc(100% - 4px);position:absolute;top:2px;left:2px}.client-libraries[data-v-34beffcc]:active{color:var(--scalar-color-1)}.client-libraries[data-v-34beffcc]:focus-visible{box-shadow:inset 0 0 0 1px var(--scalar-color-accent);outline:none}@media screen and (width<=450px){.client-libraries[data-v-34beffcc]:nth-of-type(4),.client-libraries[data-v-34beffcc]:nth-of-type(5){display:none}}.client-libraries-icon[data-v-34beffcc]{aspect-ratio:1;box-sizing:border-box;color:currentColor;justify-content:center;align-items:center;width:100%;min-width:14px;max-width:14px;max-height:14px;display:flex;position:relative}.client-libraries__active[data-v-34beffcc]{color:var(--scalar-color-1);border-bottom:1px solid var(--scalar-color-1)}.client-libraries .client-libraries-text[data-v-34beffcc]{font-size:var(--scalar-small);align-items:center;display:flex;position:relative}.client-libraries__active .client-libraries-text[data-v-34beffcc]{color:var(--scalar-color-1);font-weight:var(--scalar-semibold)}@media screen and (width<=600px){.references-classic .client-libraries[data-v-34beffcc]{flex-direction:column}}@container client-libraries-list (width<380px){.client-libraries[data-v-34beffcc]{width:100%}.client-libraries span[data-v-34beffcc]{display:none}}.badge.text-orange[data-v-3f3e4ac3]{background:color-mix(in srgb, var(--scalar-color-orange), transparent 90%);border:#0000}.badge.text-yellow[data-v-3f3e4ac3]{background:color-mix(in srgb, var(--scalar-color-yellow), transparent 90%);border:#0000}.badge.text-red[data-v-3f3e4ac3]{background:color-mix(in srgb, var(--scalar-color-red), transparent 90%);border:#0000}.badge.text-purple[data-v-3f3e4ac3]{background:color-mix(in srgb, var(--scalar-color-purple), transparent 90%);border:#0000}.badge.text-green[data-v-3f3e4ac3]{background:color-mix(in srgb, var(--scalar-color-green), transparent 90%);border:#0000}.download-container[data-v-0aba6db2]{z-index:1;flex-direction:column;gap:16px;width:fit-content;margin:0 .5px 8px;display:flex;position:relative}.download-container.download-both[data-v-0aba6db2]:hover:before{content:"";border-radius:var(--scalar-radius-lg);width:calc(100% + 24px);height:90px;box-shadow:var(--scalar-shadow-2);pointer-events:none;background:var(--scalar-background-1);position:absolute;top:-11px;left:-12px}.download-container[data-v-0aba6db2]:has(:focus-visible):before{content:"";border-radius:var(--scalar-radius-lg);width:calc(100% + 24px);height:90px;box-shadow:var(--scalar-shadow-2);pointer-events:none;background:var(--scalar-background-1);position:absolute;top:-11px;left:-12px}.download-button[data-v-0aba6db2]{color:var(--scalar-link-color);cursor:pointer;outline:none;justify-content:center;align-items:center;gap:4px;height:fit-content;padding:0;display:flex;position:relative;white-space:nowrap!important}.download-button[data-v-0aba6db2]:before{border-radius:var(--scalar-radius);content:"";width:calc(100% + 18px);height:calc(100% + 16px);position:absolute;top:-8px;left:-9px}.download-button[data-v-0aba6db2]:last-of-type:before{width:calc(100% + 15px)}.download-button[data-v-0aba6db2]:hover:before{background:var(--scalar-background-2);border:var(--scalar-border-width) solid var(--scalar-border-color)}.download-button[data-v-0aba6db2]:focus-visible:before{background:var(--scalar-background-2);border:var(--scalar-border-width) solid var(--scalar-border-color);outline-style:var(--tw-outline-style);outline-width:1px}.download-button span[data-v-0aba6db2]{--font-color:var(--scalar-link-color,var(--scalar-color-accent));--font-visited:var(--scalar-link-color-visited,var(--scalar-color-2));-webkit-text-decoration:var(--scalar-text-decoration);-webkit-text-decoration:var(--scalar-text-decoration);-webkit-text-decoration:var(--scalar-text-decoration);text-decoration:var(--scalar-text-decoration);color:var(--font-color);font-weight:var(--scalar-link-font-weight,var(--scalar-semibold));text-underline-offset:.25rem;text-decoration-thickness:1px;-webkit-text-decoration-color:var(--font-color);-webkit-text-decoration-color:var(--font-color);-webkit-text-decoration-color:var(--font-color);text-decoration-color:var(--font-color)}@supports (color:color-mix(in lab, red, red)){.download-button span[data-v-0aba6db2]{-webkit-text-decoration-color:color-mix(in srgb, var(--font-color) 30%, transparent);-webkit-text-decoration-color:color-mix(in srgb, var(--font-color) 30%, transparent);-webkit-text-decoration-color:color-mix(in srgb, var(--font-color) 30%, transparent);text-decoration-color:color-mix(in srgb, var(--font-color) 30%, transparent)}}.download-button span[data-v-0aba6db2]{z-index:1;align-items:center;gap:6px;line-height:1.625;display:flex}.download-button:hover span[data-v-0aba6db2]{-webkit-text-decoration-color:var(--scalar-color-1,currentColor);-webkit-text-decoration-color:var(--scalar-color-1,currentColor);-webkit-text-decoration-color:var(--scalar-color-1,currentColor);text-decoration-color:var(--scalar-color-1,currentColor);color:var(--scalar-link-color-hover,var(--scalar-color-accent));-webkit-text-decoration:var(--scalar-text-decoration-hover);-webkit-text-decoration:var(--scalar-text-decoration-hover);-webkit-text-decoration:var(--scalar-text-decoration-hover);-webkit-text-decoration:var(--scalar-text-decoration-hover);text-decoration:var(--scalar-text-decoration-hover)}.download-button[data-v-0aba6db2]:nth-of-type(2){clip-path:inset(50%);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.download-container:hover .download-button[data-v-0aba6db2]:nth-of-type(2){clip-path:none;white-space:normal;width:auto;height:auto;margin:0;padding:0;position:absolute;top:42px;overflow:visible}.download-container:has(:focus-visible) .download-button[data-v-0aba6db2]:nth-of-type(2){clip-path:none;white-space:normal;width:auto;height:auto;margin:0;padding:0;position:absolute;top:42px;overflow:visible}.badge.extension[data-v-0aba6db2]{z-index:1;background:var(--scalar-link-color,var(--scalar-color-accent));color:var(--scalar-background-1)}.download-container:hover .extension[data-v-0aba6db2]{opacity:1}.download-container:has(:focus-visible) .extension[data-v-0aba6db2]{opacity:1}.download-link[data-v-0aba6db2]{--font-color:var(--scalar-link-color,var(--scalar-color-accent));--font-visited:var(--scalar-link-color-visited,var(--scalar-color-2));-webkit-text-decoration:var(--scalar-text-decoration);-webkit-text-decoration:var(--scalar-text-decoration);-webkit-text-decoration:var(--scalar-text-decoration);text-decoration:var(--scalar-text-decoration);color:var(--font-color);font-weight:var(--scalar-link-font-weight,var(--scalar-semibold));text-underline-offset:.25rem;text-decoration-thickness:1px;-webkit-text-decoration-color:var(--font-color);-webkit-text-decoration-color:var(--font-color);-webkit-text-decoration-color:var(--font-color);text-decoration-color:var(--font-color)}@supports (color:color-mix(in lab, red, red)){.download-link[data-v-0aba6db2]{-webkit-text-decoration-color:color-mix(in srgb, var(--font-color) 30%, transparent);-webkit-text-decoration-color:color-mix(in srgb, var(--font-color) 30%, transparent);-webkit-text-decoration-color:color-mix(in srgb, var(--font-color) 30%, transparent);text-decoration-color:color-mix(in srgb, var(--font-color) 30%, transparent)}}.download-link[data-v-0aba6db2]:hover{--font-color:var(--scalar-link-color,var(--scalar-color-accent));-webkit-text-decoration-color:var(--font-color);-webkit-text-decoration-color:var(--font-color);-webkit-text-decoration-color:var(--font-color);text-decoration-color:var(--font-color)}.introduction-card[data-v-e60166e1]{flex-direction:column;gap:12px;display:flex}.introduction-card-row[data-v-e60166e1]{flex-flow:wrap;gap:24px}.introduction-card-row[data-v-e60166e1]>*{flex:1;min-width:min-content}@container narrow-references-container (width<=900px){.introduction-card-row[data-v-e60166e1]{flex-direction:column;align-items:stretch;gap:0}.introduction-card-row[data-v-e60166e1]>*{min-width:auto;max-width:100%}}.introduction-card[data-v-e60166e1] .security-scheme-label{text-transform:uppercase;font-weight:var(--scalar-semibold)}.introduction-card-row[data-v-e60166e1] .scalar-card:nth-of-type(2) .scalar-card-header{display:none}.introduction-card-row[data-v-e60166e1] .scalar-card:nth-of-type(2) .scalar-card-header.scalar-card--borderless+.scalar-card-content{margin-top:0}.section[data-v-be4443e9]{max-width:var(--refs-content-max-width);scroll-margin-top:var(--refs-viewport-offset);flex-direction:column;margin:auto;padding:90px 0;display:flex;position:relative}.section[data-v-be4443e9]:has(~div.contents){border-bottom:var(--scalar-border-width) solid var(--scalar-border-color)}.references-classic .section[data-v-be4443e9]{gap:24px;padding:48px 0}@container narrow-references-container (width<=900px){.references-classic .section[data-v-be4443e9],.section[data-v-be4443e9]{padding:48px 24px}}.section[data-v-be4443e9]:not(:last-of-type){border-bottom:var(--scalar-border-width) solid var(--scalar-border-color)}.section-wrapper[data-v-ff689b94]{color:var(--scalar-color-1);margin-top:-12px;padding-top:12px}.section-accordion[data-v-ff689b94]{border-radius:var(--scalar-radius-lg);background:var(--scalar-background-2);scroll-margin-top:var(--refs-viewport-offset);flex-direction:column;display:flex}.section-accordion-transparent[data-v-ff689b94]{border:var(--scalar-border-width) solid var(--scalar-border-color);background:0 0}.section-accordion-button[data-v-ff689b94]{cursor:pointer;align-items:center;gap:6px;padding:6px;display:flex}.section-accordion-button-content[data-v-ff689b94]{flex:1;min-width:0}.section-accordion-button-actions[data-v-ff689b94]{color:var(--scalar-color-3);align-items:center;gap:6px;display:flex}.section-accordion-chevron[data-v-ff689b94]{cursor:pointer;opacity:1;color:var(--scalar-color-3);margin-right:4px}.section-accordion-button:hover .section-accordion-chevron[data-v-ff689b94]{color:var(--scalar-color-1)}.section-accordion-content[data-v-ff689b94]{border-top:var(--scalar-border-width) solid var(--scalar-border-color);flex-direction:column;display:flex}.section-accordion-description[data-v-ff689b94]{font-weight:var(--scalar-semibold);font-size:var(--scalar-mini);color:var(--scalar-color--1);padding:10px 12px 0}.section-accordion-content-card[data-v-ff689b94] .property:last-of-type{padding-bottom:9px}.section-column[data-v-699c28e3]{flex:1;min-width:0}@container narrow-references-container (width<=900px){.section-column[data-v-699c28e3]:nth-of-type(2){padding-top:0}}.section-columns[data-v-8b9602bf]{gap:48px;display:flex}@container narrow-references-container (width<=900px){.section-columns[data-v-8b9602bf]{flex-direction:column;gap:24px}}.section-container[data-v-20a1472a]{border-top:var(--scalar-border-width) solid var(--scalar-border-color);width:100%;padding:0 60px;position:relative}.section-container[data-v-20a1472a]:has(.introduction-section){border-top:none}@container narrow-references-container (width<=900px){.section-container[data-v-20a1472a]{padding:0}}.section-accordion-wrapper[data-v-9419dd23]{padding:0 60px}.section-accordion[data-v-9419dd23]{width:100%;max-width:var(--refs-content-max-width);margin:auto;position:relative}.section-accordion-content[data-v-9419dd23]{flex-direction:column;gap:12px;padding-top:12px;display:flex}.section-accordion-button[data-v-9419dd23]{cursor:pointer;border-radius:var(--scalar-radius);width:100%;margin:-6px 0;padding:6px 0;display:flex}.section-accordion-chevron[data-v-9419dd23]{color:var(--scalar-color-3);position:absolute;top:12px;left:-22px}.section-accordion-button:hover .section-accordion-chevron[data-v-9419dd23]{color:var(--scalar-color-1)}.section-accordion-title[data-v-9419dd23]{flex-direction:column;flex:1;align-items:flex-start;padding:0 6px;display:flex}.section-accordion-title[data-v-9419dd23] .section-header-wrapper{grid-template-columns:1fr}.section-accordion-title[data-v-9419dd23] .section-header{margin-bottom:0}@container narrow-references-container (width<=900px){.section-accordion-chevron[data-v-9419dd23]{width:16px;top:14px;left:-16px}.section-accordion-wrapper[data-v-9419dd23]{padding:calc(var(--refs-viewport-offset)) 24px 0 24px}.section-content--with-columns[data-v-6101128d]{flex-direction:column;gap:24px}}.section-header[data-v-7607c44e]{font-size:var(--font-size,var(--scalar-heading-1));font-weight:var(--font-weight,var(--scalar-bold));color:var(--scalar-color-1);word-wrap:break-word;margin-top:0;line-height:1.45}.section-header.tight[data-v-7607c44e]{margin-bottom:6px}.section-header-label[data-v-f1ac6c38]{display:inline}.screenreader-only[data-v-df2e1026]{clip:rect(0, 0, 0, 0);border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.collapsible-section[data-v-ea5f870d]{border-top:var(--scalar-border-width) solid var(--scalar-border-color);position:relative}.collapsible-section-header[data-v-ea5f870d]{color:var(--scalar-color-1)}.collapsible-section .collapsible-section-trigger[data-v-ea5f870d]{cursor:pointer;font-size:var(--scalar-font-size-3);z-index:1;align-items:center;padding:10px 0;display:flex;position:relative}.collapsible-section-trigger svg[data-v-ea5f870d]{color:var(--scalar-color-3);position:absolute;left:-19px}.collapsible-section:hover .collapsible-section-trigger svg[data-v-ea5f870d]{color:var(--scalar-color-1)}.collapsible-section .collapsible-section-trigger[data-v-ea5f870d] .anchor-copy{line-height:18.5px}.collapsible-section-content[data-v-ea5f870d]{margin:0 0 10px;padding:0;scroll-margin-top:140px}.references-classic .introduction-description[data-v-0370764f] img{max-width:720px}.icons-only[data-v-dc833d99] span{display:none}.sticky-cards[data-v-41a61989]{top:calc(var(--refs-viewport-offset) + 24px);flex-direction:column;display:flex;position:sticky}.introduction-skeleton[data-v-41a61989]{background:var(--scalar-background-3);animation:1.5s infinite alternate introduction-skeleton-pulse-41a61989}@keyframes introduction-skeleton-pulse-41a61989{0%{opacity:1}to{opacity:.33}}.sticky-cards[data-v-d6744cde]{top:calc(var(--refs-viewport-offset) + 24px);flex-direction:column;display:flex;position:sticky}.introduction-card-item[data-v-dfab866f]{flex-direction:column;justify-content:flex-start;display:flex}.introduction-card-item[data-v-dfab866f]:empty{display:none}.introduction-card-item[data-v-dfab866f]:has(.description) .server-form-container{border-bottom-right-radius:0;border-bottom-left-radius:0}.introduction-card-item[data-v-dfab866f] .request-item{border-bottom:0}.selected-client[data-v-76e5ff4d]{color:var(--scalar-color-1);font-size:var(--scalar-small);background:var(--scalar-background-1);border:var(--scalar-border-width) solid var(--scalar-border-color);border-bottom-left-radius:var(--scalar-radius-xl);border-bottom-right-radius:var(--scalar-radius-xl);border-top:none;flex-direction:column;gap:9px;padding:9px 12px;display:flex}.client-libraries-heading[data-v-76e5ff4d]{font-size:var(--scalar-small);font-weight:var(--scalar-font-medium);color:var(--scalar-color-1);background-color:var(--scalar-background-2);border:var(--scalar-border-width) solid var(--scalar-border-color);border-top-left-radius:var(--scalar-radius-xl);border-top-right-radius:var(--scalar-radius-xl);align-items:center;max-height:32px;padding:9px 12px;display:flex}.client-libraries-content[data-v-76e5ff4d]{scrollbar-width:none;background-color:var(--scalar-background-1);border-left:var(--scalar-border-width) solid var(--scalar-border-color);border-right:var(--scalar-border-width) solid var(--scalar-border-color);border-bottom:var(--scalar-border-width) solid var(--scalar-border-color);padding:0 12px;position:relative;overflow:auto hidden}.client-libraries-content[data-v-76e5ff4d]::-webkit-scrollbar{display:none}.client-libraries-row[data-v-76e5ff4d]{justify-content:flex-start;display:flex}.client-libraries-tabs[data-v-76e5ff4d]{flex:none;display:flex}.client-libraries-measure-clip[data-v-76e5ff4d]{width:0;height:0;position:absolute;top:0;left:0;overflow:hidden}.client-libraries-row--measure[data-v-76e5ff4d]{visibility:hidden;pointer-events:none;width:max-content}.client-libraries[data-v-76e5ff4d]{cursor:pointer;white-space:nowrap;color:var(--scalar-color-3);-webkit-user-select:none;user-select:none;background:0 0;border-bottom:1px solid #0000;flex-shrink:0;justify-content:center;align-items:center;gap:6px;padding:8px 12px;display:flex;position:relative}.client-libraries[data-v-76e5ff4d]:not(.client-libraries__active):hover:before{content:"";background:var(--scalar-background-2);z-index:0;border-radius:var(--scalar-radius);width:calc(100% - 4px);height:calc(100% - 4px);position:absolute;top:2px;left:2px}.client-libraries[data-v-76e5ff4d]:active{color:var(--scalar-color-1)}.client-libraries[data-v-76e5ff4d]:focus-visible{box-shadow:inset 0 0 0 1px var(--scalar-color-accent);outline:none}.client-libraries__active[data-v-76e5ff4d]{color:var(--scalar-color-1);border-bottom:1px solid var(--scalar-color-1)}.client-libraries-more[data-v-76e5ff4d]{margin-left:auto}.client-libraries-icon[data-v-76e5ff4d]{aspect-ratio:1;box-sizing:border-box;color:currentColor;justify-content:center;align-items:center;width:100%;min-width:14px;max-width:14px;max-height:14px;display:flex;position:relative}.client-libraries .client-libraries-text[data-v-76e5ff4d]{font-size:var(--scalar-small);align-items:center;display:flex;position:relative}.client-libraries__active .client-libraries-text[data-v-76e5ff4d]{color:var(--scalar-color-1);font-weight:var(--scalar-semibold)}.schema-type-icon[data-v-e2018ca6]{color:var(--scalar-color-1);display:none}.schema-type[data-v-e2018ca6]{font-family:var(--scalar-font-code);color:var(--scalar-color-1)}.property-enum-value[data-v-4375ecfd]{color:var(--scalar-color-3);overflow-wrap:break-word;--decorator-width:1px;--decorator-color:color-mix(in srgb, var(--scalar-background-1), var(--scalar-color-1) 25%);align-items:stretch;line-height:1.5;display:flex;position:relative}.property-enum-value-content[data-v-4375ecfd]{flex-direction:column;padding:3px 0;display:flex}.property-enum-value-label[data-v-4375ecfd]{font-family:var(--scalar-font-code);color:var(--scalar-color-1);font-size:var(--scalar-font-size-4);position:relative}.property-enum-value:last-of-type .property-enum-value-label[data-v-4375ecfd]{padding-bottom:0}.property-enum-value[data-v-4375ecfd]:before{content:"";width:var(--decorator-width);background-color:var(--decorator-color);margin-right:12px;display:block}.property-enum-value[data-v-4375ecfd]:last-of-type:before{height:calc(.5lh + 4px)}.property-enum-values:has(.enum-toggle-button) .property-enum-value[data-v-4375ecfd]:nth-last-child(2):before{height:calc(.5lh + 4px)}.property-enum-value-label[data-v-4375ecfd]:after{content:"";width:8px;height:var(--decorator-width);background-color:var(--decorator-color);position:absolute;top:.5lh;left:-12px}.property-enum-value[data-v-4375ecfd]:last-of-type:after{background:var(--scalar-background-1);border-top:var(--scalar-border-width) solid var(--decorator-color);height:50%;bottom:0}.property-enum-value-description[data-v-4375ecfd]{color:var(--scalar-color-3)}.property-heading:empty+.property-description[data-v-602e2e26]:last-of-type,.property-description[data-v-602e2e26]:first-of-type:last-of-type{margin-top:0}.property-list[data-v-602e2e26]{border:var(--scalar-border-width) solid var(--scalar-border-color);border-radius:var(--scalar-radius);margin-top:10px}.property-list .property[data-v-602e2e26]:last-of-type{padding-bottom:10px}.property-enum-values[data-v-602e2e26]{font-size:var(--scalar-font-size-3);margin-top:8px;padding-left:2px;list-style:none}.enum-toggle-button[data-v-602e2e26]:hover{color:var(--scalar-color-1)}.property-enum-property-names[data-v-602e2e26]{font-size:var(--scalar-font-size-4);color:var(--scalar-color-2);margin-top:8px;padding:0 2px;display:inline-block}.property-default[data-v-cc878a44]{font-size:var(--scalar-mini);flex-direction:column;display:flex;position:relative}.property-default[data-v-cc878a44]:hover:before{content:"";border-radius:var(--scalar-radius);width:100%;height:20px;position:absolute;top:0;left:0}.property-default:hover .property-default-label span[data-v-cc878a44]{color:var(--scalar-color-1)}.property-default-label span[data-v-cc878a44]{color:var(--scalar-color-3);border-bottom:var(--scalar-border-width) dotted currentColor;position:relative}.property-default-value[data-v-cc878a44]{font-family:var(--scalar-font-code);align-items:center;gap:8px;width:100%;padding:6px;display:flex}.property-default-value span[data-v-cc878a44]{text-overflow:ellipsis;white-space:nowrap;display:block;overflow:hidden}.property-default-value[data-v-cc878a44] svg{color:var(--scalar-color-3)}.property-default-value[data-v-cc878a44]:hover svg{color:var(--scalar-color-1)}.property-default-value[data-v-cc878a44]{background:var(--scalar-background-2);border:var(--scalar-border-width) solid var(--scalar-border-color);border-radius:var(--scalar-radius)}.property-default-value-list[data-v-cc878a44]{background-color:var(--scalar-background-1);box-shadow:var(--scalar-shadow-1);border-radius:var(--scalar-radius-lg);border:var(--scalar-border-width) solid var(--scalar-border-color);z-index:2;flex-direction:column;gap:3px;min-width:200px;max-width:300px;padding:9px;display:none;position:absolute;top:18px;left:50%;overflow:auto;transform:translate(-50%)}.property-default:hover .property-default-value-list[data-v-cc878a44],.property-default:focus-within .property-default-value-list[data-v-cc878a44]{display:flex}.property-detail[data-v-1295f965]{display:inline-flex}.property-detail+.property-detail[data-v-1295f965]:before{content:"·";margin:0 .5ch;display:block}.property-detail-truncate[data-v-1295f965]{overflow:hidden}.property-detail-truncate>.property-detail-value[data-v-1295f965]{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.property-detail-prefix[data-v-1295f965]{color:var(--scalar-color-2)}code.property-detail-value[data-v-1295f965]{font-family:var(--scalar-font-code);font-size:var(--scalar-font-size-3);color:var(--scalar-color-2);background:color-mix(in srgb, var(--scalar-background-2), var(--scalar-background-1));border:var(--scalar-border-width) solid var(--scalar-border-color);border-radius:var(--scalar-radius);padding:0 4px}.property-example[data-v-370db0bd]{font-size:var(--scalar-mini);flex-direction:column;display:flex;position:relative}.property-example[data-v-370db0bd]:hover:before{content:"";border-radius:var(--scalar-radius);width:100%;height:20px;position:absolute;top:0;left:0}.property-example-value[data-v-370db0bd]{font-family:var(--scalar-font-code);align-items:center;gap:8px;width:100%;padding:6px;display:flex}.property-example-value span[data-v-370db0bd]{text-overflow:ellipsis;white-space:nowrap;display:block;overflow:hidden}.property-example-value[data-v-370db0bd] svg{color:var(--scalar-color-3)}.property-example-value[data-v-370db0bd]:hover svg{color:var(--scalar-color-1)}.property-example-value[data-v-370db0bd]{background:var(--scalar-background-2);border:var(--scalar-border-width) solid var(--scalar-border-color);border-radius:var(--scalar-radius)}.property-example-value-list[data-v-370db0bd]{background-color:var(--scalar-background-1);box-shadow:var(--scalar-shadow-1);border-radius:var(--scalar-radius-lg);border:var(--scalar-border-width) solid var(--scalar-border-color);z-index:1000;flex-direction:column;gap:3px;min-width:200px;max-width:300px;padding:9px;display:none;position:absolute;top:18px;left:50%;overflow:auto;transform:translate(-50%)}.property-example:hover .property-example-value-list[data-v-370db0bd],.property-example:focus-within .property-example-value-list[data-v-370db0bd]{display:flex}.property-heading[data-v-74d321d3]{white-space:nowrap;flex-wrap:wrap;align-items:baseline;row-gap:9px;display:flex}:is(.property-heading[data-v-74d321d3]:has(+.children),.property-heading[data-v-74d321d3]:has(+.property-rule)){margin-bottom:9px}.property-heading[data-v-74d321d3]>*{margin-right:9px}.property-heading[data-v-74d321d3]:last-child,.property-heading>.property-detail[data-v-74d321d3]:not(:last-of-type){margin-right:0}.property-name[data-v-74d321d3]{max-width:100%;font-family:var(--scalar-font-code);font-weight:var(--scalar-bold);font-size:var(--scalar-font-size-4);white-space:normal;overflow-wrap:break-word}.property-additional[data-v-74d321d3]{font-family:var(--scalar-font-code)}.property-required[data-v-74d321d3],.property-optional[data-v-74d321d3]{color:var(--scalar-color-2)}.property-required[data-v-74d321d3]{font-size:var(--scalar-mini);color:var(--scalar-color-orange)}.property-read-only[data-v-74d321d3]{font-size:var(--scalar-mini);color:var(--scalar-color-blue)}.property-write-only[data-v-74d321d3]{font-size:var(--scalar-mini);color:var(--scalar-color-green)}.property-discriminator[data-v-74d321d3]{font-size:var(--scalar-mini);color:var(--scalar-color-purple)}.property-detail[data-v-74d321d3]{font-size:var(--scalar-mini);color:var(--scalar-color-2);align-items:center;min-width:0;display:flex}.property-const[data-v-74d321d3]{color:var(--scalar-color-1)}.deprecated[data-v-74d321d3]{text-decoration:line-through}.property[data-v-1ebde634]{color:var(--scalar-color-1);font-size:var(--scalar-small);flex-direction:column;padding:10px;display:flex;position:relative}.property.property--level-0[data-v-1ebde634]:has(>.property-rule>.schema-card>.schema-properties.schema-properties-open>ul>li.property){padding-top:0}.property--compact.property--level-0[data-v-1ebde634],.property--compact.property--level-1[data-v-1ebde634]{padding:10px 0}.composition-panel .property.property.property.property--level-0[data-v-1ebde634]{padding:0}.property--compact.property--level-0 .composition-panel .property--compact.property--level-1[data-v-1ebde634]{padding:8px}.property[data-v-1ebde634]:has(>.property-rule:first-of-type):not(.property--compact){padding-top:8px;padding-bottom:8px}.property--deprecated[data-v-1ebde634]{background:repeating-linear-gradient(-45deg, var(--scalar-background-2) 0, var(--scalar-background-2) 2px, transparent 2px, transparent 5px);background-size:100%}.property--deprecated[data-v-1ebde634]>*{opacity:.75}.property-description[data-v-1ebde634]{line-height:1.4;font-size:var(--scalar-small);margin-top:6px}.property-description[data-v-1ebde634]:has(+.property-rule){margin-bottom:9px}[data-v-1ebde634] .property-description *{color:var(--scalar-color-2)!important}.property[data-v-1ebde634]:not(:last-of-type){border-bottom:var(--scalar-border-width) solid var(--scalar-border-color)}.property-description+.children[data-v-1ebde634],.children+.property-rule[data-v-1ebde634]{margin-top:9px}.children[data-v-1ebde634]{flex-direction:column;display:flex}.children .property--compact.property--level-1[data-v-1ebde634]{padding:12px}.property-example-value[data-v-1ebde634]{all:unset;font-family:var(--scalar-font-code);border-top:var(--scalar-border-width) solid var(--scalar-border-color);padding:6px}.property-rule[data-v-1ebde634]{border-radius:var(--scalar-radius-lg);flex-direction:column;display:flex}.property--level-2[data-v-1ebde634] .relative>button{left:-2rem}.property-rule[data-v-1ebde634] .composition-panel .schema-card--level-1>.schema-properties.schema-properties-open{border-radius:0 0 var(--scalar-radius-lg) var(--scalar-radius-lg)}.property-rule[data-v-1ebde634] .composition-panel>.schema-card>.schema-card-description{border-left:var(--scalar-border-width) solid var(--scalar-border-color);border-right:var(--scalar-border-width) solid var(--scalar-border-color);padding:10px}.property-rule[data-v-1ebde634] .composition-panel>.schema-card>.schema-card-description+.schema-properties{margin-top:0}.property-example[data-v-1ebde634]{background:0 0;border:none;flex-direction:row;gap:8px;display:flex}.property-example-label[data-v-1ebde634],.property-example-value[data-v-1ebde634]{padding:3px 0 0}.property-example-value[data-v-1ebde634]{background:var(--scalar-background-2);border-radius:var(--scalar-radius);border-top:0;padding:3px 4px}.property-name[data-v-1ebde634]{font-family:var(--scalar-font-code);font-weight:var(--scalar-semibold)}.property-name-additional-properties[data-v-1ebde634]:before,.property-name-pattern-properties[data-v-1ebde634]:before{text-transform:uppercase;font-size:var(--scalar-micro);border-radius:var(--scalar-radius);color:var(--scalar-color-1);border:var(--scalar-border-width) solid var(--scalar-border-color);background-color:var(--scalar-background-2);margin-right:4px;padding:2px 4px;display:inline-block}.property-name-pattern-properties[data-v-1ebde634]:before{content:"regex"}.property-name-additional-properties[data-v-1ebde634],.property-name-pattern-properties[data-v-1ebde634]{border:1px dashed var(--scalar-border-color);color:var(--scalar-color-accent);border-radius:var(--scalar-radius);padding:2px;display:inline-block}.error[data-v-e44b49a4]{background-color:var(--scalar-color-red)}.schema-card[data-v-e44b49a4]{font-size:var(--scalar-font-size-4);color:var(--scalar-color-1)}.schema-card-title[data-v-e44b49a4]{height:var(--schema-title-height);color:var(--scalar-color-2);font-weight:var(--scalar-semibold);font-size:var(--scalar-mini);border-bottom:var(--scalar-border-width) solid transparent;align-items:center;gap:4px;padding:6px 8px;display:flex}button.schema-card-title[data-v-e44b49a4]{cursor:pointer}button.schema-card-title[data-v-e44b49a4]:hover{color:var(--scalar-color-1)}.schema-card-title-icon--open[data-v-e44b49a4]{transform:rotate(45deg)}.schema-properties-open>.schema-card-title[data-v-e44b49a4]{border-bottom:var(--scalar-border-width) solid var(--scalar-border-color);border-bottom-right-radius:0;border-bottom-left-radius:0}.schema-properties-open>.schema-properties[data-v-e44b49a4]{width:fit-content}.schema-card-description[data-v-e44b49a4]{color:var(--scalar-color-2)}.schema-card-description+.schema-properties[data-v-e44b49a4]{width:fit-content;margin-top:8px}.schema-card--level-0:first-of-type>.schema-card-description[data-v-e44b49a4]:has(+.schema-properties){border-bottom:var(--scalar-border-width) solid var(--scalar-border-color);margin-bottom:-8px;padding-bottom:8px}.schema-card--level-0~.schema-card--level-0>.schema-card-description[data-v-e44b49a4]:has(+.schema-properties){padding-top:8px}.schema-properties-open.schema-properties[data-v-e44b49a4],.schema-properties-open>.schema-card--open[data-v-e44b49a4]{width:100%}.schema-properties[data-v-e44b49a4]{border:var(--scalar-border-width) solid var(--scalar-border-color);border-radius:var(--scalar-radius-lg);flex-direction:column;width:fit-content;display:flex}.schema-properties-name[data-v-e44b49a4]{width:100%}.schema-properties .schema-properties[data-v-e44b49a4]{border-radius:13.5px}.schema-properties .schema-properties.schema-properties-open[data-v-e44b49a4]{border-radius:var(--scalar-radius-lg)}.schema-properties-open[data-v-e44b49a4]{width:100%}.schema-card--compact[data-v-e44b49a4]{align-self:flex-start}.schema-card--compact.schema-card--open[data-v-e44b49a4]{align-self:initial}.schema-card-title--compact[data-v-e44b49a4]{color:var(--scalar-color-2);border-bottom:none;height:auto;padding:6px 10px 6px 8px}.schema-card-title--compact>.schema-card-title-icon[data-v-e44b49a4]{margin:0}.schema-card-title--compact>.schema-card-title-icon--open[data-v-e44b49a4]{transform:rotate(45deg)}.schema-properties-open>.schema-card-title--compact[data-v-e44b49a4]{position:static}.property--level-0>.schema-properties>.schema-card--level-0>.schema-properties[data-v-e44b49a4]{border:none}.property--level-0 .schema-card--level-0:not(.schema-card--compact) .property--level-1[data-v-e44b49a4]{padding:0 0 8px}:not(.composition-panel)>.schema-card--compact.schema-card--level-0>.schema-properties[data-v-e44b49a4]{border:none}[data-v-e44b49a4] .schema-card-description p{font-size:var(--scalar-small,var(--scalar-paragraph));color:var(--scalar-color-2);margin-bottom:6px;display:block}.children .schema-card-description[data-v-e44b49a4]:first-of-type{padding-top:0}.reference-models-anchor[data-v-f3ae088e]{color:var(--scalar-color-1);align-items:center;padding-left:6px;font-size:20px;display:flex}.reference-models-label[data-v-f3ae088e]{font-size:var(--scalar-mini);display:block}.reference-models-label[data-v-f3ae088e] em{font-weight:var(--scalar-bold)}.show-more[data-v-bb0811ed]{appearance:none;border:none;border:var(--scalar-border-width) solid var(--scalar-border-color);border-radius:var(--scalar-radius-full);color:var(--scalar-color-1);font-weight:var(--scalar-semibold);font-size:var(--scalar-small);justify-content:center;align-items:center;gap:6px;margin:auto;padding:8px 12px 8px 16px;display:flex;position:relative;top:-48px}.show-more[data-v-bb0811ed]:hover{background:var(--scalar-background-2);cursor:pointer}.show-more[data-v-bb0811ed]:active{box-shadow:0 0 0 1px var(--scalar-border-color)}@container narrow-references-container (width<=900px){.show-more[data-v-bb0811ed]{top:-24px}}.tag-section[data-v-ee09ae3d]{margin-bottom:48px}.tag-name[data-v-ee09ae3d]{text-transform:capitalize}.tag-description[data-v-ee09ae3d]{text-align:left;padding-bottom:4px}.tag-section-group .tag-group-name[data-v-ee09ae3d]{grid-template-columns:auto 1fr;align-self:stretch;gap:12px}.tag-group-name[data-v-ee09ae3d]:after{content:"";background:var(--scalar-border-color);align-self:center;height:1px;display:block}:is(.tag-group-name[data-v-ee09ae3d]:has(*>:hover),.tag-group-name[data-v-ee09ae3d]:has(:focus-visible)){gap:32px}.tag-section-group .tag-section[data-v-ee09ae3d]{margin-bottom:24px;padding-inline:0}.tag-section-group .tag-section[data-v-ee09ae3d]:last-of-type{margin-bottom:0}.channels-card[data-v-817abeb3]{top:calc(var(--refs-viewport-offset) + 24px);font-size:var(--scalar-font-size-3);position:sticky}.channels[data-v-817abeb3]{background:var(--scalar-background-2);width:100%;padding:10px 12px;overflow:auto}.channel[data-v-817abeb3]{white-space:nowrap;cursor:pointer;color:var(--scalar-color-1);line-height:1.55;font-family:var(--scalar-font-code);font-size:var(--scalar-small);text-decoration:none;display:flex}.channel[data-v-817abeb3]:hover,.channel[data-v-817abeb3]:focus-visible{text-decoration:underline}.endpoint[data-v-ad8530a6]{white-space:nowrap;cursor:pointer;text-decoration:none;display:flex}.endpoint:hover .endpoint-path[data-v-ad8530a6],.endpoint:focus-visible .endpoint-path[data-v-ad8530a6]{text-decoration:underline}.endpoint .post[data-v-ad8530a6],.endpoint .get[data-v-ad8530a6],.endpoint .delete[data-v-ad8530a6],.endpoint .put[data-v-ad8530a6]{white-space:nowrap}.endpoint-method[data-v-ad8530a6],.endpoint-path[data-v-ad8530a6]{color:var(--scalar-color-1);min-width:62px;line-height:1.55;font-family:var(--scalar-font-code);font-size:var(--scalar-small);cursor:pointer;display:inline-flex}.endpoint-method[data-v-ad8530a6]{text-align:right}.endpoint-path[data-v-ad8530a6]{text-transform:initial;margin-left:12px}.deprecated[data-v-ad8530a6]{text-decoration:line-through}.endpoints-card[data-v-0315c99b]{top:calc(var(--refs-viewport-offset) + 24px);font-size:var(--scalar-font-size-3);position:sticky}.endpoints[data-v-0315c99b]{background:var(--scalar-background-2);width:100%;padding:10px 12px;overflow:auto}.section-container[data-v-76bc20f3]{border-top:var(--scalar-border-width) solid var(--scalar-border-color)}.section-container[data-v-76bc20f3]:has(.show-more){background-color:color-mix(in srgb, var(--scalar-background-2), transparent)}.headers-card[data-v-b7ba0e6f]{z-index:0;font-size:var(--scalar-font-size-4);color:var(--scalar-color-1);align-self:flex-start;margin-top:12px;margin-bottom:6px;position:relative}.headers-card.headers-card--open[data-v-b7ba0e6f]{align-self:initial}.headers-card-title[data-v-b7ba0e6f]{color:var(--scalar-color-3);font-weight:var(--scalar-semibold);font-size:var(--scalar-micro);border-radius:13.5px;align-items:center;gap:4px;padding:6px 10px;display:flex}button.headers-card-title[data-v-b7ba0e6f]{cursor:pointer}button.headers-card-title[data-v-b7ba0e6f]:hover{color:var(--scalar-color-1)}.headers-card-title-icon--open[data-v-b7ba0e6f]{transform:rotate(45deg)}.headers-properties[data-v-b7ba0e6f]{border:var(--scalar-border-width) solid var(--scalar-border-color);border-radius:13.5px;flex-direction:column;width:fit-content;display:flex}.headers-properties-open>.headers-card-title[data-v-b7ba0e6f]{border-bottom:var(--scalar-border-width) solid var(--scalar-border-color);border-bottom-right-radius:0;border-bottom-left-radius:0}.headers-properties-open[data-v-b7ba0e6f]{border-radius:var(--scalar-radius-lg);width:100%}.headers-card .property[data-v-b7ba0e6f]:last-of-type{padding-bottom:10px}.headers-card-title>.headers-card-title-icon[data-v-b7ba0e6f]{width:14px;height:14px;margin:0}.headers-card-title>.headers-card-title-icon--open[data-v-b7ba0e6f]{transform:rotate(45deg)}.parameter-item[data-v-830e91ce]{border-top:var(--scalar-border-width) solid var(--scalar-border-color);flex-direction:column;display:flex;position:relative}.parameter-item:last-of-type .parameter-schema[data-v-830e91ce]{padding-bottom:0}.parameter-item-container[data-v-830e91ce]{padding:0}.parameter-item-headers[data-v-830e91ce]{border:var(--scalar-border-width) solid var(--scalar-border-color)}.parameter-item-name[data-v-830e91ce]{font-weight:var(--scalar-bold);font-size:var(--scalar-font-size-4);font-family:var(--scalar-font-code);color:var(--scalar-color-1);overflow-wrap:break-word;position:relative}.parameter-item-description[data-v-830e91ce],.parameter-item-description-summary[data-v-830e91ce]{font-size:var(--scalar-mini);color:var(--scalar-color-2)}.parameter-item-description-summary.parameter-item-description-summary[data-v-830e91ce]>*{--markdown-line-height:var(--scalar-line-height-5)}.parameter-item-trigger~.parameter-item-container[data-v-830e91ce] .property--level-0>.property-heading .property-detail-value{font-size:var(--scalar-micro)}.parameter-item-required-optional[data-v-830e91ce]{color:var(--scalar-color-2);font-weight:var(--scalar-semibold);margin-right:6px;position:relative}.parameter-item--required[data-v-830e91ce]{text-transform:uppercase;font-size:var(--scalar-micro);font-weight:var(--scalar-semibold);color:var(--scalar-color-orange)}.parameter-item-description[data-v-830e91ce]{font-size:var(--scalar-small);color:var(--scalar-color-2);margin-top:6px;line-height:1.4}.parameter-item-description[data-v-830e91ce] p{font-size:var(--scalar-small);color:var(--scalar-color-2);margin-top:4px}.parameter-schema[data-v-830e91ce]{margin-top:3px;padding-bottom:9px}.parameter-item-trigger[data-v-830e91ce]{line-height:var(--scalar-line-height-5);outline:none;flex-wrap:wrap;align-items:baseline;gap:6px;padding:10px 0;display:flex}.parameter-item-trigger-open[data-v-830e91ce]{padding-bottom:0}.parameter-item-icon[data-v-830e91ce]{color:var(--scalar-color-3);position:absolute;top:.5lh;left:-19px;translate:0 -50%}.parameter-item-trigger:hover .parameter-item-icon[data-v-830e91ce],.parameter-item-trigger:focus-visible .parameter-item-icon[data-v-830e91ce]{color:var(--scalar-color-1)}.parameter-item-trigger:focus-visible .parameter-item-icon[data-v-830e91ce]{outline:1px solid var(--scalar-color-accent);outline-offset:2px;border-radius:var(--scalar-radius)}.async-api-labels[data-v-6f21951e]{flex-wrap:wrap;align-items:center;gap:6px;display:flex}.async-api-label--protocol[data-v-6f21951e]{text-transform:uppercase;letter-spacing:.05em}.message[data-v-50be0795]{scroll-margin-top:var(--refs-viewport-offset)}.message-title[data-v-50be0795]{font-size:var(--scalar-heading-4);font-weight:var(--scalar-semibold);color:var(--scalar-color-1)}.message-heading[data-v-50be0795]{flex-wrap:wrap;align-items:center;gap:8px;display:inline-flex}.message-accordion[data-v-50be0795] .section-accordion-content-card{padding:12px}.message-description[data-v-50be0795]{text-align:left;padding-bottom:4px}.message-schema[data-v-50be0795]{margin-top:12px}.message-schema[data-v-50be0795]:first-child{margin-top:0}.message-schema-title[data-v-50be0795]{font-size:var(--scalar-font-size-2);font-weight:var(--scalar-semibold);color:var(--scalar-color-1);border-bottom:var(--scalar-border-width) solid var(--scalar-border-color);margin-bottom:8px;padding-bottom:8px}.operation[data-v-91a717db]{scroll-margin-top:var(--refs-viewport-offset);margin-top:32px}.operation-header[data-v-91a717db]{align-items:center;gap:8px;display:flex}.operation-title[data-v-91a717db]{font-size:var(--scalar-heading-3);font-weight:var(--scalar-semibold);color:var(--scalar-color-1)}.operation-action[data-v-91a717db]{text-transform:uppercase;font-size:var(--scalar-mini);font-weight:var(--scalar-semibold);letter-spacing:.05em;border-radius:12px;align-items:center;padding:2px 8px;display:inline-flex}.operation-action--send[data-v-91a717db]{color:var(--scalar-color-blue);background:color-mix(in srgb, var(--scalar-color-blue), transparent 88%)}.operation-action--receive[data-v-91a717db]{color:var(--scalar-color-green);background:color-mix(in srgb, var(--scalar-color-green), transparent 88%)}.operation-description[data-v-91a717db]{text-align:left;margin-top:4px}.operation[data-v-91a717db]>.message{margin-top:12px}.channel-section[data-v-2b0efcde]{margin-bottom:48px}.channel-labels[data-v-2b0efcde]{margin-bottom:8px}.channel-description[data-v-2b0efcde]{text-align:left;padding-bottom:4px}.operation-path[data-v-ec6c8861]{word-wrap:break-word;font-weight:var(--scalar-semibold);line-break:anywhere;overflow:hidden}.deprecated[data-v-ec6c8861]{text-decoration:line-through}.empty-state[data-v-ce6cfefc]{text-align:center;font-size:var(--scalar-mini);border-radius:var(--scalar-radius-lg);min-height:56px;color:var(--scalar-color-2);justify-content:center;align-items:center;margin:10px 0 10px 12px;display:flex}.rule-title[data-v-ce6cfefc]{font-family:var(--scalar-font-code);color:var(--scalar-color-1);border-radius:var(--scalar-radius);margin:12px 0 6px;display:inline-block}.rule[data-v-ce6cfefc]{border-radius:var(--scalar-radius-lg);margin:0 12px}.rule-items[data-v-ce6cfefc]{counter-reset:list-number;border-left:1px solid var(--scalar-border-color);flex-direction:column;gap:12px;padding:12px 0;display:flex}.rule-item[data-v-ce6cfefc]{counter-increment:list-number;border:1px solid var(--scalar-border-color);border-radius:var(--scalar-radius-lg);margin-left:24px;overflow:hidden}.rule-item[data-v-ce6cfefc]:before{border:1px solid var(--scalar-border-color);content:" ";border-radius:0 0 0 var(--scalar-radius-lg);width:24px;height:6px;color:var(--scalar-color-1);border-top:0;border-right:0;margin-top:6px;display:block;position:absolute;transform:translate(-25px)}.tab[data-v-804dba49]{font-size:var(--scalar-small);font-family:var(--scalar-font);font-weight:var(--scalar-font-normal);color:var(--scalar-color-2);line-height:calc(var(--scalar-small) + 2px);white-space:nowrap;cursor:pointer;text-transform:uppercase;background:0 0;border:none;margin-right:3px;padding:0;line-height:22px;position:relative}.tab[data-v-804dba49]:before{content:"";z-index:0;border-radius:var(--scalar-radius);background:var(--scalar-background-3);opacity:0;width:calc(100% + 12px);height:calc(100% + 4px);position:absolute;top:-2px;left:-6px}.tab[data-v-804dba49]:hover:before,.tab[data-v-804dba49]:focus-visible:before{opacity:1}.tab[data-v-804dba49]:focus-visible:before{outline:1px solid var(--scalar-color-accent)}.tab span[data-v-804dba49]{z-index:1;position:relative}.tab-selected[data-v-804dba49]{color:var(--scalar-color-1);font-weight:var(--scalar-semibold)}.tab-selected[data-v-804dba49]:after{content:"";width:100%;height:1px;left:0;bottom:calc(var(--tab-list-padding-y) * -1);background:currentColor;position:absolute}.tab-list[data-v-49a8c0af]{--tab-list-padding-y:7px;--tab-list-padding-x:12px;padding:var(--tab-list-padding-y) var(--tab-list-padding-x);flex:1;gap:6px;display:flex;position:relative;overflow:auto}.scalar-card-header.scalar-card-header-tabs[data-v-49a8c0af]{padding:0}.response-card[data-v-5123cd9f]{font-size:var(--scalar-font-size-3)}.code-copy[data-v-5123cd9f]{appearance:none;cursor:pointer;color:var(--scalar-color-3);background:0 0;border:none;outline:none;justify-content:center;align-items:center;margin-right:12px;padding:0;display:flex}.code-copy[data-v-5123cd9f]:hover{color:var(--scalar-color-1)}.code-copy svg[data-v-5123cd9f]{width:13px;height:13px}.response-card-footer[data-v-5123cd9f]{flex-flow:row-reverse wrap;flex-shrink:0;justify-content:start;column-gap:8px;padding:7px 12px;display:flex}.response-example-selector[data-v-5123cd9f]{flex-shrink:0;margin:-4px}.response-description[data-v-5123cd9f]{font-weight:var(--scalar-semibold);font-size:var(--scalar-small);color:var(--scalar-color--1);box-sizing:border-box;flex-grow:1}.response-description-markdown[data-v-5123cd9f]{max-height:3lh}.response-description-markdown[data-v-5123cd9f] *{margin:0}.schema-type[data-v-5123cd9f]{font-size:var(--scalar-micro);color:var(--scalar-color-2);font-weight:var(--scalar-semibold);background:var(--scalar-background-3);border-radius:4px;margin-right:4px;padding:2px 4px}.schema-example[data-v-5123cd9f]{font-size:var(--scalar-micro);color:var(--scalar-color-2);font-weight:var(--scalar-semibold)}.example-response-tab[data-v-5123cd9f]{margin:6px;display:block}.scalar-card-checkbox[data-v-5123cd9f]{cursor:pointer;-webkit-user-select:none;user-select:none;min-height:17px;font-size:var(--scalar-small);font-weight:var(--scalar-font-normal);color:var(--scalar-color-2);white-space:nowrap;justify-content:center;align-items:center;gap:6px;width:fit-content;padding:7px 6px;display:flex;position:relative}.scalar-card-checkbox:has(.scalar-card-checkbox-input:focus-visible) .scalar-card-checkbox-checkmark[data-v-5123cd9f]{outline:1px solid var(--scalar-color-accent)}.scalar-card-checkbox[data-v-5123cd9f]:hover{color:var(--scalar-color--1)}.scalar-card-checkbox .scalar-card-checkbox-input[data-v-5123cd9f]{opacity:0;cursor:pointer;width:0;height:0;position:absolute}.scalar-card-checkbox-checkmark[data-v-5123cd9f]{border-radius:var(--scalar-radius);background-color:#0000;background-color:var(--scalar-background-3);width:16px;height:16px;box-shadow:inset 0 0 0 var(--scalar-border-width) var(--scalar-border-color)}.scalar-card-checkbox[data-v-5123cd9f]:has(.scalar-card-checkbox-input:checked){color:var(--scalar-color-1);font-weight:var(--scalar-semibold)}.scalar-card-checkbox .scalar-card-checkbox-input:checked~.scalar-card-checkbox-checkmark[data-v-5123cd9f]{background-color:var(--scalar-button-1);box-shadow:none}.scalar-card-checkbox-checkmark[data-v-5123cd9f]:after{content:"";display:none;position:absolute}.scalar-card-checkbox .scalar-card-checkbox-input:checked~.scalar-card-checkbox-checkmark[data-v-5123cd9f]:after{display:block}.scalar-card-checkbox .scalar-card-checkbox-checkmark[data-v-5123cd9f]:after{border:solid 1px var(--scalar-button-1-color);border-width:0 1.5px 1.5px 0;width:5px;height:9px;top:12.5px;right:11.5px;transform:rotate(45deg)}.request-body[data-v-96399c9a]{margin-top:24px}.request-body-header[data-v-96399c9a]{border-bottom:var(--scalar-border-width) solid var(--scalar-border-color);flex-flow:wrap;justify-content:space-between;align-items:center;padding-bottom:12px;display:flex}.request-body-title[data-v-96399c9a]{font-size:var(--scalar-font-size-2);font-weight:var(--scalar-semibold);color:var(--scalar-color-1);align-items:center;gap:8px;display:flex}.request-body-required[data-v-96399c9a]{font-size:var(--scalar-micro);color:var(--scalar-color-orange);border:var(--scalar-border-width) solid var(--scalar-border-color);border-radius:16px;height:20px;padding:2px 8px;font-weight:400}.request-body-description[data-v-96399c9a]{font-size:var(--scalar-small);width:100%;margin-top:6px}:is(.request-body-header+.request-body-schema[data-v-96399c9a]:has(>.schema-card>.schema-card-description),.request-body-header+.request-body-schema[data-v-96399c9a]:has(>.schema-card>.schema-properties>*>.property--level-0)){padding-top:8px}.request-body-description[data-v-96399c9a] .markdown *{color:var(--scalar-color-2)!important}.callback-sticky-offset[data-v-474e6fa6]{top:var(--refs-viewport-offset,0px);z-index:1}.callback-operation-container[data-v-474e6fa6] .request-body,.callback-operation-container[data-v-474e6fa6] .request-body-description,.callback-operation-container[data-v-474e6fa6] .request-body-header{margin-top:0}.callback-operation-container[data-v-474e6fa6] .request-body-header{--scalar-font-size-2:var(--scalar-font-size-4);border-bottom:none;border:.5px solid var(--scalar-border-color);border-radius:var(--scalar-radius-lg) var(--scalar-radius-lg) 0 0;background:color-mix(in srgb, var(--scalar-background-2) 50%, transparent);padding:10px}.callback-operation-container[data-v-474e6fa6] .request-body-schema>.schema-card>.schema-card-description{padding-inline:8px}.callback-operation-container[data-v-474e6fa6] ul li.property.property--level-1{padding:10px}.callback-operation-container[data-v-474e6fa6] .request-body-schema{background-color:var(--scalar-background-1);border:var(--scalar-border-width) solid var(--scalar-border-color);border-radius:0 0 var(--scalar-radius-lg) var(--scalar-radius-lg);border-top:none;overflow:hidden}.callback-operation-container[data-v-474e6fa6] .parameter-list{margin-top:0}.callback-operation-container[data-v-474e6fa6] .parameter-list-title{background:color-mix(in srgb, var(--scalar-background-2) 50%, transparent);border-radius:var(--scalar-radius-lg) var(--scalar-radius-lg) 0 0;border:var(--scalar-border-width) solid var(--scalar-border-color);--scalar-font-size-2:var(--scalar-font-size-4);border-bottom:none;margin-bottom:0;padding:10px}.callback-operation-container[data-v-474e6fa6] .parameter-list-items{border:var(--scalar-border-width) solid var(--scalar-border-color);border-radius:0 0 var(--scalar-radius-lg) var(--scalar-radius-lg)}.callback-operation-container[data-v-474e6fa6] .parameter-list-items>li:first-of-type{border-top:none}.callback-operation-container[data-v-474e6fa6] .parameter-list-items>li{padding:0 8px}.show-api-client-button[data-v-ad72d914]{appearance:none;white-space:nowrap;border-radius:var(--scalar-radius);font-weight:var(--scalar-semibold);font-size:var(--scalar-small);color:var(--scalar-background-2);line-height:22px;font-family:var(--scalar-font);background:var(--scalar-button-1);cursor:pointer;box-sizing:border-box;outline-offset:2px;border:none;justify-content:center;align-items:center;padding:1px 6px;display:flex;position:relative;box-shadow:inset 0 0 0 1px #0000001a}.show-api-client-button span[data-v-ad72d914],.show-api-client-button svg[data-v-ad72d914]{fill:currentColor;color:var(--scalar-button-1-color);z-index:1}.show-api-client-button[data-v-ad72d914]:hover{background:var(--scalar-button-1-hover)}.show-api-client-button svg[data-v-ad72d914]{margin-right:4px}.operation-title[data-v-ae829610]{justify-content:space-between;display:flex}.operation-details[data-v-ae829610]{flex-shrink:1;align-items:center;gap:9px;min-width:0;margin-top:0;display:flex}.operation-details[data-v-ae829610] .endpoint-anchor .scalar-button svg{width:16px;height:16px}.endpoint-type[data-v-ae829610]{z-index:0;width:60px;font-size:var(--scalar-small);text-transform:uppercase;font-weight:var(--scalar-bold);font-family:var(--scalar-font);flex-shrink:0;justify-content:center;align-items:center;gap:6px;padding:6px;display:flex;position:relative}.endpoint-type[data-v-ae829610]:after{content:"";z-index:-1;opacity:.15;border-radius:var(--scalar-radius);background:currentColor;position:absolute;inset:0}.endpoint-anchor[data-v-ae829610]{flex-shrink:1;align-items:center;min-width:0;display:flex}.endpoint-anchor.label[data-v-ae829610]{display:flex}.endpoint-label[data-v-ae829610]{min-width:0;color:var(--scalar-color-1);flex-shrink:1;align-items:baseline;gap:9px;display:flex}.endpoint-label-path[data-v-ae829610]{font-family:var(--scalar-font-code);font-size:var(--scalar-mini);text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.endpoint-label-path[data-v-ae829610] em{color:var(--scalar-color-2)}.endpoint-label-name[data-v-ae829610]{color:var(--scalar-color-2);font-size:var(--scalar-small);text-overflow:ellipsis;white-space:nowrap;flex-shrink:1000000000;overflow:hidden}.endpoint-try-hint[data-v-ae829610]{flex-shrink:0;padding:2px}.endpoint-copy[data-v-ae829610]{color:currentColor}.endpoint-copy[data-v-ae829610] svg{stroke-width:2px}.endpoint-content[data-v-ae829610]{grid-auto-columns:1fr;grid-auto-flow:row;gap:9px;padding:9px;display:grid}@media (width>=1000px){.endpoint-content[data-v-ae829610]{grid-auto-flow:column}}@container (width<=900px){.endpoint-content[data-v-ae829610]{grid-template-columns:1fr}}.endpoint-content[data-v-ae829610]>*{min-width:0}.operation-details-card[data-v-ae829610]{flex-direction:column;gap:12px;min-width:0;display:flex}:is(.operation-details-card-item[data-v-ae829610] .parameter-list,.operation-details-card-item[data-v-ae829610] .callbacks-list){border:var(--scalar-border-width) solid var(--scalar-border-color);border-radius:var(--scalar-radius-lg);margin-top:0}.operation-details-card-item[data-v-ae829610]{flex-direction:column;gap:12px;display:flex}.operation-details-card-item[data-v-ae829610] .parameter-list-items{margin-bottom:0}.operation-details-card[data-v-ae829610] .parameter-item:last-of-type .parameter-schema{padding-bottom:12px}.operation-details-card[data-v-ae829610] .parameter-list .parameter-list{margin-bottom:12px}.operation-details-card[data-v-ae829610] .parameter-item{margin:0;padding:0}.operation-details-card[data-v-ae829610] .property{margin:0;padding:9px}:is(.operation-details-card[data-v-ae829610] .parameter-list-title,.operation-details-card[data-v-ae829610] .request-body-title,.operation-details-card[data-v-ae829610] .callbacks-title){text-transform:uppercase;font-weight:var(--scalar-bold);font-size:var(--scalar-mini);color:var(--scalar-color-2);margin:0;padding:9px;line-height:1.33}.operation-details-card[data-v-ae829610] .callback-list-item-title{padding-left:28px;padding-right:12px}.operation-details-card[data-v-ae829610] .callback-list-item-icon{left:6px}.operation-details-card[data-v-ae829610] .callback-operation-container{padding-inline:9px;padding-bottom:9px}:is(.operation-details-card[data-v-ae829610] .callback-operation-container>.request-body,.operation-details-card[data-v-ae829610] .callback-operation-container>.parameter-list){border:none}.operation-details-card[data-v-ae829610] .callback-operation-container>.request-body>.request-body-header{border-bottom:var(--scalar-border-width) solid var(--scalar-border-color);padding:0 0 9px}.operation-details-card[data-v-ae829610] .request-body-description{border-top:var(--scalar-border-width) solid var(--scalar-border-color);margin-top:0;padding:9px 9px 0}.operation-details-card[data-v-ae829610] .request-body{border-radius:var(--scalar-radius-lg);border:var(--scalar-border-width) solid var(--scalar-border-color);margin-top:0}.operation-details-card[data-v-ae829610] .request-body .schema-card--level-0>.schema-card-description{padding-inline:9px}.operation-details-card[data-v-ae829610] .request-body-header{border-bottom:0;padding-bottom:0}.operation-details-card[data-v-ae829610] .contents button{margin-right:9px}.operation-details-card[data-v-ae829610] .schema-card--open+.schema-card:not(.schema-card--open){margin-inline:9px;margin-bottom:9px}.operation-details-card[data-v-ae829610] .request-body-schema .property--level-0{padding:0}.operation-details-card[data-v-ae829610] .selected-content-type{margin-right:9px}.operation-example-card[data-v-ae829610]{top:calc(var(--refs-viewport-offset) + 24px);max-height:calc(var(--refs-viewport-height) - 48px);position:sticky}@media (width<=600px){.operation-example-card[data-v-ae829610]{max-height:unset;position:static}}.agent-button-container[data-v-10a4fb90]{color:var(--scalar-color-1);background:color-mix(in srgb, var(--scalar-background-3), white 15%);cursor:pointer;border-radius:var(--scalar-radius);z-index:2;align-items:center;height:100%;margin-right:4px;padding:1px 6px;display:flex;position:relative}.agent-button-container[data-v-10a4fb90]:hover:not(:focus-within){background:color-mix(in srgb, var(--scalar-background-3), white 20%)}.agent-button-container[data-v-10a4fb90]:focus-within{border-radius:var(--scalar-radius-lg);height:auto;margin-right:0;position:absolute;inset:2px}.agent-button-container[data-v-10a4fb90]:has(.ask-agent-scalar-input-not-empty){border-radius:var(--scalar-radius-lg);height:auto;margin-right:0;position:absolute;inset:2px}.agent-button-container[data-v-10a4fb90]:has(.ask-agent-scalar-input:focus-visible){outline-style:solid}.ask-agent-scalar-input[data-v-10a4fb90]{opacity:0;border:none;width:0;font-size:0}.agent-button-container:focus-within .ask-agent-scalar-input[data-v-10a4fb90]{width:100%;font-size:inherit;opacity:1;outline:none;padding-inline:4px;line-height:20px}.agent-button-container:has(.ask-agent-scalar-input-not-empty) .ask-agent-scalar-input[data-v-10a4fb90]{width:100%;font-size:inherit;opacity:1;outline:none;padding-inline:4px;line-height:20px}.ask-agent-scalar-input[data-v-10a4fb90]::placeholder{color:var(--scalar-color-2);font-family:inherit}.ask-agent-scalar-input-label[data-v-10a4fb90]{color:var(--scalar-color-1);font-weight:var(--scalar-semibold);margin-left:4px}.agent-button-container:focus-within .ask-agent-scalar-input-label[data-v-10a4fb90]{display:none}.agent-button-container:has(.ask-agent-scalar-input-not-empty) .ask-agent-scalar-input-label[data-v-10a4fb90]{display:none}.ask-agent-scalar-send[data-v-10a4fb90]{background:var(--scalar-color-blue);color:#fff;border-radius:var(--scalar-radius);outline-offset:1px;flex-shrink:0;justify-content:center;align-items:center;width:24px;height:24px;display:none}.agent-button-container:has(.ask-agent-scalar-input-not-empty) .ask-agent-scalar-send[data-v-10a4fb90]{display:flex}.ask-agent-scalar-send[data-v-10a4fb90]:hover{background:color-mix(in srgb, var(--scalar-color-blue), transparent 10%)}.operation-layout[data-v-2382aa8f]{grid-template:"heading badge""description examples""details examples"1fr/1fr 1fr;gap:0 48px;display:grid}.operation-title[data-v-2382aa8f]{font-size:var(--font-size,var(--scalar-heading-1));font-weight:var(--font-weight,var(--scalar-bold));color:var(--scalar-color-1);grid-area:heading;margin-bottom:12px;line-height:1.45}.operation-auth[data-v-2382aa8f]{grid-area:badge;place-self:start end}.operation-description[data-v-2382aa8f]{grid-area:description;min-width:0}.operation-details[data-v-2382aa8f]{grid-area:details;min-width:0}.examples[data-v-2382aa8f]{min-width:0;top:calc(var(--refs-viewport-offset) + 24px);grid-area:examples;align-self:start;position:sticky}.examples[data-v-2382aa8f]>*{max-height:calc((var(--refs-viewport-height) - 60px) / 2);position:relative}.examples[data-v-2382aa8f]>:first-of-type:last-of-type{max-height:calc((var(--refs-viewport-height) - 60px))}@media (width<=600px){.examples[data-v-2382aa8f]>*{max-height:unset}}.deprecated[data-v-2382aa8f] *{text-decoration:line-through}@container narrow-references-container (width<=900px){.operation-layout[data-v-2382aa8f]{grid-template-columns:1fr;grid-template-areas:"badge""heading""description""examples""details";column-gap:0}.operation-auth[data-v-2382aa8f]{justify-self:start;margin-bottom:4px}.operation-description[data-v-2382aa8f]{margin-bottom:24px}.examples[data-v-2382aa8f]{position:static}}.section-flare[data-v-5cebff7a]{pointer-events:none;position:fixed;top:0;right:0}.narrow-references-container{container:narrow-references-container/inline-size}.ref-search-meta[data-v-ae9b4ecb]{background:var(--scalar-background-1);border-bottom-left-radius:var(--scalar-radius-lg);border-bottom-right-radius:var(--scalar-radius-lg);font-size:var(--scalar-font-size-4);color:var(--scalar-color-3);font-weight:var(--scalar-semibold);border-top:var(--scalar-border-width) solid var(--scalar-border-color);gap:12px;padding:6px 12px;display:flex}:root{--scalar-loaded-api-reference:true}.asyncapi-sidebar-document-section>.group\\/spacer-after{height:0}@layer scalar-config{.scalar-api-reference[data-v-c7e456b3]{--refs-header-height:calc(var(--scalar-custom-header-height,0px) + var(--scalar-header-height,0px));--refs-viewport-offset:calc(var(--refs-header-height,0px) + var(--refs-content-offset,0px));--refs-viewport-height:calc(var(--full-height,100dvh) - var(--refs-viewport-offset,0px));--refs-sidebar-width:var(--scalar-sidebar-width,0px);--refs-sidebar-height:calc(var(--full-height,100dvh) - var(--refs-header-height,0px));--refs-content-max-width:var(--scalar-content-max-width,1540px)}.scalar-api-reference.references-classic[data-v-c7e456b3]{--refs-content-max-width:var(--scalar-content-max-width,1420px);--refs-sidebar-width:0;min-height:100dvh}.references-sidebar[data-v-c7e456b3]{--refs-sidebar-width:var(--scalar-sidebar-width,288px)}}.t-doc__sidebar[data-v-c7e456b3]{z-index:10}.references-layout[data-v-c7e456b3]{--full-height:100dvh;grid-template-rows:var(--scalar-header-height,0px) repeat(2, auto);background:var(--scalar-background-1);flex:1;grid-template-columns:auto 1fr;grid-template-areas:"header header""navigation rendered""footer footer";min-width:100%;max-width:100%;min-height:100dvh;display:grid}.references-editor[data-v-c7e456b3]{background:var(--scalar-background-1);grid-area:editor;min-width:0;display:flex}.references-rendered[data-v-c7e456b3]{background:var(--scalar-background-1);grid-area:rendered;min-width:0;position:relative}.scalar-api-reference.references-classic[data-v-c7e456b3],.references-classic .references-rendered[data-v-c7e456b3]{height:initial!important;max-height:initial!important}.references-footer[data-v-c7e456b3]{grid-area:footer}@media (width<1000px){.references-developer-tools[data-v-c7e456b3]{display:none}.references-layout[data-v-c7e456b3]{--refs-sidebar-height:calc(var(--full-height,100dvh) - var(--scalar-custom-header-height,0px));grid-template-columns:100%;grid-template-rows:var(--scalar-header-height,0px) 0px auto auto;grid-template-areas:"header""navigation""rendered""footer"}.references-editable[data-v-c7e456b3]{grid-template-areas:"header""navigation""editor"}.references-rendered[data-v-c7e456b3]{position:static}.scalar-api-references-standalone-mobile[data-v-c7e456b3]:not(.references-classic){--scalar-header-height:50px}}.darklight-reference[data-v-c7e456b3]{width:100%;margin-top:auto}/*$vite$:1*/`)),document.head.appendChild(e)}}catch(e){console.error(`vite-plugin-css-injected-by-js`,e)}})(); +(function(e,t){typeof exports==`object`&&typeof module<`u`?t(require("radix-vue/namespaced")):typeof define==`function`&&define.amd?define([`radix-vue/namespaced`],t):(e=typeof globalThis<`u`?globalThis:e||self,t(e[`{}`]))})(this,function(e){var t=Object.create,n=Object.defineProperty,r=Object.getOwnPropertyDescriptor,i=Object.getOwnPropertyNames,a=Object.getPrototypeOf,o=Object.prototype.hasOwnProperty,s=(e,t,n)=>()=>{if(n)throw n[0];try{return e&&(t=e(e=0)),t}catch(e){throw n=[e],e}},c=(e,t)=>()=>(t||(e((t={exports:{}}).exports,t),e=null),t.exports),l=(e,t)=>{let r={};for(var i in e)n(r,i,{get:e[i],enumerable:!0});return t||n(r,Symbol.toStringTag,{value:`Module`}),r},u=(e,t,a,s)=>{if(t&&typeof t==`object`||typeof t==`function`)for(var c=i(t),l=0,u=c.length,d;lt[e]).bind(null,d),enumerable:!(s=r(t,d))||s.enumerable});return e},d=(e,r,i)=>(i=e==null?{}:t(a(e)),u(r||!e||!e.__esModule?n(i,`default`,{value:e,enumerable:!0}):i,e)),f,p,m=s((()=>{f=`Models`,p=e=>!!(!Array.isArray(e)&&e&&`sources`in e&&Array.isArray(e.sources))})),h=s((()=>{m()})),g,_=s((()=>{g=e=>{if(typeof e!=`object`||!e)return!1;let t=Object.getPrototypeOf(e);return t===Object.prototype||t===null}})),v,y,b=s((()=>{_(),v=(e,t,n)=>{if(!e)return!1;let r=g(t)||Array.isArray(t);if(r&&n.get(t)?.has(e))return!0;if(r){let r=n.get(t)??new Set;r.add(e),n.set(t,r)}try{return e.type===`any`||e.type===`unknown`?!0:e.type===`function`?typeof t==`function`:e.type===`number`?typeof t==`number`&&!Number.isNaN(t)&&Number.isFinite(t):e.type===`string`?typeof t==`string`:e.type===`boolean`?typeof t==`boolean`:e.type===`nullable`?t===null:e.type===`notDefined`?t===void 0:e.type===`array`?Array.isArray(t)&&t.every(t=>v(e.items,t,n)):e.type===`record`?g(t)?Object.keys(t).every(r=>v(e.key,r,n)&&v(e.value,t[r],n)):!1:e.type===`object`?g(t)?Object.keys(e.properties).every(r=>v(e.properties[r],t[r],n)):!1:e.type===`optional`?t===void 0||v(e.schema,t,n):e.type===`union`?e.schemas.some(e=>v(e,t,n)):e.type===`intersection`?e.schemas.length===0?!0:g(t)?e.schemas.every(e=>v(e,t,n)):!1:e.type===`literal`?t===e.value:e.type===`lazy`?v(e.schema(),t,n):e.type===`evaluate`?v(e.schema,e.expression(t),n):(console.warn(`Unknown schema type:`,e),!1)}finally{r&&n.get(t)?.delete(e)}},y=(e,t,n=new WeakMap)=>v(e,t,n)})),ee,te,ne,x,re,ie,ae=s((()=>{_(),b(),ee=(e,t)=>{let n=t.get(e);if(n)return n;let r=e.schema();return t.set(e,r),r},te=e=>e.type===`optional`?te(e.schema):e.type===`literal`||e.type===`union`&&e.schemas.length>0&&e.schemas.every(te),ne=(e,t,n,r=new WeakMap)=>{if(g(t)&&r.get(t)?.has(e))return 1;let i=g(t);if(i){let n=r.get(t)??new Set;n.add(e),r.set(t,n)}try{if(e.type===`object`){if(!g(t))return 0;let i=Object.keys(e.properties);return i.length===0?1:i.reduce((i,a)=>{if(!(a in t))return i;let o=e.properties[a],s=t[a],c=ne(o,s,n,r);return te(o)?i+(c>0?c*10:0):i+(c>0?c:1)},0)}return e.type===`array`?+!!Array.isArray(t):e.type===`record`?+!!g(t):e.type===`optional`?t===void 0?1:ne(e.schema,t,n,r):e.type===`union`?Math.max(...e.schemas.map(e=>ne(e,t,n,r))):e.type===`intersection`?e.schemas.length===0?1:e.schemas.reduce((e,i)=>e+ne(i,t,n,r),0):e.type===`lazy`?ne(ee(e,n),t,n,r):e.type===`evaluate`?ne(e.schema,e.expression(t),n,r):+!!y(e,t)}finally{i&&r.get(t)?.delete(e)}},x=(e,t,n,r)=>{if(g(e)||Array.isArray(e)){let i=r.get(e)||new Map;i.set(t,n),r.set(e,i)}},re=(e,t,n,r)=>{if((g(t)||Array.isArray(t))&&n.get(t)?.has(e))return n.get(t)?.get(e);if(!e||e.type===`any`||e.type===`unknown`)return t;if(e.type===`function`)return typeof t==`function`?t:()=>void 0;if(e.type===`number`)return y(e,t)?t:e.default??0;if(e.type===`string`)return y(e,t)?t:e.default??``;if(e.type===`boolean`)return y(e,t)?t:e.default??!1;if(e.type===`nullable`)return null;if(e.type!==`notDefined`){if(e.type===`optional`)return t===void 0?void 0:re(e.schema,t,n,r);if(e.type===`array`){if(!Array.isArray(t))return[];let i=Array(t.length);x(t,e,i,n);for(let a=0;a{let i=ne(n,t,r);return i>e.score?{schema:n,score:i}:e},{schema:e.schemas[0],score:0});return re(i.schema,t,n,r)}return e.type===`intersection`?e.schemas.reduce((e,i)=>Object.assign(e,re(i,t,n,r)),{}):e.type===`literal`?e.value:e.type===`lazy`?re(ee(e,r),t,n,r):e.type===`evaluate`?re(e.schema,e.expression(t),n,r):(console.warn(`Unknown schema type:`,e),t)}},ie=(e,t,n=new WeakMap,r=new WeakMap)=>re(e,t,n,r)})),oe,S,C,se,ce,le,ue,de,w,T,fe,pe,E,D,me,he,ge=s((()=>{oe=e=>({type:`number`,default:e?.default,typeName:e?.typeName,typeComment:e?.typeComment}),S=e=>({type:`string`,default:e?.default,typeName:e?.typeName,typeComment:e?.typeComment}),C=e=>({type:`boolean`,default:e?.default,typeName:e?.typeName,typeComment:e?.typeComment}),se=e=>({type:`nullable`,typeName:e?.typeName,typeComment:e?.typeComment}),ce=e=>({type:`any`,typeName:e?.typeName,typeComment:e?.typeComment}),le=e=>({type:`unknown`,typeName:e?.typeName,typeComment:e?.typeComment}),ue=e=>({type:`function`,typeName:e?.typeName,typeComment:e?.typeComment}),de=(e,t)=>({type:`array`,items:e,typeName:t?.typeName,typeComment:t?.typeComment}),w=(e,t,n)=>({type:`record`,key:e,value:t,typeName:n?.typeName,typeComment:n?.typeComment}),T=(e,t)=>({type:`object`,properties:e,typeName:t?.typeName,typeComment:t?.typeComment}),fe=(e,t)=>({type:`union`,schemas:e,typeName:t?.typeName,typeComment:t?.typeComment}),pe=(e,t)=>({type:`intersection`,schemas:e,typeName:t?.typeName,typeComment:t?.typeComment}),E=(e,t)=>({type:`optional`,schema:e,typeName:t?.typeName,typeComment:t?.typeComment}),D=e=>({type:`literal`,value:e}),me=e=>({type:`lazy`,schema:e}),he=(e,t)=>({type:`evaluate`,expression:e,schema:t})})),_e=s((()=>{ae(),ge(),b()})),ve,ye,be=s((()=>{_e(),T({name:S({typeComment:"Name of specification extension property. Has to start with `x-`."}),component:le({typeComment:`Vue component to render the specification extension`}),renderer:E(le({typeComment:`Custom renderer to render the specification extension`}))}),ve=T({component:le({typeComment:`Vue component to render in the view`}),renderer:E(le({typeComment:`Custom renderer to render the view component (e.g., ReactRenderer)`})),props:E(w(S(),ce()),{typeComment:`Additional props to pass to the component`}),sidebar:E(T({show:C(),label:S()}),{typeComment:`Sidebar configuration. Set show: true to display in sidebar.`})}),T({"content.start":E(de(ve),{typeComment:`Components to render before the Introduction/Info section`}),"content.end":E(de(ve),{typeComment:`Components to render at specific views in the API Reference`})}),T({onInit:E(ue()),onConfigChange:E(ue()),onDestroy:E(ue())}),ye=ue()})),xe,Se,Ce=s((()=>{_e(),xe=T({dashboardUrl:S({default:`https://dashboard.scalar.com`}),registryUrl:S({default:`https://registry.scalar.com`}),proxyUrl:S({default:`https://proxy.scalar.com`}),apiBaseUrl:S({default:`https://api.scalar.com`})},{typeComment:`External service URLs used by Scalar packages`}),Se=T({title:E(S(),{typeComment:`The title of the OpenAPI document.`}),slug:E(S(),{typeComment:`The slug of the OpenAPI document used in the URL. If none is passed, the title will be used. If no title is used, it will just use the index.`}),authentication:E(ce(),{typeComment:`Prefill authentication`}),baseServerURL:E(S(),{typeComment:`Base URL for the API server`}),hideClientButton:C({default:!1,typeComment:`Whether to hide the client button`}),proxyUrl:E(S(),{typeComment:`URL to a request proxy for the API client`}),oauth2RedirectUri:E(S(),{typeComment:`Default OAuth 2.0 redirect URI used to prefill auth flows in the API client.`}),searchHotKey:E(fe([D(`a`),D(`b`),D(`c`),D(`d`),D(`e`),D(`f`),D(`g`),D(`h`),D(`i`),D(`j`),D(`k`),D(`l`),D(`m`),D(`n`),D(`o`),D(`p`),D(`q`),D(`r`),D(`s`),D(`t`),D(`u`),D(`v`),D(`w`),D(`x`),D(`y`),D(`z`)]),{typeComment:`Key used with CTRL/CMD to open the search modal (defaults to 'k' e.g. CMD+k)`}),servers:E(de(ce()),{typeComment:`List of OpenAPI server objects`}),showSidebar:C({default:!0,typeComment:`Whether to show the sidebar`}),showDeveloperTools:fe([D(`localhost`),D(`always`),D(`never`)],{typeComment:`Whether and when to show the developer tools.`}),showToolbar:fe([D(`localhost`),D(`always`),D(`never`)],{typeComment:`@deprecated Use showDeveloperTools instead`}),operationTitleSource:fe([D(`summary`),D(`path`)],{typeComment:`Whether to use the operation summary or the operation path for the sidebar and search`}),theme:fe([D(`default`),D(`alternate`),D(`moon`),D(`purple`),D(`solarized`),D(`bluePlanet`),D(`deepSpace`),D(`saturn`),D(`kepler`),D(`elysiajs`),D(`fastify`),D(`mars`),D(`laserwave`),D(`none`)],{typeComment:`A string to use one of the color presets`}),_integration:E(fe([D(`adonisjs`),D(`astro`),D(`docusaurus`),D(`dotnet`),D(`elysiajs`),D(`express`),D(`fastapi`),D(`fastify`),D(`go`),D(`hono`),D(`html`),D(`laravel`),D(`litestar`),D(`nestjs`),D(`nextjs`),D(`nitro`),D(`nuxt`),D(`platformatic`),D(`react`),D(`rust`),D(`svelte`),D(`vue`),se()]),{typeComment:`Integration type identifier`}),onRequestSent:E(ue(),{typeComment:`onRequestSent is fired when a request is sent`}),persistAuth:C({default:!1,typeComment:`Whether to persist auth to local storage`}),telemetry:C({default:!0,typeComment:`Enables / disables telemetry`}),externalUrls:xe})})),we,Te,Ee=s((()=>{_e(),we=fe([S(),se(),w(S(),ce()),ue()]),Te=T({default:C({default:!1}),url:E(S(),{typeComment:`URL to an OpenAPI/Swagger document`}),content:E(we,{typeComment:`Directly embed the OpenAPI document. Can be a string, object, function returning an object, or null. It is recommended to pass a URL instead of content.`}),title:E(S(),{typeComment:"The title of the OpenAPI document. Used for the page title and the document name in the dropdown. With multiple `sources`, set this per source."}),slug:E(S(),{typeComment:"The slug of the OpenAPI document used in the URL. If none is passed, the title will be used. With multiple `sources`, set this per source."}),spec:E(T({url:E(S()),content:E(we)}),{typeComment:"@deprecated Use `url` and `content` on the top level instead."}),agent:E(T({key:E(S()),disabled:E(C()),hideAddApi:E(C(),{typeComment:`When true, hide the control to add more APIs in the agent chat. Only preloaded/registry documents are shown; the public API list is not offered.`})}),{typeComment:`Agent Scalar configuration`})})})),De,Oe,ke,Ae,je=s((()=>{h(),_e(),be(),Ce(),Ee(),De=pe([Se,Te,T({layout:fe([D(`modern`),D(`classic`)],{typeComment:`The layout to use for the references`}),proxy:E(S(),{typeComment:`@deprecated Use proxyUrl instead`}),fetch:E(ue(),{typeComment:"@deprecated Use `customFetch` instead."}),customFetch:E(ue(),{typeComment:"Custom fetch function used both when loading the OpenAPI document and when sending requests from the API client. Can be used to add custom headers, attach credentials (for example `credentials: 'include'`), handle auth, etc."}),plugins:E(de(ye),{typeComment:`Plugins for the API reference`}),pluginUrls:E(de(S()),{typeComment:"URLs of ESM modules that provide additional plugins for the API reference. Each module is loaded with a dynamic `import()` before the API reference mounts, and its default export is registered as a plugin. Unlike `plugins`, this option is JSON-serializable, so integrations that pass their configuration as JSON can load plugins without replacing the whole bundle. Only supported by the standalone browser build (`Scalar.createApiReference`)."}),isEditable:C({default:!1,typeComment:`Allows the user to inject an editor for the spec`}),hideModels:C({default:!1,typeComment:`Whether to show models in the sidebar, search, and content.`}),modelsSectionLabel:E(fe([D(`Models`),D(`Schemas`),S()]),{typeComment:"Label for the components.schemas section in the sidebar, content, and search. Use `Schemas` for OpenAPI terminology."}),localization:E(T({locale:E(S()),direction:E(fe([D(`auto`),D(`ltr`),D(`rtl`)])),translations:E(w(S(),ce()))}),{typeComment:`API Reference UI localization. Select a built-in locale, override labels, and control LTR/RTL rendering.`}),documentDownloadType:fe([D(`both`),D(`yaml`),D(`json`),D(`direct`),D(`none`)],{typeComment:"Sets the file type of the document to download, set to `none` to hide the download button"}),hideDownloadButton:E(C(),{typeComment:"@deprecated Use `documentDownloadType: 'none'` instead"}),hideTestRequestButton:C({default:!1,typeComment:`Whether to show the "Test Request" button`}),hideSearch:C({default:!1,typeComment:`Whether to show the sidebar search bar`}),showOperationId:C({default:!1,typeComment:`Whether to show the operationId`}),darkMode:E(C(),{typeComment:`Whether dark mode is on or off initially (light mode)`}),forceDarkModeState:E(fe([D(`dark`),D(`light`)]),{typeComment:`forceDarkModeState makes it always this state no matter what`}),hideDarkModeToggle:C({default:!1,typeComment:`Whether to show the dark mode toggle`}),metaData:E(ce(),{typeComment:`If used, passed data will be added to the HTML header. @see https://unhead.unjs.io/usage/composables/use-seo-meta`}),favicon:E(S(),{typeComment:`Path to a favicon image`}),hiddenClients:E(fe([w(S(),fe([C(),de(S())])),de(S()),D(!0)]),{typeComment:"List of httpsnippet clients to hide from the clients menu. By default hides Unirest, pass `[]` to show all clients"}),defaultHttpClient:E(T({targetKey:S(),clientKey:S()}),{typeComment:`Determine the HTTP client that is selected by default`}),customCss:E(S(),{typeComment:`Custom CSS to be added to the page`}),onServerChange:E(ue(),{typeComment:`onServerChange is fired on selected server change`}),onDocumentSelect:E(ue(),{typeComment:`onDocumentSelect is fired when the config is selected`}),onLoaded:E(ue(),{typeComment:`Callback fired when the reference is fully loaded`}),onBeforeRequest:E(ue(),{typeComment:`Fired before the outbound request is built; callback receives a mutable request builder. Experimental API.`}),onRequestBuilt:E(ue(),{typeComment:`Fired right before the outbound request is sent; callback receives the exact fetch Request that goes over the wire. Experimental API.`}),onShowMore:E(ue(),{typeComment:`onShowMore is fired when the user clicks the "Show more" button on the references`}),onSidebarClick:E(ue(),{typeComment:`onSidebarClick is fired when the user clicks on a sidebar item`}),pathRouting:E(T({basePath:S()}),{typeComment:`Route using paths instead of hashes, your server MUST support this. @experimental`}),mcp:E(T({name:E(S(),{typeComment:`Display name for the MCP server`}),url:E(S(),{typeComment:`URL of the MCP server`}),disabled:E(C(),{typeComment:`When true, disables the MCP integration`})}),{typeComment:`MCP (Model Context Protocol) configuration. When provided, enables MCP integration with the given name and url.`}),generateHeadingSlug:E(ue(),{typeComment:`Customize the heading portion of the hash`}),generateModelSlug:E(ue(),{typeComment:`Customize the model portion of the hash`}),generateTagSlug:E(ue(),{typeComment:`Customize the tag portion of the hash`}),generateOperationSlug:E(ue(),{typeComment:`Customize the operation portion of the hash`}),generateWebhookSlug:E(ue(),{typeComment:`Customize the webhook portion of the hash`}),setPageTitle:E(ue(),{typeComment:`Customize the browser tab title for the section currently in view`}),redirect:E(ue(),{typeComment:`To handle redirects, pass a function that receives the current path/hash and passes that to history.replaceState`}),withDefaultFonts:C({default:!0,typeComment:`Whether to include default fonts`}),defaultOpenFirstTag:C({default:!0,typeComment:`Whether to expand the first tag in the sidebar when no specific URL target is present`}),defaultOpenAllTags:C({default:!1,typeComment:`Whether to expand all tags by default. Warning: this can cause performance issues on big documents`}),expandAllModelSections:C({default:!1,typeComment:`Whether to expand all models by default. Warning: this can cause performance issues on big documents`}),expandAllResponses:C({default:!1,typeComment:`Whether to expand all responses by default. Warning: this can cause performance issues on big documents`}),expandAllSchemaProperties:C({default:!1,typeComment:`Whether to expand all nested schema properties by default. The Show/Hide Child Attributes toggle remains available so nested sections can still be collapsed manually. Warning: this can cause performance issues on big documents`}),tagsSorter:E(fe([D(`alpha`),ue()]),{typeComment:`Function to sort tags`}),operationsSorter:E(fe([D(`alpha`),D(`method`),ue()]),{typeComment:`Function to sort operations`}),orderSchemaPropertiesBy:fe([D(`alpha`),D(`preserve`)],{typeComment:`Order the schema properties by`}),orderRequiredPropertiesFirst:C({default:!0,typeComment:`Sort the schema properties by required ones first`})})]),Oe=`https://api.scalar.com/request-proxy`,ke=`https://proxy.scalar.com`,Ae=e=>{let t=ie(De,e);return t.hideDownloadButton&&(console.warn(`[DEPRECATED] You're using the deprecated 'hideDownloadButton' attribute. Use 'documentDownloadType: 'none'' instead.`),t.documentDownloadType=`none`),t.spec?.url&&(console.warn(`[DEPRECATED] You're using the deprecated 'spec.url' attribute. Remove the spec prefix and move the 'url' attribute to the top level.`),t.url=t.spec.url,delete t.spec),t.spec?.content&&(console.warn(`[DEPRECATED] You're using the deprecated 'spec.content' attribute. Remove the spec prefix and move the 'content' attribute to the top level.`),t.content=t.spec.content,delete t.spec),t.proxy&&(console.warn(`[DEPRECATED] You're using the deprecated 'proxy' attribute. Use 'proxyUrl' instead.`),t.proxyUrl||=t.proxy,delete t.proxy),t.fetch&&(console.warn(`[DEPRECATED] You're using the deprecated 'fetch' attribute. Use 'customFetch' instead.`),t.customFetch||=t.fetch,delete t.fetch),t.proxyUrl===Oe&&(console.warn(`[DEPRECATED] Warning: configuration.proxyUrl points to our old proxy (${Oe}).`),console.warn(`[DEPRECATED] We are overwriting the value and use the new proxy URL (${ke}) instead.`),console.warn(`[DEPRECATED] Action Required: You should manually update your configuration to use the new URL (${ke}). Read more: https://github.com/scalar/scalar`),t.proxyUrl=ke),t.showToolbar&&t.showToolbar!==`localhost`&&(console.warn(`[DEPRECATED] You're using the deprecated 'showToolbar' attribute. Use 'showDeveloperTools' instead.`),t.showDeveloperTools=t.showToolbar,delete t.showToolbar),t.modelsSectionLabel??=f,t}})),Me=s((()=>{je(),_e()}));Me();function Ne(e,t={},n){for(let r in e){let i=e[r],a=n?`${n}:${r}`:r;typeof i==`object`&&i?Ne(i,t,a):typeof i==`function`&&(t[a]=i)}return t}var Pe=(()=>{if(console.createTask)return console.createTask;let e={run:e=>e()};return()=>e})();function Fe(e,t,n,r){for(let i=n;ie[i](...t)):e[i](...t);if(n instanceof Promise)return n.then(()=>Fe(e,t,i+1,r))}catch(e){return Promise.reject(e)}}function Ie(e,t,n){if(e.length>0)return Fe(e,t,0,Pe(n))}function Le(e,t,n){if(e.length>0){let r=Pe(n);return Promise.all(e.map(e=>r.run(()=>e(...t))))}}function Re(e,t){for(let n of[...e])n(t)}var ze=class{_hooks;_before;_after;_deprecatedHooks;_deprecatedMessages;constructor(){this._hooks={},this._before=void 0,this._after=void 0,this._deprecatedMessages=void 0,this._deprecatedHooks={},this.hook=this.hook.bind(this),this.callHook=this.callHook.bind(this),this.callHookWith=this.callHookWith.bind(this)}hook(e,t,n={}){if(!e||typeof t!=`function`)return()=>{};let r=e,i;for(;this._deprecatedHooks[e];)i=this._deprecatedHooks[e],e=i.to;if(i&&!n.allowDeprecated){let e=i.message;e||=`${r} hook has been deprecated`+(i.to?`, please use ${i.to}`:``),this._deprecatedMessages||=new Set,this._deprecatedMessages.has(e)||(console.warn(e),this._deprecatedMessages.add(e))}if(!t.name)try{Object.defineProperty(t,"name",{get:()=>`_`+e.replace(/\W+/g,`_`)+`_hook_cb`,configurable:!0})}catch{}return this._hooks[e]=this._hooks[e]||[],this._hooks[e].push(t),()=>{t&&=(this.removeHook(e,t),void 0)}}hookOnce(e,t){let n,r=(...e)=>(typeof n==`function`&&n(),n=void 0,r=void 0,t(...e));return n=this.hook(e,r),n}removeHook(e,t){let n=this._hooks[e];if(n){let r=n.indexOf(t);r!==-1&&n.splice(r,1),n.length===0&&(this._hooks[e]=void 0)}}deprecateHook(e,t){this._deprecatedHooks[e]=typeof t==`string`?{to:t}:t;let n=this._hooks[e]||[];this._hooks[e]=void 0;for(let t of n)this.hook(e,t)}deprecateHooks(e){for(let t in e)this.deprecateHook(t,e[t])}addHooks(e){let t=Ne(e),n=Object.keys(t).map(e=>this.hook(e,t[e]));return()=>{for(let e of n)e();n.length=0}}removeHooks(e){let t=Ne(e);for(let e in t)this.removeHook(e,t[e])}removeAllHooks(){this._hooks={}}callHook(e,...t){return this.callHookWith(Ie,e,t)}callHookParallel(e,...t){return this.callHookWith(Le,e,t)}callHookWith(e,t,n){let r=this._before||this._after?{name:t,args:n,context:{}}:void 0;this._before&&Re(this._before,r);let i=e(this._hooks[t]?[...this._hooks[t]]:[],n,t);return i instanceof Promise?i.finally(()=>{this._after&&r&&Re(this._after,r)}):(this._after&&r&&Re(this._after,r),i)}beforeEach(e){return this._before=this._before||[],this._before.push(e),()=>{if(this._before!==void 0){let t=this._before.indexOf(e);t!==-1&&this._before.splice(t,1)}}}afterEach(e){return this._after=this._after||[],this._after.push(e),()=>{if(this._after!==void 0){let t=this._after.indexOf(e);t!==-1&&this._after.splice(t,1)}}}};function Be(){return new ze}var Ve=new Set([`link`,`style`,`script`,`noscript`]),He=new Set([`title`,`titleTemplate`,`script`,`style`,`noscript`]),Ue=new Set([`base`,`meta`,`link`,`style`,`script`,`noscript`]),We=new Set([`title`,`base`,`htmlAttrs`,`bodyAttrs`,`meta`,`link`,`style`,`script`,`noscript`]),Ge=new Set([`base`,`title`,`titleTemplate`,`bodyAttrs`,`htmlAttrs`,`templateParams`]),eee=new Set([`key`,`tagPosition`,`tagPriority`,`tagDuplicateStrategy`,`innerHTML`,`textContent`,`processTemplateParams`]),tee=new Set([`templateParams`,`htmlAttrs`,`bodyAttrs`]),Ke=new Set([`theme-color`,`google-site-verification`,`og`,`article`,`book`,`profile`,`twitter`,`author`]),nee=[`name`,`property`,`http-equiv`],ree=new Set([`viewport`,`description`,`keywords`,`robots`]);function iee(e){let t=e.split(`:`);return t.length?Ke.has(t[1]):!1}function qe(e){let{props:t,tag:n}=e;if(Ge.has(n))return n;if(n===`link`&&t.rel===`canonical`)return`canonical`;if(n===`link`&&t.rel===`alternate`){let e=t.hreflang||t.type;if(e)return`alternate:${e}`}if(t.charset)return`charset`;if(e.tag===`meta`){for(let r of nee)if(t[r]!==void 0){let i=t[r],a=i&&typeof i==`string`&&i.includes(`:`),o=i&&ree.has(i);return`${n}:${i}${!(a||o)&&e.key?`:key:${e.key}`:``}`}}if(e.key)return`${n}:key:${e.key}`;if(t.id)return`${n}:id:${t.id}`;if(n===`link`&&t.rel===`alternate`)return`alternate:${t.href||``}`;if(He.has(n)){let t=e.textContent||e.innerHTML;if(t)return`${n}:content:${t}`}}function aee(e){return e._h||e._d||e.textContent||e.innerHTML||`${e.tag}:${Object.entries(e.props).map(([e,t])=>`${e}:${String(t)}`).join(`,`)}`}function Je(e,t,n){typeof e==`function`&&(!n||n!==`titleTemplate`&&!(n[0]===`o`&&n[1]===`n`))&&(e=e());let r=t?t(n,e):e;if(Array.isArray(r))return r.map(e=>Je(e,t));if(r?.constructor===Object){let e={};for(let n of Object.keys(r))e[n]=Je(r[n],t,n);return e}return r}function oee(e,t){let n=e===`style`?new Map:new Set;function r(t){if(t==null||t===void 0)return;let r=String(t).trim();if(r)if(e===`style`){let[e,...t]=r.split(`:`).map(e=>e?e.trim():``);e&&t.length&&n.set(e,t.join(`:`))}else r.split(` `).filter(Boolean).forEach(e=>n.add(e))}return typeof t==`string`?e===`style`?t.split(`;`).forEach(r):r(t):Array.isArray(t)?t.forEach(e=>r(e)):t&&typeof t==`object`&&Object.entries(t).forEach(([t,i])=>{i&&i!==`false`&&(e===`style`?n.set(String(t).trim(),String(i)):r(t))}),n}function see(e,t){if(e.props=e.props||{},!t)return e;if(e.tag===`templateParams`)return e.props=t,e;let n=Ue.has(e.tag)||e.tag===`htmlAttrs`||e.tag===`bodyAttrs`;return Object.entries(t).forEach(([r,i])=>{if(r===`__proto__`||r===`constructor`||r===`prototype`)return;if(i===null){e.props[r]=null;return}if(r===`class`||r===`style`){e.props[r]=oee(r,i);return}if(eee.has(r)){if((r===`textContent`||r===`innerHTML`)&&typeof i==`object`){let n=t.type;if(t.type||(n=`application/json`),!n?.endsWith(`json`)&&n!==`speculationrules`)return;t.type=n,e.props.type=n,e[r]=JSON.stringify(i)}else e[r]=i;return}let a=r.startsWith(`data-`),o=n&&!a?r.toLowerCase():r,s=String(i),c=e.tag===`meta`&&o===`content`;s===`true`||s===``?e.props[o]=a||c?s:!0:!i&&a&&s===`false`?e.props[o]=`false`:i!==void 0&&(e.props[o]=i)}),e}function cee(e,t){let n=see({tag:e,props:{}},typeof t==`object`&&typeof t!=`function`?t:{[e===`script`||e===`noscript`||e===`style`?`innerHTML`:`textContent`]:t});return n.key&&Ve.has(n.tag)&&(n.props[`data-hid`]=n._h=n.key),n.tag===`script`&&typeof n.innerHTML==`object`&&(n.innerHTML=JSON.stringify(n.innerHTML),n.props.type=n.props.type||`application/json`),Array.isArray(n.props.content)?n.props.content.map(e=>({...n,props:{...n.props,content:e}})):n}function lee(e,t){if(!e)return[];typeof e==`function`&&(e=e());let n=(e,n)=>{for(let r=0;r{if(t!==void 0)for(let n of Array.isArray(t)?t:[t])r.push(cee(e,n))}),r.flat()}var uee=(e,t)=>e._w===t._w?e._p-t._p:e._w-t._w,dee={base:-10,title:10},fee={critical:-8,high:-1,low:2},pee={meta:{"content-security-policy":-30,charset:-20,viewport:-15},link:{preconnect:20,stylesheet:60,preload:70,modulepreload:70,prefetch:90,"dns-prefetch":90,prerender:90},script:{async:30,defer:80,sync:50},style:{imported:40,sync:60}},mee=/@import/,Ye=e=>e===``||e===!0;function hee(e,t){if(typeof t.tagPriority==`number`)return t.tagPriority;let n=100,r=fee[t.tagPriority]||0,i=e.resolvedOptions.disableCapoSorting?{link:{},script:{},style:{}}:pee;if(t.tag in dee)n=dee[t.tag];else if(t.tag===`meta`){let e=t.props[`http-equiv`]===`content-security-policy`?`content-security-policy`:t.props.charset?`charset`:t.props.name===`viewport`?`viewport`:null;e&&(n=pee.meta[e])}else if(t.tag===`link`&&t.props.rel)n=i.link[t.props.rel];else if(t.tag===`script`){let e=String(t.props.type);Ye(t.props.async)?n=i.script.async:t.props.src&&!Ye(t.props.defer)&&!Ye(t.props.async)&&e!==`module`&&!e.endsWith(`json`)||t.innerHTML&&!e.endsWith(`json`)?n=i.script.sync:(Ye(t.props.defer)&&t.props.src&&!Ye(t.props.async)||e===`module`)&&(n=i.script.defer)}else t.tag===`style`&&(n=t.innerHTML&&mee.test(t.innerHTML)?i.style.imported:i.style.sync);return(n||100)+r}function gee(e,t){let n=typeof t==`function`?t(e):t,r=n.key||String(e.plugins.size+1);e.plugins.get(r)||(e.plugins.set(r,n),e.hooks.addHooks(n.hooks||{}))}function _ee(e={}){let t=Be();t.addHooks(e.hooks||{});let n=!e.document,r=new Map,i=new Map,a=new Set,o={_entryCount:1,plugins:i,dirty:!1,resolvedOptions:e,hooks:t,ssr:n,entries:r,headEntries(){return[...r.values()]},use:e=>gee(o,e),push(e,i){let s={...i||{}};delete s.head;let c=s._index??o._entryCount++,l={_i:c,input:e,options:s},u={_poll(e=!1){o.dirty=!0,!e&&a.add(c),t.callHook(`entries:updated`,o)},dispose(){r.delete(c)&&o.invalidate()},patch(e){(!s.mode||s.mode===`server`&&n||s.mode===`client`&&!n)&&(l.input=e,r.set(c,l),u._poll())}};return u.patch(e),u},async resolveTags(){let n={tagMap:new Map,tags:[],entries:[...o.entries.values()]};for(await t.callHook(`entries:resolve`,n);a.size;){let n=a.values().next().value;a.delete(n);let i=r.get(n);if(i){let n={tags:lee(i.input,e.propResolvers||[]).map(e=>Object.assign(e,i.options)),entry:i};await t.callHook(`entries:normalize`,n),i._tags=n.tags.map((e,t)=>(e._w=hee(o,e),e._p=(i._i<<10)+t,e._d=qe(e),e._d||(e._h=aee(e)),e))}}let i=!1;n.entries.flatMap(e=>(e._tags||[]).map(e=>({...e,props:{...e.props}}))).sort(uee).reduce((e,t)=>{let n=t._d||t._h;if(!e.has(n))return e.set(n,t);let r=e.get(n);if((t?.tagDuplicateStrategy||(tee.has(t.tag)?`merge`:null)||(t.key&&t.key===r.key?`merge`:null))===`merge`){let i={...r.props};Object.entries(t.props).forEach(([e,t])=>i[e]=e===`style`?new Map([...r.props.style||new Map,...t]):e===`class`?new Set([...r.props.class||new Set,...t]):t),e.set(n,{...t,props:i})}else t._p>>10==r._p>>10&&t.tag===`meta`&&iee(n)?(e.set(n,Object.assign([...Array.isArray(r)?r:[r],t],t)),i=!0):(t._w===r._w?t._p>r._p:t?._wgee(o,e)),o.hooks.callHook(`init`,o),e.init?.forEach(e=>e&&o.push(e)),o}async function vee(e,t={}){let n=t.document||e.resolvedOptions.document;if(!n||!e.dirty)return;let r={shouldRender:!0,tags:[]};if(await e.hooks.callHook(`dom:beforeRender`,r),r.shouldRender)return e._domUpdatePromise||=new Promise(async t=>{let r=new Map,i=new Promise(t=>{e.resolveTags().then(e=>{t(e.map(e=>{let t=r.get(e._d)||0,n={tag:e,id:(t?`${e._d}:${t}`:e._d)||e._h,shouldRender:!0};return e._d&&iee(e._d)&&r.set(e._d,t+1),n}))})}),a=e._dom;if(!a){a={title:n.title,elMap:new Map().set(`htmlAttrs`,n.documentElement).set(`bodyAttrs`,n.body)};for(let e of[`body`,`head`]){let t=n[e]?.children;for(let e of t){let t=e.tagName.toLowerCase();if(!Ue.has(t))continue;let n=see({tag:t,props:{}},{innerHTML:e.innerHTML,...e.getAttributeNames().reduce((t,n)=>(t[n]=e.getAttribute(n),t),{})||{}});if(n.key=e.getAttribute(`data-hid`)||void 0,n._d=qe(n)||aee(n),a.elMap.has(n._d)){let t=1,r=n._d;for(;a.elMap.has(r);)r=`${n._d}:${t++}`;a.elMap.set(r,e)}else a.elMap.set(n._d,e)}}}a.pendingSideEffects={...a.sideEffects},a.sideEffects={};function o(e,t,n){let r=`${e}:${t}`;a.sideEffects[r]=n,delete a.pendingSideEffects[r]}function s({id:e,$el:t,tag:r}){let i=r.tag.endsWith(`Attrs`);a.elMap.set(e,t),i||(r.textContent&&r.textContent!==t.textContent&&(t.textContent=r.textContent),r.innerHTML&&r.innerHTML!==t.innerHTML&&(t.innerHTML=r.innerHTML),o(e,`el`,()=>{t?.remove(),a.elMap.delete(e)}));for(let a in r.props){if(!Object.prototype.hasOwnProperty.call(r.props,a))continue;let s=r.props[a];if(a.startsWith(`on`)&&typeof s==`function`){let e=t?.dataset;if(e&&e[`${a}fired`]){let e=a.slice(0,-5);s.call(t,new Event(e.substring(2)))}t.getAttribute(`data-${a}`)!==``&&((r.tag===`bodyAttrs`?n.defaultView:t).addEventListener(a.substring(2),s.bind(t)),t.setAttribute(`data-${a}`,``));continue}let c=`attr:${a}`;if(a===`class`){if(!s)continue;for(let n of s)i&&o(e,`${c}:${n}`,()=>t.classList.remove(n)),!t.classList.contains(n)&&t.classList.add(n)}else if(a===`style`){if(!s)continue;for(let[n,r]of s)o(e,`${c}:${n}`,()=>{t.style.removeProperty(n)}),t.style.setProperty(n,r)}else s!==!1&&s!==null&&(t.getAttribute(a)!==s&&t.setAttribute(a,s===!0?``:String(s)),i&&o(e,c,()=>t.removeAttribute(a)))}}let c=[],l={bodyClose:void 0,bodyOpen:void 0,head:void 0},u=await i;for(let e of u){let{tag:t,shouldRender:r,id:i}=e;if(r){if(t.tag===`title`){n.title=t.textContent,o(`title`,``,()=>n.title=a.title);continue}e.$el=e.$el||a.elMap.get(i),e.$el?s(e):Ue.has(t.tag)&&c.push(e)}}for(let e of c){let t=e.tag.tagPosition||`head`;e.$el=n.createElement(e.tag.tag),s(e),l[t]=l[t]||n.createDocumentFragment(),l[t].appendChild(e.$el)}for(let t of u)await e.hooks.callHook(`dom:renderTag`,t,n,o);l.head&&n.head.appendChild(l.head),l.bodyOpen&&n.body.insertBefore(l.bodyOpen,n.body.firstChild),l.bodyClose&&n.body.appendChild(l.bodyClose);for(let e in a.pendingSideEffects)a.pendingSideEffects[e]();e._dom=a,await e.hooks.callHook(`dom:rendered`,{renders:u}),t()}).finally(()=>{e._domUpdatePromise=void 0,e.dirty=!1}),e._domUpdatePromise}function yee(e={}){let t=e.domOptions?.render||vee;e.document=e.document||(typeof window<`u`?document:void 0);let n=e.document?.head.querySelector(`script[id="unhead:payload"]`)?.innerHTML||!1;return _ee({...e,plugins:[...e.plugins||[],{key:`client`,hooks:{"entries:updated":t}}],init:[n?JSON.parse(n):!1,...e.init||[]]})}function bee(e,t){let n=0;return()=>{let r=++n;t(()=>{n===r&&e()})}}var Xe={META:new Set([`twitter`]),OG:new Set([`og`,`book`,`article`,`profile`,`fb`]),MEDIA:new Set([`ogImage`,`ogVideo`,`ogAudio`,`twitterImage`]),HTTP_EQUIV:new Set([`contentType`,`defaultStyle`,`xUaCompatible`])},xee={articleExpirationTime:`article:expiration_time`,articleModifiedTime:`article:modified_time`,articlePublishedTime:`article:published_time`,bookReleaseDate:`book:release_date`,fbAppId:`fb:app_id`,ogAudioSecureUrl:`og:audio:secure_url`,ogAudioUrl:`og:audio`,ogImageSecureUrl:`og:image:secure_url`,ogImageUrl:`og:image`,ogSiteName:`og:site_name`,ogVideoSecureUrl:`og:video:secure_url`,ogVideoUrl:`og:video`,profileFirstName:`profile:first_name`,profileLastName:`profile:last_name`,profileUsername:`profile:username`,msapplicationConfig:`msapplication-Config`,msapplicationTileColor:`msapplication-TileColor`,msapplicationTileImage:`msapplication-TileImage`},See={appleItunesApp:{unpack:{entrySeparator:`, `,resolve:({key:e,value:t})=>`${Ze(e)}=${t}`}},refresh:{metaKey:`http-equiv`,unpack:{entrySeparator:`;`,resolve:({key:e,value:t})=>e===`seconds`?`${t}`:void 0}},robots:{unpack:{entrySeparator:`, `,resolve:({key:e,value:t})=>typeof t==`boolean`?Ze(e):`${Ze(e)}:${t}`}},contentSecurityPolicy:{metaKey:`http-equiv`,unpack:{entrySeparator:`; `,resolve:({key:e,value:t})=>`${Ze(e)} ${t}`}},charset:{}};function Ze(e){let t=e.replace(/([A-Z])/g,`-$1`).toLowerCase(),n=t.indexOf(`-`);return n===-1?t:Xe.META.has(t.slice(0,n))||Xe.OG.has(t.slice(0,n))?e.replace(/([A-Z])/g,`:$1`).toLowerCase():t}function Cee(e){return Object.fromEntries(Object.entries(e).filter(([e,t])=>String(t)!==`false`&&e))}function Qe(e){return Array.isArray(e)?e.map(Qe):!e||typeof e!=`object`?e:Object.fromEntries(Object.entries(e).map(([e,t])=>[Ze(e),Qe(t)]))}function wee(e,t={}){let{entrySeparator:n=``,keyValueSeparator:r=``,wrapValue:i,resolve:a}=t;return Object.entries(e).map(([e,n])=>{if(a){let t=a({key:e,value:n});if(t!==void 0)return t}let o=typeof n==`object`?wee(n,t):typeof n==`number`?n.toString():typeof n==`string`&&i?`${i}${n.replace(new RegExp(i,`g`),`\\${i}`)}${i}`:n;return`${e}${r}${o}`}).join(n)}function Tee(e,t){let n=Cee(t),r=Ze(e),i=Eee(r);return Ke.has(r)?$e(Object.fromEntries(Object.entries(n).map(([t,n])=>[`${e}${t===`url`?``:`${t[0].toUpperCase()}${t.slice(1)}`}`,n]))||{}).sort((e,t)=>(e[i]?.length||0)-(t[i]?.length||0)):[{[i]:r,...n}]}function Eee(e){if(See[e]?.metaKey===`http-equiv`||Xe.HTTP_EQUIV.has(e))return`http-equiv`;let t=Ze(e),n=t.indexOf(`:`);return n===-1?`name`:Xe.OG.has(t.slice(0,n))?`property`:`name`}function Dee(e){return xee[e]||Ze(e)}function Oee(e,t){return t===`refresh`?`${e.seconds};url=${e.url}`:wee(Qe(e),{keyValueSeparator:`=`,entrySeparator:`, `,resolve:({value:e,key:t})=>e===null?``:typeof e==`boolean`?t:void 0,...See[t]?.unpack})}function $e(e){let t=[],n={};for(let[r,i]of Object.entries(e)){if(Array.isArray(i)){if(r===`themeColor`){i.forEach(e=>{typeof e==`object`&&e&&t.push({name:`theme-color`,...e})});continue}for(let e of i)if(typeof e==`object`&&e){let n=[],i=[];for(let[t,a]of Object.entries(e)){let e=$e({[`${r}${t===`url`?``:`:${t}`}`]:a});(t===`url`?n:i).push(...e)}t.push(...n,...i)}else t.push(...typeof e==`string`?$e({[r]:e}):Tee(r,e));continue}if(typeof i==`object`&&i)if(Xe.MEDIA.has(r)){let e=r.startsWith(`twitter`)?`twitter`:`og`,n=r.replace(/^(og|twitter)/,``).toLowerCase(),a=e===`twitter`?`name`:`property`;i.url&&t.push({[a]:`${e}:${n}`,content:i.url}),i.secureUrl&&t.push({[a]:`${e}:${n}:secure_url`,content:i.secureUrl});for(let[r,o]of Object.entries(i))r!==`url`&&r!==`secureUrl`&&t.push({[a]:`${e}:${n}:${r}`,content:o})}else Ke.has(Ze(r))?t.push(...Tee(r,i)):n[r]=Cee(i);else n[r]=i}let r=Object.entries(n).map(([e,t])=>{if(e===`charset`)return{charset:t===null?`_null`:t};let n=Eee(e),r=Dee(e),i=t===null?`_null`:typeof t==`object`?Oee(t,e):typeof t==`number`?t.toString():t;return n===`http-equiv`?{"http-equiv":r,content:i}:{[n]:r,content:i}});return[...t,...r].map(e=>`content`in e&&e.content===`_null`?{...e,content:null}:e)}function kee(e){return e}var Aee=kee({key:`flatMeta`,hooks:{"entries:normalize":e=>{let t=[];e.tags=e.tags.map(e=>e.tag===`_flatMeta`?(t.push($e(e.props).map(t=>({...e,tag:`meta`,props:t}))),!1):e).filter(Boolean).concat(...t)}}});function jee(e){if(Array.isArray(e))return e.map(jee);if(e&&typeof e==`object`){let t={};for(let n of Object.keys(e))n===`__proto__`||n===`constructor`||n===`prototype`||(t[n]=jee(e[n]));return t}return e}function et(e){let t=Object.create(null);for(let n of e.split(`,`))t[n]=1;return e=>e in t}function tt(e){if(mt(e)){let t={};for(let n=0;n{if(e){let n=e.split(Hee);n.length>1&&(t[n[0].trim()]=n[1].trim())}}),t}function O(e){let t=``;if(yt(e))t=e;else if(mt(e))for(let n=0;nrt(e,t))}function Fee(e){return e==null?`initial`:typeof e==`string`?e===``?` `:e:String(e)}var at,ot,st,ct,lt,ut,dt,ft,Iee,pt,mt,ht,gt,_t,vt,yt,bt,xt,St,Ct,wt,Lee,Tt,Et,Dt,Ot,kt,At,Ree,jt,Mt,Nt,Pt,Ft,It,Lt,zee,Bee,Rt,Vee,Hee,Uee,zt,Wee,Bt,k,Vt,Ht,Ut=s((()=>{at={},ot=[],st=()=>{},ct=()=>!1,lt=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),ut=e=>e.startsWith(`onUpdate:`),dt=Object.assign,ft=(e,t)=>{let n=e.indexOf(t);n>-1&&e.splice(n,1)},Iee=Object.prototype.hasOwnProperty,pt=(e,t)=>Iee.call(e,t),mt=Array.isArray,ht=e=>wt(e)===`[object Map]`,gt=e=>wt(e)===`[object Set]`,_t=e=>wt(e)===`[object Date]`,vt=e=>typeof e==`function`,yt=e=>typeof e==`string`,bt=e=>typeof e==`symbol`,xt=e=>typeof e==`object`&&!!e,St=e=>(xt(e)||vt(e))&&vt(e.then)&&vt(e.catch),Ct=Object.prototype.toString,wt=e=>Ct.call(e),Lee=e=>wt(e).slice(8,-1),Tt=e=>wt(e)===`[object Object]`,Et=e=>yt(e)&&e!==`NaN`&&e[0]!==`-`&&``+parseInt(e,10)===e,Dt=et(`,key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted`),Ot=e=>{let t=Object.create(null);return(n=>t[n]||(t[n]=e(n)))},kt=/-\w/g,At=Ot(e=>e.replace(kt,e=>e.slice(1).toUpperCase())),Ree=/\B([A-Z])/g,jt=Ot(e=>e.replace(Ree,`-$1`).toLowerCase()),Mt=Ot(e=>e.charAt(0).toUpperCase()+e.slice(1)),Nt=Ot(e=>e?`on${Mt(e)}`:``),Pt=(e,t)=>!Object.is(e,t),Ft=(e,...t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:r,value:n})},Lt=e=>{let t=parseFloat(e);return isNaN(t)?e:t},zee=e=>{let t=yt(e)?Number(e):NaN;return isNaN(t)?e:t},Rt=()=>Bee||=typeof globalThis<`u`?globalThis:typeof self<`u`?self:typeof window<`u`?window:typeof global<`u`?global:{},Vee=/;(?![^(]*\))/g,Hee=/:([^]+)/,Uee=/\/\*[^]*?\*\//g,zt=`itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly`,Wee=et(zt),zt+``,Bt=e=>!!(e&&e.__v_isRef===!0),k=e=>yt(e)?e:e==null?``:mt(e)||xt(e)&&(e.toString===Ct||!vt(e.toString))?Bt(e)?k(e.value):JSON.stringify(e,Vt,2):String(e),Vt=(e,t)=>Bt(t)?Vt(e,t.value):ht(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((e,[t,n],r)=>(e[Ht(t,r)+` =>`]=n,e),{})}:gt(t)?{[`Set(${t.size})`]:[...t.values()].map(e=>Ht(e))}:bt(t)?Ht(t):xt(t)&&!mt(t)&&!Tt(t)?String(t):t,Ht=(e,t=``)=>bt(e)?`Symbol(${e.description??t})`:e}));function Wt(){return Tn}function Gt(e,t=!1){Tn&&Tn.cleanups.push(e)}function Gee(e,t=!1){if(e.flags|=8,t){e.next=jn,jn=e;return}e.next=An,An=e}function Kt(){kn++}function qt(){if(--kn>0)return;if(jn){let e=jn;for(jn=void 0;e;){let t=e.next;e.next=void 0,e.flags&=-9,e=t}}let e;for(;An;){let t=An;for(An=void 0;t;){let n=t.next;if(t.next=void 0,t.flags&=-9,t.flags&1)try{t.trigger()}catch(t){e||=t}t=n}}if(e)throw e}function Kee(e){for(let t=e.deps;t;t=t.nextDep)t.version=-1,t.prevActiveLink=t.dep.activeLink,t.dep.activeLink=t}function qee(e){let t,n=e.depsTail,r=n;for(;r;){let e=r.prevDep;r.version===-1?(r===n&&(n=e),Yt(r),Yee(r)):t=r,r.dep.activeLink=r.prevActiveLink,r.prevActiveLink=void 0,r=e}e.deps=t,e.depsTail=n}function Jt(e){for(let t=e.deps;t;t=t.nextDep)if(t.dep.version!==t.version||t.dep.computed&&(Jee(t.dep.computed)||t.dep.version!==t.version))return!0;return!!e._dirty}function Jee(e){if(e.flags&4&&!(e.flags&16)||(e.flags&=-17,e.globalVersion===Pn)||(e.globalVersion=Pn,!e.isSSR&&e.flags&128&&(!e.deps&&!e._dirty||!Jt(e))))return;e.flags|=2;let t=e.dep,n=En,r=Mn;En=e,Mn=!0;try{Kee(e);let n=e.fn(e._value);(t.version===0||Pt(n,e._value))&&(e.flags|=128,e._value=n,t.version++)}catch(e){throw t.version++,e}finally{En=n,Mn=r,qee(e),e.flags&=-3}}function Yt(e,t=!1){let{dep:n,prevSub:r,nextSub:i}=e;if(r&&(r.nextSub=i,e.prevSub=void 0),i&&(i.prevSub=r,e.nextSub=void 0),n.subs===e&&(n.subs=r,!r&&n.computed)){n.computed.flags&=-5;for(let e=n.computed.deps;e;e=e.nextDep)Yt(e,!0)}!t&&!--n.sc&&n.map&&n.map.delete(n.key)}function Yee(e){let{prevDep:t,nextDep:n}=e;t&&(t.nextDep=n,e.prevDep=void 0),n&&(n.prevDep=t,e.nextDep=void 0)}function Xt(){Nn.push(Mn),Mn=!1}function Zt(){let e=Nn.pop();Mn=e===void 0||e}function Xee(e){let{cleanup:t}=e;if(e.cleanup=void 0,t){let e=En;En=void 0;try{t()}finally{En=e}}}function Zee(e){if(e.dep.sc++,e.sub.flags&4){let t=e.dep.computed;if(t&&!e.dep.subs){t.flags|=20;for(let e=t.deps;e;e=e.nextDep)Zee(e)}let n=e.dep.subs;n!==e&&(e.prevSub=n,n&&(n.nextSub=e)),e.dep.subs=e}}function Qt(e,t,n){if(Mn&&En){let t=In.get(e);t||In.set(e,t=new Map);let r=t.get(n);r||(t.set(n,r=new Fn),r.map=t,r.key=n),r.track()}}function $t(e,t,n,r,i,a){let o=In.get(e);if(!o){Pn++;return}let s=e=>{e&&e.trigger()};if(Kt(),t===`clear`)o.forEach(s);else{let i=mt(e),a=i&&Et(n);if(i&&n===`length`){let e=Number(r);o.forEach((t,n)=>{(n===`length`||n===zn||!bt(n)&&n>=e)&&s(t)})}else switch((n!==void 0||o.has(void 0))&&s(o.get(n)),a&&s(o.get(zn)),t){case`add`:i?a&&s(o.get(`length`)):(s(o.get(Ln)),ht(e)&&s(o.get(Rn)));break;case`delete`:i||(s(o.get(Ln)),ht(e)&&s(o.get(Rn)));break;case`set`:ht(e)&&s(o.get(Ln));break}}qt()}function Qee(e,t){let n=In.get(e);return n&&n.get(t)}function en(e){let t=vn(e);return t===e?t:(Qt(t,`iterate`,zn),gn(e)?t:t.map(Xn))}function tn(e){return Qt(e=vn(e),`iterate`,zn),e}function nn(e,t){return hn(e)?Zn(mn(e)?Xn(t):t):Xn(t)}function rn(e,t,n){let r=tn(e),i=r[t]();return r!==e&&!gn(e)&&(i._next=i.next,i.next=()=>{let e=i._next();return e.done||(e.value=n(e.value)),e}),i}function an(e,t,n,r,i,a){let o=tn(e),s=o!==e&&!gn(e),c=o[t];if(c!==gte[t]){let t=c.apply(e,a);return s?Xn(t):t}let l=n;o!==e&&(s?l=function(t,r){return n.call(this,nn(e,t),r,e)}:n.length>2&&(l=function(t,r){return n.call(this,t,r,e)}));let u=c.call(o,l,r);return s&&i?i(u):u}function $ee(e,t,n,r){let i=tn(e),a=i!==e&&!gn(e),o=n,s=!1;i!==e&&(a?(s=r.length===0,o=function(t,r,i){return s&&(s=!1,t=nn(e,t)),n.call(this,t,nn(e,r),i,e)}):n.length>3&&(o=function(t,r,i){return n.call(this,t,r,i,e)}));let c=i[t](o,...r);return s?nn(e,c):c}function on(e,t,n){let r=vn(e);Qt(r,`iterate`,zn);let i=r[t](...n);return(i===-1||i===!1)&&_n(n[0])?(n[0]=vn(n[0]),r[t](...n)):i}function sn(e,t,n=[]){Xt(),Kt();let r=vn(e)[t].apply(e,n);return qt(),Zt(),r}function ete(e){bt(e)||(e=String(e));let t=vn(this);return Qt(t,`has`,e),t.hasOwnProperty(e)}function tte(e,t,n){return function(...r){let i=this.__v_raw,a=vn(i),o=ht(a),s=e===`entries`||e===Symbol.iterator&&o,c=e===`keys`&&o,l=i[e](...r),u=n?Wn:t?Zn:Xn;return!t&&Qt(a,`iterate`,c?Rn:Ln),dt(Object.create(l),{next(){let{value:e,done:t}=l.next();return t?{value:e,done:t}:{value:s?[u(e[0]),u(e[1])]:u(e),done:t}}})}}function cn(e){return function(...t){return e===`delete`?!1:e===`clear`?void 0:this}}function nte(e,t){let n={get(n){let r=this.__v_raw,i=vn(r),a=vn(n);e||(Pt(n,a)&&Qt(i,`get`,n),Qt(i,`get`,a));let{has:o}=Gn(i),s=t?Wn:e?Zn:Xn;if(o.call(i,n))return s(r.get(n));if(o.call(i,a))return s(r.get(a));r!==i&&r.get(n)},get size(){let t=this.__v_raw;return!e&&Qt(vn(t),`iterate`,Ln),t.size},has(t){let n=this.__v_raw,r=vn(n),i=vn(t);return e||(Pt(t,i)&&Qt(r,`has`,t),Qt(r,`has`,i)),t===i?n.has(t):n.has(t)||n.has(i)},forEach(n,r){let i=this,a=i.__v_raw,o=vn(a),s=t?Wn:e?Zn:Xn;return!e&&Qt(o,`iterate`,Ln),a.forEach((e,t)=>n.call(r,s(e),s(t),i))}};return dt(n,e?{add:cn(`add`),set:cn(`set`),delete:cn(`delete`),clear:cn(`clear`)}:{add(e){let n=vn(this),r=Gn(n),i=vn(e),a=!t&&!gn(e)&&!hn(e)?i:e;return r.has.call(n,a)||Pt(e,a)&&r.has.call(n,e)||Pt(i,a)&&r.has.call(n,i)||(n.add(a),$t(n,`add`,a,a)),this},set(e,n){!t&&!gn(n)&&!hn(n)&&(n=vn(n));let r=vn(this),{has:i,get:a}=Gn(r),o=i.call(r,e);o||=(e=vn(e),i.call(r,e));let s=a.call(r,e);return r.set(e,n),o?Pt(n,s)&&$t(r,`set`,e,n,s):$t(r,`add`,e,n),this},delete(e){let t=vn(this),{has:n,get:r}=Gn(t),i=n.call(t,e);i||=(e=vn(e),n.call(t,e));let a=r?r.call(t,e):void 0,o=t.delete(e);return i&&$t(t,`delete`,e,void 0,a),o},clear(){let e=vn(this),t=e.size!==0,n=e.clear();return t&&$t(e,`clear`,void 0,void 0,void 0),n}}),[`keys`,`values`,`entries`,Symbol.iterator].forEach(r=>{n[r]=tte(r,e,t)}),n}function ln(e,t){let n=nte(e,t);return(t,r,i)=>r===`__v_isReactive`?!e:r===`__v_isReadonly`?e:r===`__v_raw`?t:Reflect.get(pt(n,r)&&r in t?n:t,r,i)}function rte(e){switch(e){case`Object`:case`Array`:return 1;case`Map`:case`Set`:case`WeakMap`:case`WeakSet`:return 2;default:return 0}}function un(e){return hn(e)?e:pn(e,!1,vte,Ste,Kn)}function ite(e){return pn(e,!1,bte,Cte,qn)}function dn(e){return pn(e,!0,yte,wte,Jn)}function fn(e){return pn(e,!0,xte,Tte,Yn)}function pn(e,t,n,r,i){if(!xt(e)||e.__v_raw&&!(t&&e.__v_isReactive)||e.__v_skip||!Object.isExtensible(e))return e;let a=i.get(e);if(a)return a;let o=rte(Lee(e));if(o===0)return e;let s=new Proxy(e,o===2?r:n);return i.set(e,s),s}function mn(e){return hn(e)?mn(e.__v_raw):!!(e&&e.__v_isReactive)}function hn(e){return!!(e&&e.__v_isReadonly)}function gn(e){return!!(e&&e.__v_isShallow)}function _n(e){return e?!!e.__v_raw:!1}function vn(e){let t=e&&e.__v_raw;return t?vn(t):e}function yn(e){return!pt(e,`__v_skip`)&&Object.isExtensible(e)&&It(e,`__v_skip`,!0),e}function bn(e){return e?e.__v_isRef===!0:!1}function A(e){return ate(e,!1)}function xn(e){return ate(e,!0)}function ate(e,t){return bn(e)?e:new Ete(e,t)}function j(e){return bn(e)?e.value:e}function Sn(e){return vt(e)?e():j(e)}function ote(e){return mn(e)?e:new Proxy(e,Dte)}function ste(e){return new Ote(e)}function cte(e){let t=mt(e)?Array(e.length):{};for(let n in e)t[n]=lte(e,n);return t}function Cn(e,t,n){return bn(e)?e:vt(e)?new Ate(e):xt(e)&&arguments.length>1?lte(e,t,n):A(e)}function lte(e,t,n){return new kte(e,t,n)}function ute(e,t,n=!1){let r,i;return vt(e)?r=e:(r=e.get,i=e.set),new jte(r,i,n)}function dte(e,t=!1,n=er){if(n){let t=$n.get(n);t||$n.set(n,t=[]),t.push(e)}}function fte(e,t,n=at){let{immediate:r,deep:i,once:a,scheduler:o,augmentJob:s,call:c}=n,l=e=>i?e:gn(e)||i===!1||i===0?wn(e,1):wn(e),u,d,f,p,m=!1,h=!1;if(bn(e)?(d=()=>e.value,m=gn(e)):mn(e)?(d=()=>l(e),m=!0):mt(e)?(h=!0,m=e.some(e=>mn(e)||gn(e)),d=()=>e.map(e=>{if(bn(e))return e.value;if(mn(e))return l(e);if(vt(e))return c?c(e,2):e()})):d=vt(e)?t?c?()=>c(e,2):e:()=>{if(f){Xt();try{f()}finally{Zt()}}let t=er;er=u;try{return c?c(e,3,[p]):e(p)}finally{er=t}}:st,t&&i){let e=d,t=i===!0?1/0:i;d=()=>wn(e(),t)}let g=Wt(),_=()=>{u.stop(),g&&g.active&&ft(g.effects,u)};if(a&&t){let e=t;t=(...t)=>{let n=e(...t);return _(),n}}let v=h?Array(e.length).fill(Qn):Qn,y=e=>{if(!(!(u.flags&1)||!u.dirty&&!e))if(t){let n=u.run();if(e||i||m||(h?n.some((e,t)=>Pt(e,v[t])):Pt(n,v))){f&&f();let e=er;er=u;try{let e=[n,v===Qn?void 0:h&&v[0]===Qn?[]:v,p];v=n,c?c(t,3,e):t(...e)}finally{er=e}}}else u.run()};return s&&s(y),u=new On(d),u.scheduler=o?()=>o(y,!1):y,p=e=>dte(e,!1,u),f=u.onStop=()=>{let e=$n.get(u);if(e){if(c)c(e,4);else for(let t of e)t();$n.delete(u)}},t?r?y(!0):v=u.run():o?o(y.bind(null,!0),!0):u.run(),_.pause=u.pause.bind(u),_.resume=u.resume.bind(u),_.stop=_,_}function wn(e,t=1/0,n){if(t<=0||!xt(e)||e.__v_skip||(n||=new Map,(n.get(e)||0)>=t))return e;if(n.set(e,t),t--,bn(e))wn(e.value,t,n);else if(mt(e))for(let r=0;r{wn(e,t,n)});else if(Tt(e)){for(let r in e)wn(e[r],t,n);for(let r of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,r)&&wn(e[r],t,n)}return e}var Tn,pte,En,Dn,On,kn,An,jn,Mn,Nn,Pn,mte,Fn,In,Ln,Rn,zn,hte,gte,_te,Bn,Vn,Hn,Un,vte,yte,bte,xte,Wn,Gn,Ste,Cte,wte,Tte,Kn,qn,Jn,Yn,Xn,Zn,Ete,Dte,Ote,kte,Ate,jte,Qn,$n,er,Mte=s((()=>{Ut(),pte=class{constructor(e=!1){this.detached=e,this._active=!0,this._on=0,this.effects=[],this.cleanups=[],this._isPaused=!1,this._warnOnRun=!0,this.__v_skip=!0,!e&&Tn&&(Tn.active?(this.parent=Tn,this.index=(Tn.scopes||=[]).push(this)-1):(this._active=!1,this._warnOnRun=!1))}get active(){return this._active}pause(){if(this._active){this._isPaused=!0;let e,t;if(this.scopes){let n=this.scopes.slice();for(e=0,t=n.length;e0&&--this._on===0){if(Tn===this)Tn=this.prevScope;else{let e=Tn;for(;e;){if(e.prevScope===this){e.prevScope=this.prevScope;break}e=e.prevScope}}this.prevScope=void 0}}stop(e){if(this._active){this._active=!1;let t,n;for(t=0,n=this.effects.length;tnn(this,e))},concat(...e){return en(this).concat(...e.map(e=>mt(e)?en(e):e))},entries(){return rn(this,`entries`,e=>(e[1]=nn(this,e[1]),e))},every(e,t){return an(this,`every`,e,t,void 0,arguments)},filter(e,t){return an(this,`filter`,e,t,e=>e.map(e=>nn(this,e)),arguments)},find(e,t){return an(this,`find`,e,t,e=>nn(this,e),arguments)},findIndex(e,t){return an(this,`findIndex`,e,t,void 0,arguments)},findLast(e,t){return an(this,`findLast`,e,t,e=>nn(this,e),arguments)},findLastIndex(e,t){return an(this,`findLastIndex`,e,t,void 0,arguments)},forEach(e,t){return an(this,`forEach`,e,t,void 0,arguments)},includes(...e){return on(this,`includes`,e)},indexOf(...e){return on(this,`indexOf`,e)},join(e){return en(this).join(e)},lastIndexOf(...e){return on(this,`lastIndexOf`,e)},map(e,t){return an(this,`map`,e,t,void 0,arguments)},pop(){return sn(this,`pop`)},push(...e){return sn(this,`push`,e)},reduce(e,...t){return $ee(this,`reduce`,e,t)},reduceRight(e,...t){return $ee(this,`reduceRight`,e,t)},shift(){return sn(this,`shift`)},some(e,t){return an(this,`some`,e,t,void 0,arguments)},splice(...e){return sn(this,`splice`,e)},toReversed(){return en(this).toReversed()},toSorted(e){return en(this).toSorted(e)},toSpliced(...e){return en(this).toSpliced(...e)},unshift(...e){return sn(this,`unshift`,e)},values(){return rn(this,`values`,e=>nn(this,e))}},gte=Array.prototype,_te=et(`__proto__,__v_isRef,__isVue`),Bn=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!==`arguments`&&e!==`caller`).map(e=>Symbol[e]).filter(bt)),Vn=class{constructor(e=!1,t=!1){this._isReadonly=e,this._isShallow=t}get(e,t,n){if(t===`__v_skip`)return e.__v_skip;let r=this._isReadonly,i=this._isShallow;if(t===`__v_isReactive`)return!r;if(t===`__v_isReadonly`)return r;if(t===`__v_isShallow`)return i;if(t===`__v_raw`)return n===(r?i?Yn:Jn:i?qn:Kn).get(e)||Object.getPrototypeOf(e)===Object.getPrototypeOf(n)?e:void 0;let a=mt(e);if(!r){let e;if(a&&(e=hte[t]))return e;if(t===`hasOwnProperty`)return ete}let o=Reflect.get(e,t,bn(e)?e:n);if((bt(t)?Bn.has(t):_te(t))||(r||Qt(e,`get`,t),i))return o;if(bn(o)){let e=a&&Et(t)?o:o.value;return r&&xt(e)?dn(e):e}return xt(o)?r?dn(o):un(o):o}},Hn=class extends Vn{constructor(e=!1){super(!1,e)}set(e,t,n,r){let i=e[t],a=mt(e)&&Et(t);if(!this._isShallow){let e=hn(i);if(!gn(n)&&!hn(n)&&(i=vn(i),n=vn(n)),!a&&bn(i)&&!bn(n))return e||(i.value=n),!0}let o=a?Number(t)e,Gn=e=>Reflect.getPrototypeOf(e),Ste={get:ln(!1,!1)},Cte={get:ln(!1,!0)},wte={get:ln(!0,!1)},Tte={get:ln(!0,!0)},Kn=new WeakMap,qn=new WeakMap,Jn=new WeakMap,Yn=new WeakMap,Xn=e=>xt(e)?un(e):e,Zn=e=>xt(e)?dn(e):e,Ete=class{constructor(e,t){this.dep=new Fn,this.__v_isRef=!0,this.__v_isShallow=!1,this._rawValue=t?e:vn(e),this._value=t?e:Xn(e),this.__v_isShallow=t}get value(){return this.dep.track(),this._value}set value(e){let t=this._rawValue,n=this.__v_isShallow||gn(e)||hn(e);e=n?e:vn(e),Pt(e,t)&&(this._rawValue=e,this._value=n?e:Xn(e),this.dep.trigger())}},Dte={get:(e,t,n)=>t===`__v_raw`?e:j(Reflect.get(e,t,n)),set:(e,t,n,r)=>{let i=e[t];return bn(i)&&!bn(n)?(i.value=n,!0):Reflect.set(e,t,n,r)}},Ote=class{constructor(e){this.__v_isRef=!0,this._value=void 0;let t=this.dep=new Fn,{get:n,set:r}=e(t.track.bind(t),t.trigger.bind(t));this._get=n,this._set=r}get value(){return this._value=this._get()}set value(e){this._set(e)}},kte=class{constructor(e,t,n){this._object=e,this._defaultValue=n,this.__v_isRef=!0,this._value=void 0,this._key=bt(t)?t:String(t),this._raw=vn(e);let r=!0,i=e;if(!mt(e)||bt(this._key)||!Et(this._key))do r=!_n(i)||gn(i);while(r&&(i=i.__v_raw));this._shallow=r}get value(){let e=this._object[this._key];return this._shallow&&(e=j(e)),this._value=e===void 0?this._defaultValue:e}set value(e){if(this._shallow&&bn(this._raw[this._key])){let t=this._object[this._key];if(bn(t)){t.value=e;return}}this._object[this._key]=e}get dep(){return Qee(this._raw,this._key)}},Ate=class{constructor(e){this._getter=e,this.__v_isRef=!0,this.__v_isReadonly=!0,this._value=void 0}get value(){return this._value=this._getter()}},jte=class{constructor(e,t,n){this.fn=e,this.setter=t,this._value=void 0,this.dep=new Fn(this),this.__v_isRef=!0,this.deps=void 0,this.depsTail=void 0,this.flags=16,this.globalVersion=Pn-1,this.next=void 0,this.effect=this,this.__v_isReadonly=!t,this.isSSR=n}notify(){if(this.flags|=16,!(this.flags&8)&&En!==this)return Gee(this,!0),!0}get value(){let e=this.dep.track();return Jee(this),e&&(e.version=this.dep.version),this._value}set value(e){this.setter&&this.setter(e)}},Qn={},$n=new WeakMap,er=void 0}));function tr(e,t,n,r){try{return r?e(...r):e()}catch(e){rr(e,t,n)}}function nr(e,t,n,r){if(vt(e)){let i=tr(e,t,n,r);return i&&St(i)&&i.catch(e=>{rr(e,t,n)}),i}if(mt(e)){let i=[];for(let a=0;a>>1,i=li[r],a=gi(i);a=gi(n)?li.push(e):li.splice(Pte(t),0,e),e.flags|=1,Fte()}}function Fte(){hi||=mi.then(Rte)}function Ite(e){mt(e)?di.push(...e):fi&&e.id===-1?fi.splice(pi+1,0,e):e.flags&1||(di.push(e),e.flags|=1),Fte()}function Lte(e,t,n=ui+1){for(;ngi(e)-gi(t));if(di.length=0,fi){fi.push(...e);return}for(fi=e,pi=0;pi{r._d&&Zr(-1);let i=sr(t),a=ma.length,o;try{o=e(...n)}finally{for(let e=ma.length;e>a;e--)Xr();sr(i),r._d&&Zr(1)}return o};return r._n=!0,r._c=!0,r._d=!0,r}function cr(e,t){if(_i===null)return e;let n=si(_i),r=e.dirs||=[];for(let e=0;e1)return n&&vt(t)?t.call(r&&r.proxy):t}}function zte(){return!!(ba()||Qi)}function fr(e,t){return mr(e,null,t)}function Bte(e,t){return mr(e,null,{flush:`sync`})}function pr(e,t,n){return mr(e,t,n)}function mr(e,t,n=at){let{immediate:r,deep:i,flush:a,once:o}=n,s=dt({},n),c=t&&r||!t&&a!==`post`,l;if(Ta){if(a===`sync`){let e=tre();l=e.__watcherHandles||=[]}else if(!c){let e=()=>{};return e.stop=st,e.resume=st,e.pause=st,e}}let u=ya;s.call=(e,t,n)=>nr(e,u,t,n);let d=!1;a===`post`?s.scheduler=e=>{la(e,u&&u.suspense)}:a!==`sync`&&(d=!0,s.scheduler=(e,t)=>{t?e():ar(e)}),s.augmentJob=e=>{t&&(e.flags|=4),d&&(e.flags|=2,u&&(e.id=u.uid,e.i=u))};let f=fte(e,t,s);return Ta&&(l?l.push(f):c&&f()),f}function Vte(e,t,n){let r=this.proxy,i=yt(e)?e.includes(`.`)?Hte(r,e):()=>r[e]:e.bind(r,r),a;vt(t)?a=t:(a=t.handler,n=t);let o=Ca(this),s=mr(i,a.bind(r),n);return o(),s}function Hte(e,t){let n=t.split(`.`);return()=>{let t=e;for(let e=0;e{e.isMounted=!0}),Ui(()=>{e.isUnmounting=!0}),e}function Gte(e){let t=e[0];if(e.length>1){for(let n of e)if(n.type!==fa){t=n;break}}return t}function Kte(e,t){let{leavingVNodes:n}=e,r=n.get(t.type);return r||(r=Object.create(null),n.set(t.type,r)),r}function vr(e,t,n,r,i){let{appear:a,mode:o,persisted:s=!1,onBeforeEnter:c,onEnter:l,onAfterEnter:u,onEnterCancelled:d,onBeforeLeave:f,onLeave:p,onAfterLeave:m,onLeaveCancelled:h,onBeforeAppear:g,onAppear:_,onAfterAppear:v,onAppearCancelled:y}=t,b=String(e.key),ee=Kte(n,e),te=(e,t)=>{e&&nr(e,r,9,t)},ne=(e,t)=>{let n=t[1];te(e,t),mt(e)?e.every(e=>e.length<=1)&&n():e.length<=1&&n()},x={mode:o,persisted:s,beforeEnter(t){let r=c;if(!n.isMounted)if(a)r=g||c;else return;t[Di]&&t[Di](!0);let i=ee[b];i&&$r(e,i)&&i.el[Di]&&i.el[Di](),te(r,[t])},enter(t){if(ee[b]===e)return;let r=l,i=u,o=d;if(!n.isMounted)if(a)r=_||l,i=v||u,o=y||d;else return;let s=!1;t[Oi]=e=>{s||(s=!0,te(e?o:i,[t]),x.delayedLeave&&x.delayedLeave(),t[Oi]=void 0)};let c=t[Oi].bind(null,!1);r?ne(r,[t,c]):c()},leave(t,r){let i=String(e.key);if(t[Oi]&&t[Oi](!0),n.isUnmounting)return r();te(f,[t]);let a=!1;t[Di]=n=>{a||(a=!0,r(),te(n?h:m,[t]),t[Di]=void 0,ee[i]===e&&delete ee[i])};let o=t[Di].bind(null,!1);ee[i]=e,p?ne(p,[t,o]):o()},clone(e){let a=vr(e,t,n,r,i);return i&&i(a),a}};return x}function yr(e){if(Ri(e))return e=ti(e),e.children=null,e}function qte(e){if(!Ri(e))return xi(e.type)&&e.children?Gte(e.children):e;if(e.component)return e.component.subTree;let{shapeFlag:t,children:n}=e;if(n){if(t&16)return n[0];if(t&32&&vt(n.default))return n.default()}}function br(e,t){e.shapeFlag&6&&e.component?(e.transition=t,br(e.component.subTree,t)):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function Jte(e,t=!1,n){let r=[],i=0;for(let a=0;a1)for(let e=0;en.value,set:e=>n.value=e})}return n}function Yte(e,t){let n;return!!((n=Object.getOwnPropertyDescriptor(e,t))&&!n.configurable)}function wr(e,t,n,r,i=!1){if(mt(e)){e.forEach((e,a)=>wr(e,t&&(mt(t)?t[a]:t),n,r,i));return}if(Li(r)&&!i){r.shapeFlag&512&&r.type.__asyncResolved&&r.component.subTree.component&&wr(e,t,n,r.component.subTree);return}let a=r.shapeFlag&4?si(r.component):r.el,o=i?null:a,{i:s,r:c}=e,l=t&&t.r,u=s.refs===at?s.refs={}:s.refs,d=s.setupState,f=vn(d),p=d===at?ct:e=>!Yte(u,e)&&pt(f,e),m=(e,t)=>!(t&&Yte(u,t));if(l!=null&&l!==c){if(Xte(t),yt(l))u[l]=null,p(l)&&(d[l]=null);else if(bn(l)){let e=t;m(l,e.k)&&(l.value=null),e.k&&(u[e.k]=null)}}if(vt(c))tr(c,s,12,[o,u]);else{let t=yt(c),r=bn(c);if(t||r){let s=()=>{if(e.f){let n=t?p(c)?d[c]:u[c]:m(c)||!e.k?c.value:u[e.k];if(i)mt(n)&&ft(n,a);else if(mt(n))n.includes(a)||n.push(a);else if(t)u[c]=[a],p(c)&&(d[c]=u[c]);else{let t=[a];m(c,e.k)&&(c.value=t),e.k&&(u[e.k]=t)}}else t?(u[c]=o,p(c)&&(d[c]=o)):r&&(m(c,e.k)&&(c.value=o),e.k&&(u[e.k]=o))};if(o){let t=()=>{s(),Mi.delete(e)};t.id=-1,Mi.set(e,t),la(t,n)}else Xte(e),s()}}}function Xte(e){let t=Mi.get(e);t&&(t.flags|=8,Mi.delete(e))}function Zte(e){let{mt:t,p:n,o:{patchProp:r,createText:i,nextSibling:a,parentNode:o,remove:s,insert:c,createComment:l}}=e,u=(e,t)=>{if(!t.hasChildNodes()){n(null,e,t),or(),t._vnode=e;return}d(t.firstChild,e,null,null,null),or(),t._vnode=e},d=(n,r,s,l,u,y=!1)=>{y||=!!r.dynamicChildren;let b=Fi(n)&&n.data===`[`,ee=()=>h(n,r,s,l,u,b),{type:te,ref:ne,shapeFlag:x,patchFlag:re}=r,ie=n.nodeType;r.el=n,re===-2&&(y=!1,r.dynamicChildren=null);let ae=null;switch(te){case da:ie===3?(n.data!==r.children&&(Ni(),n.data=r.children),ae=a(n)):r.children===``?(c(r.el=i(``),o(n),n),ae=n):ae=ee();break;case fa:v(n)?(ae=a(n),_(r.el=n.content.firstChild,n,s)):ae=ie!==8||b?ee():a(n);break;case pa:if(b&&(n=a(n),ie=n.nodeType),ie===1||ie===3){ae=n;let e=!r.children.length;for(let t=0;t{o||=!!t.dynamicChildren;let{type:c,dynamicProps:l,props:u,patchFlag:d,shapeFlag:f,dirs:m,transition:h}=t,g=c===`input`||c===`option`,y=!!l;if(g||y||d!==-1){m&&lr(t,null,n,`created`);let c=!1;if(v(e)){c=Lne(null,h)&&n&&n.vnode.props&&n.vnode.props.appear;let r=e.content.firstChild;if(c){let e=r.getAttribute(`class`);e&&(r.$cls=e),h.beforeEnter(r)}_(r,e,n),t.el=e=r}if(f&16&&!(u&&(u.innerHTML||u.textContent))){let r=p(e.firstChild,t,e,n,i,a,o);for(r&&!Tr(e,1)&&Ni();r;){let e=r;r=r.nextSibling,s(e)}}else if(f&8){let n=t.children;n[0]===` +`&&(e.tagName===`PRE`||e.tagName===`TEXTAREA`)&&(n=n.slice(1));let{textContent:r}=e;r!==n&&r!==n.replace(/\r\n|\r/g,` +`)&&(Tr(e,0)||Ni(),e.textContent=t.children)}if(u){if(g||y||!o||d&48){let t=e.tagName.includes(`-`),i=e.namespaceURI.includes(`svg`)?`svg`:e.namespaceURI.includes(`MathML`)?`mathml`:void 0;for(let a in u)(g&&(a.endsWith(`value`)||a===`indeterminate`)||lt(a)&&!Dt(a)||a[0]===`.`||t&&!Dt(a)||l&&l.includes(a))&&r(e,a,null,u[a],i,n)}else if(u.onClick)r(e,`onClick`,null,u.onClick,void 0,n);else if(d&4&&mn(u.style))for(let e in u.style)u.style[e]}let b;(b=u&&u.onVnodeBeforeMount)&&oi(b,n,t),m&&lr(t,null,n,`beforeMount`),((b=u&&u.onVnodeMounted)||m||c)&&Hne(()=>{b&&oi(b,n,t),c&&h.enter(e),m&&lr(t,null,n,`mounted`)},i)}return e.nextSibling},p=(e,t,r,o,s,l,u)=>{u||=!!t.dynamicChildren;let f=t.children,p=f.length,m=!1;for(let t=0;t{let{slotScopeIds:u}=t;u&&(i=i?i.concat(u):u);let d=o(e),f=p(a(e),t,d,n,r,i,s);return f&&Fi(f)&&f.data===`]`?a(t.anchor=f):(Ni(),c(t.anchor=l(`]`),d,f),f)},h=(e,t,r,i,c,l)=>{if(Qte(e,t)||Ni(),t.el=null,l){let t=g(e);for(;;){let n=a(e);if(n&&n!==t)s(n);else break}}let u=a(e),d=o(e);return s(e),n(null,t,d,u,r,i,Pi(d),c),r&&(r.vnode.el=t.el,One(r,t.el)),u},g=(e,t=`[`,n=`]`)=>{let r=0;for(;e;)if(e=a(e),e&&Fi(e)&&(e.data===t&&r++,e.data===n)){if(r===0)return a(e);r--}return e},_=(e,t,n)=>{let r=t.parentNode;r&&r.replaceChild(e,t);let i=n;for(;i;)i.vnode.el===t&&(i.vnode.el=i.subTree.el=e),i=i.parent},v=e=>e.nodeType===1&&e.tagName===`TEMPLATE`;return[u,d]}function Tr(e,t){if(t===0||t===1)for(;e&&!e.hasAttribute(Ii);)e=e.parentElement;return Er(e&&e.getAttribute(Ii),t)}function Er(e,t){if(e==null)return!1;if(e===``)return!0;{let n=e.split(`,`);return t===0&&n.includes(`children`)?!0:n.includes(lre[t])}}function Qte(e,t){return Tr(e.parentElement,1)||$te(e)||ene(t)}function $te(e){return e.nodeType===1&&Er(e.getAttribute(Ii),1)}function ene({props:e}){let t=e&&e[Ii];return typeof t==`string`&&Er(t,1)}function tne(e,t){if(Fi(e)&&e.data===`[`){let n=1,r=e.nextSibling;for(;r;){if(r.nodeType===1){if(t(r)===!1)break}else if(Fi(r))if(r.data===`]`){if(--n===0)break}else r.data===`[`&&n++;r=r.nextSibling}}else t(e)}function nne(e){vt(e)&&(e={loader:e});let{loader:t,loadingComponent:n,errorComponent:r,delay:i=200,hydrate:a,timeout:o,suspensible:s=!0,onError:c}=e,l=null,u,d=0,f=()=>(d++,l=null,p()),p=()=>{let e;return l||(e=l=t().catch(e=>{if(e=e instanceof Error?e:Error(String(e)),c)return new Promise((t,n)=>{c(e,()=>t(f()),()=>n(e),d+1)});throw e}).then(t=>e!==l&&l?l:(t&&(t.__esModule||t[Symbol.toStringTag]===`Module`)&&(t=t.default),u=t,t)))};return N({name:`AsyncComponentWrapper`,__asyncLoader:p,__asyncHydrate(e,t,n){let r=e.isConnected,i=!1;(t.bu||=[]).push(()=>i=!0);let o=()=>{i||!e.parentNode||r&&!e.isConnected||n()},s=a?()=>{let n=a(o,t=>tne(e,t));n&&(t.bum||=[]).push(n)}:o;u?s():p().then(()=>!t.isUnmounted&&s())},get __asyncResolved(){return u},setup(){let e=ya;if(Sr(e),u)return()=>Dr(u,e);let t=t=>{l=null,rr(t,e,13,!r)};if(s&&e.suspense||Ta)return p().then(t=>()=>Dr(t,e)).catch(e=>(t(e),()=>r?U(r,{error:e}):null));let a=A(!1),c=A(),d=A(!!i),f,m;return Wi(()=>{f!=null&&clearTimeout(f),m!=null&&clearTimeout(m)}),i&&(m=setTimeout(()=>{e.isUnmounted||(d.value=!1)},i)),o!=null&&(f=setTimeout(()=>{if(!e.isUnmounted&&!a.value&&!c.value){let e=Error(`Async component timed out after ${o}ms.`);t(e),c.value=e}},o)),p().then(()=>{e.isUnmounted||(a.value=!0,e.parent&&Ri(e.parent.vnode)&&e.parent.update())}).catch(n=>{if(e.isUnmounted){l=null;return}t(n),c.value=n}),()=>{if(a.value&&u)return Dr(u,e);if(c.value&&r)return U(r,{error:c.value});if(n&&!d.value)return Dr(n,e)}}})}function Dr(e,t){let{ref:n,props:r,children:i,ce:a}=t.vnode,o=U(e,r,i);return o.ref=n,o.ce=a,delete t.vnode.ce,o}function rne(e,t){ane(e,`a`,t)}function ine(e,t){ane(e,`da`,t)}function ane(e,t,n=ya){let r=e.__wdc||=()=>{let t=n;for(;t;){if(t.isDeactivated)return;t=t.parent}return e()};if(Or(t,r,n),n){let e=n.parent;for(;e&&e.parent;)Ri(e.parent.vnode)&&one(r,t,n,e),e=e.parent}}function one(e,t,n,r){let i=Or(t,e,r,!0);Wi(()=>{ft(r[t],i)},n)}function Or(e,t,n=ya,r=!1){if(n){let i=n[e]||(n[e]=[]),a=t.__weh||=(...r)=>{Xt();let i=Ca(n),a=nr(t,n,e,r);return i(),Zt(),a};return r?i.unshift(a):i.push(a),a}}function sne(e,t=ya){Or(`ec`,e,t)}function kr(e,t){return cne(Ki,e,!0,t)||e}function Ar(e){return yt(e)?cne(Ki,e,!1)||e:e||qi}function cne(e,t,n=!0,r=!1){let i=_i||ya;if(i){let n=i.type;if(e===Ki){let e=Qne(n,!1);if(e&&(e===t||e===At(t)||e===Mt(At(t))))return n}let a=lne(i[e]||n[e],t)||lne(i.appContext[e],t);return!a&&r?n:a}}function lne(e,t){return e&&(e[t]||e[At(t)]||e[Mt(At(t))])}function jr(e,t,n,r){let i,a=n&&n[r],o=mt(e);if(o||yt(e)){let n=o&&mn(e),r=!1,s=!1;n&&(r=!gn(e),s=hn(e),e=tn(e)),i=Array(e.length);for(let n=0,o=e.length;nt(e,n,void 0,a&&a[n]));else{let n=Object.keys(e);i=Array(n.length);for(let r=0,o=n.length;r{let t=r.fn(...e);return t&&(t.key=r.key),t}:r.fn)}return e}function P(e,t,n={},r,i,a){if(_i.ce||_i.parent&&Li(_i.parent)&&_i.parent.ce){let e=a!=null&&n.key==null?dt({},n,{key:a}):n,i=Object.keys(e).length>0;return t!=="default"&&(e.name=t),F(),L(H,null,[U(`slot`,e,r&&r())],i?-2:64)}let o=e[t];o&&o._c&&(o._d=!1);let s=ma.length;F();let c;try{let i=o&&une(o(n)),s=n.key||a||i&&i.key;c=L(H,{key:(s&&!bt(s)?s:`_${t}`)+(!i&&r?`_fb`:``)},i||(r?r():[]),i&&e._===1?64:-2)}catch(e){for(let e=ma.length;e>s;e--)Xr();throw e}finally{o&&o._c&&(o._d=!0)}return!i&&c.scopeId&&(c.slotScopeIds=[c.scopeId+`-s`]),c}function une(e){return e.some(e=>!Qr(e)||!(e.type===fa||e.type===H&&!une(e.children)))?e:null}function Nr(e,t){let n={};for(let r in e)n[t&&/[A-Z]/.test(r)?`on:${r}`:Nt(r)]=e[r];return n}function Pr(){return dne(`useSlots`).slots}function Fr(){return dne(`useAttrs`).attrs}function dne(e){let t=ba();return t.setupContext||=Zne(t)}function Ir(e){return mt(e)?e.reduce((e,t)=>(e[t]=null,e),{}):e}function Lr(e,t){return!e||!t?e||t:mt(e)&&mt(t)?e.concat(t):dt({},Ir(e),Ir(t))}function fne(e,t){let n={};for(let r in e)t.includes(r)||Object.defineProperty(n,r,{enumerable:!0,get:()=>e[r]});return n}function pne(e){let t=Rr(e),n=e.proxy,r=e.ctx;Zi=!1,t.beforeCreate&&hne(t.beforeCreate,e,`bc`);let{data:i,computed:a,methods:o,watch:s,provide:c,inject:l,created:u,beforeMount:d,mounted:f,beforeUpdate:p,updated:m,activated:h,deactivated:g,beforeDestroy:_,beforeUnmount:v,destroyed:y,unmounted:b,render:ee,renderTracked:te,renderTriggered:ne,errorCaptured:x,serverPrefetch:re,expose:ie,inheritAttrs:ae,components:oe,directives:S,filters:C}=t;if(l&&mne(l,r,null),o)for(let e in o){let t=o[e];vt(t)&&(r[e]=t.bind(n))}if(i){let t=i.call(n,n);xt(t)&&(e.data=un(t))}if(Zi=!0,a)for(let e in a){let t=a[e],i=vt(t)?t.bind(n,n):vt(t.get)?t.get.bind(n,n):st,o=!vt(t)&&vt(t.set)?t.set.bind(n):st,s=W({get:i,set:o});Object.defineProperty(r,e,{enumerable:!0,configurable:!0,get:()=>s.value,set:e=>s.value=e})}if(s)for(let e in s)gne(s[e],r,n,e);if(c){let e=vt(c)?c.call(n):c;Reflect.ownKeys(e).forEach(t=>{ur(t,e[t])})}u&&hne(u,e,`c`);function se(e,t){mt(t)?t.forEach(t=>e(t.bind(n))):t&&e(t.bind(n))}if(se(Bi,d),se(Vi,f),se(Hi,p),se(ure,m),se(rne,h),se(ine,g),se(sne,x),se(fre,te),se(dre,ne),se(Ui,v),se(Wi,b),se(Gi,re),mt(ie))if(ie.length){let t=e.exposed||={};ie.forEach(e=>{Object.defineProperty(t,e,{get:()=>n[e],set:t=>n[e]=t,enumerable:!0})})}else e.exposed||={};ee&&e.render===st&&(e.render=ee),ae!=null&&(e.inheritAttrs=ae),oe&&(e.components=oe),S&&(e.directives=S),re&&Sr(e)}function mne(e,t,n=st){mt(e)&&(e=Br(e));for(let n in e){let r=e[n],i;i=xt(r)?`default`in r?dr(r.from||n,r.default,!0):dr(r.from||n):dr(r),bn(i)?Object.defineProperty(t,n,{enumerable:!0,configurable:!0,get:()=>i.value,set:e=>i.value=e}):t[n]=i}}function hne(e,t,n){nr(mt(e)?e.map(e=>e.bind(t.proxy)):e.bind(t.proxy),t,n)}function gne(e,t,n,r){let i=r.includes(`.`)?Hte(n,r):()=>n[r];if(yt(e)){let n=t[e];vt(n)&&pr(i,n)}else if(vt(e))pr(i,e.bind(n));else if(xt(e))if(mt(e))e.forEach(e=>gne(e,t,n,r));else{let r=vt(e.handler)?e.handler.bind(n):t[e.handler];vt(r)&&pr(i,r,e)}}function Rr(e){let t=e.type,{mixins:n,extends:r}=t,{mixins:i,optionsCache:a,config:{optionMergeStrategies:o}}=e.appContext,s=a.get(t),c;return s?c=s:!i.length&&!n&&!r?c=t:(c={},i.length&&i.forEach(e=>zr(c,e,o,!0)),zr(c,t,o)),xt(t)&&a.set(t,c),c}function zr(e,t,n,r=!1){let{mixins:i,extends:a}=t;a&&zr(e,a,n,!0),i&&i.forEach(t=>zr(e,t,n,!0));for(let i in t)if(!(r&&i===`expose`)){let r=mre[i]||n&&n[i];e[i]=r?r(e[i],t[i]):t[i]}return e}function _ne(e,t){return t?e?function(){return dt(vt(e)?e.call(this,this):e,vt(t)?t.call(this,this):t)}:t:e}function vne(e,t){return Hr(Br(e),Br(t))}function Br(e){if(mt(e)){let t={};for(let n=0;n{let c,l=at,u;return Bte(()=>{let t=e[i];Pt(c,t)&&(c=t,s())}),{get(){return o(),n.get?n.get(c):c},set(e){let o=n.set?n.set(e):e;if(!Pt(o,c)&&!(l!==at&&Pt(e,l)))return;let d=r.vnode.props,f=!!(d&&(t in d||i in d||a in d)&&(`onUpdate:${t}`in d||`onUpdate:${i}`in d||`onUpdate:${a}`in d));f||(c=e,s()),r.emit(`update:${t}`,o),Pt(e,l)&&(Pt(e,o)&&!Pt(o,u)||f&&l!==at&&!Pt(o,c))&&s(),l=e,u=o}}});return s[Symbol.iterator]=()=>{let e=0;return{next(){return e<2?{value:e++?o||at:s,done:!1}:{done:!0}}}},s}function Cne(e,t,...n){if(e.isUnmounted)return;let r=e.vnode.props||at,i=n,a=t.startsWith(`update:`),o=a&&$i(r,t.slice(7));o&&(o.trim&&(i=n.map(e=>yt(e)?e.trim():e)),o.number&&(i=n.map(Lt)));let s,c=r[s=Nt(t)]||r[s=Nt(At(t))];!c&&a&&(c=r[s=Nt(jt(t))]),c&&nr(c,e,6,i);let l=r[s+`Once`];if(l){if(!e.emitted)e.emitted={};else if(e.emitted[s])return;e.emitted[s]=!0,nr(l,e,6,i)}}function wne(e,t,n=!1){let r=n?ea:t.emitsCache,i=r.get(e);if(i!==void 0)return i;let a=e.emits,o={},s=!1;if(!vt(e)){let r=e=>{let n=wne(e,t,!0);n&&(s=!0,dt(o,n))};!n&&t.mixins.length&&t.mixins.forEach(r),e.extends&&r(e.extends),e.mixins&&e.mixins.forEach(r)}return!a&&!s?(xt(e)&&r.set(e,null),null):(mt(a)?a.forEach(e=>o[e]=null):dt(o,a),xt(e)&&r.set(e,o),o)}function Wr(e,t){return!e||!lt(t)?!1:(t=t.slice(2),t=t===`Once`?t:t.replace(/Once$/,``),pt(e,t[0].toLowerCase()+t.slice(1))||pt(e,jt(t))||pt(e,t))}function Gr(e){let{type:t,vnode:n,proxy:r,withProxy:i,propsOptions:[a],slots:o,attrs:s,emit:c,render:l,renderCache:u,props:d,data:f,setupState:p,ctx:m,inheritAttrs:h}=e,g=sr(e),_,v;try{if(n.shapeFlag&4){let e=i||r,t=e;_=ri(l.call(t,e,u,d,p,f,m)),v=s}else{let e=t;_=ri(e.length>1?e(d,{attrs:s,slots:o,emit:c}):e(d,null)),v=t.props?s:gre(s)}}catch(t){ma.length=0,rr(t,e,1),_=U(fa)}let y=_;if(v&&h!==!1){let e=Object.keys(v),{shapeFlag:t}=y;e.length&&t&7&&(a&&e.some(ut)&&(v=_re(v,a)),y=ti(y,v,!1,!0))}return n.dirs&&(y=ti(y,null,!1,!0),y.dirs=y.dirs?y.dirs.concat(n.dirs):n.dirs),n.transition&&br(y,n.transition),_=y,sr(g),_}function Tne(e,t,n){let{props:r,children:i,component:a}=e,{props:o,children:s,patchFlag:c}=t,l=a.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&c>=0){if(c&1024)return!0;if(c&16)return r?Ene(r,o,l):!!o;if(c&8){let e=t.dynamicProps;for(let t=0;t0)&&!(o&16)){if(o&8){let n=e.vnode.dynamicProps;for(let r=0;r{c=!0;let[n,r]=Mne(e,t,!0);dt(o,n),r&&s.push(...r)};!n&&t.mixins.length&&t.mixins.forEach(r),e.extends&&r(e.extends),e.mixins&&e.mixins.forEach(r)}if(!a&&!c)return xt(e)&&r.set(e,ot),ot;if(mt(a))for(let e=0;e{if(e===t)return;e&&!$r(e,t)&&(r=he(e),fe(e,i,a,!0),e=null),t.patchFlag===-2&&(c=!1,t.dynamicChildren=null);let{type:l,ref:u,shapeFlag:d}=t;switch(l){case da:g(e,t,n,r);break;case fa:_(e,t,n,r);break;case pa:e??v(t,n,r,o);break;case H:oe(e,t,n,r,i,a,o,s,c);break;default:d&1?ee(e,t,n,r,i,a,o,s,c):d&6?S(e,t,n,r,i,a,o,s,c):(d&64||d&128)&&l.process(e,t,n,r,i,a,o,s,c,ve)}u!=null&&i?wr(u,e&&e.ref,a,t||e,!t):u==null&&e&&e.ref!=null&&wr(e.ref,null,a,e,!0)},g=(e,t,n,i)=>{if(e==null)r(t.el=s(t.children),n,i);else{let n=t.el=e.el;t.children!==e.children&&l(n,t.children)}},_=(e,t,n,i)=>{e==null?r(t.el=c(t.children||``),n,i):t.el=e.el},v=(e,t,n,r)=>{[e.el,e.anchor]=m(e.children,t,n,r,e.el,e.anchor)},y=({el:e,anchor:t},n,i)=>{let a;for(;e&&e!==t;)a=f(e),r(e,n,i),e=a;r(t,n,i)},b=({el:e,anchor:t})=>{let n;for(;e&&e!==t;)n=f(e),i(e),e=n;i(t)},ee=(e,t,n,r,i,a,o,s,c)=>{if(t.type===`svg`?o=`svg`:t.type===`math`&&(o=`mathml`),e==null)te(t,n,r,i,a,o,s,c);else{let n=e.el&&e.el._isVueCE?e.el:null;try{n&&n._beginPatch(),re(e,t,i,a,o,s,c)}finally{n&&n._endPatch()}}},te=(e,t,n,i,s,c,l,d)=>{let f,p,{props:m,shapeFlag:h,transition:g,dirs:_}=e;if(f=e.el=o(e.type,c,m&&m.is,m),h&8?u(f,e.children):h&16&&x(e.children,f,null,i,s,qr(e,c),l,d),_&&lr(e,null,i,`created`),ne(f,e,e.scopeId,l,i),m){for(let e in m)e!==`value`&&!Dt(e)&&a(f,e,null,m[e],c,i);`value`in m&&a(f,`value`,null,m.value,c),(p=m.onVnodeBeforeMount)&&oi(p,i,e)}_&&lr(e,null,i,`beforeMount`);let v=Lne(s,g);v&&g.beforeEnter(f),r(f,t,n),((p=m&&m.onVnodeMounted)||v||_)&&la(()=>{try{p&&oi(p,i,e),v&&g.enter(f),_&&lr(e,null,i,`mounted`)}finally{}},s)},ne=(e,t,n,r,i)=>{if(n&&p(e,n),r)for(let t=0;t{for(let l=c;l{let c=t.el=e.el,{patchFlag:l,dynamicChildren:d,dirs:f}=t;l|=e.patchFlag&16;let p=e.props||at,m=t.props||at,h;if(n&&Jr(n,!1),(h=m.onVnodeBeforeUpdate)&&oi(h,n,t,e),f&&lr(t,e,n,`beforeUpdate`),n&&Jr(n,!0),d&&(!e.dynamicChildren||e.dynamicChildren.length!==d.length)&&(l=0,s=!1,d=null),(p.innerHTML&&m.innerHTML==null||p.textContent&&m.textContent==null)&&u(c,``),d?ie(e.dynamicChildren,d,c,n,r,qr(t,i),o):s||ue(e,t,c,null,n,r,qr(t,i),o,!1),l>0){if(l&16)ae(c,p,m,n,i);else if(l&2&&p.class!==m.class&&a(c,`class`,null,m.class,i),l&4&&a(c,`style`,p.style,m.style,i),l&8){let e=t.dynamicProps;for(let t=0;t{h&&oi(h,n,t,e),f&&lr(t,e,n,`updated`)},r)},ie=(e,t,n,r,i,a,o)=>{for(let s=0;s{if(t!==n){if(t!==at)for(let o in t)!Dt(o)&&!(o in n)&&a(e,o,t[o],null,i,r);for(let o in n){if(Dt(o))continue;let s=n[o],c=t[o];s!==c&&o!==`value`&&a(e,o,c,s,i,r)}`value`in n&&a(e,`value`,t.value,n.value,i)}},oe=(e,t,n,i,a,o,c,l,u)=>{let d=t.el=e?e.el:s(``),f=t.anchor=e?e.anchor:s(``),{patchFlag:p,dynamicChildren:m,slotScopeIds:h}=t;h&&(l=l?l.concat(h):h),e==null?(r(d,n,i),r(f,n,i),x(t.children||[],n,f,a,o,c,l,u)):p>0&&p&64&&m&&e.dynamicChildren&&e.dynamicChildren.length===m.length?(ie(e.dynamicChildren,m,n,a,o,c,l),(t.key!=null||a&&t===a.subTree)&&Yr(e,t,!0)):ue(e,t,n,f,a,o,c,l,u)},S=(e,t,n,r,i,a,o,s,c)=>{t.slotScopeIds=s,e==null?t.shapeFlag&512?i.ctx.activate(t,n,r,o,c):C(t,n,r,i,a,o,c):se(e,t,c)},C=(e,t,n,r,i,a,o)=>{let s=e.component=Gne(e,r,i);if(Ri(e)&&(s.ctx.renderer=ve),qne(s,!1,o),s.asyncDep){if(i&&i.registerDep(s,ce,o),!e.el){let r=s.subTree=U(fa);_(null,r,t,n),e.placeholder=r.el}}else ce(s,e,t,n,i,a,o)},se=(e,t,n)=>{let r=t.component=e.component;if(Tne(e,t,n))if(r.asyncDep&&!r.asyncResolved){le(r,t,n);return}else r.next=t,r.update();else t.el=e.el,r.vnode=t},ce=(e,t,n,r,i,a,o)=>{let s=()=>{if(e.isMounted){let{next:t,bu:n,u:r,parent:s,vnode:c}=e;{let n=zne(e);if(n){t&&(t.el=c.el,le(e,t,o)),n.asyncDep.then(()=>{la(()=>{e.isUnmounted||l()},i)});return}}let u=t,f;Jr(e,!1),t?(t.el=c.el,le(e,t,o)):t=c,n&&Ft(n),(f=t.props&&t.props.onVnodeBeforeUpdate)&&oi(f,s,t,c),Jr(e,!0);let p=Gr(e),m=e.subTree;e.subTree=p,h(m,p,d(m.el),he(m),e,i,a),t.el=p.el,u===null&&One(e,p.el),r&&la(r,i),(f=t.props&&t.props.onVnodeUpdated)&&la(()=>oi(f,s,t,c),i)}else{let o,{el:s,props:c}=t,{bm:l,m:u,parent:d,root:f,type:p}=e,m=Li(t);if(Jr(e,!1),l&&Ft(l),!m&&(o=c&&c.onVnodeBeforeMount)&&oi(o,d,t),Jr(e,!0),s&&be){let t=()=>{e.subTree=Gr(e),be(s,e.subTree,e,i,null)};m&&p.__asyncHydrate?p.__asyncHydrate(s,e,t):t()}else{f.ce&&f.ce._hasShadowRoot()&&f.ce._injectChildStyle(p,e.parent?e.parent.type:void 0);let o=e.subTree=Gr(e);h(null,o,n,r,e,i,a),t.el=o.el}if(u&&la(u,i),!m&&(o=c&&c.onVnodeMounted)){let e=t;la(()=>oi(o,d,e),i)}(t.shapeFlag&256||d&&Li(d.vnode)&&d.vnode.shapeFlag&256)&&e.a&&la(e.a,i),e.isMounted=!0,t=n=r=null}};e.scope.on();let c=e.effect=new On(s);e.scope.off();let l=e.update=c.run.bind(c),u=e.job=c.runIfDirty.bind(c);u.i=e,u.id=e.uid,c.scheduler=()=>ar(u),Jr(e,!0),l()},le=(e,t,n)=>{t.component=e;let r=e.vnode.props;e.vnode=t,e.next=null,Ane(e,t.props,r,n),xre(e,t.children,n),Xt(),Lte(e),Zt()},ue=(e,t,n,r,i,a,o,s,c=!1)=>{let l=e&&e.children,d=e?e.shapeFlag:0,f=t.children,{patchFlag:p,shapeFlag:m}=t;if(p>0){if(p&128){w(l,f,n,r,i,a,o,s,c);return}else if(p&256){de(l,f,n,r,i,a,o,s,c);return}}m&8?(d&16&&me(l,i,a),f!==l&&u(n,f)):d&16?m&16?w(l,f,n,r,i,a,o,s,c):me(l,i,a,!0):(d&8&&u(n,``),m&16&&x(f,n,r,i,a,o,s,c))},de=(e,t,n,r,i,a,o,s,c)=>{e||=ot,t||=ot;let l=e.length,u=t.length,d=Math.min(l,u),f;for(f=0;fu?me(e,i,a,!0,!1,d):x(t,n,r,i,a,o,s,c,d)},w=(e,t,n,r,i,a,o,s,c)=>{let l=0,u=t.length,d=e.length-1,f=u-1;for(;l<=d&&l<=f;){let r=e[l],u=t[l]=c?ii(t[l]):ri(t[l]);if($r(r,u))h(r,u,n,null,i,a,o,s,c);else break;l++}for(;l<=d&&l<=f;){let r=e[d],l=t[f]=c?ii(t[f]):ri(t[f]);if($r(r,l))h(r,l,n,null,i,a,o,s,c);else break;d--,f--}if(l>d){if(l<=f){let e=f+1,d=ef)for(;l<=d;)fe(e[l],i,a,!0),l++;else{let p=l,m=l,g=new Map;for(l=m;l<=f;l++){let e=t[l]=c?ii(t[l]):ri(t[l]);e.key!=null&&g.set(e.key,l)}let _,v=0,y=f-m+1,b=!1,ee=0,te=Array(y);for(l=0;l=y){fe(r,i,a,!0);continue}let u;if(r.key!=null)u=g.get(r.key);else for(_=m;_<=f;_++)if(te[_-m]===0&&$r(r,t[_])){u=_;break}u===void 0?fe(r,i,a,!0):(te[u-m]=l+1,u>=ee?ee=u:b=!0,h(r,t[u],n,null,i,a,o,s,c),v++)}let ne=b?Rne(te):ot;for(_=ne.length-1,l=y-1;l>=0;l--){let e=m+l,d=t[e],f=t[e+1],p=e+1{let{el:s,type:c,transition:l,children:u,shapeFlag:d}=e;if(d&6){T(e.component.subTree,t,n,a);return}if(d&128){e.suspense.move(t,n,a);return}if(d&64){c.move(e,t,n,ve);return}if(c===H){r(s,t,n);for(let e=0;el.enter(s),o));else{let{leave:a,delayLeave:o,afterLeave:c}=l,u=()=>{e.ctx.isUnmounted?i(s):r(s,t,n)},d=()=>{let e=s._isLeaving||!!s[Di];s._isLeaving&&s[Di](!0),l.persisted&&!e?u():a(s,()=>{u(),c&&c()})};o?o(s,u,d):d()}else r(s,t,n)},fe=(e,t,n,r=!1,i=!1)=>{let{type:a,props:o,ref:s,children:c,dynamicChildren:l,shapeFlag:u,patchFlag:d,dirs:f,cacheIndex:p,memo:m}=e;if(d===-2&&(i=!1),s!=null&&(Xt(),wr(s,null,n,e,!0),Zt()),p!=null&&(t.renderCache[p]=void 0),u&256){t.ctx.deactivate(e);return}let h=u&1&&f,g=!Li(e),_;if(g&&(_=o&&o.onVnodeBeforeUnmount)&&oi(_,t,e),u&6)D(e.component,n,r);else{if(u&128){e.suspense.unmount(n,r);return}h&&lr(e,null,t,`beforeUnmount`),u&64?e.type.remove(e,t,n,ve,r):l&&!l.hasOnce&&(a!==H||d>0&&d&64)?me(l,t,n,!1,!0):(a===H&&d&384||!i&&u&16)&&me(c,t,n),r&&pe(e)}let v=m!=null&&p==null;(g&&(_=o&&o.onVnodeUnmounted)||h||v)&&la(()=>{_&&oi(_,t,e),h&&lr(e,null,t,`unmounted`),v&&(e.el=null)},n)},pe=e=>{let{type:t,el:n,anchor:r,transition:a}=e;if(t===H){E(n,r);return}if(t===pa){b(e);return}let o=()=>{i(n),a&&!a.persisted&&a.afterLeave&&a.afterLeave()};if(e.shapeFlag&1&&a&&!a.persisted){let{leave:t,delayLeave:r}=a,i=()=>t(n,o);r?r(e.el,o,i):i()}else o()},E=(e,t)=>{let n;for(;e!==t;)n=f(e),i(e),e=n;i(t)},D=(e,t,n)=>{let{bum:r,scope:i,job:a,subTree:o,um:s,m:c,a:l}=e;Bne(c),Bne(l),r&&Ft(r),i.stop(),a&&(a.flags|=8,fe(o,e,t,n)),s&&la(s,t),la(()=>{e.isUnmounted=!0},t)},me=(e,t,n,r=!1,i=!1,a=0)=>{for(let o=a;o{if(e.shapeFlag&6)return he(e.component.subTree);if(e.shapeFlag&128)return e.suspense.next();let t=f(e.anchor||e.el),n=t&&t[bi];return n?f(n):t},ge=!1,_e=(e,t,n)=>{let r;e==null?t._vnode&&(fe(t._vnode,null,null,!0),r=t._vnode.component):h(t._vnode||null,e,t,null,null,null,n),t._vnode=e,ge||=(ge=!0,Lte(r),or(),!1)},ve={p:h,um:fe,m:T,r:pe,mt:C,mc:x,pc:ue,pbc:ie,n:he,o:e},ye,be;return t&&([ye,be]=t(ve)),{render:_e,hydrate:ye,createApp:Sne(_e,ye)}}function qr({type:e,props:t},n){return n===`svg`&&e===`foreignObject`||n===`mathml`&&e===`annotation-xml`&&t&&t.encoding&&t.encoding.includes(`html`)?void 0:n}function Jr({effect:e,job:t},n){n?(e.flags|=32,t.flags|=4):(e.flags&=-33,t.flags&=-5)}function Lne(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function Yr(e,t,n=!1){let r=e.children,i=t.children;if(mt(r)&&mt(i))for(let e=0;e>1,e[n[s]]0&&(t[r]=n[a-1]),n[a]=r)}}for(a=n.length,o=n[a-1];a-->0;)n[a]=o,o=t[o];return n}function zne(e){let t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:zne(t)}function Bne(e){if(e)for(let t=0;t0?ha||ot:null,Xr(),ga>0&&ha&&ha.push(e),e}function I(e,t,n,r,i,a){return Une(R(e,t,n,r,i,a,!0))}function L(e,t,n,r,i){return Une(U(e,t,n,r,i,!0))}function Qr(e){return e?e.__v_isVNode===!0:!1}function $r(e,t){return e.type===t.type&&e.key===t.key}function R(e,t=null,n=null,r=0,i=null,a=e===H?0:1,o=!1,s=!1){let c={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&_a(t),ref:t&&va(t),scopeId:vi,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetStart:null,targetAnchor:null,staticCount:0,shapeFlag:a,patchFlag:r,dynamicProps:i,dynamicChildren:null,appContext:null,ctx:_i};return s?(ai(c,n),a&128&&e.normalize(c)):n&&(c.shapeFlag|=yt(n)?8:16),ga>0&&!o&&ha&&(c.patchFlag>0||a&6)&&c.patchFlag!==32&&ha.push(c),c}function Wne(e,t=null,n=null,r=0,i=null,a=!1){if((!e||e===qi)&&(e=fa),Qr(e)){let r=ti(e,t,!0);return n&&ai(r,n),ga>0&&!a&&ha&&(r.shapeFlag&6?ha[ha.indexOf(e)]=r:ha.push(r)),r.patchFlag=-2,r}if($ne(e)&&(e=e.__vccOpts),t){t=ei(t);let{class:e,style:n}=t;e&&!yt(e)&&(t.class=O(e)),xt(n)&&(_n(n)&&!mt(n)&&(n=dt({},n)),t.style=tt(n))}let o=yt(e)?1:ua(e)?128:xi(e)?64:xt(e)?4:vt(e)?2:0;return R(e,t,n,r,i,o,a,!0)}function ei(e){return e?_n(e)||ra(e)?dt({},e):e:null}function ti(e,t,n=!1,r=!1){let{props:i,ref:a,patchFlag:o,children:s,transition:c}=e,l=t?V(i||{},t):i,u={__v_isVNode:!0,__v_skip:!0,type:e.type,props:l,key:l&&_a(l),ref:t&&t.ref?n&&a?mt(a)?a.concat(va(t)):[a,va(t)]:va(t):a,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:s,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==H?o===-1?16:o|16:o,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:c,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&ti(e.ssContent),ssFallback:e.ssFallback&&ti(e.ssFallback),placeholder:e.placeholder,el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return c&&r&&br(u,c.clone(u)),u}function z(e=` `,t=0){return U(da,null,e,t)}function ni(e,t){let n=U(pa,null,e);return n.staticCount=t,n}function B(e=``,t=!1){return t?(F(),L(fa,null,e)):U(fa,null,e)}function ri(e){return e==null||typeof e==`boolean`?U(fa):mt(e)?U(H,null,e.slice()):Qr(e)?ii(e):U(da,null,String(e))}function ii(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:ti(e)}function ai(e,t){let n=0,{shapeFlag:r}=e;if(t==null)t=null;else if(mt(t))n=16;else if(typeof t==`object`)if(r&65){let n=t.default;n&&(n._c&&(n._d=!1),ai(e,n()),n._c&&(n._d=!0));return}else{n=32;let r=t._;!r&&!ra(t)?t._ctx=_i:r===3&&_i&&(_i.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else if(vt(t)){if(r&65){ai(e,{default:t});return}t={default:t,_ctx:_i},n=32}else t=String(t),r&64?(n=16,t=[z(t)]):n=8;e.children=t,e.shapeFlag|=n}function V(...e){let t={};for(let n=0;n1?Zne(e):null,i=Ca(e),a=tr(r,e,0,[e.props,n]),o=St(a);if(Zt(),i(),(o||e.sp)&&!Li(e)&&Sr(e),o){if(a.then(wa,wa),t)return a.then(n=>{Yne(e,n,t)}).catch(t=>{rr(t,e,0)});e.asyncDep=a}else Yne(e,a,t)}else Xne(e,t)}function Yne(e,t,n){vt(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:xt(t)&&(e.setupState=ote(t)),Xne(e,n)}function Xne(e,t,n){let r=e.type;if(!e.render){if(!t&&wre&&!r.render){let t=r.template||Rr(e).template;if(t){let{isCustomElement:n,compilerOptions:i}=e.appContext.config,{delimiters:a,compilerOptions:o}=r;r.render=wre(t,dt(dt({isCustomElement:n,delimiters:a},i),o))}}e.render=r.render||st,Tre&&Tre(e)}{let t=Ca(e);Xt();try{pne(e)}finally{Zt(),t()}}}function Zne(e){return{attrs:new Proxy(e.attrs,Ere),slots:e.slots,emit:e.emit,expose:t=>{e.exposed=t||{}}}}function si(e){return e.exposed?e.exposeProxy||=new Proxy(ote(yn(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in Yi)return Yi[n](e)},has(e,t){return t in e||t in Yi}}):e.proxy}function Qne(e,t=!0){return vt(e)?e.displayName||e.name:e.name||t&&e.__name}function $ne(e){return vt(e)&&`__vccOpts`in e}function ci(e,t,n){try{Zr(-1);let r=arguments.length;return r===2?xt(t)&&!mt(t)?Qr(t)?U(e,null,[t]):U(e,t):U(e,null,t):(r>3?n=Array.prototype.slice.call(arguments,2):r===3&&Qr(n)&&(n=[n]),U(e,t,n))}finally{Zr(1)}}var li,ui,di,fi,pi,mi,hi,gi,_i,vi,ere,tre,yi,bi,xi,Si,nre,Ci,wi,Ti,rre,Ei,Di,Oi,ki,Ai,ji,ire,are,Mi,ore,Ni,sre,cre,Pi,Fi,Ii,lre,Li,Ri,zi,Bi,Vi,Hi,ure,Ui,Wi,Gi,dre,fre,Ki,qi,Ji,Yi,Xi,pre,Zi,mre,hre,Qi,$i,ea,gre,_re,ta,na,ra,vre,ia,aa,yre,oa,sa,ca,bre,xre,la,ua,H,da,fa,pa,ma,ha,ga,_a,va,U,Sre,Cre,ya,ba,xa,Sa,Ca,wa,Ta,wre,Tre,Ere,W,Dre,Ore=s((()=>{Mte(),Ut(),li=[],ui=-1,di=[],fi=null,pi=0,mi=Promise.resolve(),hi=null,gi=e=>e.id==null?e.flags&2?-1:1/0:e.id,_i=null,vi=null,ere=Symbol.for(`v-scx`),tre=()=>dr(ere),yi=new WeakMap,bi=Symbol(`_vte`),xi=e=>e.__isTeleport,Si=e=>e&&(e.disabled||e.disabled===``),nre=e=>e&&(e.defer||e.defer===``),Ci=e=>typeof SVGElement<`u`&&e instanceof SVGElement,wi=e=>typeof MathMLElement==`function`&&e instanceof MathMLElement,Ti=(e,t)=>{let n=e&&e.to;return yt(n)?t?t(n):null:n},rre={name:`Teleport`,__isTeleport:!0,process(e,t,n,r,i,a,o,s,c,l){let{mc:u,pc:d,pbc:f,o:{insert:p,querySelector:m,createText:h,createComment:g,parentNode:_}}=l,v=Si(t.props),{dynamicChildren:y}=t,b=(e,t,n)=>{e.shapeFlag&16&&u(e.children,t,n,i,a,o,s,c)},ee=(e=t)=>{let n=Si(e.props),r=e.target=Ti(e.props,m),a=_r(r,e,h,p);r&&(o!==`svg`&&Ci(r)?o=`svg`:o!==`mathml`&&wi(r)&&(o=`mathml`),i&&i.isCE&&(i.ce._teleportTargets||(i.ce._teleportTargets=new Set)).add(r),n||(b(e,r,a),gr(e,!1)))},te=e=>{let t=()=>{if(yi.get(e)===t){if(yi.delete(e),Si(e.props)){let t=_(e.el)||n;b(e,t,e.anchor),gr(e,!0)}ee(e)}};yi.set(e,t),la(t,a)};if(e==null){let e=t.el=h(``),i=t.anchor=h(``);if(p(e,n,r),p(i,n,r),nre(t.props)||a&&a.pendingBranch){te(t);return}v&&(b(t,n,i),gr(t,!0)),ee()}else{t.el=e.el;let r=t.anchor=e.anchor,u=yi.get(e);if(u){u.flags|=8,yi.delete(e),te(t);return}t.targetStart=e.targetStart;let p=t.target=e.target,h=t.targetAnchor=e.targetAnchor,g=Si(e.props),_=g?n:p,b=g?r:h;if(o===`svg`||Ci(p)?o=`svg`:(o===`mathml`||wi(p))&&(o=`mathml`),y?(f(e.dynamicChildren,y,_,i,a,o,s),Yr(e,t,!0)):c||d(e,t,_,b,i,a,o,s,!1),v)g?t.props&&e.props&&t.props.to!==e.props.to&&(t.props.to=e.props.to):hr(t,n,r,l,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){let e=Ti(t.props,m);e&&(t.target=e,hr(t,e,null,l,0))}else g&&hr(t,p,h,l,1);gr(t,v)}},remove(e,t,n,{um:r,o:{remove:i}},a){let{shapeFlag:o,children:s,anchor:c,targetStart:l,targetAnchor:u,target:d,props:f}=e,p=Si(f),m=a||!p,h=yi.get(e);if(h&&(h.flags|=8,yi.delete(e)),d&&(i(l),i(u)),a&&i(c),!h&&(p||d)&&o&16)for(let e=0;e{let t=e.subTree;return t.component?ji(t.component):t},ire={name:`BaseTransition`,props:Ai,setup(e,{slots:t}){let n=ba(),r=Wte();return()=>{let i=t.default&&Jte(t.default(),!0),a=i&&i.length?Gte(i):n.subTree?B():void 0;if(!a)return;let o=vn(e),{mode:s}=o;if(r.isLeaving)return yr(a);let c=qte(a);if(!c)return yr(a);let l=vr(c,o,r,n,e=>l=e);c.type!==fa&&br(c,l);let u=n.subTree&&qte(n.subTree);if(u&&u.type!==fa&&!$r(u,c)&&ji(n).type!==fa){let e=vr(u,o,r,n);if(br(u,e),s===`out-in`&&c.type!==fa)return r.isLeaving=!0,e.afterLeave=()=>{r.isLeaving=!1,n.job.flags&8||n.update(),delete e.afterLeave,u=void 0},yr(a);s===`in-out`&&c.type!==fa?e.delayLeave=(e,t,n)=>{let i=Kte(r,u);i[String(u.key)]=u,e[Di]=()=>{t(),e[Di]=void 0,delete l.delayedLeave,u=void 0},l.delayedLeave=()=>{n(),delete l.delayedLeave,u=void 0}}:u=void 0}else u&&=void 0;return a}}},are=ire,Mi=new WeakMap,ore=!1,Ni=()=>{ore||=(console.error(`Hydration completed but contains mismatches.`),!0)},sre=e=>e.namespaceURI.includes(`svg`)&&e.tagName!==`foreignObject`,cre=e=>e.namespaceURI.includes(`MathML`),Pi=e=>{if(e.nodeType===1){if(sre(e))return`svg`;if(cre(e))return`mathml`}},Fi=e=>e.nodeType===8,Ii=`data-allow-mismatch`,lre={0:`text`,1:`children`,2:`class`,3:`style`,4:`attribute`},Rt().requestIdleCallback,Rt().cancelIdleCallback,Li=e=>!!e.type.__asyncLoader,Ri=e=>e.type.__isKeepAlive,zi=e=>(t,n=ya)=>{(!Ta||e===`sp`)&&Or(e,(...e)=>t(...e),n)},Bi=zi(`bm`),Vi=zi(`m`),Hi=zi(`bu`),ure=zi(`u`),Ui=zi(`bum`),Wi=zi(`um`),Gi=zi(`sp`),dre=zi(`rtg`),fre=zi(`rtc`),Ki=`components`,qi=Symbol.for(`v-ndc`),Ji=e=>e?Kne(e)?si(e):Ji(e.parent):null,Yi=dt(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>Ji(e.parent),$root:e=>Ji(e.root),$host:e=>e.ce,$emit:e=>e.emit,$options:e=>Rr(e),$forceUpdate:e=>e.f||=()=>{ar(e.update)},$nextTick:e=>e.n||=ir.bind(e.proxy),$watch:e=>Vte.bind(e)}),Xi=(e,t)=>e!==at&&!e.__isScriptSetup&&pt(e,t),pre={get({_:e},t){if(t===`__v_skip`)return!0;let{ctx:n,setupState:r,data:i,props:a,accessCache:o,type:s,appContext:c}=e;if(t[0]!==`$`){let e=o[t];if(e!==void 0)switch(e){case 1:return r[t];case 2:return i[t];case 4:return n[t];case 3:return a[t]}else if(Xi(r,t))return o[t]=1,r[t];else if(i!==at&&pt(i,t))return o[t]=2,i[t];else if(pt(a,t))return o[t]=3,a[t];else if(n!==at&&pt(n,t))return o[t]=4,n[t];else Zi&&(o[t]=0)}let l=Yi[t],u,d;if(l)return t===`$attrs`&&Qt(e.attrs,`get`,``),l(e);if((u=s.__cssModules)&&(u=u[t]))return u;if(n!==at&&pt(n,t))return o[t]=4,n[t];if(d=c.config.globalProperties,pt(d,t))return d[t]},set({_:e},t,n){let{data:r,setupState:i,ctx:a}=e;return Xi(i,t)?(i[t]=n,!0):r!==at&&pt(r,t)?(r[t]=n,!0):pt(e.props,t)||t[0]===`$`&&t.slice(1)in e?!1:(a[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:r,appContext:i,props:a,type:o}},s){let c;return!!(n[s]||e!==at&&s[0]!==`$`&&pt(e,s)||Xi(t,s)||pt(a,s)||pt(r,s)||pt(Yi,s)||pt(i.config.globalProperties,s)||(c=o.__cssModules)&&c[s])},defineProperty(e,t,n){return n.get==null?pt(n,`value`)&&this.set(e,t,n.value,null):e._.accessCache[t]=0,Reflect.defineProperty(e,t,n)}},Zi=!0,mre={data:_ne,props:yne,emits:yne,methods:Hr,computed:Hr,beforeCreate:Vr,created:Vr,beforeMount:Vr,mounted:Vr,beforeUpdate:Vr,updated:Vr,beforeDestroy:Vr,beforeUnmount:Vr,destroyed:Vr,unmounted:Vr,activated:Vr,deactivated:Vr,errorCaptured:Vr,serverPrefetch:Vr,components:Hr,directives:Hr,watch:bne,provide:_ne,inject:vne},hre=0,Qi=null,$i=(e,t)=>t===`modelValue`||t===`model-value`?e.modelModifiers:e[`${t}Modifiers`]||e[`${At(t)}Modifiers`]||e[`${jt(t)}Modifiers`],ea=new WeakMap,gre=e=>{let t;for(let n in e)(n===`class`||n===`style`||lt(n))&&((t||={})[n]=e[n]);return t},_re=(e,t)=>{let n={};for(let r in e)(!ut(r)||!(r.slice(9)in t))&&(n[r]=e[r]);return n},ta={},na=()=>Object.create(ta),ra=e=>Object.getPrototypeOf(e)===ta,vre=new WeakMap,ia=e=>e===`_`||e===`_ctx`||e===`$stable`,aa=e=>mt(e)?e.map(ri):[ri(e)],yre=(e,t,n)=>{if(t._n)return t;let r=M((...e)=>aa(t(...e)),n);return r._c=!1,r},oa=(e,t,n)=>{let r=e._ctx;for(let n in e){if(ia(n))continue;let i=e[n];if(vt(i))t[n]=yre(n,i,r);else if(i!=null){let e=aa(i);t[n]=()=>e}}},sa=(e,t)=>{let n=aa(t);e.slots.default=()=>n},ca=(e,t,n)=>{for(let r in t)(n||!ia(r))&&(e[r]=t[r])},bre=(e,t,n)=>{let r=e.slots=na();if(e.vnode.shapeFlag&32){let e=t._;e?(ca(r,t,n),n&&It(r,`_`,e,!0)):oa(t,r)}else t&&sa(e,t)},xre=(e,t,n)=>{let{vnode:r,slots:i}=e,a=!0,o=at;if(r.shapeFlag&32){let e=t._;e?n&&e===1?a=!1:ca(i,t,n):(a=!t.$stable,oa(t,i)),o=t}else t&&(sa(e,t),o={default:1});if(a)for(let e in i)!ia(e)&&o[e]==null&&delete i[e]},la=Hne,ua=e=>e.__isSuspense,H=Symbol.for(`v-fgt`),da=Symbol.for(`v-txt`),fa=Symbol.for(`v-cmt`),pa=Symbol.for(`v-stc`),ma=[],ha=null,ga=1,_a=({key:e})=>e??null,va=({ref:e,ref_key:t,ref_for:n})=>(typeof e==`number`&&(e=``+e),e==null?null:yt(e)||bn(e)||vt(e)?{i:_i,r:e,k:t,f:!!n}:e),U=Wne,Sre=xne(),Cre=0,ya=null,ba=()=>ya||_i;{let e=Rt(),t=(t,n)=>{let r;return(r=e[t])||(r=e[t]=[]),r.push(n),e=>{r.length>1?r.forEach(t=>t(e)):r[0](e)}};xa=t(`__VUE_INSTANCE_SETTERS__`,e=>ya=e),Sa=t(`__VUE_SSR_SETTERS__`,e=>Ta=e)}Ca=e=>{let t=ya;return xa(e),e.scope.on(),()=>{e.scope.off(),xa(t)}},wa=()=>{ya&&ya.scope.off(),xa(null)},Ta=!1,Ere={get(e,t){return Qt(e,`get`,``),e[t]}},W=(e,t)=>ute(e,t,Ta),Dre=`3.5.40`}));function kre(e){let t={};for(let n in e)n in Wa||(t[n]=e[n]);if(e.css===!1)return t;let{name:n=`v`,type:r,duration:i,enterFromClass:a=`${n}-enter-from`,enterActiveClass:o=`${n}-enter-active`,enterToClass:s=`${n}-enter-to`,appearFromClass:c=a,appearActiveClass:l=o,appearToClass:u=s,leaveFromClass:d=`${n}-leave-from`,leaveActiveClass:f=`${n}-leave-active`,leaveToClass:p=`${n}-leave-to`}=e,m=Are(i),h=m&&m[0],g=m&&m[1],{onBeforeEnter:_,onEnter:v,onEnterCancelled:y,onLeave:b,onLeaveCancelled:ee,onBeforeAppear:te=_,onAppear:ne=v,onAppearCancelled:x=y}=t,re=(e,t,n,r)=>{e._enterCancelled=r,Oa(e,t?u:s),Oa(e,t?l:o),n&&n()},ie=(e,t)=>{e._isLeaving=!1,Oa(e,d),Oa(e,p),Oa(e,f),t&&t()},ae=e=>(t,n)=>{let i=e?ne:v,o=()=>re(t,e,n);Ka(i,[t,o]),jre(()=>{Oa(t,e?c:a),Da(t,e?u:s),qa(i)||Mre(t,r,h,o)})};return dt(t,{onBeforeEnter(e){Ka(_,[e]),Da(e,a),Da(e,o)},onBeforeAppear(e){Ka(te,[e]),Da(e,c),Da(e,l)},onEnter:ae(!1),onAppear:ae(!0),onLeave(e,t){e._isLeaving=!0;let n=()=>ie(e,t);Da(e,d),e._enterCancelled?(Da(e,f),Ire(e)):(Ire(e),Da(e,f)),jre(()=>{e._isLeaving&&(Oa(e,d),Da(e,p),qa(b)||Mre(e,r,g,n))}),Ka(b,[e,n])},onEnterCancelled(e){re(e,!1,void 0,!0),Ka(y,[e])},onAppearCancelled(e){re(e,!0,void 0,!0),Ka(x,[e])},onLeaveCancelled(e){ie(e),Ka(ee,[e])}})}function Are(e){if(e==null)return null;if(xt(e))return[Ea(e.enter),Ea(e.leave)];{let t=Ea(e);return[t,t]}}function Ea(e){return zee(e)}function Da(e,t){t.split(/\s+/).forEach(t=>t&&e.classList.add(t)),(e[Ua]||(e[Ua]=new Set)).add(t)}function Oa(e,t){t.split(/\s+/).forEach(t=>t&&e.classList.remove(t));let n=e[Ua];n&&(n.delete(t),n.size||(e[Ua]=void 0))}function jre(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}function Mre(e,t,n,r){let i=e._endId=++fie,a=()=>{i===e._endId&&r()};if(n!=null)return setTimeout(a,n);let{type:o,timeout:s,propCount:c}=Nre(e,t);if(!o)return r();let l=o+`end`,u=0,d=()=>{e.removeEventListener(l,f),a()},f=t=>{t.target===e&&++u>=c&&d()};setTimeout(()=>{u(n[e]||``).split(`, `),i=r(`${Va}Delay`),a=r(`${Va}Duration`),o=Pre(i,a),s=r(`${Ha}Delay`),c=r(`${Ha}Duration`),l=Pre(s,c),u=null,d=0,f=0;t===Va?o>0&&(u=Va,d=o,f=a.length):t===Ha?l>0&&(u=Ha,d=l,f=c.length):(d=Math.max(o,l),u=d>0?o>l?Va:Ha:null,f=u?u===Va?a.length:c.length:0);let p=u===Va&&/\b(?:transform|all)(?:,|$)/.test(r(`${Va}Property`).toString());return{type:u,timeout:d,propCount:f,hasTransform:p}}function Pre(e,t){for(;e.lengthFre(t)+Fre(e[n])))}function Fre(e){return e===`auto`?0:Number(e.slice(0,-1).replace(`,`,`.`))*1e3}function Ire(e){return(e?e.ownerDocument:document).body.offsetHeight}function Lre(e,t,n){let r=e[Ua];r&&(t=(t?[t,...r]:[...r]).join(` `)),t==null?e.removeAttribute(`class`):n?e.setAttribute(`class`,t):e.className=t}function ka(e,t){e.style.display=t?e[Ja]:`none`,e[Ya]=!t}function Rre(e){let t=ba();if(!t)return;let n=t.ut=(n=e(t.proxy))=>{Array.from(document.querySelectorAll(`[data-v-owner="${t.uid}"]`)).forEach(e=>ja(e,n))},r=()=>{let r=e(t.proxy);t.ce?ja(t.ce,r):Aa(t.subTree,r),n(r)};Hi(()=>{Ite(r)}),Vi(()=>{pr(r,st,{flush:`post`});let e=new MutationObserver(r);e.observe(t.subTree.el.parentNode,{childList:!0}),Wi(()=>e.disconnect())})}function Aa(e,t){if(e.shapeFlag&128){let n=e.suspense;e=n.activeBranch,n.pendingBranch&&!n.isHydrating&&n.effects.push(()=>{Aa(n.activeBranch,t)})}for(;e.component;)e=e.component.subTree;if(e.shapeFlag&1&&e.el)ja(e.el,t);else if(e.type===H)e.children.forEach(e=>Aa(e,t));else if(e.type===pa){let{el:n,anchor:r}=e;for(;n&&(ja(n,t),n!==r);)n=n.nextSibling}}function ja(e,t){if(e.nodeType===1){let n=e.style,r=``;for(let e in t){let i=Fee(t[e]);n.setProperty(`--${e}`,i),r+=`--${e}: ${i};`}n[Za]=r}}function zre(e,t,n){let r=e.style,i=yt(n),a=!1;if(n&&!i){if(t)if(yt(t))for(let e of t.split(`;`)){let t=e.slice(0,e.indexOf(`:`)).trim();n[t]??Ma(r,t,``)}else for(let e in t)n[e]??Ma(r,e,``);for(let i in n){i===`display`&&(a=!0);let o=n[i];o==null?Ma(r,i,``):Vre(e,i,!yt(t)&&t?t[i]:void 0,o)||Ma(r,i,o)}}else if(i){if(t!==n){let e=r[Za];e&&(n+=`;`+e),r.cssText=n,a=pie.test(n)}}else t&&e.removeAttribute(`style`);Ja in e&&(e[Ja]=a?r.display:``,e[Ya]&&(r.display=`none`))}function Ma(e,t,n){if(mt(n))n.forEach(n=>Ma(e,t,n));else if(n??=``,t.startsWith(`--`))e.setProperty(t,n);else{let r=Bre(e,t);Qa.test(n)?e.setProperty(jt(r),n.replace(Qa,``),`important`):e[r]=n}}function Bre(e,t){let n=eo[t];if(n)return n;let r=At(t);if(r!==`filter`&&r in e)return eo[t]=r;r=Mt(r);for(let n=0;n<$a.length;n++){let i=$a[n]+r;if(i in e)return eo[t]=i}return t}function Vre(e,t,n,r){return e.tagName===`TEXTAREA`&&(t===`width`||t===`height`)&&yt(r)&&n===r}function Hre(e,t,n,r,i,a=Wee(t)){r&&t.startsWith(`xlink:`)?n==null?e.removeAttributeNS(to,t.slice(6,t.length)):e.setAttributeNS(to,t,n):n==null||a&&!Nee(n)?e.removeAttribute(t):e.setAttribute(t,a?``:bt(n)?String(n):n)}function Ure(e,t,n,r,i){if(t===`innerHTML`||t===`textContent`){n!=null&&(e[t]=t===`innerHTML`?Ra(n):n);return}let a=e.tagName;if(t===`value`&&a!==`PROGRESS`&&!a.includes(`-`)){let r=a===`OPTION`?e.getAttribute(`value`)||``:e.value,i=n==null?e.type===`checkbox`?`on`:``:String(n);(r!==i||!(`_value`in e))&&(e.value=i),n??e.removeAttribute(t),e._value=n;return}let o=!1;if(n===``||n==null){let r=typeof e[t];r===`boolean`?n=Nee(n):n==null&&r===`string`?(n=``,o=!0):r===`number`&&(n=0,o=!0)}try{e[t]=n}catch{}o&&e.removeAttribute(i||t)}function Na(e,t,n,r){e.addEventListener(t,n,r)}function Wre(e,t,n,r){e.removeEventListener(t,n,r)}function Gre(e,t,n,r,i=null){let a=e[no]||(e[no]={}),o=a[t];if(r&&o)o.value=r;else{let[n,s]=Kre(t);r?Na(e,n,a[t]=qre(r,i),s):o&&(Wre(e,n,o,s),a[t]=void 0)}}function Kre(e){let t,n;for(;(n=e.match(mie))&&!hie.test(e);)t||={},e=e.slice(0,e.length-n[1].length),t[n[1].toLowerCase()]=!0;return[e[2]===`:`?e.slice(3):jt(e.slice(2)),t]}function qre(e,t){let n=e=>{if(!e._vts)e._vts=Date.now();else if(e._vts<=n.attached)return;let r=n.value;if(mt(r)){let n=e.stopImmediatePropagation;e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0};let i=r.slice(),a=[e];for(let n=0;nAt(e)===r):Object.keys(n).some(e=>At(e)===r)}function Xre(e){e.target.composing=!0}function Zre(e){let t=e.target;t.composing&&(t.composing=!1,t.dispatchEvent(new Event(`input`)))}function Qre(e,t,n){return t&&(e=e.trim()),n&&(e=Lt(e)),e}function $re(e,{value:t,oldValue:n},r){e._modelValue=t;let i;if(mt(t))i=it(t,r.props.value)>-1;else if(gt(t))i=t.has(r.props.value);else{if(t===n)return;i=rt(t,tie(e,!0))}e.checked!==i&&(e.checked=i)}function eie(e,t){let n=e.multiple,r=mt(t);if(!(n&&!r&&!gt(t))){for(let i=0,a=e.options.length;iString(e)===String(o)):a.selected=it(t,o)>-1}else a.selected=t.has(o);else if(rt(Pa(a),t)){e.selectedIndex!==i&&(e.selectedIndex=i);return}}!n&&e.selectedIndex!==-1&&(e.selectedIndex=-1)}}function Pa(e){return`_value`in e?e._value:e.value}function tie(e,t){let n=t?`_trueValue`:`_falseValue`;return n in e?e[n]:t}function nie(e,t){switch(e){case`SELECT`:return bie;case`TEXTAREA`:return so;default:switch(t){case`checkbox`:return co;case`radio`:return yie;default:return so}}}function Fa(e,t,n,r,i){let a=nie(e.tagName,n.props&&n.props.type)[i];a&&a(e,t,n,r)}function rie(){return mo||=Pne(po)}function iie(){return mo=ho?mo:Fne(po),ho=!0,mo}function aie(e){if(e instanceof SVGElement)return`svg`;if(typeof MathMLElement==`function`&&e instanceof MathMLElement)return`mathml`}function oie(e){return yt(e)?document.querySelector(e):e}var Ia,La,Ra,sie,cie,za,Ba,lie,Va,Ha,Ua,Wa,uie,die,Ga,Ka,qa,fie,Ja,Ya,Xa,Za,pie,Qa,$a,eo,to,no,mie,hie,ro,gie,_ie,io,vie,ao,oo,so,co,yie,bie,lo,xie,Sie,uo,Cie,fo,po,mo,ho,wie,go,Tie,Eie=s((()=>{if(Ore(),Ore(),Ut(),Ia=void 0,La=typeof window<`u`&&window.trustedTypes,La)try{Ia=La.createPolicy(`vue`,{createHTML:e=>e})}catch{}Ra=Ia?e=>Ia.createHTML(e):e=>e,sie=`http://www.w3.org/2000/svg`,cie=`http://www.w3.org/1998/Math/MathML`,za=typeof document<`u`?document:null,Ba=za&&za.createElement(`template`),lie={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{let t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,r)=>{let i=t===`svg`?za.createElementNS(sie,e):t===`mathml`?za.createElementNS(cie,e):n?za.createElement(e,{is:n}):za.createElement(e);return e===`select`&&r&&r.multiple!=null&&i.setAttribute(`multiple`,r.multiple),i},createText:e=>za.createTextNode(e),createComment:e=>za.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>za.querySelector(e),setScopeId(e,t){e.setAttribute(t,``)},insertStaticContent(e,t,n,r,i,a){let o=n?n.previousSibling:t.lastChild;if(i&&(i===a||i.nextSibling))for(;t.insertBefore(i.cloneNode(!0),n),!(i===a||!(i=i.nextSibling)););else{Ba.innerHTML=Ra(r===`svg`?`${e}`:r===`mathml`?`${e}`:e);let i=Ba.content;if(r===`svg`||r===`mathml`){let e=i.firstChild;for(;e.firstChild;)i.appendChild(e.firstChild);i.removeChild(e)}t.insertBefore(i,n)}return[o?o.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},Va=`transition`,Ha=`animation`,Ua=Symbol(`_vtc`),Wa={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String},uie=dt({},Ai,Wa),die=e=>(e.displayName=`Transition`,e.props=uie,e),Ga=die((e,{slots:t})=>ci(are,kre(e),t)),Ka=(e,t=[])=>{mt(e)?e.forEach(e=>e(...t)):e&&e(...t)},qa=e=>e?mt(e)?e.some(e=>e.length>1):e.length>1:!1,fie=0,Ja=Symbol(`_vod`),Ya=Symbol(`_vsh`),Xa={name:`show`,beforeMount(e,{value:t},{transition:n}){e[Ja]=e.style.display===`none`?``:e.style.display,n&&t?n.beforeEnter(e):ka(e,t)},mounted(e,{value:t},{transition:n}){n&&t&&n.enter(e)},updated(e,{value:t,oldValue:n},{transition:r}){!t!=!n&&(r?t?(r.beforeEnter(e),ka(e,!0),r.enter(e)):r.leave(e,()=>{ka(e,!1)}):ka(e,t))},beforeUnmount(e,{value:t}){ka(e,t)}},Za=Symbol(``),pie=/(?:^|;)\s*display\s*:/,Qa=/\s*!important$/,$a=[`Webkit`,`Moz`,`ms`],eo={},to=`http://www.w3.org/1999/xlink`,no=Symbol(`_vei`),mie=/(Once|Passive|Capture)$/,hie=/^on:?(?:Once|Passive|Capture)$/,ro=0,gie=Promise.resolve(),_ie=()=>ro||=(gie.then(()=>ro=0),Date.now()),io=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,vie=(e,t,n,r,i,a)=>{let o=i===`svg`;t===`class`?Lre(e,r,o):t===`style`?zre(e,n,r):lt(t)?ut(t)||Gre(e,t,n,r,a):(t[0]===`.`?(t=t.slice(1),!0):t[0]===`^`?(t=t.slice(1),!1):Jre(e,t,r,o))?(Ure(e,t,r),!e.tagName.includes(`-`)&&(t===`value`||t===`checked`||t===`selected`)&&Hre(e,t,r,o,a,t!==`value`)):e._isVueCE&&(Yre(e,t)||e._def.__asyncLoader&&(/[A-Z]/.test(t)||!yt(r)))?Ure(e,At(t),r,a,t):(t===`true-value`?e._trueValue=r:t===`false-value`&&(e._falseValue=r),Hre(e,t,r,o))},ao=e=>{let t=e.props[`onUpdate:modelValue`]||!1;return mt(t)?e=>Ft(t,e):t},oo=Symbol(`_assign`),so={created(e,{modifiers:{lazy:t,trim:n,number:r}},i){e[oo]=ao(i);let a=r||i.props&&i.props.type===`number`;Na(e,t?`change`:`input`,t=>{t.target.composing||e[oo](Qre(e.value,n,a))}),(n||a)&&Na(e,`change`,()=>{e.value=Qre(e.value,n,a)}),t||(Na(e,`compositionstart`,Xre),Na(e,`compositionend`,Zre),Na(e,`change`,Zre))},mounted(e,{value:t}){e.value=t??``},beforeUpdate(e,{value:t,oldValue:n,modifiers:{lazy:r,trim:i,number:a}},o){if(e[oo]=ao(o),e.composing)return;let s=(a||e.type===`number`)&&!/^0\d/.test(e.value)?Lt(e.value):e.value,c=t??``;if(s===c)return;let l=e.getRootNode();(l instanceof Document||l instanceof ShadowRoot)&&l.activeElement===e&&e.type!==`range`&&(r&&t===n||i&&e.value.trim()===c)||(e.value=c)}},co={deep:!0,created(e,t,n){e[oo]=ao(n),Na(e,`change`,()=>{let t=e._modelValue,n=Pa(e),r=e.checked,i=e[oo];if(mt(t)){let e=it(t,n),a=e!==-1;if(r&&!a)i(t.concat(n));else if(!r&&a){let n=[...t];n.splice(e,1),i(n)}}else if(gt(t)){let e=new Set(t);r?e.add(n):e.delete(n),i(e)}else i(tie(e,r))})},mounted:$re,beforeUpdate(e,t,n){e[oo]=ao(n),$re(e,t,n)}},yie={created(e,{value:t},n){e.checked=rt(t,n.props.value),e[oo]=ao(n),Na(e,`change`,()=>{e[oo](Pa(e))})},beforeUpdate(e,{value:t,oldValue:n},r){e[oo]=ao(r),t!==n&&(e.checked=rt(t,r.props.value))}},bie={deep:!0,created(e,{value:t,modifiers:{number:n}},r){e._modelValue=t,Na(e,`change`,()=>{let t=Array.prototype.filter.call(e.options,e=>e.selected).map(e=>n?Lt(Pa(e)):Pa(e));e[oo](e.multiple?gt(e._modelValue)?new Set(t):t:t[0]),e._assigning=!0,ir(()=>{e._assigning=!1})}),e[oo]=ao(r)},mounted(e,{value:t}){eie(e,t)},beforeUpdate(e,{value:t},n){e._modelValue=t,e[oo]=ao(n)},updated(e,{value:t}){e._assigning||eie(e,t)}},lo={created(e,t,n){Fa(e,t,n,null,`created`)},mounted(e,t,n){Fa(e,t,n,null,`mounted`)},beforeUpdate(e,t,n,r){Fa(e,t,n,r,`beforeUpdate`)},updated(e,t,n,r){Fa(e,t,n,r,`updated`)}},xie=[`ctrl`,`shift`,`alt`,`meta`],Sie={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>`button`in e&&e.button!==0,middle:e=>`button`in e&&e.button!==1,right:e=>`button`in e&&e.button!==2,exact:(e,t)=>xie.some(n=>e[`${n}Key`]&&!t.includes(n))},uo=(e,t)=>{if(!e)return e;let n=e._withMods||={},r=t.join(`.`);return n[r]||(n[r]=((n,...r)=>{for(let e=0;e{let n=e._withKeys||={},r=t.join(`.`);return n[r]||(n[r]=(n=>{if(!(`key`in n))return;let r=jt(n.key);if(t.some(e=>e===r||Cie[e]===r))return e(n)}))},po=dt({patchProp:vie},lie),ho=!1,wie=((...e)=>{rie().render(...e)}),go=((...e)=>{let t=rie().createApp(...e),{mount:n}=t;return t.mount=e=>{let r=oie(e);if(!r)return;let i=t._component;!vt(i)&&!i.render&&!i.template&&(i.template=r.innerHTML),r.nodeType===1&&(r.textContent=``);let a=n(r,!1,aie(r));return r instanceof Element&&(r.removeAttribute(`v-cloak`),r.setAttribute(`data-v-app`,``)),a},t}),Tie=((...e)=>{let t=iie().createApp(...e),{mount:n}=t;return t.mount=e=>{let t=oie(e);if(t)return n(t,!0,aie(t))},t})})),G=s((()=>{Eie()}));G();var Die=(e,t)=>bn(t)?Sn(t):t;G();var Oie=`usehead`;function kie(e){return{install(t){t.config.globalProperties.$unhead=e,t.config.globalProperties.$head=e,t.provide(Oie,e)}}.install}function Aie(){if(zte()){let e=dr(Oie);if(e)return e}throw Error(`useHead() was called without provide context, ensure you call it through the setup() function.`)}function jie(e,t={}){let n=t.head||Aie();return n.ssr?n.push(e||{},t):Mie(n,e,t)}function Mie(e,t,n={}){let r=A(!1),i;return fr(()=>{let a=r.value?{}:Je(t,Die);i?i.patch(a):i=e.push(a,n)}),ba()&&(Ui(()=>{i.dispose()}),ine(()=>{r.value=!0}),rne(()=>{r.value=!1})),i}function Nie(e={},t={}){(t.head||Aie()).use(Aee);let{title:n,titleTemplate:r,...i}=e;return jie({title:n,titleTemplate:r,_flatMeta:i},t)}function Pie(e={}){let t=yee({domOptions:{render:bee(()=>vee(t),e=>setTimeout(e,0))},...e});return t.install=kie(t),t}function Fie(e,t,n){let r=A(n?.value),i=W(()=>e.value!==void 0);return[W(()=>i.value?e.value:r.value),function(e){return i.value||(r.value=e),t?.(e)}]}var Iie=s((()=>{G()}));function _o(e){typeof queueMicrotask==`function`?queueMicrotask(e):Promise.resolve().then(e).catch(e=>setTimeout(()=>{throw e}))}var vo=s((()=>{}));function yo(){let e=[],t={addEventListener(e,n,r,i){return e.addEventListener(n,r,i),t.add(()=>e.removeEventListener(n,r,i))},requestAnimationFrame(...e){let n=requestAnimationFrame(...e);t.add(()=>cancelAnimationFrame(n))},nextFrame(...e){t.requestAnimationFrame(()=>{t.requestAnimationFrame(...e)})},setTimeout(...e){let n=setTimeout(...e);t.add(()=>clearTimeout(n))},microTask(...e){let n={current:!0};return _o(()=>{n.current&&e[0]()}),t.add(()=>{n.current=!1})},style(e,t,n){let r=e.style.getPropertyValue(t);return Object.assign(e.style,{[t]:n}),this.add(()=>{Object.assign(e.style,{[t]:r})})},group(e){let t=yo();return e(t),this.add(()=>t.dispose())},add(t){return e.push(t),()=>{let n=e.indexOf(t);if(n>=0)for(let t of e.splice(n,1))t()}},dispose(){for(let t of e.splice(0))t()}};return t}var Lie=s((()=>{vo()}));function Rie(e){ur(bo,e)}var bo,zie,xo,So=s((()=>{G(),bo=Symbol(`headlessui.useid`),zie=0,xo=xr??function(){return dr(bo,()=>`${++zie}`)()}}));function Co(e){if(e==null||e.value==null)return null;let t=e.value.$el??e.value;return t instanceof Node?t:null}var wo=s((()=>{}));function To(e,t,...n){if(e in t){let r=t[e];return typeof r==`function`?r(...n):r}let r=Error(`Tried to handle "${e}" but there is no handler defined. Only defined handlers are: ${Object.keys(t).map(e=>`"${e}"`).join(`, `)}.`);throw Error.captureStackTrace&&Error.captureStackTrace(r,To),r}var Eo=s((()=>{})),Bie,Vie,Do,Hie,Oo,ko=s((()=>{Bie=Object.defineProperty,Vie=(e,t,n)=>t in e?Bie(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Do=(e,t,n)=>(Vie(e,typeof t==`symbol`?t:t+``,n),n),Hie=class{constructor(){Do(this,`current`,this.detect()),Do(this,`currentId`,0)}set(e){this.current!==e&&(this.currentId=0,this.current=e)}reset(){this.set(this.detect())}nextId(){return++this.currentId}get isServer(){return this.current===`server`}get isClient(){return this.current===`client`}detect(){return typeof window>`u`||typeof document>`u`?`server`:`client`}},Oo=new Hie}));function Ao(e){if(Oo.isServer)return null;if(e instanceof Node)return e.ownerDocument;if(e!=null&&e.hasOwnProperty(`value`)){let t=Co(e);if(t)return t.ownerDocument}return document}var jo=s((()=>{wo(),ko()}));function Mo(e=document.body){return e==null?[]:Array.from(e.querySelectorAll(Lo)).sort((e,t)=>Math.sign((e.tabIndex||2**53-1)-(t.tabIndex||2**53-1)))}function No(e,t=0){return e!==Ao(e)?.body&&To(t,{0(){return e.matches(Lo)},1(){let t=e;for(;t!==null;){if(t.matches(Lo))return!0;t=t.parentElement}return!1}})}function Uie(e){let t=Ao(e);ir(()=>{t&&!No(t.activeElement,0)&&Po(e)})}function Po(e){e?.focus({preventScroll:!0})}function Wie(e){return(e?.matches)?.call(e,Jie)??!1}function Fo(e,t=e=>e){return e.slice().sort((e,n)=>{let r=t(e),i=t(n);if(r===null||i===null)return 0;let a=r.compareDocumentPosition(i);return a&Node.DOCUMENT_POSITION_FOLLOWING?-1:a&Node.DOCUMENT_POSITION_PRECEDING?1:0})}function Gie(e,t){return Io(Mo(),t,{relativeTo:e})}function Io(e,t,{sorted:n=!0,relativeTo:r=null,skipElements:i=[]}={}){let a=(Array.isArray(e)?e.length>0?e[0].ownerDocument:document:e?.ownerDocument)??document,o=Array.isArray(e)?n?Fo(e):e:Mo(e);i.length>0&&o.length>1&&(o=o.filter(e=>!i.includes(e))),r??=a.activeElement;let s=(()=>{if(t&5)return 1;if(t&10)return-1;throw Error(`Missing Focus.First, Focus.Previous, Focus.Next or Focus.Last`)})(),c=(()=>{if(t&1)return 0;if(t&2)return Math.max(0,o.indexOf(r))-1;if(t&4)return Math.max(0,o.indexOf(r))+1;if(t&8)return o.length-1;throw Error(`Missing Focus.First, Focus.Previous, Focus.Next or Focus.Last`)})(),l=t&32?{preventScroll:!0}:{},u=0,d=o.length,f;do{if(u>=d||u+d<=0)return 0;let e=c+u;if(t&16)e=(e+d)%d;else{if(e<0)return 3;if(e>=d)return 1}f=o[e],f?.focus(l),u+=s}while(f!==a.activeElement);return t&6&&Wie(f)&&f.select(),2}var Lo,Ro,zo,Kie,Bo,qie,Jie,Vo=s((()=>{G(),Eo(),jo(),Lo=[`[contentEditable=true]`,`[tabindex]`,`a[href]`,`area[href]`,`button:not([disabled])`,`iframe`,`input:not([disabled])`,`select:not([disabled])`,`textarea:not([disabled])`].map(e=>`${e}:not([tabindex='-1'])`).join(`,`),Ro=(e=>(e[e.First=1]=`First`,e[e.Previous=2]=`Previous`,e[e.Next=4]=`Next`,e[e.Last=8]=`Last`,e[e.WrapAround=16]=`WrapAround`,e[e.NoScroll=32]=`NoScroll`,e))(Ro||{}),zo=(e=>(e[e.Error=0]=`Error`,e[e.Overflow=1]=`Overflow`,e[e.Success=2]=`Success`,e[e.Underflow=3]=`Underflow`,e))(zo||{}),Kie=(e=>(e[e.Previous=-1]=`Previous`,e[e.Next=1]=`Next`,e))(Kie||{}),Bo=(e=>(e[e.Strict=0]=`Strict`,e[e.Loose=1]=`Loose`,e))(Bo||{}),qie=(e=>(e[e.Keyboard=0]=`Keyboard`,e[e.Mouse=1]=`Mouse`,e))(qie||{}),typeof window<`u`&&typeof document<`u`&&(document.addEventListener(`keydown`,e=>{e.metaKey||e.altKey||e.ctrlKey||(document.documentElement.dataset.headlessuiFocusVisible=``)},!0),document.addEventListener(`click`,e=>{e.detail===1?delete document.documentElement.dataset.headlessuiFocusVisible:e.detail===0&&(document.documentElement.dataset.headlessuiFocusVisible=``)},!0)),Jie=[`textarea`,`input`].join(`,`)}));function Yie(){return/iPhone/gi.test(window.navigator.platform)||/Mac/gi.test(window.navigator.platform)&&window.navigator.maxTouchPoints>0}function Xie(){return/Android/gi.test(window.navigator.userAgent)}function Zie(){return Yie()||Xie()}var Qie=s((()=>{}));function Ho(e,t,n){Oo.isServer||fr(r=>{document.addEventListener(e,t,n),r(()=>document.removeEventListener(e,t,n))})}var $ie=s((()=>{G(),ko()}));function eae(e,t,n){Oo.isServer||fr(r=>{window.addEventListener(e,t,n),r(()=>window.removeEventListener(e,t,n))})}var tae=s((()=>{G(),ko()}));function Uo(e,t,n=W(()=>!0)){function r(r,i){if(!n.value||r.defaultPrevented)return;let a=i(r);if(a===null||!a.getRootNode().contains(a))return;let o=function e(t){return typeof t==`function`?e(t()):Array.isArray(t)||t instanceof Set?t:[t]}(e);for(let e of o){if(e===null)continue;let t=e instanceof HTMLElement?e:Co(e);if(t!=null&&t.contains(a)||r.composed&&r.composedPath().includes(t))return}return!No(a,Bo.Loose)&&a.tabIndex!==-1&&r.preventDefault(),t(r,a)}let i=A(null);Ho(`pointerdown`,e=>{n.value&&(i.value=e.composedPath?.call(e)?.[0]||e.target)},!0),Ho(`mousedown`,e=>{n.value&&(i.value=e.composedPath?.call(e)?.[0]||e.target)},!0),Ho(`click`,e=>{Zie()||(i.value&&=(r(e,()=>i.value),null))},!0),Ho(`touchend`,e=>r(e,()=>e.target instanceof HTMLElement?e.target:null),!0),eae(`blur`,e=>r(e,()=>window.document.activeElement instanceof HTMLIFrameElement?window.document.activeElement:null),!0)}var Wo=s((()=>{G(),wo(),Vo(),Qie(),$ie(),tae()}));function nae(e,t){if(e)return e;let n=t??`button`;if(typeof n==`string`&&n.toLowerCase()===`button`)return`button`}function Go(e,t){let n=A(nae(e.value.type,e.value.as));return Vi(()=>{n.value=nae(e.value.type,e.value.as)}),fr(()=>{var e;n.value||Co(t)&&Co(t)instanceof HTMLButtonElement&&!((e=Co(t))!=null&&e.hasAttribute(`type`))&&(n.value=`button`)}),n}var Ko=s((()=>{G(),wo()}));function rae(e){return[e.screenX,e.screenY]}function iae(){let e=A([-1,-1]);return{wasMoved(t){let n=rae(t);return e.value[0]===n[0]&&e.value[1]===n[1]?!1:(e.value=n,!0)},update(t){e.value=rae(t)}}}var aae=s((()=>{G()}));function oae({container:e,accept:t,walk:n,enabled:r}){fr(()=>{let i=e.value;if(!i||r!==void 0&&!r.value)return;let a=Ao(e);if(!a)return;let o=Object.assign(e=>t(e),{acceptNode:t}),s=a.createTreeWalker(i,NodeFilter.SHOW_ELEMENT,o,!1);for(;s.nextNode();)n(s.currentNode)})}var sae=s((()=>{G(),jo()}));function qo({visible:e=!0,features:t=0,ourProps:n,theirProps:r,...i}){var a;let o=lae(r,n),s=Object.assign(i,{props:o});return e||t&2&&o.static?Jo(s):t&1?To((a=o.unmount)==null||a?0:1,{0(){return null},1(){return Jo({...i,props:{...o,hidden:!0,style:{display:`none`}}})}}):Jo(s)}function Jo({props:e,attrs:t,slots:n,slot:r,name:i}){let{as:a,...o}=Yo(e,[`unmount`,`static`]),s=n.default?.call(n,r),c={};if(r){let e=!1,t=[];for(let[n,i]of Object.entries(r))typeof i==`boolean`&&(e=!0),i===!0&&t.push(n);e&&(c[`data-headlessui-state`]=t.join(` `))}if(a===`template`){if(s=cae(s??[]),Object.keys(o).length>0||Object.keys(t).length>0){let[e,...n]=s??[];if(!dae(e)||n.length>0)throw Error([`Passing props on "template"!`,``,`The current component <${i} /> is rendering a "template".`,`However we need to passthrough the following props:`,Object.keys(o).concat(Object.keys(t)).map(e=>e.trim()).filter((e,t,n)=>n.indexOf(e)===t).sort((e,t)=>e.localeCompare(t)).map(e=>` - ${e}`).join(` +`),``,`You can apply a few solutions:`,['Add an `as="..."` prop, to ensure that we render an actual element instead of a "template".',`Render a single element as the child so that we can forward the props onto that element.`].map(e=>` - ${e}`).join(` +`)].join(` +`));let r=lae(e.props??{},o,c),a=ti(e,r,!0);for(let e in r)e.startsWith(`on`)&&(a.props||={},a.props[e]=r[e]);return a}return Array.isArray(s)&&s.length===1?s[0]:s}return ci(a,Object.assign({},o,c),{default:()=>s})}function cae(e){return e.flatMap(e=>e.type===H?cae(e.children):[e])}function lae(...e){if(e.length===0)return{};if(e.length===1)return e[0];let t={},n={};for(let r of e)for(let e in r)e.startsWith(`on`)&&typeof r[e]==`function`?(n[e]??(n[e]=[]),n[e].push(r[e])):t[e]=r[e];if(t.disabled||t[`aria-disabled`])return Object.assign(t,Object.fromEntries(Object.keys(n).map(e=>[e,void 0])));for(let e in n)Object.assign(t,{[e](t,...r){let i=n[e];for(let e of i){if(t instanceof Event&&t.defaultPrevented)return;e(t,...r)}}});return t}function uae(e){let t=Object.assign({},e);for(let e in t)t[e]===void 0&&delete t[e];return t}function Yo(e,t=[]){let n=Object.assign({},e);for(let e of t)e in n&&delete n[e];return n}function dae(e){return e==null?!1:typeof e.type==`string`||typeof e.type==`object`||typeof e.type==`function`}var Xo,fae,Zo=s((()=>{G(),Eo(),Xo=(e=>(e[e.None=0]=`None`,e[e.RenderStrategy=1]=`RenderStrategy`,e[e.Static=2]=`Static`,e))(Xo||{}),fae=(e=>(e[e.Unmount=0]=`Unmount`,e[e.Hidden=1]=`Hidden`,e))(fae||{})})),Qo,$o,es=s((()=>{G(),Zo(),Qo=(e=>(e[e.None=1]=`None`,e[e.Focusable=2]=`Focusable`,e[e.Hidden=4]=`Hidden`,e))(Qo||{}),$o=N({name:`Hidden`,props:{as:{type:[Object,String],default:`div`},features:{type:Number,default:1}},setup(e,{slots:t,attrs:n}){return()=>{let{features:r,...i}=e;return qo({ourProps:{"aria-hidden":(r&2)==2?!0:i[`aria-hidden`]??void 0,hidden:(r&4)==4||void 0,style:{position:`fixed`,top:1,left:1,width:1,height:0,padding:0,margin:-1,overflow:`hidden`,clip:`rect(0, 0, 0, 0)`,whiteSpace:`nowrap`,borderWidth:`0`,...(r&4)==4&&(r&2)!=2&&{display:`none`}}},theirProps:i,slot:{},attrs:n,slots:t,name:`Hidden`})}}})}));function ts(){return dr(rs,null)}function ns(e){ur(rs,e)}var rs,is,as=s((()=>{G(),rs=Symbol(`Context`),is=(e=>(e[e.Open=1]=`Open`,e[e.Closed=2]=`Closed`,e[e.Closing=4]=`Closing`,e[e.Opening=8]=`Opening`,e))(is||{})})),os,ss=s((()=>{os=(e=>(e.Space=` `,e.Enter=`Enter`,e.Escape=`Escape`,e.Backspace=`Backspace`,e.Delete=`Delete`,e.ArrowLeft=`ArrowLeft`,e.ArrowUp=`ArrowUp`,e.ArrowRight=`ArrowRight`,e.ArrowDown=`ArrowDown`,e.Home=`Home`,e.End=`End`,e.PageUp=`PageUp`,e.PageDown=`PageDown`,e.Tab=`Tab`,e))(os||{})}));function pae(e){function t(){document.readyState!==`loading`&&(e(),document.removeEventListener(`DOMContentLoaded`,t))}typeof window<`u`&&typeof document<`u`&&(document.addEventListener(`DOMContentLoaded`,t),t())}var mae=s((()=>{})),cs,hae=s((()=>{mae(),cs=[],pae(()=>{function e(e){e.target instanceof HTMLElement&&e.target!==document.body&&cs[0]!==e.target&&(cs.unshift(e.target),cs=cs.filter(e=>e!=null&&e.isConnected),cs.splice(10))}window.addEventListener(`click`,e,{capture:!0}),window.addEventListener(`mousedown`,e,{capture:!0}),window.addEventListener(`focus`,e,{capture:!0}),document.body.addEventListener(`click`,e,{capture:!0}),document.body.addEventListener(`mousedown`,e,{capture:!0}),document.body.addEventListener(`focus`,e,{capture:!0})})}));function gae(e){throw Error(`Unexpected object: `+e)}function _ae(e,t){let n=t.resolveItems();if(n.length<=0)return null;let r=t.resolveActiveIndex(),i=r??-1;switch(e.focus){case 0:for(let e=0;e=0;--e)if(!t.resolveDisabled(n[e],e,n))return e;return r;case 2:for(let e=i+1;e=0;--e)if(!t.resolveDisabled(n[e],e,n))return e;return r;case 4:for(let r=0;r{ls=(e=>(e[e.First=0]=`First`,e[e.Previous=1]=`Previous`,e[e.Next=2]=`Next`,e[e.Last=3]=`Last`,e[e.Specific=4]=`Specific`,e[e.Nothing=5]=`Nothing`,e))(ls||{})}));function yae(e={},t=null,n=[]){for(let[r,i]of Object.entries(e))xae(n,bae(t,r),i);return n}function bae(e,t){return e?e+`[`+t+`]`:t}function xae(e,t,n){if(Array.isArray(n))for(let[r,i]of n.entries())xae(e,bae(t,r.toString()),i);else n instanceof Date?e.push([t,n.toISOString()]):typeof n==`boolean`?e.push([t,n?`1`:`0`]):typeof n==`string`?e.push([t,n]):typeof n==`number`?e.push([t,`${n}`]):n==null?e.push([t,``]):yae(n,t,e)}var Sae=s((()=>{})),Cae=s((()=>{}));function us(e,t,n,r){Oo.isServer||fr(i=>{e??=window,e.addEventListener(t,n,r),i(()=>e.removeEventListener(t,n,r))})}var ds=s((()=>{G(),ko()}));function fs(){let e=A(0);return eae(`keydown`,t=>{t.key===`Tab`&&(e.value=+!!t.shiftKey)}),e}var ps,wae=s((()=>{G(),tae(),ps=(e=>(e[e.Forwards=0]=`Forwards`,e[e.Backwards=1]=`Backwards`,e))(ps||{})}));function Tae(e){if(!e)return new Set;if(typeof e==`function`)return new Set(e());let t=new Set;for(let n of e.value){let e=Co(n);e instanceof HTMLElement&&t.add(e)}return t}function Eae(e){let t=A(cs.slice());return pr([e],([e],[n])=>{n===!0&&e===!1?_o(()=>{t.value.splice(0)}):n===!1&&e===!0&&(t.value=cs.slice())},{flush:`post`}),()=>t.value.find(e=>e!=null&&e.isConnected)??null}function Dae({ownerDocument:e},t){let n=Eae(t);Vi(()=>{fr(()=>{t.value||e.value?.activeElement===e.value?.body&&Po(n())},{flush:`post`})}),Wi(()=>{t.value&&Po(n())})}function Oae({ownerDocument:e,container:t,initialFocus:n},r){let i=A(null),a=A(!1);return Vi(()=>a.value=!0),Wi(()=>a.value=!1),Vi(()=>{pr([t,n,r],(o,s)=>{if(o.every((e,t)=>s?.[t]===e)||!r.value)return;let c=Co(t);c&&_o(()=>{if(!a.value)return;let t=Co(n),r=e.value?.activeElement;if(t){if(t===r){i.value=r;return}}else if(c.contains(r)){i.value=r;return}t?Po(t):Io(c,Ro.First|Ro.NoScroll)===zo.Error&&console.warn(`There are no focusable elements inside the `),i.value=e.value?.activeElement})},{immediate:!0,flush:`post`})}),i}function kae({ownerDocument:e,container:t,containers:n,previousActiveElement:r},i){us(e.value?.defaultView,`focus`,e=>{if(!i.value)return;let a=Tae(n);Co(t)instanceof HTMLElement&&a.add(Co(t));let o=r.value;if(!o)return;let s=e.target;s&&s instanceof HTMLElement?Aae(a,s)?(r.value=s,Po(s)):(e.preventDefault(),e.stopPropagation(),Po(o)):Po(r.value)},!0)}function Aae(e,t){for(let n of e)if(n.contains(t))return!0;return!1}var ms,hs,jae=s((()=>{G(),ds(),wae(),es(),hae(),wo(),Vo(),Eo(),vo(),jo(),Zo(),ms=(e=>(e[e.None=1]=`None`,e[e.InitialFocus=2]=`InitialFocus`,e[e.TabLock=4]=`TabLock`,e[e.FocusLock=8]=`FocusLock`,e[e.RestoreFocus=16]=`RestoreFocus`,e[e.All=30]=`All`,e))(ms||{}),hs=Object.assign(N({name:`FocusTrap`,props:{as:{type:[Object,String],default:`div`},initialFocus:{type:Object,default:null},features:{type:Number,default:30},containers:{type:[Object,Function],default:A(new Set)}},inheritAttrs:!1,setup(e,{attrs:t,slots:n,expose:r}){let i=A(null);r({el:i,$el:i});let a=W(()=>Ao(i)),o=A(!1);Vi(()=>o.value=!0),Wi(()=>o.value=!1),Dae({ownerDocument:a},W(()=>o.value&&!!(e.features&16)));let s=Oae({ownerDocument:a,container:i,initialFocus:W(()=>e.initialFocus)},W(()=>o.value&&!!(e.features&2)));kae({ownerDocument:a,container:i,containers:e.containers,previousActiveElement:s},W(()=>o.value&&!!(e.features&8)));let c=fs();function l(e){let t=Co(i);t&&(e=>e())(()=>{To(c.value,{[ps.Forwards]:()=>{Io(t,Ro.First,{skipElements:[e.relatedTarget]})},[ps.Backwards]:()=>{Io(t,Ro.Last,{skipElements:[e.relatedTarget]})}})})}let u=A(!1);function d(e){e.key===`Tab`&&(u.value=!0,requestAnimationFrame(()=>{u.value=!1}))}function f(t){if(!o.value)return;let n=Tae(e.containers);Co(i)instanceof HTMLElement&&n.add(Co(i));let r=t.relatedTarget;r instanceof HTMLElement&&r.dataset.headlessuiFocusGuard!==`true`&&(Aae(n,r)||(u.value?Io(Co(i),To(c.value,{[ps.Forwards]:()=>Ro.Next,[ps.Backwards]:()=>Ro.Previous})|Ro.WrapAround,{relativeTo:t.target}):t.target instanceof HTMLElement&&Po(t.target)))}return()=>{let r={},a={ref:i,onKeydown:d,onFocusout:f},{features:o,initialFocus:s,containers:c,...u}=e;return ci(H,[!!(o&4)&&ci($o,{as:`button`,type:`button`,"data-headlessui-focus-guard":!0,onFocus:l,features:Qo.Focusable}),qo({ourProps:a,theirProps:{...t,...u},slot:r,attrs:t,slots:n,name:`FocusTrap`}),!!(o&4)&&ci($o,{as:`button`,type:`button`,"data-headlessui-focus-guard":!0,onFocus:l,features:Qo.Focusable})])}}}),{features:ms})}));function Mae(e){let t=xn(e.getSnapshot());return Wi(e.subscribe(()=>{t.value=e.getSnapshot()})),t}var Nae=s((()=>{G()}));function Pae(e,t){let n=e(),r=new Set;return{getSnapshot(){return n},subscribe(e){return r.add(e),()=>r.delete(e)},dispatch(e,...i){let a=t[e].call(n,...i);a&&(n=a,r.forEach(e=>e()))}}}var Fae=s((()=>{}));function Iae(){let e;return{before({doc:t}){let n=t.documentElement;e=(t.defaultView??window).innerWidth-n.clientWidth},after({doc:t,d:n}){let r=t.documentElement,i=r.clientWidth-r.offsetWidth,a=e-i;n.style(r,`paddingRight`,`${a}px`)}}}var Lae=s((()=>{}));function Rae(){return Yie()?{before({doc:e,d:t,meta:n}){function r(e){return n.containers.flatMap(e=>e()).some(t=>t.contains(e))}t.microTask(()=>{if(window.getComputedStyle(e.documentElement).scrollBehavior!==`auto`){let n=yo();n.style(e.documentElement,`scrollBehavior`,`auto`),t.add(()=>t.microTask(()=>n.dispose()))}let n=window.scrollY??window.pageYOffset,i=null;t.addEventListener(e,`click`,t=>{if(t.target instanceof HTMLElement)try{let n=t.target.closest(`a`);if(!n)return;let{hash:a}=new URL(n.href),o=e.querySelector(a);o&&!r(o)&&(i=o)}catch{}},!0),t.addEventListener(e,`touchstart`,e=>{if(e.target instanceof HTMLElement)if(r(e.target)){let n=e.target;for(;n.parentElement&&r(n.parentElement);)n=n.parentElement;t.style(n,`overscrollBehavior`,`contain`)}else t.style(e.target,`touchAction`,`none`)}),t.addEventListener(e,`touchmove`,e=>{if(e.target instanceof HTMLElement){if(e.target.tagName===`INPUT`)return;if(r(e.target)){let t=e.target;for(;t.parentElement&&t.dataset.headlessuiPortal!==``&&!(t.scrollHeight>t.clientHeight||t.scrollWidth>t.clientWidth);)t=t.parentElement;t.dataset.headlessuiPortal===``&&e.preventDefault()}else e.preventDefault()}},{passive:!1}),t.add(()=>{let e=window.scrollY??window.pageYOffset;n!==e&&window.scrollTo(0,n),i&&i.isConnected&&(i.scrollIntoView({block:`nearest`}),i=null)})})}}:{}}var zae=s((()=>{Lie(),Qie()}));function Bae(){return{before({doc:e,d:t}){t.style(e.documentElement,`overflow`,`hidden`)}}}var Vae=s((()=>{}));function Hae(e){let t={};for(let n of e)Object.assign(t,n(t));return t}var gs,Uae=s((()=>{Lie(),Fae(),Lae(),zae(),Vae(),gs=Pae(()=>new Map,{PUSH(e,t){let n=this.get(e)??{doc:e,count:0,d:yo(),meta:new Set};return n.count++,n.meta.add(t),this.set(e,n),this},POP(e,t){let n=this.get(e);return n&&(n.count--,n.meta.delete(t)),this},SCROLL_PREVENT({doc:e,d:t,meta:n}){let r={doc:e,d:t,meta:Hae(n)},i=[Rae(),Iae(),Bae()];i.forEach(({before:e})=>e?.(r)),i.forEach(({after:e})=>e?.(r))},SCROLL_ALLOW({d:e}){e.dispose()},TEARDOWN({doc:e}){this.delete(e)}}),gs.subscribe(()=>{let e=gs.getSnapshot(),t=new Map;for(let[n]of e)t.set(n,n.documentElement.style.overflow);for(let n of e.values()){let e=t.get(n.doc)===`hidden`,r=n.count!==0;(r&&!e||!r&&e)&&gs.dispatch(n.count>0?`SCROLL_PREVENT`:`SCROLL_ALLOW`,n),n.count===0&&gs.dispatch(`TEARDOWN`,n)}})}));function Wae(e,t,n){let r=Mae(gs),i=W(()=>{let t=e.value?r.value.get(e.value):void 0;return t?t.count>0:!1});return pr([e,t],([e,t],[r],i)=>{if(!e||!t)return;gs.dispatch(`PUSH`,e,n);let a=!1;i(()=>{a||=(gs.dispatch(`POP`,r??e,n),!0)})},{immediate:!0}),i}var Gae=s((()=>{G(),Nae(),Uae()}));function Kae(e,t=A(!0)){fr(n=>{if(!t.value)return;let r=Co(e);if(!r)return;n(function(){if(!r)return;let e=vs.get(r)??1;if(e===1?vs.delete(r):vs.set(r,e-1),e!==1)return;let t=_s.get(r);t&&(t[`aria-hidden`]===null?r.removeAttribute(`aria-hidden`):r.setAttribute(`aria-hidden`,t[`aria-hidden`]),r.inert=t.inert,_s.delete(r))});let i=vs.get(r)??0;vs.set(r,i+1),i===0&&(_s.set(r,{"aria-hidden":r.getAttribute(`aria-hidden`),inert:r.inert}),r.setAttribute(`aria-hidden`,`true`),r.inert=!0)})}var _s,vs,qae=s((()=>{G(),wo(),_s=new Map,vs=new Map}));function Jae({defaultContainers:e=[],portals:t,mainTreeNodeRef:n}={}){let r=A(null),i=Ao(r);function a(){let n=[];for(let t of e)t!==null&&(t instanceof HTMLElement?n.push(t):`value`in t&&t.value instanceof HTMLElement&&n.push(t.value));if(t!=null&&t.value)for(let e of t.value)n.push(e);for(let e of i?.querySelectorAll(`html > *, body > *`)??[])e!==document.body&&e!==document.head&&e instanceof HTMLElement&&e.id!==`headlessui-portal-root`&&(e.contains(Co(r))||e.contains(Co(r)?.getRootNode()?.host)||n.some(t=>e.contains(t))||n.push(e));return n}return{resolveContainers:a,contains(e){return a().some(t=>t.contains(e))},mainTreeNodeRef:r,MainTreeNode(){return n==null?ci($o,{features:Qo.Hidden,ref:r}):null}}}var Yae=s((()=>{G(),es(),wo(),jo()}));function Xae(){return dr(ys,!1)}var ys,bs,Zae=s((()=>{G(),Zo(),ys=Symbol(`ForcePortalRootContext`),bs=N({name:`ForcePortalRoot`,props:{as:{type:[Object,String],default:`template`},force:{type:Boolean,default:!1}},setup(e,{slots:t,attrs:n}){return ur(ys,e.force),()=>{let{force:r,...i}=e;return qo({theirProps:i,ourProps:{},slot:{},slots:t,attrs:n,name:`ForcePortalRoot`})}}})}));function Qae(){return dr(xs,()=>{})}function $ae({type:e,enabled:t,element:n,onUpdate:r}){let i=Qae();function a(...e){r?.(...e),i(...e)}Vi(()=>{pr(t,(t,r)=>{t?a(0,e,n):r===!0&&a(1,e,n)},{immediate:!0,flush:`sync`})}),Wi(()=>{t.value&&a(1,e,n)}),ur(xs,a)}var xs,Ss,eoe=s((()=>{G(),xs=Symbol(`StackContext`),Ss=(e=>(e[e.Add=0]=`Add`,e[e.Remove=1]=`Remove`,e))(Ss||{})}));function toe({slot:e=A({}),name:t=`Description`,props:n={}}={}){let r=A([]);function i(e){return r.value.push(e),()=>{let t=r.value.indexOf(e);t!==-1&&r.value.splice(t,1)}}return ur(noe,{register:i,slot:e,name:t,props:n}),W(()=>r.value.length>0?r.value.join(` `):void 0)}var noe,roe=s((()=>{G(),So(),Zo(),noe=Symbol(`DescriptionContext`)}));function ioe(e){let t=Ao(e);if(!t){if(e===null)return null;throw Error(`[Headless UI]: Cannot find ownerDocument for contextElement: ${e}`)}let n=t.getElementById(`headlessui-portal-root`);if(n)return n;let r=t.createElement(`div`);return r.setAttribute(`id`,`headlessui-portal-root`),t.body.appendChild(r)}function aoe(e){return Cs.get(e)??0}function ooe(e,t){let n=t(aoe(e));return n<=0?Cs.delete(e):Cs.set(e,n),n}function soe(){let e=dr(ws,null),t=A([]);function n(n){return t.value.push(n),e&&e.register(n),()=>r(n)}function r(n){let r=t.value.indexOf(n);r!==-1&&t.value.splice(r,1),e&&e.unregister(n)}let i={register:n,unregister:r,portals:t};return[t,N({name:`PortalWrapper`,setup(e,{slots:t}){return ur(ws,i),()=>t.default?.call(t)}})]}var Cs,coe,ws,Ts,loe,uoe=s((()=>{G(),Zae(),wo(),jo(),Zo(),Cs=new WeakMap,coe=N({name:`Portal`,props:{as:{type:[Object,String],default:`div`}},setup(e,{slots:t,attrs:n}){let r=A(null),i=W(()=>Ao(r)),a=Xae(),o=dr(Ts,null),s=A(a===!0||o==null?ioe(r.value):o.resolveTarget());s.value&&ooe(s.value,e=>e+1);let c=A(!1);Vi(()=>{c.value=!0}),fr(()=>{a||o!=null&&(s.value=o.resolveTarget())});let l=dr(ws,null),u=!1,d=ba();return pr(r,()=>{if(u||!l)return;let e=Co(r);e&&(Wi(l.register(e),d),u=!0)}),Wi(()=>{var e;let t=i.value?.getElementById(`headlessui-portal-root`);!t||s.value!==t||ooe(s.value,e=>e-1)||s.value.children.length>0||(e=s.value.parentElement)==null||e.removeChild(s.value)}),()=>{if(!c.value||s.value===null)return null;let i={ref:r,"data-headlessui-portal":``};return ci(Ei,{to:s.value},qo({ourProps:i,theirProps:e,slot:{},attrs:n,slots:t,name:`Portal`}))}}}),ws=Symbol(`PortalParentContext`),Ts=Symbol(`PortalGroupContext`),loe=N({name:`PortalGroup`,props:{as:{type:[Object,String],default:`template`},target:{type:Object,default:null}},setup(e,{attrs:t,slots:n}){return ur(Ts,un({resolveTarget(){return e.target}})),()=>{let{target:r,...i}=e;return qo({theirProps:i,ourProps:{},slot:{},attrs:t,slots:n,name:`PortalGroup`})}}})}));function Es(e){let t=dr(Ds,null);if(t===null){let t=Error(`<${e} /> is missing a parent component.`);throw Error.captureStackTrace&&Error.captureStackTrace(t,Es),t}return t}var doe,Ds,Os,foe,poe,moe,hoe=s((()=>{G(),jae(),Gae(),ds(),So(),qae(),Wo(),Yae(),as(),Zae(),eoe(),ss(),wo(),Eo(),jo(),Zo(),roe(),uoe(),doe=(e=>(e[e.Open=0]=`Open`,e[e.Closed=1]=`Closed`,e))(doe||{}),Ds=Symbol(`DialogContext`),Os=`DC8F892D-2EBD-447C-A4C8-A03058436FF4`,foe=N({name:`Dialog`,inheritAttrs:!1,props:{as:{type:[Object,String],default:`div`},static:{type:Boolean,default:!1},unmount:{type:Boolean,default:!0},open:{type:[Boolean,String],default:Os},initialFocus:{type:Object,default:null},id:{type:String,default:null},role:{type:String,default:`dialog`}},emits:{close:e=>!0},setup(e,{emit:t,attrs:n,slots:r,expose:i}){let a=e.id??`headlessui-dialog-${xo()}`,o=A(!1);Vi(()=>{o.value=!0});let s=!1,c=W(()=>e.role===`dialog`||e.role===`alertdialog`?e.role:(s||(s=!0,console.warn(`Invalid role [${c}] passed to . Only \`dialog\` and and \`alertdialog\` are supported. Using \`dialog\` instead.`)),`dialog`)),l=A(0),u=ts(),d=W(()=>e.open===Os&&u!==null?(u.value&is.Open)===is.Open:e.open),f=A(null),p=W(()=>Ao(f));if(i({el:f,$el:f}),!(e.open!==Os||u!==null))throw Error("You forgot to provide an `open` prop to the `Dialog`.");if(typeof d.value!=`boolean`)throw Error(`You provided an \`open\` prop to the \`Dialog\`, but the value is not a boolean. Received: ${d.value===Os?void 0:e.open}`);let m=W(()=>o.value&&d.value?0:1),h=W(()=>m.value===0),g=W(()=>l.value>1),_=dr(Ds,null)!==null,[v,y]=soe(),{resolveContainers:b,mainTreeNodeRef:ee,MainTreeNode:te}=Jae({portals:v,defaultContainers:[W(()=>S.panelRef.value??f.value)]}),ne=W(()=>g.value?`parent`:`leaf`),x=W(()=>u!==null&&(u.value&is.Closing)===is.Closing),re=W(()=>_||x.value?!1:h.value);Kae(W(()=>Array.from(p.value?.querySelectorAll(`body > *`)??[]).find(e=>e.id!==`headlessui-portal-root`&&e.contains(Co(ee))&&e instanceof HTMLElement)??null),re);let ie=W(()=>g.value?!0:h.value);Kae(W(()=>Array.from(p.value?.querySelectorAll(`[data-headlessui-portal]`)??[]).find(e=>e.contains(Co(ee))&&e instanceof HTMLElement)??null),ie),$ae({type:`Dialog`,enabled:W(()=>m.value===0),element:f,onUpdate:(e,t)=>{if(t===`Dialog`)return To(e,{[Ss.Add]:()=>l.value+=1,[Ss.Remove]:()=>--l.value})}});let ae=toe({name:`DialogDescription`,slot:W(()=>({open:d.value}))}),oe=A(null),S={titleId:oe,panelRef:A(null),dialogState:m,setTitleId(e){oe.value!==e&&(oe.value=e)},close(){t(`close`,!1)}};ur(Ds,S),Uo(b,(e,t)=>{e.preventDefault(),S.close(),ir(()=>t?.focus())},W(()=>!(!h.value||g.value)));let C=W(()=>!(g.value||m.value!==0));return us(p.value?.defaultView,`keydown`,e=>{C.value&&(e.defaultPrevented||e.key===os.Escape&&(e.preventDefault(),e.stopPropagation(),S.close()))}),Wae(p,W(()=>!(x.value||m.value!==0||_)),e=>({containers:[...e.containers??[],b]})),fr(e=>{if(m.value!==0)return;let t=Co(f);if(!t)return;let n=new ResizeObserver(e=>{for(let t of e){let e=t.target.getBoundingClientRect();e.x===0&&e.y===0&&e.width===0&&e.height===0&&S.close()}});n.observe(t),e(()=>n.disconnect())}),()=>{let{open:t,initialFocus:i,...o}=e,s={...n,ref:f,id:a,role:c.value,"aria-modal":m.value===0||void 0,"aria-labelledby":oe.value,"aria-describedby":ae.value},l={open:m.value===0};return ci(bs,{force:!0},()=>[ci(coe,()=>ci(loe,{target:f.value},()=>ci(bs,{force:!1},()=>ci(hs,{initialFocus:i,containers:b,features:h.value?To(ne.value,{parent:hs.features.RestoreFocus,leaf:hs.features.All&~hs.features.FocusLock}):hs.features.None},()=>ci(y,{},()=>qo({ourProps:s,theirProps:{...o,...n},slot:l,attrs:n,slots:r,visible:m.value===0,features:Xo.RenderStrategy|Xo.Static,name:`Dialog`})))))),ci(te)])}}}),poe=N({name:`DialogPanel`,props:{as:{type:[Object,String],default:`div`},id:{type:String,default:null}},setup(e,{attrs:t,slots:n,expose:r}){let i=e.id??`headlessui-dialog-panel-${xo()}`,a=Es(`DialogPanel`);r({el:a.panelRef,$el:a.panelRef});function o(e){e.stopPropagation()}return()=>{let{...r}=e;return qo({ourProps:{id:i,ref:a.panelRef,onClick:o},theirProps:r,slot:{open:a.dialogState.value===0},attrs:t,slots:n,name:`DialogPanel`})}}}),moe=N({name:`DialogTitle`,props:{as:{type:[Object,String],default:`h2`},id:{type:String,default:null}},setup(e,{attrs:t,slots:n}){let r=e.id??`headlessui-dialog-title-${xo()}`,i=Es(`DialogTitle`);return Vi(()=>{i.setTitleId(r),Wi(()=>i.setTitleId(null))}),()=>{let{...a}=e;return qo({ourProps:{id:r},theirProps:a,slot:{open:i.dialogState.value===0},attrs:t,slots:n,name:`DialogTitle`})}}})}));function ks(e){let t=dr(As,null);if(t===null){let t=Error(`<${e} /> is missing a parent component.`);throw Error.captureStackTrace&&Error.captureStackTrace(t,ks),t}return t}function goe(){return dr(js,null)}var _oe,As,js,Ms,Ns,Ps,voe=s((()=>{G(),So(),Ko(),as(),ss(),wo(),Eo(),Zo(),_oe=(e=>(e[e.Open=0]=`Open`,e[e.Closed=1]=`Closed`,e))(_oe||{}),As=Symbol(`DisclosureContext`),js=Symbol(`DisclosurePanelContext`),Ms=N({name:`Disclosure`,props:{as:{type:[Object,String],default:`template`},defaultOpen:{type:[Boolean],default:!1}},setup(e,{slots:t,attrs:n}){let r=A(+!e.defaultOpen),i=A(null),a=A(null),o={buttonId:A(`headlessui-disclosure-button-${xo()}`),panelId:A(`headlessui-disclosure-panel-${xo()}`),disclosureState:r,panel:i,button:a,toggleDisclosure(){r.value=To(r.value,{0:1,1:0})},closeDisclosure(){r.value!==1&&(r.value=1)},close(e){o.closeDisclosure(),(e?e instanceof HTMLElement?e:e.value instanceof HTMLElement?Co(e):Co(o.button):Co(o.button))?.focus()}};return ur(As,o),ns(W(()=>To(r.value,{0:is.Open,1:is.Closed}))),()=>{let{defaultOpen:i,...a}=e;return qo({theirProps:a,ourProps:{},slot:{open:r.value===0,close:o.close},slots:t,attrs:n,name:`Disclosure`})}}}),Ns=N({name:`DisclosureButton`,props:{as:{type:[Object,String],default:`button`},disabled:{type:[Boolean],default:!1},id:{type:String,default:null}},setup(e,{attrs:t,slots:n,expose:r}){let i=ks(`DisclosureButton`),a=goe(),o=W(()=>a!==null&&a.value===i.panelId.value);Vi(()=>{o.value||e.id!==null&&(i.buttonId.value=e.id)}),Wi(()=>{o.value||(i.buttonId.value=null)});let s=A(null);r({el:s,$el:s}),o.value||fr(()=>{i.button.value=s.value});let c=Go(W(()=>({as:e.as,type:t.type})),s);function l(){var t;e.disabled||(o.value?(i.toggleDisclosure(),(t=Co(i.button))==null||t.focus()):i.toggleDisclosure())}function u(t){var n;if(!e.disabled)if(o.value)switch(t.key){case os.Space:case os.Enter:t.preventDefault(),t.stopPropagation(),i.toggleDisclosure(),(n=Co(i.button))==null||n.focus();break}else switch(t.key){case os.Space:case os.Enter:t.preventDefault(),t.stopPropagation(),i.toggleDisclosure();break}}function d(e){switch(e.key){case os.Space:e.preventDefault();break}}return()=>{let r={open:i.disclosureState.value===0},{id:a,...f}=e;return qo({ourProps:o.value?{ref:s,type:c.value,onClick:l,onKeydown:u}:{id:i.buttonId.value??a,ref:s,type:c.value,"aria-expanded":i.disclosureState.value===0,"aria-controls":i.disclosureState.value===0||Co(i.panel)?i.panelId.value:void 0,disabled:e.disabled?!0:void 0,onClick:l,onKeydown:u,onKeyup:d},theirProps:f,slot:r,attrs:t,slots:n,name:`DisclosureButton`})}}}),Ps=N({name:`DisclosurePanel`,props:{as:{type:[Object,String],default:`div`},static:{type:Boolean,default:!1},unmount:{type:Boolean,default:!0},id:{type:String,default:null}},setup(e,{attrs:t,slots:n,expose:r}){let i=ks(`DisclosurePanel`);Vi(()=>{e.id!==null&&(i.panelId.value=e.id)}),Wi(()=>{i.panelId.value=null}),r({el:i.panel,$el:i.panel}),ur(js,i.panelId);let a=ts(),o=W(()=>a===null?i.disclosureState.value===0:(a.value&is.Open)===is.Open);return()=>{let r={open:i.disclosureState.value===0,close:i.close},{id:a,...s}=e;return qo({ourProps:{id:i.panelId.value??a,ref:i.panel},theirProps:s,slot:r,attrs:t,slots:n,features:Xo.RenderStrategy|Xo.Static,visible:o.value,name:`DisclosurePanel`})}}})}));function yoe(e){let t=e.innerText??``,n=e.cloneNode(!0);if(!(n instanceof HTMLElement))return t;let r=!1;for(let e of n.querySelectorAll(`[hidden],[aria-hidden],[role="img"]`))e.remove(),r=!0;let i=r?n.innerText??``:t;return Fs.test(i)&&(i=i.replace(Fs,``)),i}function boe(e){let t=e.getAttribute(`aria-label`);if(typeof t==`string`)return t.trim();let n=e.getAttribute(`aria-labelledby`);if(n){let e=n.split(` `).map(e=>{let t=document.getElementById(e);if(t){let e=t.getAttribute(`aria-label`);return typeof e==`string`?e.trim():yoe(t).trim()}return null}).filter(Boolean);if(e.length>0)return e.join(`, `)}return yoe(e).trim()}var Fs,xoe=s((()=>{Fs=/([\u2700-\u27BF]|[\uE000-\uF8FF]|\uD83C[\uDC00-\uDFFF]|\uD83D[\uDC00-\uDFFF]|[\u2011-\u26FF]|\uD83E[\uDD10-\uDDFF])/g}));function Soe(e){let t=A(``),n=A(``);return()=>{let r=Co(e);if(!r)return``;let i=r.innerText;if(t.value===i)return n.value;let a=boe(r).trim().toLowerCase();return t.value=i,n.value=a,a}}var Coe=s((()=>{G(),wo(),xoe()}));function woe(e,t){return e===t}function Toe(e){requestAnimationFrame(()=>requestAnimationFrame(e))}function Is(e){let t=dr(Ls,null);if(t===null){let t=Error(`<${e} /> is missing a parent component.`);throw Error.captureStackTrace&&Error.captureStackTrace(t,Is),t}return t}var Eoe,Doe,Ooe,Ls,koe,Aoe,joe,Moe,Noe,Poe=s((()=>{G(),Iie(),So(),Wo(),Ko(),Coe(),aae(),es(),as(),ss(),vae(),wo(),Vo(),Sae(),Eo(),Zo(),Eoe=(e=>(e[e.Open=0]=`Open`,e[e.Closed=1]=`Closed`,e))(Eoe||{}),Doe=(e=>(e[e.Single=0]=`Single`,e[e.Multi=1]=`Multi`,e))(Doe||{}),Ooe=(e=>(e[e.Pointer=0]=`Pointer`,e[e.Other=1]=`Other`,e))(Ooe||{}),Ls=Symbol(`ListboxContext`),koe=N({name:`Listbox`,emits:{"update:modelValue":e=>!0},props:{as:{type:[Object,String],default:`template`},disabled:{type:[Boolean],default:!1},by:{type:[String,Function],default:()=>woe},horizontal:{type:[Boolean],default:!1},modelValue:{type:[Object,String,Number,Boolean],default:void 0},defaultValue:{type:[Object,String,Number,Boolean],default:void 0},form:{type:String,optional:!0},name:{type:String,optional:!0},multiple:{type:[Boolean],default:!1}},inheritAttrs:!1,setup(e,{slots:t,attrs:n,emit:r}){let i=A(1),a=A(null),o=A(null),s=A(null),c=A([]),l=A(``),u=A(null),d=A(1);function f(e=e=>e){let t=u.value===null?null:c.value[u.value],n=Fo(e(c.value.slice()),e=>Co(e.dataRef.domRef)),r=t?n.indexOf(t):null;return r===-1&&(r=null),{options:n,activeOptionIndex:r}}let p=W(()=>+!!e.multiple),[m,h]=Fie(W(()=>e.modelValue),e=>r(`update:modelValue`,e),W(()=>e.defaultValue)),g=W(()=>m.value===void 0?To(p.value,{1:[],0:void 0}):m.value),_={listboxState:i,value:g,mode:p,compare(t,n){if(typeof e.by==`string`){let r=e.by;return t?.[r]===n?.[r]}return e.by(t,n)},orientation:W(()=>e.horizontal?`horizontal`:`vertical`),labelRef:a,buttonRef:o,optionsRef:s,disabled:W(()=>e.disabled),options:c,searchQuery:l,activeOptionIndex:u,activationTrigger:d,closeListbox(){e.disabled||i.value!==1&&(i.value=1,u.value=null)},openListbox(){e.disabled||i.value!==0&&(i.value=0)},goToOption(t,n,r){if(e.disabled||i.value===1)return;let a=f(),o=_ae(t===ls.Specific?{focus:ls.Specific,id:n}:{focus:t},{resolveItems:()=>a.options,resolveActiveIndex:()=>a.activeOptionIndex,resolveId:e=>e.id,resolveDisabled:e=>e.dataRef.disabled});l.value=``,u.value=o,d.value=r??1,c.value=a.options},search(t){if(e.disabled||i.value===1)return;let n=+(l.value===``);l.value+=t.toLowerCase();let r=(u.value===null?c.value:c.value.slice(u.value+n).concat(c.value.slice(0,u.value+n))).find(e=>e.dataRef.textValue.startsWith(l.value)&&!e.dataRef.disabled),a=r?c.value.indexOf(r):-1;a===-1||a===u.value||(u.value=a,d.value=1)},clearSearch(){e.disabled||i.value!==1&&l.value!==``&&(l.value=``)},registerOption(e,t){let n=f(n=>[...n,{id:e,dataRef:t}]);c.value=n.options,u.value=n.activeOptionIndex},unregisterOption(e){let t=f(t=>{let n=t.findIndex(t=>t.id===e);return n!==-1&&t.splice(n,1),t});c.value=t.options,u.value=t.activeOptionIndex,d.value=1},theirOnChange(t){e.disabled||h(t)},select(t){e.disabled||h(To(p.value,{0:()=>t,1:()=>{let e=vn(_.value.value).slice(),n=vn(t),r=e.findIndex(e=>_.compare(n,vn(e)));return r===-1?e.push(n):e.splice(r,1),e}}))}};Uo([o,s],(e,t)=>{var n;_.closeListbox(),No(t,Bo.Loose)||(e.preventDefault(),(n=Co(o))==null||n.focus())},W(()=>i.value===0)),ur(Ls,_),ns(W(()=>To(i.value,{0:is.Open,1:is.Closed})));let v=W(()=>Co(o)?.closest(`form`));return Vi(()=>{pr([v],()=>{if(!v.value||e.defaultValue===void 0)return;function t(){_.theirOnChange(e.defaultValue)}return v.value.addEventListener(`reset`,t),()=>{var e;(e=v.value)==null||e.removeEventListener(`reset`,t)}},{immediate:!0})}),()=>{let{name:r,modelValue:a,disabled:o,form:s,...c}=e,l={open:i.value===0,disabled:o,value:g.value};return ci(H,[...r!=null&&g.value!=null?yae({[r]:g.value}).map(([e,t])=>ci($o,uae({features:Qo.Hidden,key:e,as:`input`,type:`hidden`,hidden:!0,readOnly:!0,form:s,disabled:o,name:e,value:t}))):[],qo({ourProps:{},theirProps:{...n,...Yo(c,[`defaultValue`,`onUpdate:modelValue`,`horizontal`,`multiple`,`by`])},slot:l,slots:t,attrs:n,name:`Listbox`})])}}}),Aoe=N({name:`ListboxLabel`,props:{as:{type:[Object,String],default:`label`},id:{type:String,default:null}},setup(e,{attrs:t,slots:n}){let r=e.id??`headlessui-listbox-label-${xo()}`,i=Is(`ListboxLabel`);function a(){var e;(e=Co(i.buttonRef))==null||e.focus({preventScroll:!0})}return()=>{let o={open:i.listboxState.value===0,disabled:i.disabled.value},{...s}=e;return qo({ourProps:{id:r,ref:i.labelRef,onClick:a},theirProps:s,slot:o,attrs:t,slots:n,name:`ListboxLabel`})}}}),joe=N({name:`ListboxButton`,props:{as:{type:[Object,String],default:`button`},id:{type:String,default:null}},setup(e,{attrs:t,slots:n,expose:r}){let i=e.id??`headlessui-listbox-button-${xo()}`,a=Is(`ListboxButton`);r({el:a.buttonRef,$el:a.buttonRef});function o(e){switch(e.key){case os.Space:case os.Enter:case os.ArrowDown:e.preventDefault(),a.openListbox(),ir(()=>{var e;(e=Co(a.optionsRef))==null||e.focus({preventScroll:!0}),a.value.value||a.goToOption(ls.First)});break;case os.ArrowUp:e.preventDefault(),a.openListbox(),ir(()=>{var e;(e=Co(a.optionsRef))==null||e.focus({preventScroll:!0}),a.value.value||a.goToOption(ls.Last)});break}}function s(e){switch(e.key){case os.Space:e.preventDefault();break}}function c(e){a.disabled.value||(a.listboxState.value===0?(a.closeListbox(),ir(()=>Co(a.buttonRef)?.focus({preventScroll:!0}))):(e.preventDefault(),a.openListbox(),Toe(()=>Co(a.optionsRef)?.focus({preventScroll:!0}))))}let l=Go(W(()=>({as:e.as,type:t.type})),a.buttonRef);return()=>{let r={open:a.listboxState.value===0,disabled:a.disabled.value,value:a.value.value},{...u}=e;return qo({ourProps:{ref:a.buttonRef,id:i,type:l.value,"aria-haspopup":`listbox`,"aria-controls":Co(a.optionsRef)?.id,"aria-expanded":a.listboxState.value===0,"aria-labelledby":a.labelRef.value?[Co(a.labelRef)?.id,i].join(` `):void 0,disabled:a.disabled.value===!0||void 0,onKeydown:o,onKeyup:s,onClick:c},theirProps:u,slot:r,attrs:t,slots:n,name:`ListboxButton`})}}}),Moe=N({name:`ListboxOptions`,props:{as:{type:[Object,String],default:`ul`},static:{type:Boolean,default:!1},unmount:{type:Boolean,default:!0},id:{type:String,default:null}},setup(e,{attrs:t,slots:n,expose:r}){let i=e.id??`headlessui-listbox-options-${xo()}`,a=Is(`ListboxOptions`),o=A(null);r({el:a.optionsRef,$el:a.optionsRef});function s(e){switch(o.value&&clearTimeout(o.value),e.key){case os.Space:if(a.searchQuery.value!==``)return e.preventDefault(),e.stopPropagation(),a.search(e.key);case os.Enter:if(e.preventDefault(),e.stopPropagation(),a.activeOptionIndex.value!==null){let e=a.options.value[a.activeOptionIndex.value];a.select(e.dataRef.value)}a.mode.value===0&&(a.closeListbox(),ir(()=>Co(a.buttonRef)?.focus({preventScroll:!0})));break;case To(a.orientation.value,{vertical:os.ArrowDown,horizontal:os.ArrowRight}):return e.preventDefault(),e.stopPropagation(),a.goToOption(ls.Next);case To(a.orientation.value,{vertical:os.ArrowUp,horizontal:os.ArrowLeft}):return e.preventDefault(),e.stopPropagation(),a.goToOption(ls.Previous);case os.Home:case os.PageUp:return e.preventDefault(),e.stopPropagation(),a.goToOption(ls.First);case os.End:case os.PageDown:return e.preventDefault(),e.stopPropagation(),a.goToOption(ls.Last);case os.Escape:e.preventDefault(),e.stopPropagation(),a.closeListbox(),ir(()=>Co(a.buttonRef)?.focus({preventScroll:!0}));break;case os.Tab:e.preventDefault(),e.stopPropagation();break;default:e.key.length===1&&(a.search(e.key),o.value=setTimeout(()=>a.clearSearch(),350));break}}let c=ts(),l=W(()=>c===null?a.listboxState.value===0:(c.value&is.Open)===is.Open);return()=>{var r;let o={open:a.listboxState.value===0},{...c}=e;return qo({ourProps:{"aria-activedescendant":a.activeOptionIndex.value===null||(r=a.options.value[a.activeOptionIndex.value])==null?void 0:r.id,"aria-multiselectable":a.mode.value===1||void 0,"aria-labelledby":Co(a.buttonRef)?.id,"aria-orientation":a.orientation.value,id:i,onKeydown:s,role:`listbox`,tabIndex:0,ref:a.optionsRef},theirProps:c,slot:o,attrs:t,slots:n,features:Xo.RenderStrategy|Xo.Static,visible:l.value,name:`ListboxOptions`})}}}),Noe=N({name:`ListboxOption`,props:{as:{type:[Object,String],default:`li`},value:{type:[Object,String,Number,Boolean]},disabled:{type:Boolean,default:!1},id:{type:String,default:null}},setup(e,{slots:t,attrs:n,expose:r}){let i=e.id??`headlessui-listbox-option-${xo()}`,a=Is(`ListboxOption`),o=A(null);r({el:o,$el:o});let s=W(()=>a.activeOptionIndex.value!==null&&a.options.value[a.activeOptionIndex.value].id===i),c=W(()=>To(a.mode.value,{0:()=>a.compare(vn(a.value.value),vn(e.value)),1:()=>vn(a.value.value).some(t=>a.compare(vn(t),vn(e.value)))})),l=W(()=>To(a.mode.value,{1:()=>{let e=vn(a.value.value);return a.options.value.find(t=>e.some(e=>a.compare(vn(e),vn(t.dataRef.value))))?.id===i},0:()=>c.value})),u=Soe(o),d=W(()=>({disabled:e.disabled,value:e.value,get textValue(){return u()},domRef:o}));Vi(()=>a.registerOption(i,d)),Wi(()=>a.unregisterOption(i)),Vi(()=>{pr([a.listboxState,c],()=>{a.listboxState.value===0&&c.value&&To(a.mode.value,{1:()=>{l.value&&a.goToOption(ls.Specific,i)},0:()=>{a.goToOption(ls.Specific,i)}})},{immediate:!0})}),fr(()=>{a.listboxState.value===0&&s.value&&a.activationTrigger.value!==0&&ir(()=>{var e;return((e=Co(o))?.scrollIntoView)?.call(e,{block:`nearest`})})});function f(t){if(e.disabled)return t.preventDefault();a.select(e.value),a.mode.value===0&&(a.closeListbox(),ir(()=>Co(a.buttonRef)?.focus({preventScroll:!0})))}function p(){if(e.disabled)return a.goToOption(ls.Nothing);a.goToOption(ls.Specific,i)}let m=iae();function h(e){m.update(e)}function g(t){m.wasMoved(t)&&(e.disabled||s.value||a.goToOption(ls.Specific,i,0))}function _(t){m.wasMoved(t)&&(e.disabled||s.value&&a.goToOption(ls.Nothing))}return()=>{let{disabled:r}=e,a={active:s.value,selected:c.value,disabled:r},{value:l,disabled:u,...d}=e;return qo({ourProps:{id:i,ref:o,role:`option`,tabIndex:r===!0?void 0:-1,"aria-disabled":r===!0||void 0,"aria-selected":c.value,disabled:void 0,onClick:f,onFocus:p,onPointerenter:h,onMouseenter:h,onPointermove:g,onMousemove:g,onPointerleave:_,onMouseleave:_},theirProps:d,slot:a,attrs:n,slots:t,name:`ListboxOption`})}}})}));function Foe(e){requestAnimationFrame(()=>requestAnimationFrame(e))}function Rs(e){let t=dr(zs,null);if(t===null){let t=Error(`<${e} /> is missing a parent component.`);throw Error.captureStackTrace&&Error.captureStackTrace(t,Rs),t}return t}var Ioe,Loe,zs,Roe,zoe,Boe,Voe,Hoe=s((()=>{G(),So(),Wo(),Ko(),Coe(),aae(),sae(),as(),ss(),vae(),wo(),Vo(),Eo(),Zo(),Ioe=(e=>(e[e.Open=0]=`Open`,e[e.Closed=1]=`Closed`,e))(Ioe||{}),Loe=(e=>(e[e.Pointer=0]=`Pointer`,e[e.Other=1]=`Other`,e))(Loe||{}),zs=Symbol(`MenuContext`),Roe=N({name:`Menu`,props:{as:{type:[Object,String],default:`template`}},setup(e,{slots:t,attrs:n}){let r=A(1),i=A(null),a=A(null),o=A([]),s=A(``),c=A(null),l=A(1);function u(e=e=>e){let t=c.value===null?null:o.value[c.value],n=Fo(e(o.value.slice()),e=>Co(e.dataRef.domRef)),r=t?n.indexOf(t):null;return r===-1&&(r=null),{items:n,activeItemIndex:r}}let d={menuState:r,buttonRef:i,itemsRef:a,items:o,searchQuery:s,activeItemIndex:c,activationTrigger:l,closeMenu:()=>{r.value=1,c.value=null},openMenu:()=>r.value=0,goToItem(e,t,n){let r=u(),i=_ae(e===ls.Specific?{focus:ls.Specific,id:t}:{focus:e},{resolveItems:()=>r.items,resolveActiveIndex:()=>r.activeItemIndex,resolveId:e=>e.id,resolveDisabled:e=>e.dataRef.disabled});s.value=``,c.value=i,l.value=n??1,o.value=r.items},search(e){let t=+(s.value===``);s.value+=e.toLowerCase();let n=(c.value===null?o.value:o.value.slice(c.value+t).concat(o.value.slice(0,c.value+t))).find(e=>e.dataRef.textValue.startsWith(s.value)&&!e.dataRef.disabled),r=n?o.value.indexOf(n):-1;r===-1||r===c.value||(c.value=r,l.value=1)},clearSearch(){s.value=``},registerItem(e,t){let n=u(n=>[...n,{id:e,dataRef:t}]);o.value=n.items,c.value=n.activeItemIndex,l.value=1},unregisterItem(e){let t=u(t=>{let n=t.findIndex(t=>t.id===e);return n!==-1&&t.splice(n,1),t});o.value=t.items,c.value=t.activeItemIndex,l.value=1}};return Uo([i,a],(e,t)=>{var n;d.closeMenu(),No(t,Bo.Loose)||(e.preventDefault(),(n=Co(i))==null||n.focus())},W(()=>r.value===0)),ur(zs,d),ns(W(()=>To(r.value,{0:is.Open,1:is.Closed}))),()=>qo({ourProps:{},theirProps:e,slot:{open:r.value===0,close:d.closeMenu},slots:t,attrs:n,name:`Menu`})}}),zoe=N({name:`MenuButton`,props:{disabled:{type:Boolean,default:!1},as:{type:[Object,String],default:`button`},id:{type:String,default:null}},setup(e,{attrs:t,slots:n,expose:r}){let i=e.id??`headlessui-menu-button-${xo()}`,a=Rs(`MenuButton`);r({el:a.buttonRef,$el:a.buttonRef});function o(e){switch(e.key){case os.Space:case os.Enter:case os.ArrowDown:e.preventDefault(),e.stopPropagation(),a.openMenu(),ir(()=>{var e;(e=Co(a.itemsRef))==null||e.focus({preventScroll:!0}),a.goToItem(ls.First)});break;case os.ArrowUp:e.preventDefault(),e.stopPropagation(),a.openMenu(),ir(()=>{var e;(e=Co(a.itemsRef))==null||e.focus({preventScroll:!0}),a.goToItem(ls.Last)});break}}function s(e){switch(e.key){case os.Space:e.preventDefault();break}}function c(t){e.disabled||(a.menuState.value===0?(a.closeMenu(),ir(()=>Co(a.buttonRef)?.focus({preventScroll:!0}))):(t.preventDefault(),a.openMenu(),Foe(()=>Co(a.itemsRef)?.focus({preventScroll:!0}))))}let l=Go(W(()=>({as:e.as,type:t.type})),a.buttonRef);return()=>{let r={open:a.menuState.value===0},{...u}=e;return qo({ourProps:{ref:a.buttonRef,id:i,type:l.value,"aria-haspopup":`menu`,"aria-controls":Co(a.itemsRef)?.id,"aria-expanded":a.menuState.value===0,onKeydown:o,onKeyup:s,onClick:c},theirProps:u,slot:r,attrs:t,slots:n,name:`MenuButton`})}}}),Boe=N({name:`MenuItems`,props:{as:{type:[Object,String],default:`div`},static:{type:Boolean,default:!1},unmount:{type:Boolean,default:!0},id:{type:String,default:null}},setup(e,{attrs:t,slots:n,expose:r}){let i=e.id??`headlessui-menu-items-${xo()}`,a=Rs(`MenuItems`),o=A(null);r({el:a.itemsRef,$el:a.itemsRef}),oae({container:W(()=>Co(a.itemsRef)),enabled:W(()=>a.menuState.value===0),accept(e){return e.getAttribute(`role`)===`menuitem`?NodeFilter.FILTER_REJECT:e.hasAttribute(`role`)?NodeFilter.FILTER_SKIP:NodeFilter.FILTER_ACCEPT},walk(e){e.setAttribute(`role`,`none`)}});function s(e){var t;switch(o.value&&clearTimeout(o.value),e.key){case os.Space:if(a.searchQuery.value!==``)return e.preventDefault(),e.stopPropagation(),a.search(e.key);case os.Enter:if(e.preventDefault(),e.stopPropagation(),a.activeItemIndex.value!==null){let e=a.items.value[a.activeItemIndex.value];(t=Co(e.dataRef.domRef))==null||t.click()}a.closeMenu(),Uie(Co(a.buttonRef));break;case os.ArrowDown:return e.preventDefault(),e.stopPropagation(),a.goToItem(ls.Next);case os.ArrowUp:return e.preventDefault(),e.stopPropagation(),a.goToItem(ls.Previous);case os.Home:case os.PageUp:return e.preventDefault(),e.stopPropagation(),a.goToItem(ls.First);case os.End:case os.PageDown:return e.preventDefault(),e.stopPropagation(),a.goToItem(ls.Last);case os.Escape:e.preventDefault(),e.stopPropagation(),a.closeMenu(),ir(()=>Co(a.buttonRef)?.focus({preventScroll:!0}));break;case os.Tab:e.preventDefault(),e.stopPropagation(),a.closeMenu(),ir(()=>Gie(Co(a.buttonRef),e.shiftKey?Ro.Previous:Ro.Next));break;default:e.key.length===1&&(a.search(e.key),o.value=setTimeout(()=>a.clearSearch(),350));break}}function c(e){switch(e.key){case os.Space:e.preventDefault();break}}let l=ts(),u=W(()=>l===null?a.menuState.value===0:(l.value&is.Open)===is.Open);return()=>{var r;let o={open:a.menuState.value===0},{...l}=e;return qo({ourProps:{"aria-activedescendant":a.activeItemIndex.value===null||(r=a.items.value[a.activeItemIndex.value])==null?void 0:r.id,"aria-labelledby":Co(a.buttonRef)?.id,id:i,onKeydown:s,onKeyup:c,role:`menu`,tabIndex:0,ref:a.itemsRef},theirProps:l,slot:o,attrs:t,slots:n,features:Xo.RenderStrategy|Xo.Static,visible:u.value,name:`MenuItems`})}}}),Voe=N({name:`MenuItem`,inheritAttrs:!1,props:{as:{type:[Object,String],default:`template`},disabled:{type:Boolean,default:!1},id:{type:String,default:null}},setup(e,{slots:t,attrs:n,expose:r}){let i=e.id??`headlessui-menu-item-${xo()}`,a=Rs(`MenuItem`),o=A(null);r({el:o,$el:o});let s=W(()=>a.activeItemIndex.value!==null&&a.items.value[a.activeItemIndex.value].id===i),c=Soe(o),l=W(()=>({disabled:e.disabled,get textValue(){return c()},domRef:o}));Vi(()=>a.registerItem(i,l)),Wi(()=>a.unregisterItem(i)),fr(()=>{a.menuState.value===0&&s.value&&a.activationTrigger.value!==0&&ir(()=>{var e;return((e=Co(o))?.scrollIntoView)?.call(e,{block:`nearest`})})});function u(t){if(e.disabled)return t.preventDefault();a.closeMenu(),Uie(Co(a.buttonRef))}function d(){if(e.disabled)return a.goToItem(ls.Nothing);a.goToItem(ls.Specific,i)}let f=iae();function p(e){f.update(e)}function m(t){f.wasMoved(t)&&(e.disabled||s.value||a.goToItem(ls.Specific,i,0))}function h(t){f.wasMoved(t)&&(e.disabled||s.value&&a.goToItem(ls.Nothing))}return()=>{let{disabled:r,...c}=e,l={active:s.value,disabled:r,close:a.closeMenu};return qo({ourProps:{id:i,ref:o,role:`menuitem`,tabIndex:r===!0?void 0:-1,"aria-disabled":r===!0||void 0,onClick:u,onFocus:d,onPointerenter:p,onMouseenter:p,onPointermove:m,onMousemove:m,onPointerleave:h,onMouseleave:h},theirProps:{...n,...c},slot:l,attrs:n,slots:t,name:`MenuItem`})}}})}));function Bs(e){let t=dr(Vs,null);if(t===null){let t=Error(`<${e} /> is missing a parent <${Us.name} /> component.`);throw Error.captureStackTrace&&Error.captureStackTrace(t,Bs),t}return t}function Uoe(){return dr(Koe,null)}function Woe(){return dr(Hs,null)}var Goe,Vs,Koe,Hs,Us,Ws,Gs,qoe=s((()=>{G(),uoe(),ds(),So(),Wo(),Ko(),Yae(),wae(),es(),as(),ss(),wo(),Vo(),Eo(),jo(),Zo(),Goe=(e=>(e[e.Open=0]=`Open`,e[e.Closed=1]=`Closed`,e))(Goe||{}),Vs=Symbol(`PopoverContext`),Koe=Symbol(`PopoverGroupContext`),Hs=Symbol(`PopoverPanelContext`),Us=N({name:`Popover`,inheritAttrs:!1,props:{as:{type:[Object,String],default:`div`}},setup(e,{slots:t,attrs:n,expose:r}){let i=A(null);r({el:i,$el:i});let a=A(1),o=A(null),s=A(null),c=A(null),l=A(null),u=W(()=>Ao(i)),d=W(()=>{var e,t;if(!Co(o)||!Co(l))return!1;for(let e of document.querySelectorAll(`body > *`))if(Number(e?.contains(Co(o)))^Number(e?.contains(Co(l))))return!0;let n=Mo(),r=n.indexOf(Co(o)),i=(r+n.length-1)%n.length,a=(r+1)%n.length,s=n[i],c=n[a];return!((e=Co(l))!=null&&e.contains(s))&&!((t=Co(l))!=null&&t.contains(c))}),f={popoverState:a,buttonId:A(null),panelId:A(null),panel:l,button:o,isPortalled:d,beforePanelSentinel:s,afterPanelSentinel:c,togglePopover(){a.value=To(a.value,{0:1,1:0})},closePopover(){a.value!==1&&(a.value=1)},close(e){f.closePopover(),(e?e instanceof HTMLElement?e:e.value instanceof HTMLElement?Co(e):Co(f.button):Co(f.button))?.focus()}};ur(Vs,f),ns(W(()=>To(a.value,{0:is.Open,1:is.Closed})));let p={buttonId:f.buttonId,panelId:f.panelId,close(){f.closePopover()}},m=Uoe(),h=m?.registerPopover,[g,_]=soe(),v=Jae({mainTreeNodeRef:m?.mainTreeNodeRef,portals:g,defaultContainers:[o,l]});function y(){return m?.isFocusWithinPopoverGroup()??(u.value?.activeElement&&(Co(o)?.contains(u.value.activeElement)||Co(l)?.contains(u.value.activeElement)))}return fr(()=>h?.(p)),us(u.value?.defaultView,`focus`,e=>{var t,n;e.target!==window&&e.target instanceof HTMLElement&&a.value===0&&(y()||o&&l&&(v.contains(e.target)||(t=Co(f.beforePanelSentinel))!=null&&t.contains(e.target)||(n=Co(f.afterPanelSentinel))!=null&&n.contains(e.target)||f.closePopover()))},!0),Uo(v.resolveContainers,(e,t)=>{var n;f.closePopover(),No(t,Bo.Loose)||(e.preventDefault(),(n=Co(o))==null||n.focus())},W(()=>a.value===0)),()=>{let r={open:a.value===0,close:f.close};return ci(H,[ci(_,{},()=>qo({theirProps:{...e,...n},ourProps:{ref:i},slot:r,slots:t,attrs:n,name:`Popover`})),ci(v.MainTreeNode)])}}}),Ws=N({name:`PopoverButton`,props:{as:{type:[Object,String],default:`button`},disabled:{type:[Boolean],default:!1},id:{type:String,default:null}},inheritAttrs:!1,setup(e,{attrs:t,slots:n,expose:r}){let i=e.id??`headlessui-popover-button-${xo()}`,a=Bs(`PopoverButton`),o=W(()=>Ao(a.button));r({el:a.button,$el:a.button}),Vi(()=>{a.buttonId.value=i}),Wi(()=>{a.buttonId.value=null});let s=Uoe()?.closeOthers,c=Woe(),l=W(()=>c!==null&&c.value===a.panelId.value),u=A(null),d=`headlessui-focus-sentinel-${xo()}`;l.value||fr(()=>{a.button.value=Co(u)});let f=Go(W(()=>({as:e.as,type:t.type})),u);function p(e){var t,n,r,i,c;if(l.value){if(a.popoverState.value===1)return;switch(e.key){case os.Space:case os.Enter:e.preventDefault(),(n=(t=e.target).click)==null||n.call(t),a.closePopover(),(r=Co(a.button))==null||r.focus();break}}else switch(e.key){case os.Space:case os.Enter:e.preventDefault(),e.stopPropagation(),a.popoverState.value===1&&s?.(a.buttonId.value),a.togglePopover();break;case os.Escape:if(a.popoverState.value!==0)return s?.(a.buttonId.value);if(!Co(a.button)||(i=o.value)!=null&&i.activeElement&&!((c=Co(a.button))!=null&&c.contains(o.value.activeElement)))return;e.preventDefault(),e.stopPropagation(),a.closePopover();break}}function m(e){l.value||e.key===os.Space&&e.preventDefault()}function h(t){var n,r;e.disabled||(l.value?(a.closePopover(),(n=Co(a.button))==null||n.focus()):(t.preventDefault(),t.stopPropagation(),a.popoverState.value===1&&s?.(a.buttonId.value),a.togglePopover(),(r=Co(a.button))==null||r.focus()))}function g(e){e.preventDefault(),e.stopPropagation()}let _=fs();function v(){let e=Co(a.panel);if(!e)return;function t(){To(_.value,{[ps.Forwards]:()=>Io(e,Ro.First),[ps.Backwards]:()=>Io(e,Ro.Last)})===zo.Error&&Io(Mo().filter(e=>e.dataset.headlessuiFocusGuard!==`true`),To(_.value,{[ps.Forwards]:Ro.Next,[ps.Backwards]:Ro.Previous}),{relativeTo:Co(a.button)})}t()}return()=>{let r=a.popoverState.value===0,o={open:r},{...s}=e;return ci(H,[qo({ourProps:l.value?{ref:u,type:f.value,onKeydown:p,onClick:h}:{ref:u,id:i,type:f.value,"aria-expanded":a.popoverState.value===0,"aria-controls":Co(a.panel)?a.panelId.value:void 0,disabled:e.disabled?!0:void 0,onKeydown:p,onKeyup:m,onClick:h,onMousedown:g},theirProps:{...t,...s},slot:o,attrs:t,slots:n,name:`PopoverButton`}),r&&!l.value&&a.isPortalled.value&&ci($o,{id:d,features:Qo.Focusable,"data-headlessui-focus-guard":!0,as:`button`,type:`button`,onFocus:v})])}}}),Gs=N({name:`PopoverPanel`,props:{as:{type:[Object,String],default:`div`},static:{type:Boolean,default:!1},unmount:{type:Boolean,default:!0},focus:{type:Boolean,default:!1},id:{type:String,default:null}},inheritAttrs:!1,setup(e,{attrs:t,slots:n,expose:r}){let i=e.id??`headlessui-popover-panel-${xo()}`,{focus:a}=e,o=Bs(`PopoverPanel`),s=W(()=>Ao(o.panel)),c=`headlessui-focus-sentinel-before-${xo()}`,l=`headlessui-focus-sentinel-after-${xo()}`;r({el:o.panel,$el:o.panel}),Vi(()=>{o.panelId.value=i}),Wi(()=>{o.panelId.value=null}),ur(Hs,o.panelId),fr(()=>{var e;if(!a||o.popoverState.value!==0||!o.panel)return;let t=s.value?.activeElement;(e=Co(o.panel))!=null&&e.contains(t)||Io(Co(o.panel),Ro.First)});let u=ts(),d=W(()=>u===null?o.popoverState.value===0:(u.value&is.Open)===is.Open);function f(e){var t,n;switch(e.key){case os.Escape:if(o.popoverState.value!==0||!Co(o.panel)||s.value&&!((t=Co(o.panel))!=null&&t.contains(s.value.activeElement)))return;e.preventDefault(),e.stopPropagation(),o.closePopover(),(n=Co(o.button))==null||n.focus();break}}function p(e){var t,n,r,i,a;let s=e.relatedTarget;s&&Co(o.panel)&&((t=Co(o.panel))!=null&&t.contains(s)||(o.closePopover(),((r=(n=Co(o.beforePanelSentinel))?.contains)!=null&&r.call(n,s)||(a=(i=Co(o.afterPanelSentinel))?.contains)!=null&&a.call(i,s))&&s.focus({preventScroll:!0})))}let m=fs();function h(){let e=Co(o.panel);if(!e)return;function t(){To(m.value,{[ps.Forwards]:()=>{var t;Io(e,Ro.First)===zo.Error&&((t=Co(o.afterPanelSentinel))==null||t.focus())},[ps.Backwards]:()=>{var e;(e=Co(o.button))==null||e.focus({preventScroll:!0})}})}t()}function g(){let e=Co(o.panel);if(!e)return;function t(){To(m.value,{[ps.Forwards]:()=>{let e=Co(o.button),t=Co(o.panel);if(!e)return;let n=Mo(),r=n.indexOf(e),i=n.slice(0,r+1),a=[...n.slice(r+1),...i];for(let e of a.slice())if(e.dataset.headlessuiFocusGuard===`true`||t!=null&&t.contains(e)){let t=a.indexOf(e);t!==-1&&a.splice(t,1)}Io(a,Ro.First,{sorted:!1})},[ps.Backwards]:()=>{var t;Io(e,Ro.Previous)===zo.Error&&((t=Co(o.button))==null||t.focus())}})}t()}return()=>{let r={open:o.popoverState.value===0,close:o.close},{focus:s,...u}=e;return qo({ourProps:{ref:o.panel,id:i,onKeydown:f,onFocusout:a&&o.popoverState.value===0?p:void 0,tabIndex:-1},theirProps:{...t,...u},attrs:t,slot:r,slots:{...n,default:(...e)=>[ci(H,[d.value&&o.isPortalled.value&&ci($o,{id:c,ref:o.beforePanelSentinel,features:Qo.Focusable,"data-headlessui-focus-guard":!0,as:`button`,type:`button`,onFocus:h}),n.default?.call(n,...e),d.value&&o.isPortalled.value&&ci($o,{id:l,ref:o.afterPanelSentinel,features:Qo.Focusable,"data-headlessui-focus-guard":!0,as:`button`,type:`button`,onFocus:g})])]},features:Xo.RenderStrategy|Xo.Static,visible:d.value,name:`PopoverPanel`})}}})})),Joe=s((()=>{})),Yoe=s((()=>{})),Xoe,Zoe=s((()=>{G(),es(),Xoe=N({props:{onFocus:{type:Function,required:!0}},setup(e){let t=A(!0);return()=>t.value?ci($o,{as:`button`,type:`button`,features:Qo.Focusable,onFocus(n){n.preventDefault();let r,i=50;function a(){var n;if(i--<=0){r&&cancelAnimationFrame(r);return}if((n=e.onFocus)!=null&&n.call(e)){t.value=!1,cancelAnimationFrame(r);return}r=requestAnimationFrame(a)}r=requestAnimationFrame(a)}}):null}})}));function Ks(e){let t=dr(qs,null);if(t===null){let t=Error(`<${e} /> is missing a parent component.`);throw Error.captureStackTrace&&Error.captureStackTrace(t,Ks),t}return t}var Qoe,$oe,qs,Js,Ys,Xs,Zs,ese,tse,nse=s((()=>{G(),So(),Ko(),Zoe(),es(),ss(),wo(),Vo(),Eo(),vo(),jo(),Zo(),Qoe=(e=>(e[e.Forwards=0]=`Forwards`,e[e.Backwards=1]=`Backwards`,e))(Qoe||{}),$oe=(e=>(e[e.Less=-1]=`Less`,e[e.Equal=0]=`Equal`,e[e.Greater=1]=`Greater`,e))($oe||{}),qs=Symbol(`TabsContext`),Js=Symbol(`TabsSSRContext`),Ys=N({name:`TabGroup`,emits:{change:e=>!0},props:{as:{type:[Object,String],default:`template`},selectedIndex:{type:[Number],default:null},defaultIndex:{type:[Number],default:0},vertical:{type:[Boolean],default:!1},manual:{type:[Boolean],default:!1}},inheritAttrs:!1,setup(e,{slots:t,attrs:n,emit:r}){let i=A(e.selectedIndex??e.defaultIndex),a=A([]),o=A([]),s=W(()=>e.selectedIndex!==null),c=W(()=>s.value?e.selectedIndex:i.value);function l(e){let t=Fo(u.tabs.value,Co),n=Fo(u.panels.value,Co),r=t.filter(e=>{var t;return!((t=Co(e))!=null&&t.hasAttribute(`disabled`))});if(e<0||e>t.length-1){let a=To(To(i.value===null?0:Math.sign(e-i.value),{[-1]:()=>1,0:()=>To(Math.sign(e),{[-1]:()=>0,0:()=>0,1:()=>1}),1:()=>0}),{0:()=>t.indexOf(r[0]),1:()=>t.indexOf(r[r.length-1])});a!==-1&&(i.value=a),u.tabs.value=t,u.panels.value=n}else{let a=t.slice(0,e),o=[...t.slice(e),...a].find(e=>r.includes(e));if(!o)return;let s=t.indexOf(o)??u.selectedIndex.value;s===-1&&(s=u.selectedIndex.value),i.value=s,u.tabs.value=t,u.panels.value=n}}let u={selectedIndex:W(()=>i.value??e.defaultIndex??null),orientation:W(()=>e.vertical?`vertical`:`horizontal`),activation:W(()=>e.manual?`manual`:`auto`),tabs:a,panels:o,setSelectedIndex(e){c.value!==e&&r(`change`,e),s.value||l(e)},registerTab(e){if(a.value.includes(e))return;let t=a.value[i.value];if(a.value.push(e),a.value=Fo(a.value,Co),!s.value){let e=a.value.indexOf(t)??i.value;e!==-1&&(i.value=e)}},unregisterTab(e){let t=a.value.indexOf(e);t!==-1&&a.value.splice(t,1)},registerPanel(e){o.value.includes(e)||(o.value.push(e),o.value=Fo(o.value,Co))},unregisterPanel(e){let t=o.value.indexOf(e);t!==-1&&o.value.splice(t,1)}};ur(qs,u);let d=A({tabs:[],panels:[]}),f=A(!1);Vi(()=>{f.value=!0}),ur(Js,W(()=>f.value?null:d.value));let p=W(()=>e.selectedIndex);return Vi(()=>{pr([p],()=>l(e.selectedIndex??e.defaultIndex),{immediate:!0})}),fr(()=>{if(!s.value||c.value==null||u.tabs.value.length<=0)return;let e=Fo(u.tabs.value,Co);e.some((e,t)=>Co(u.tabs.value[t])!==Co(e))&&u.setSelectedIndex(e.findIndex(e=>Co(e)===Co(u.tabs.value[c.value])))}),()=>{let r={selectedIndex:i.value};return ci(H,[a.value.length<=0&&ci(Xoe,{onFocus:()=>{for(let e of a.value){let t=Co(e);if(t?.tabIndex===0)return t.focus(),!0}return!1}}),qo({theirProps:{...n,...Yo(e,[`selectedIndex`,`defaultIndex`,`manual`,`vertical`,`onChange`])},ourProps:{},slot:r,slots:t,attrs:n,name:`TabGroup`})])}}}),Xs=N({name:`TabList`,props:{as:{type:[Object,String],default:`div`}},setup(e,{attrs:t,slots:n}){let r=Ks(`TabList`);return()=>{let i={selectedIndex:r.selectedIndex.value};return qo({ourProps:{role:`tablist`,"aria-orientation":r.orientation.value},theirProps:e,slot:i,attrs:t,slots:n,name:`TabList`})}}}),Zs=N({name:`Tab`,props:{as:{type:[Object,String],default:`button`},disabled:{type:[Boolean],default:!1},id:{type:String,default:null}},setup(e,{attrs:t,slots:n,expose:r}){let i=e.id??`headlessui-tabs-tab-${xo()}`,a=Ks(`Tab`),o=A(null);r({el:o,$el:o}),Vi(()=>a.registerTab(o)),Wi(()=>a.unregisterTab(o));let s=dr(Js),c=W(()=>{if(s.value){let e=s.value.tabs.indexOf(i);return e===-1?s.value.tabs.push(i)-1:e}return-1}),l=W(()=>{let e=a.tabs.value.indexOf(o);return e===-1?c.value:e}),u=W(()=>l.value===a.selectedIndex.value);function d(e){let t=e();if(t===zo.Success&&a.activation.value===`auto`){let e=Ao(o)?.activeElement,t=a.tabs.value.findIndex(t=>Co(t)===e);t!==-1&&a.setSelectedIndex(t)}return t}function f(e){let t=a.tabs.value.map(e=>Co(e)).filter(Boolean);if(e.key===os.Space||e.key===os.Enter){e.preventDefault(),e.stopPropagation(),a.setSelectedIndex(l.value);return}switch(e.key){case os.Home:case os.PageUp:return e.preventDefault(),e.stopPropagation(),d(()=>Io(t,Ro.First));case os.End:case os.PageDown:return e.preventDefault(),e.stopPropagation(),d(()=>Io(t,Ro.Last))}if(d(()=>To(a.orientation.value,{vertical(){return e.key===os.ArrowUp?Io(t,Ro.Previous|Ro.WrapAround):e.key===os.ArrowDown?Io(t,Ro.Next|Ro.WrapAround):zo.Error},horizontal(){return e.key===os.ArrowLeft?Io(t,Ro.Previous|Ro.WrapAround):e.key===os.ArrowRight?Io(t,Ro.Next|Ro.WrapAround):zo.Error}}))===zo.Success)return e.preventDefault()}let p=A(!1);function m(){var t;p.value||(p.value=!0,!e.disabled&&((t=Co(o))==null||t.focus({preventScroll:!0}),a.setSelectedIndex(l.value),_o(()=>{p.value=!1})))}function h(e){e.preventDefault()}let g=Go(W(()=>({as:e.as,type:t.type})),o);return()=>{let r={selected:u.value,disabled:e.disabled??!1},{...s}=e;return qo({ourProps:{ref:o,onKeydown:f,onMousedown:h,onClick:m,id:i,role:`tab`,type:g.value,"aria-controls":Co(a.panels.value[l.value])?.id,"aria-selected":u.value,tabIndex:u.value?0:-1,disabled:e.disabled?!0:void 0},theirProps:s,slot:r,attrs:t,slots:n,name:`Tab`})}}}),ese=N({name:`TabPanels`,props:{as:{type:[Object,String],default:`div`}},setup(e,{slots:t,attrs:n}){let r=Ks(`TabPanels`);return()=>qo({theirProps:e,ourProps:{},slot:{selectedIndex:r.selectedIndex.value},attrs:n,slots:t,name:`TabPanels`})}}),tse=N({name:`TabPanel`,props:{as:{type:[Object,String],default:`div`},static:{type:Boolean,default:!1},unmount:{type:Boolean,default:!0},id:{type:String,default:null},tabIndex:{type:Number,default:0}},setup(e,{attrs:t,slots:n,expose:r}){let i=e.id??`headlessui-tabs-panel-${xo()}`,a=Ks(`TabPanel`),o=A(null);r({el:o,$el:o}),Vi(()=>a.registerPanel(o)),Wi(()=>a.unregisterPanel(o));let s=dr(Js),c=W(()=>{if(s.value){let e=s.value.panels.indexOf(i);return e===-1?s.value.panels.push(i)-1:e}return-1}),l=W(()=>{let e=a.panels.value.indexOf(o);return e===-1?c.value:e}),u=W(()=>l.value===a.selectedIndex.value);return()=>{let r={selected:u.value},{tabIndex:s,...c}=e,d={ref:o,id:i,role:`tabpanel`,"aria-labelledby":Co(a.tabs.value[l.value])?.id,tabIndex:u.value?s:-1};return!u.value&&e.unmount&&!e.static?ci($o,{as:`span`,"aria-hidden":!0,...d}):qo({ourProps:d,theirProps:c,slot:r,attrs:t,slots:n,features:Xo.Static|Xo.RenderStrategy,visible:u.value,name:`TabPanel`})}}})})),rse=s((()=>{})),Qs=s((()=>{Cae(),hoe(),voe(),jae(),Poe(),Hoe(),qoe(),Joe(),Yoe(),nse(),rse(),So()})),$s,ec=s((()=>{$s=(e,t)=>{let n=e.__vccOpts||e;for(let[e,r]of t)n[e]=r;return n}}));function tc(e={}){let t=W(()=>e.label?{"aria-label":e.label}:{"aria-hidden":!0,role:`presentation`});return{bind:W(()=>({width:`1em`,height:`1em`,...t.value})),weight:W(()=>e.weight??ise)}}var ise,nc=s((()=>{G(),ise=`regular`})),ase,ose,sse,cse,lse,use,dse,fse=s((()=>{nc(),G(),ase={key:0},ose={key:1},sse={key:2},cse={key:3},lse={key:4},use={key:5},dse=N({name:`ScalarIconArrowRight`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,ase,[...r[0]||=[R(`path`,{d:`M224.49,136.49l-72,72a12,12,0,0,1-17-17L187,140H40a12,12,0,0,1,0-24H187L135.51,64.48a12,12,0,0,1,17-17l72,72A12,12,0,0,1,224.49,136.49Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,ose,[...r[1]||=[R(`path`,{d:`M216,128l-72,72V56Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M221.66,122.34l-72-72A8,8,0,0,0,136,56v64H40a8,8,0,0,0,0,16h96v64a8,8,0,0,0,13.66,5.66l72-72A8,8,0,0,0,221.66,122.34ZM152,180.69V75.31L204.69,128Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,sse,[...r[2]||=[R(`path`,{d:`M221.66,133.66l-72,72A8,8,0,0,1,136,200V136H40a8,8,0,0,1,0-16h96V56a8,8,0,0,1,13.66-5.66l72,72A8,8,0,0,1,221.66,133.66Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,cse,[...r[3]||=[R(`path`,{d:`M220.24,132.24l-72,72a6,6,0,0,1-8.48-8.48L201.51,134H40a6,6,0,0,1,0-12H201.51L139.76,60.24a6,6,0,0,1,8.48-8.48l72,72A6,6,0,0,1,220.24,132.24Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,lse,[...r[4]||=[R(`path`,{d:`M221.66,133.66l-72,72a8,8,0,0,1-11.32-11.32L196.69,136H40a8,8,0,0,1,0-16H196.69L138.34,61.66a8,8,0,0,1,11.32-11.32l72,72A8,8,0,0,1,221.66,133.66Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,use,[...r[5]||=[R(`path`,{d:`M218.83,130.83l-72,72a4,4,0,0,1-5.66-5.66L206.34,132H40a4,4,0,0,1,0-8H206.34L141.17,58.83a4,4,0,0,1,5.66-5.66l72,72A4,4,0,0,1,218.83,130.83Z`},null,-1)]])):B(``,!0)],16))}})})),pse,mse=s((()=>{fse(),pse=dse})),hse,gse,_se,vse,yse,bse,xse,Sse=s((()=>{nc(),G(),hse={key:0},gse={key:1},_se={key:2},vse={key:3},yse={key:4},bse={key:5},xse=N({name:`ScalarIconArrowUp`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,hse,[...r[0]||=[R(`path`,{d:`M208.49,120.49a12,12,0,0,1-17,0L140,69V216a12,12,0,0,1-24,0V69L64.49,120.49a12,12,0,0,1-17-17l72-72a12,12,0,0,1,17,0l72,72A12,12,0,0,1,208.49,120.49Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,gse,[...r[1]||=[R(`path`,{d:`M200,112H56l72-72Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M205.66,106.34l-72-72a8,8,0,0,0-11.32,0l-72,72A8,8,0,0,0,56,120h64v96a8,8,0,0,0,16,0V120h64a8,8,0,0,0,5.66-13.66ZM75.31,104,128,51.31,180.69,104Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,_se,[...r[2]||=[R(`path`,{d:`M207.39,115.06A8,8,0,0,1,200,120H136v96a8,8,0,0,1-16,0V120H56a8,8,0,0,1-5.66-13.66l72-72a8,8,0,0,1,11.32,0l72,72A8,8,0,0,1,207.39,115.06Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,vse,[...r[3]||=[R(`path`,{d:`M204.24,116.24a6,6,0,0,1-8.48,0L134,54.49V216a6,6,0,0,1-12,0V54.49L60.24,116.24a6,6,0,0,1-8.48-8.48l72-72a6,6,0,0,1,8.48,0l72,72A6,6,0,0,1,204.24,116.24Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,yse,[...r[4]||=[R(`path`,{d:`M205.66,117.66a8,8,0,0,1-11.32,0L136,59.31V216a8,8,0,0,1-16,0V59.31L61.66,117.66a8,8,0,0,1-11.32-11.32l72-72a8,8,0,0,1,11.32,0l72,72A8,8,0,0,1,205.66,117.66Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,bse,[...r[5]||=[R(`path`,{d:`M202.83,114.83a4,4,0,0,1-5.66,0L132,49.66V216a4,4,0,0,1-8,0V49.66L58.83,114.83a4,4,0,0,1-5.66-5.66l72-72a4,4,0,0,1,5.66,0l72,72A4,4,0,0,1,202.83,114.83Z`},null,-1)]])):B(``,!0)],16))}})})),rc,Cse=s((()=>{Sse(),rc=xse})),wse,Tse,Ese,Dse,Ose,kse,Ase,jse=s((()=>{nc(),G(),wse={key:0},Tse={key:1},Ese={key:2},Dse={key:3},Ose={key:4},kse={key:5},Ase=N({name:`ScalarIconArrowUpRight`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,wse,[...r[0]||=[R(`path`,{d:`M204,64V168a12,12,0,0,1-24,0V93L72.49,200.49a12,12,0,0,1-17-17L163,76H88a12,12,0,0,1,0-24H192A12,12,0,0,1,204,64Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,Tse,[...r[1]||=[R(`path`,{d:`M192,64V168L88,64Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M192,56H88a8,8,0,0,0-5.66,13.66L128.69,116,58.34,186.34a8,8,0,0,0,11.32,11.32L140,127.31l46.34,46.35A8,8,0,0,0,200,168V64A8,8,0,0,0,192,56Zm-8,92.69-38.34-38.34h0L107.31,72H184Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,Ese,[...r[2]||=[R(`path`,{d:`M200,64V168a8,8,0,0,1-13.66,5.66L140,127.31,69.66,197.66a8,8,0,0,1-11.32-11.32L128.69,116,82.34,69.66A8,8,0,0,1,88,56H192A8,8,0,0,1,200,64Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,Dse,[...r[3]||=[R(`path`,{d:`M198,64V168a6,6,0,0,1-12,0V78.48L68.24,196.24a6,6,0,0,1-8.48-8.48L177.52,70H88a6,6,0,0,1,0-12H192A6,6,0,0,1,198,64Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,Ose,[...r[4]||=[R(`path`,{d:`M200,64V168a8,8,0,0,1-16,0V83.31L69.66,197.66a8,8,0,0,1-11.32-11.32L172.69,72H88a8,8,0,0,1,0-16H192A8,8,0,0,1,200,64Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,kse,[...r[5]||=[R(`path`,{d:`M196,64V168a4,4,0,0,1-8,0V73.66L66.83,194.83a4,4,0,0,1-5.66-5.66L182.34,68H88a4,4,0,0,1,0-8H192A4,4,0,0,1,196,64Z`},null,-1)]])):B(``,!0)],16))}})})),ic,Mse=s((()=>{jse(),ic=Ase})),Nse,Pse,Fse,Ise,Lse,Rse,zse,Bse=s((()=>{nc(),G(),Nse={key:0},Pse={key:1},Fse={key:2},Ise={key:3},Lse={key:4},Rse={key:5},zse=N({name:`ScalarIconBook`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,Nse,[...r[0]||=[R(`path`,{d:`M208,20H72A36,36,0,0,0,36,56V224a12,12,0,0,0,12,12H192a12,12,0,0,0,0-24H60v-4a12,12,0,0,1,12-12H208a12,12,0,0,0,12-12V32A12,12,0,0,0,208,20ZM196,172H72a35.59,35.59,0,0,0-12,2.06V56A12,12,0,0,1,72,44H196Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,Pse,[...r[1]||=[R(`path`,{d:`M208,32V192H72a24,24,0,0,0-24,24V56A24,24,0,0,1,72,32Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M208,24H72A32,32,0,0,0,40,56V224a8,8,0,0,0,8,8H192a8,8,0,0,0,0-16H56a16,16,0,0,1,16-16H208a8,8,0,0,0,8-8V32A8,8,0,0,0,208,24Zm-8,160H72a31.82,31.82,0,0,0-16,4.29V56A16,16,0,0,1,72,40H200Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,Fse,[...r[2]||=[R(`path`,{d:`M216,32V192a8,8,0,0,1-8,8H72a16,16,0,0,0-16,16H192a8,8,0,0,1,0,16H48a8,8,0,0,1-8-8V56A32,32,0,0,1,72,24H208A8,8,0,0,1,216,32Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,Ise,[...r[3]||=[R(`path`,{d:`M208,26H72A30,30,0,0,0,42,56V224a6,6,0,0,0,6,6H192a6,6,0,0,0,0-12H54v-2a18,18,0,0,1,18-18H208a6,6,0,0,0,6-6V32A6,6,0,0,0,208,26Zm-6,160H72a29.87,29.87,0,0,0-18,6V56A18,18,0,0,1,72,38H202Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,Lse,[...r[4]||=[R(`path`,{d:`M208,24H72A32,32,0,0,0,40,56V224a8,8,0,0,0,8,8H192a8,8,0,0,0,0-16H56a16,16,0,0,1,16-16H208a8,8,0,0,0,8-8V32A8,8,0,0,0,208,24Zm-8,160H72a31.82,31.82,0,0,0-16,4.29V56A16,16,0,0,1,72,40H200Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,Rse,[...r[5]||=[R(`path`,{d:`M208,28H72A28,28,0,0,0,44,56V224a4,4,0,0,0,4,4H192a4,4,0,0,0,0-8H52v-4a20,20,0,0,1,20-20H208a4,4,0,0,0,4-4V32A4,4,0,0,0,208,28Zm-4,160H72a27.94,27.94,0,0,0-20,8.42V56A20,20,0,0,1,72,36H204Z`},null,-1)]])):B(``,!0)],16))}})})),ac,Vse=s((()=>{Bse(),ac=zse})),Hse,Use,Wse,Gse,Kse,qse,Jse,Yse=s((()=>{nc(),G(),Hse={key:0},Use={key:1},Wse={key:2},Gse={key:3},Kse={key:4},qse={key:5},Jse=N({name:`ScalarIconBookOpen`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,Hse,[...r[0]||=[R(`path`,{d:`M232,44H160a43.86,43.86,0,0,0-32,13.85A43.86,43.86,0,0,0,96,44H24A12,12,0,0,0,12,56V200a12,12,0,0,0,12,12H96a20,20,0,0,1,20,20,12,12,0,0,0,24,0,20,20,0,0,1,20-20h72a12,12,0,0,0,12-12V56A12,12,0,0,0,232,44ZM96,188H36V68H96a20,20,0,0,1,20,20V192.81A43.79,43.79,0,0,0,96,188Zm124,0H160a43.71,43.71,0,0,0-20,4.83V88a20,20,0,0,1,20-20h60Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,Use,[...r[1]||=[R(`path`,{d:`M232,56V200H160a32,32,0,0,0-32,32,32,32,0,0,0-32-32H24V56H96a32,32,0,0,1,32,32,32,32,0,0,1,32-32Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M232,48H160a40,40,0,0,0-32,16A40,40,0,0,0,96,48H24a8,8,0,0,0-8,8V200a8,8,0,0,0,8,8H96a24,24,0,0,1,24,24,8,8,0,0,0,16,0,24,24,0,0,1,24-24h72a8,8,0,0,0,8-8V56A8,8,0,0,0,232,48ZM96,192H32V64H96a24,24,0,0,1,24,24V200A39.81,39.81,0,0,0,96,192Zm128,0H160a39.81,39.81,0,0,0-24,8V88a24,24,0,0,1,24-24h64Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,Wse,[...r[2]||=[R(`path`,{d:`M240,56V200a8,8,0,0,1-8,8H160a24,24,0,0,0-24,23.94,7.9,7.9,0,0,1-5.12,7.55A8,8,0,0,1,120,232a24,24,0,0,0-24-24H24a8,8,0,0,1-8-8V56a8,8,0,0,1,8-8H88a32,32,0,0,1,32,32v87.73a8.17,8.17,0,0,0,7.47,8.25,8,8,0,0,0,8.53-8V80a32,32,0,0,1,32-32h64A8,8,0,0,1,240,56Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,Gse,[...r[3]||=[R(`path`,{d:`M232,50H160a38,38,0,0,0-32,17.55A38,38,0,0,0,96,50H24a6,6,0,0,0-6,6V200a6,6,0,0,0,6,6H96a26,26,0,0,1,26,26,6,6,0,0,0,12,0,26,26,0,0,1,26-26h72a6,6,0,0,0,6-6V56A6,6,0,0,0,232,50ZM96,194H30V62H96a26,26,0,0,1,26,26V204.31A37.86,37.86,0,0,0,96,194Zm130,0H160a37.87,37.87,0,0,0-26,10.32V88a26,26,0,0,1,26-26h66Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,Kse,[...r[4]||=[R(`path`,{d:`M232,48H160a40,40,0,0,0-32,16A40,40,0,0,0,96,48H24a8,8,0,0,0-8,8V200a8,8,0,0,0,8,8H96a24,24,0,0,1,24,24,8,8,0,0,0,16,0,24,24,0,0,1,24-24h72a8,8,0,0,0,8-8V56A8,8,0,0,0,232,48ZM96,192H32V64H96a24,24,0,0,1,24,24V200A39.81,39.81,0,0,0,96,192Zm128,0H160a39.81,39.81,0,0,0-24,8V88a24,24,0,0,1,24-24h64Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,qse,[...r[5]||=[R(`path`,{d:`M232,52H160a36,36,0,0,0-32,19.54A36,36,0,0,0,96,52H24a4,4,0,0,0-4,4V200a4,4,0,0,0,4,4H96a28,28,0,0,1,28,28,4,4,0,0,0,8,0,28,28,0,0,1,28-28h72a4,4,0,0,0,4-4V56A4,4,0,0,0,232,52ZM96,196H28V60H96a28,28,0,0,1,28,28V209.4A35.93,35.93,0,0,0,96,196Zm132,0H160a35.94,35.94,0,0,0-28,13.41V88a28,28,0,0,1,28-28h68Z`},null,-1)]])):B(``,!0)],16))}})})),Xse,Zse=s((()=>{Yse(),Xse=Jse})),Qse,$se,ece,tce,nce,rce,ice,ace=s((()=>{nc(),G(),Qse={key:0},$se={key:1},ece={key:2},tce={key:3},nce={key:4},rce={key:5},ice=N({name:`ScalarIconBookOpenText`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,Qse,[...r[0]||=[R(`path`,{d:`M232,44H160a43.86,43.86,0,0,0-32,13.85A43.86,43.86,0,0,0,96,44H24A12,12,0,0,0,12,56V200a12,12,0,0,0,12,12H96a20,20,0,0,1,20,20,12,12,0,0,0,24,0,20,20,0,0,1,20-20h72a12,12,0,0,0,12-12V56A12,12,0,0,0,232,44ZM96,188H36V68H96a20,20,0,0,1,20,20V192.81A43.79,43.79,0,0,0,96,188Zm124,0H160a43.71,43.71,0,0,0-20,4.83V88a20,20,0,0,1,20-20h60ZM164,96h32a12,12,0,0,1,0,24H164a12,12,0,0,1,0-24Zm44,52a12,12,0,0,1-12,12H164a12,12,0,0,1,0-24h32A12,12,0,0,1,208,148Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,$se,[...r[1]||=[R(`path`,{d:`M232,56V200H160a32,32,0,0,0-32,32V88a32,32,0,0,1,32-32Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M232,48H160a40,40,0,0,0-32,16A40,40,0,0,0,96,48H24a8,8,0,0,0-8,8V200a8,8,0,0,0,8,8H96a24,24,0,0,1,24,24,8,8,0,0,0,16,0,24,24,0,0,1,24-24h72a8,8,0,0,0,8-8V56A8,8,0,0,0,232,48ZM96,192H32V64H96a24,24,0,0,1,24,24V200A39.81,39.81,0,0,0,96,192Zm128,0H160a39.81,39.81,0,0,0-24,8V88a24,24,0,0,1,24-24h64ZM160,88h40a8,8,0,0,1,0,16H160a8,8,0,0,1,0-16Zm48,40a8,8,0,0,1-8,8H160a8,8,0,0,1,0-16h40A8,8,0,0,1,208,128Zm0,32a8,8,0,0,1-8,8H160a8,8,0,0,1,0-16h40A8,8,0,0,1,208,160Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,ece,[...r[2]||=[R(`path`,{d:`M232,48H168a32,32,0,0,0-32,32v87.73a8.17,8.17,0,0,1-7.47,8.25,8,8,0,0,1-8.53-8V80A32,32,0,0,0,88,48H24a8,8,0,0,0-8,8V200a8,8,0,0,0,8,8H96a24,24,0,0,1,24,23.94,7.9,7.9,0,0,0,5.12,7.55A8,8,0,0,0,136,232a24,24,0,0,1,24-24h72a8,8,0,0,0,8-8V56A8,8,0,0,0,232,48ZM208,168H168.27a8.17,8.17,0,0,1-8.25-7.47,8,8,0,0,1,8-8.53h39.73a8.17,8.17,0,0,1,8.25,7.47A8,8,0,0,1,208,168Zm0-32H168.27a8.17,8.17,0,0,1-8.25-7.47,8,8,0,0,1,8-8.53h39.73a8.17,8.17,0,0,1,8.25,7.47A8,8,0,0,1,208,136Zm0-32H168.27A8.17,8.17,0,0,1,160,96.53,8,8,0,0,1,168,88h39.73A8.17,8.17,0,0,1,216,95.47,8,8,0,0,1,208,104Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,tce,[...r[3]||=[R(`path`,{d:`M232,50H160a38,38,0,0,0-32,17.55A38,38,0,0,0,96,50H24a6,6,0,0,0-6,6V200a6,6,0,0,0,6,6H96a26,26,0,0,1,26,26,6,6,0,0,0,12,0,26,26,0,0,1,26-26h72a6,6,0,0,0,6-6V56A6,6,0,0,0,232,50ZM96,194H30V62H96a26,26,0,0,1,26,26V204.31A37.86,37.86,0,0,0,96,194Zm130,0H160a37.87,37.87,0,0,0-26,10.32V88a26,26,0,0,1,26-26h66ZM160,90h40a6,6,0,0,1,0,12H160a6,6,0,0,1,0-12Zm46,38a6,6,0,0,1-6,6H160a6,6,0,0,1,0-12h40A6,6,0,0,1,206,128Zm0,32a6,6,0,0,1-6,6H160a6,6,0,0,1,0-12h40A6,6,0,0,1,206,160Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,nce,[...r[4]||=[R(`path`,{d:`M232,48H160a40,40,0,0,0-32,16A40,40,0,0,0,96,48H24a8,8,0,0,0-8,8V200a8,8,0,0,0,8,8H96a24,24,0,0,1,24,24,8,8,0,0,0,16,0,24,24,0,0,1,24-24h72a8,8,0,0,0,8-8V56A8,8,0,0,0,232,48ZM96,192H32V64H96a24,24,0,0,1,24,24V200A39.81,39.81,0,0,0,96,192Zm128,0H160a39.81,39.81,0,0,0-24,8V88a24,24,0,0,1,24-24h64ZM160,88h40a8,8,0,0,1,0,16H160a8,8,0,0,1,0-16Zm48,40a8,8,0,0,1-8,8H160a8,8,0,0,1,0-16h40A8,8,0,0,1,208,128Zm0,32a8,8,0,0,1-8,8H160a8,8,0,0,1,0-16h40A8,8,0,0,1,208,160Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,rce,[...r[5]||=[R(`path`,{d:`M232,52H160a36,36,0,0,0-32,19.54A36,36,0,0,0,96,52H24a4,4,0,0,0-4,4V200a4,4,0,0,0,4,4H96a28,28,0,0,1,28,28,4,4,0,0,0,8,0,28,28,0,0,1,28-28h72a4,4,0,0,0,4-4V56A4,4,0,0,0,232,52ZM96,196H28V60H96a28,28,0,0,1,28,28V209.4A35.94,35.94,0,0,0,96,196Zm132,0H160a35.94,35.94,0,0,0-28,13.41V88a28,28,0,0,1,28-28h68ZM160,92h40a4,4,0,0,1,0,8H160a4,4,0,0,1,0-8Zm44,36a4,4,0,0,1-4,4H160a4,4,0,0,1,0-8h40A4,4,0,0,1,204,128Zm0,32a4,4,0,0,1-4,4H160a4,4,0,0,1,0-8h40A4,4,0,0,1,204,160Z`},null,-1)]])):B(``,!0)],16))}})})),oce,sce=s((()=>{ace(),oce=ice})),cce,lce,uce,dce,fce,pce,mce,hce=s((()=>{nc(),G(),cce={key:0},lce={key:1},uce={key:2},dce={key:3},fce={key:4},pce={key:5},mce=N({name:`ScalarIconBracketsCurly`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,cce,[...r[0]||=[R(`path`,{d:`M54.8,119.49A35.06,35.06,0,0,1,49.05,128a35.06,35.06,0,0,1,5.75,8.51C60,147.24,60,159.83,60,172c0,25.94,1.84,32,20,32a12,12,0,0,1,0,24c-19.14,0-32.2-6.9-38.8-20.51C36,196.76,36,184.17,36,172c0-25.94-1.84-32-20-32a12,12,0,0,1,0-24c18.16,0,20-6.06,20-32,0-12.17,0-24.76,5.2-35.49C47.8,34.9,60.86,28,80,28a12,12,0,0,1,0,24c-18.16,0-20,6.06-20,32C60,96.17,60,108.76,54.8,119.49ZM240,116c-18.16,0-20-6.06-20-32,0-12.17,0-24.76-5.2-35.49C208.2,34.9,195.14,28,176,28a12,12,0,0,0,0,24c18.16,0,20,6.06,20,32,0,12.17,0,24.76,5.2,35.49A35.06,35.06,0,0,0,207,128a35.06,35.06,0,0,0-5.75,8.51C196,147.24,196,159.83,196,172c0,25.94-1.84,32-20,32a12,12,0,0,0,0,24c19.14,0,32.2-6.9,38.8-20.51C220,196.76,220,184.17,220,172c0-25.94,1.84-32,20-32a12,12,0,0,0,0-24Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,lce,[...r[1]||=[R(`path`,{d:`M240,128c-64,0,0,88-64,88H80c-64,0,0-88-64-88,64,0,0-88,64-88h96C240,40,176,128,240,128Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M43.18,128a29.78,29.78,0,0,1,8,10.26c4.8,9.9,4.8,22,4.8,33.74,0,24.31,1,36,24,36a8,8,0,0,1,0,16c-17.48,0-29.32-6.14-35.2-18.26-4.8-9.9-4.8-22-4.8-33.74,0-24.31-1-36-24-36a8,8,0,0,1,0-16c23,0,24-11.69,24-36,0-11.72,0-23.84,4.8-33.74C50.68,38.14,62.52,32,80,32a8,8,0,0,1,0,16C57,48,56,59.69,56,84c0,11.72,0,23.84-4.8,33.74A29.78,29.78,0,0,1,43.18,128ZM240,120c-23,0-24-11.69-24-36,0-11.72,0-23.84-4.8-33.74C205.32,38.14,193.48,32,176,32a8,8,0,0,0,0,16c23,0,24,11.69,24,36,0,11.72,0,23.84,4.8,33.74a29.78,29.78,0,0,0,8,10.26,29.78,29.78,0,0,0-8,10.26c-4.8,9.9-4.8,22-4.8,33.74,0,24.31-1,36-24,36a8,8,0,0,0,0,16c17.48,0,29.32-6.14,35.2-18.26,4.8-9.9,4.8-22,4.8-33.74,0-24.31,1-36,24-36a8,8,0,0,0,0-16Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,uce,[...r[2]||=[R(`path`,{d:`M216,40H40A16,16,0,0,0,24,56V200a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V56A16,16,0,0,0,216,40ZM88,155.84c.29,14.26.41,20.16,16,20.16a8,8,0,0,1,0,16c-31.27,0-31.72-22.43-32-35.84C71.71,141.9,71.59,136,56,136a8,8,0,0,1,0-16c15.59,0,15.71-5.9,16-20.16C72.28,86.43,72.73,64,104,64a8,8,0,0,1,0,16c-15.59,0-15.71,5.9-16,20.16-.17,8.31-.41,20.09-8,27.84C87.59,135.75,87.83,147.53,88,155.84ZM200,136c-15.59,0-15.71,5.9-16,20.16-.28,13.41-.73,35.84-32,35.84a8,8,0,0,1,0-16c15.59,0,15.71-5.9,16-20.16.17-8.31.41-20.09,8-27.84-7.6-7.75-7.84-19.53-8-27.84C167.71,85.9,167.59,80,152,80a8,8,0,0,1,0-16c31.27,0,31.72,22.43,32,35.84.29,14.26.41,20.16,16,20.16a8,8,0,0,1,0,16Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,dce,[...r[3]||=[R(`path`,{d:`M39.91,128a27.68,27.68,0,0,1,9.49,11.13C54,148.62,54,160.51,54,172c0,24.27,1.21,38,26,38a6,6,0,0,1,0,12c-16.88,0-27.81-5.6-33.4-17.13C42,195.38,42,183.49,42,172c0-24.27-1.21-38-26-38a6,6,0,0,1,0-12c24.79,0,26-13.73,26-38,0-11.49,0-23.38,4.6-32.87C52.19,39.6,63.12,34,80,34a6,6,0,0,1,0,12C55.21,46,54,59.73,54,84c0,11.49,0,23.38-4.6,32.87A27.68,27.68,0,0,1,39.91,128ZM240,122c-24.79,0-26-13.73-26-38,0-11.49,0-23.38-4.6-32.87C203.81,39.6,192.88,34,176,34a6,6,0,0,0,0,12c24.79,0,26,13.73,26,38,0,11.49,0,23.38,4.6,32.87A27.68,27.68,0,0,0,216.09,128a27.68,27.68,0,0,0-9.49,11.13C202,148.62,202,160.51,202,172c0,24.27-1.21,38-26,38a6,6,0,0,0,0,12c16.88,0,27.81-5.6,33.4-17.13,4.6-9.49,4.6-21.38,4.6-32.87,0-24.27,1.21-38,26-38a6,6,0,0,0,0-12Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,fce,[...r[4]||=[R(`path`,{d:`M43.18,128a29.78,29.78,0,0,1,8,10.26c4.8,9.9,4.8,22,4.8,33.74,0,24.31,1,36,24,36a8,8,0,0,1,0,16c-17.48,0-29.32-6.14-35.2-18.26-4.8-9.9-4.8-22-4.8-33.74,0-24.31-1-36-24-36a8,8,0,0,1,0-16c23,0,24-11.69,24-36,0-11.72,0-23.84,4.8-33.74C50.68,38.14,62.52,32,80,32a8,8,0,0,1,0,16C57,48,56,59.69,56,84c0,11.72,0,23.84-4.8,33.74A29.78,29.78,0,0,1,43.18,128ZM240,120c-23,0-24-11.69-24-36,0-11.72,0-23.84-4.8-33.74C205.32,38.14,193.48,32,176,32a8,8,0,0,0,0,16c23,0,24,11.69,24,36,0,11.72,0,23.84,4.8,33.74a29.78,29.78,0,0,0,8,10.26,29.78,29.78,0,0,0-8,10.26c-4.8,9.9-4.8,22-4.8,33.74,0,24.31-1,36-24,36a8,8,0,0,0,0,16c17.48,0,29.32-6.14,35.2-18.26,4.8-9.9,4.8-22,4.8-33.74,0-24.31,1-36,24-36a8,8,0,0,0,0-16Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,pce,[...r[5]||=[R(`path`,{d:`M35.89,128C52,136.23,52,155.64,52,172c0,24.8,1.35,40,28,40a4,4,0,0,1,0,8c-36,0-36-26.61-36-48,0-24.8-1.35-40-28-40a4,4,0,0,1,0-8c26.65,0,28-15.2,28-40,0-21.39,0-48,36-48a4,4,0,0,1,0,8C53.35,44,52,59.2,52,84,52,100.36,52,119.77,35.89,128ZM240,124c-26.65,0-28-15.2-28-40,0-21.39,0-48-36-48a4,4,0,0,0,0,8c26.65,0,28,15.2,28,40,0,16.36,0,35.77,16.11,44C204,136.23,204,155.64,204,172c0,24.8-1.35,40-28,40a4,4,0,0,0,0,8c36,0,36-26.61,36-48,0-24.8,1.35-40,28-40a4,4,0,0,0,0-8Z`},null,-1)]])):B(``,!0)],16))}})})),oc,gce=s((()=>{hce(),oc=mce})),_ce,vce,yce,bce,xce,Sce,Cce,wce=s((()=>{nc(),G(),_ce={key:0},vce={key:1},yce={key:2},bce={key:3},xce={key:4},Sce={key:5},Cce=N({name:`ScalarIconCaretDown`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,_ce,[...r[0]||=[R(`path`,{d:`M216.49,104.49l-80,80a12,12,0,0,1-17,0l-80-80a12,12,0,0,1,17-17L128,159l71.51-71.52a12,12,0,0,1,17,17Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,vce,[...r[1]||=[R(`path`,{d:`M208,96l-80,80L48,96Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M215.39,92.94A8,8,0,0,0,208,88H48a8,8,0,0,0-5.66,13.66l80,80a8,8,0,0,0,11.32,0l80-80A8,8,0,0,0,215.39,92.94ZM128,164.69,67.31,104H188.69Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,yce,[...r[2]||=[R(`path`,{d:`M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,48,88H208a8,8,0,0,1,5.66,13.66Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,bce,[...r[3]||=[R(`path`,{d:`M212.24,100.24l-80,80a6,6,0,0,1-8.48,0l-80-80a6,6,0,0,1,8.48-8.48L128,167.51l75.76-75.75a6,6,0,0,1,8.48,8.48Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,xce,[...r[4]||=[R(`path`,{d:`M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,Sce,[...r[5]||=[R(`path`,{d:`M210.83,98.83l-80,80a4,4,0,0,1-5.66,0l-80-80a4,4,0,0,1,5.66-5.66L128,170.34l77.17-77.17a4,4,0,1,1,5.66,5.66Z`},null,-1)]])):B(``,!0)],16))}})})),sc,Tce=s((()=>{wce(),sc=Cce})),Ece,Dce,Oce,kce,Ace,jce,Mce,Nce=s((()=>{nc(),G(),Ece={key:0},Dce={key:1},Oce={key:2},kce={key:3},Ace={key:4},jce={key:5},Mce=N({name:`ScalarIconCaretRight`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,Ece,[...r[0]||=[R(`path`,{d:`M184.49,136.49l-80,80a12,12,0,0,1-17-17L159,128,87.51,56.49a12,12,0,1,1,17-17l80,80A12,12,0,0,1,184.49,136.49Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,Dce,[...r[1]||=[R(`path`,{d:`M176,128,96,208V48Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M181.66,122.34l-80-80A8,8,0,0,0,88,48V208a8,8,0,0,0,13.66,5.66l80-80A8,8,0,0,0,181.66,122.34ZM104,188.69V67.31L164.69,128Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,Oce,[...r[2]||=[R(`path`,{d:`M181.66,133.66l-80,80A8,8,0,0,1,88,208V48a8,8,0,0,1,13.66-5.66l80,80A8,8,0,0,1,181.66,133.66Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,kce,[...r[3]||=[R(`path`,{d:`M180.24,132.24l-80,80a6,6,0,0,1-8.48-8.48L167.51,128,91.76,52.24a6,6,0,0,1,8.48-8.48l80,80A6,6,0,0,1,180.24,132.24Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,Ace,[...r[4]||=[R(`path`,{d:`M181.66,133.66l-80,80a8,8,0,0,1-11.32-11.32L164.69,128,90.34,53.66a8,8,0,0,1,11.32-11.32l80,80A8,8,0,0,1,181.66,133.66Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,jce,[...r[5]||=[R(`path`,{d:`M178.83,130.83l-80,80a4,4,0,0,1-5.66-5.66L170.34,128,93.17,50.83a4,4,0,0,1,5.66-5.66l80,80A4,4,0,0,1,178.83,130.83Z`},null,-1)]])):B(``,!0)],16))}})})),cc,Pce=s((()=>{Nce(),cc=Mce})),Fce,Ice,Lce,Rce,zce,Bce,Vce,Hce=s((()=>{nc(),G(),Fce={key:0},Ice={key:1},Lce={key:2},Rce={key:3},zce={key:4},Bce={key:5},Vce=N({name:`ScalarIconCaretUp`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,Fce,[...r[0]||=[R(`path`,{d:`M216.49,168.49a12,12,0,0,1-17,0L128,97,56.49,168.49a12,12,0,0,1-17-17l80-80a12,12,0,0,1,17,0l80,80A12,12,0,0,1,216.49,168.49Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,Ice,[...r[1]||=[R(`path`,{d:`M208,160H48l80-80Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M213.66,154.34l-80-80a8,8,0,0,0-11.32,0l-80,80A8,8,0,0,0,48,168H208a8,8,0,0,0,5.66-13.66ZM67.31,152,128,91.31,188.69,152Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,Lce,[...r[2]||=[R(`path`,{d:`M215.39,163.06A8,8,0,0,1,208,168H48a8,8,0,0,1-5.66-13.66l80-80a8,8,0,0,1,11.32,0l80,80A8,8,0,0,1,215.39,163.06Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,Rce,[...r[3]||=[R(`path`,{d:`M212.24,164.24a6,6,0,0,1-8.48,0L128,88.49,52.24,164.24a6,6,0,0,1-8.48-8.48l80-80a6,6,0,0,1,8.48,0l80,80A6,6,0,0,1,212.24,164.24Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,zce,[...r[4]||=[R(`path`,{d:`M213.66,165.66a8,8,0,0,1-11.32,0L128,91.31,53.66,165.66a8,8,0,0,1-11.32-11.32l80-80a8,8,0,0,1,11.32,0l80,80A8,8,0,0,1,213.66,165.66Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,Bce,[...r[5]||=[R(`path`,{d:`M210.83,162.83a4,4,0,0,1-5.66,0L128,85.66,50.83,162.83a4,4,0,0,1-5.66-5.66l80-80a4,4,0,0,1,5.66,0l80,80A4,4,0,0,1,210.83,162.83Z`},null,-1)]])):B(``,!0)],16))}})})),Uce,Wce=s((()=>{Hce(),Uce=Vce})),Gce,Kce,qce,Jce,Yce,Xce,Zce,Qce=s((()=>{nc(),G(),Gce={key:0},Kce={key:1},qce={key:2},Jce={key:3},Yce={key:4},Xce={key:5},Zce=N({name:`ScalarIconCaretUpDown`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,Gce,[...r[0]||=[R(`path`,{d:`M184.49,167.51a12,12,0,0,1,0,17l-48,48a12,12,0,0,1-17,0l-48-48a12,12,0,0,1,17-17L128,207l39.51-39.52A12,12,0,0,1,184.49,167.51Zm-96-79L128,49l39.51,39.52a12,12,0,0,0,17-17l-48-48a12,12,0,0,0-17,0l-48,48a12,12,0,0,0,17,17Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,Kce,[...r[1]||=[R(`path`,{d:`M80,176h96l-48,48ZM128,32,80,80h96Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M176,168H80a8,8,0,0,0-5.66,13.66l48,48a8,8,0,0,0,11.32,0l48-48A8,8,0,0,0,176,168Zm-48,44.69L99.31,184h57.38ZM80,88h96a8,8,0,0,0,5.66-13.66l-48-48a8,8,0,0,0-11.32,0l-48,48A8,8,0,0,0,80,88Zm48-44.69L156.69,72H99.31Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,qce,[...r[2]||=[R(`path`,{d:`M72.61,83.06a8,8,0,0,1,1.73-8.72l48-48a8,8,0,0,1,11.32,0l48,48A8,8,0,0,1,176,88H80A8,8,0,0,1,72.61,83.06ZM176,168H80a8,8,0,0,0-5.66,13.66l48,48a8,8,0,0,0,11.32,0l48-48A8,8,0,0,0,176,168Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,Jce,[...r[3]||=[R(`path`,{d:`M180.24,171.76a6,6,0,0,1,0,8.48l-48,48a6,6,0,0,1-8.48,0l-48-48a6,6,0,0,1,8.48-8.48L128,215.51l43.76-43.75A6,6,0,0,1,180.24,171.76Zm-96-87.52L128,40.49l43.76,43.75a6,6,0,0,0,8.48-8.48l-48-48a6,6,0,0,0-8.48,0l-48,48a6,6,0,0,0,8.48,8.48Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,Yce,[...r[4]||=[R(`path`,{d:`M181.66,170.34a8,8,0,0,1,0,11.32l-48,48a8,8,0,0,1-11.32,0l-48-48a8,8,0,0,1,11.32-11.32L128,212.69l42.34-42.35A8,8,0,0,1,181.66,170.34Zm-96-84.68L128,43.31l42.34,42.35a8,8,0,0,0,11.32-11.32l-48-48a8,8,0,0,0-11.32,0l-48,48A8,8,0,0,0,85.66,85.66Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,Xce,[...r[5]||=[R(`path`,{d:`M178.83,173.17a4,4,0,0,1,0,5.66l-48,48a4,4,0,0,1-5.66,0l-48-48a4,4,0,0,1,5.66-5.66L128,218.34l45.17-45.17A4,4,0,0,1,178.83,173.17Zm-96-90.34L128,37.66l45.17,45.17a4,4,0,1,0,5.66-5.66l-48-48a4,4,0,0,0-5.66,0l-48,48a4,4,0,0,0,5.66,5.66Z`},null,-1)]])):B(``,!0)],16))}})})),$ce,ele=s((()=>{Qce(),$ce=Zce})),tle,nle,rle,ile,ale,ole,sle,cle=s((()=>{nc(),G(),tle={key:0},nle={key:1},rle={key:2},ile={key:3},ale={key:4},ole={key:5},sle=N({name:`ScalarIconCheck`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,tle,[...r[0]||=[R(`path`,{d:`M232.49,80.49l-128,128a12,12,0,0,1-17,0l-56-56a12,12,0,1,1,17-17L96,183,215.51,63.51a12,12,0,0,1,17,17Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,nle,[...r[1]||=[R(`path`,{d:`M232,56V200a16,16,0,0,1-16,16H40a16,16,0,0,1-16-16V56A16,16,0,0,1,40,40H216A16,16,0,0,1,232,56Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M205.66,85.66l-96,96a8,8,0,0,1-11.32,0l-40-40a8,8,0,0,1,11.32-11.32L104,164.69l90.34-90.35a8,8,0,0,1,11.32,11.32Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,rle,[...r[2]||=[R(`path`,{d:`M216,40H40A16,16,0,0,0,24,56V200a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V56A16,16,0,0,0,216,40ZM205.66,85.66l-96,96a8,8,0,0,1-11.32,0l-40-40a8,8,0,0,1,11.32-11.32L104,164.69l90.34-90.35a8,8,0,0,1,11.32,11.32Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,ile,[...r[3]||=[R(`path`,{d:`M228.24,76.24l-128,128a6,6,0,0,1-8.48,0l-56-56a6,6,0,0,1,8.48-8.48L96,191.51,219.76,67.76a6,6,0,0,1,8.48,8.48Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,ale,[...r[4]||=[R(`path`,{d:`M229.66,77.66l-128,128a8,8,0,0,1-11.32,0l-56-56a8,8,0,0,1,11.32-11.32L96,188.69,218.34,66.34a8,8,0,0,1,11.32,11.32Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,ole,[...r[5]||=[R(`path`,{d:`M226.83,74.83l-128,128a4,4,0,0,1-5.66,0l-56-56a4,4,0,0,1,5.66-5.66L96,194.34,221.17,69.17a4,4,0,1,1,5.66,5.66Z`},null,-1)]])):B(``,!0)],16))}})})),lc,lle=s((()=>{cle(),lc=sle})),ule,dle,fle,ple,mle,hle,gle,_le=s((()=>{nc(),G(),ule={key:0},dle={key:1},fle={key:2},ple={key:3},mle={key:4},hle={key:5},gle=N({name:`ScalarIconCloud`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,ule,[...r[0]||=[R(`path`,{d:`M160,36A92.09,92.09,0,0,0,79,84.36,68,68,0,1,0,72,220h88a92,92,0,0,0,0-184Zm0,160H72a44,44,0,0,1-1.82-88A91.86,91.86,0,0,0,68,128a12,12,0,0,0,24,0,68,68,0,1,1,68,68Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,dle,[...r[1]||=[R(`path`,{d:`M240,128a80,80,0,0,1-80,80H72A56,56,0,1,1,85.92,97.74l0,.1A80,80,0,0,1,240,128Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M160,40A88.09,88.09,0,0,0,81.29,88.67,64,64,0,1,0,72,216h88a88,88,0,0,0,0-176Zm0,160H72a48,48,0,0,1,0-96c1.1,0,2.2,0,3.29.11A88,88,0,0,0,72,128a8,8,0,0,0,16,0,72,72,0,1,1,72,72Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,fle,[...r[2]||=[R(`path`,{d:`M160.06,40A88.1,88.1,0,0,0,81.29,88.67h0A87.48,87.48,0,0,0,72,127.73,8.18,8.18,0,0,1,64.57,136,8,8,0,0,1,56,128a103.66,103.66,0,0,1,5.34-32.92,4,4,0,0,0-4.75-5.18A64.09,64.09,0,0,0,8,152c0,35.19,29.75,64,65,64H160a88.09,88.09,0,0,0,87.93-91.48C246.11,77.54,207.07,40,160.06,40Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,ple,[...r[3]||=[R(`path`,{d:`M160,42A86.11,86.11,0,0,0,82.43,90.88,62,62,0,1,0,72,214h88a86,86,0,0,0,0-172Zm0,160H72a50,50,0,0,1,0-100,50.67,50.67,0,0,1,5.91.35A85.61,85.61,0,0,0,74,128a6,6,0,0,0,12,0,74,74,0,1,1,74,74Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,mle,[...r[4]||=[R(`path`,{d:`M160,40A88.09,88.09,0,0,0,81.29,88.67,64,64,0,1,0,72,216h88a88,88,0,0,0,0-176Zm0,160H72a48,48,0,0,1,0-96c1.1,0,2.2,0,3.29.11A88,88,0,0,0,72,128a8,8,0,0,0,16,0,72,72,0,1,1,72,72Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,hle,[...r[5]||=[R(`path`,{d:`M160,44A84.11,84.11,0,0,0,83.59,93.12,60.71,60.71,0,0,0,72,92a60,60,0,0,0,0,120h88a84,84,0,0,0,0-168Zm0,160H72a52,52,0,1,1,8.55-103.3A83.66,83.66,0,0,0,76,128a4,4,0,0,0,8,0,76,76,0,1,1,76,76Z`},null,-1)]])):B(``,!0)],16))}})})),vle,yle=s((()=>{_le(),vle=gle})),ble,xle,Sle,Cle,wle,Tle,Ele,Dle=s((()=>{nc(),G(),ble={key:0},xle={key:1},Sle={key:2},Cle={key:3},wle={key:4},Tle={key:5},Ele=N({name:`ScalarIconCopy`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,ble,[...r[0]||=[R(`path`,{d:`M216,28H88A12,12,0,0,0,76,40V76H40A12,12,0,0,0,28,88V216a12,12,0,0,0,12,12H168a12,12,0,0,0,12-12V180h36a12,12,0,0,0,12-12V40A12,12,0,0,0,216,28ZM156,204H52V100H156Zm48-48H180V88a12,12,0,0,0-12-12H100V52H204Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,xle,[...r[1]||=[R(`path`,{d:`M216,40V168H168V88H88V40Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M216,32H88a8,8,0,0,0-8,8V80H40a8,8,0,0,0-8,8V216a8,8,0,0,0,8,8H168a8,8,0,0,0,8-8V176h40a8,8,0,0,0,8-8V40A8,8,0,0,0,216,32ZM160,208H48V96H160Zm48-48H176V88a8,8,0,0,0-8-8H96V48H208Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,Sle,[...r[2]||=[R(`path`,{d:`M216,32H88a8,8,0,0,0-8,8V80H40a8,8,0,0,0-8,8V216a8,8,0,0,0,8,8H168a8,8,0,0,0,8-8V176h40a8,8,0,0,0,8-8V40A8,8,0,0,0,216,32Zm-8,128H176V88a8,8,0,0,0-8-8H96V48H208Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,Cle,[...r[3]||=[R(`path`,{d:`M216,34H88a6,6,0,0,0-6,6V82H40a6,6,0,0,0-6,6V216a6,6,0,0,0,6,6H168a6,6,0,0,0,6-6V174h42a6,6,0,0,0,6-6V40A6,6,0,0,0,216,34ZM162,210H46V94H162Zm48-48H174V88a6,6,0,0,0-6-6H94V46H210Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,wle,[...r[4]||=[R(`path`,{d:`M216,32H88a8,8,0,0,0-8,8V80H40a8,8,0,0,0-8,8V216a8,8,0,0,0,8,8H168a8,8,0,0,0,8-8V176h40a8,8,0,0,0,8-8V40A8,8,0,0,0,216,32ZM160,208H48V96H160Zm48-48H176V88a8,8,0,0,0-8-8H96V48H208Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,Tle,[...r[5]||=[R(`path`,{d:`M216,36H88a4,4,0,0,0-4,4V84H40a4,4,0,0,0-4,4V216a4,4,0,0,0,4,4H168a4,4,0,0,0,4-4V172h44a4,4,0,0,0,4-4V40A4,4,0,0,0,216,36ZM164,212H44V92H164Zm48-48H172V88a4,4,0,0,0-4-4H92V44H212Z`},null,-1)]])):B(``,!0)],16))}})})),uc,Ole=s((()=>{Dle(),uc=Ele})),kle,Ale,jle,Mle,Nle,Ple,Fle,Ile=s((()=>{nc(),G(),kle={key:0},Ale={key:1},jle={key:2},Mle={key:3},Nle={key:4},Ple={key:5},Fle=N({name:`ScalarIconDiscordLogo`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,kle,[...r[0]||=[R(`path`,{d:`M108,136a16,16,0,1,1-16-16A16,16,0,0,1,108,136Zm56-16a16,16,0,1,0,16,16A16,16,0,0,0,164,120Zm76.07,76.56-67,29.71A20.15,20.15,0,0,1,146,214.9l-8.54-23.13c-3.13.14-6.27.24-9.45.24s-6.32-.1-9.45-.24L110,214.9a20.19,20.19,0,0,1-27.08,11.37l-67-29.71A19.93,19.93,0,0,1,4.62,173.41L34.15,57A20,20,0,0,1,50.37,42.19l36.06-5.93A20.26,20.26,0,0,1,109.22,51.1l4.41,17.41c4.74-.33,9.52-.51,14.37-.51s9.63.18,14.37.51l4.41-17.41a20.25,20.25,0,0,1,22.79-14.84l36.06,5.93A20,20,0,0,1,221.85,57l29.53,116.38A19.93,19.93,0,0,1,240.07,196.56ZM227.28,176,199.23,65.46l-30.07-4.94-2.84,11.17c2.9.58,5.78,1.2,8.61,1.92a12,12,0,1,1-5.86,23.27A168.43,168.43,0,0,0,128,92a168.43,168.43,0,0,0-41.07,4.88,12,12,0,0,1-5.86-23.27c2.83-.72,5.71-1.34,8.61-1.92L86.85,60.52,56.77,65.46,28.72,176l60.22,26.7,5-13.57c-4.37-.76-8.67-1.65-12.88-2.71a12,12,0,0,1,5.86-23.28A168.43,168.43,0,0,0,128,168a168.43,168.43,0,0,0,41.07-4.88,12,12,0,0,1,5.86,23.28c-4.21,1.06-8.51,1.95-12.88,2.71l5,13.57Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,Ale,[...r[1]||=[R(`path`,{d:`M235.21,185.59l-67,29.7a8.15,8.15,0,0,1-11-4.56L147,183.06a190.5,190.5,0,0,1-19,.94,190.5,190.5,0,0,1-19-.94L98.75,210.73a8.15,8.15,0,0,1-11,4.56l-67-29.7a8,8,0,0,1-4.55-9.24L45.77,60A8.08,8.08,0,0,1,52.31,54l36.06-5.92a8.1,8.1,0,0,1,9.21,6l5,19.63a192.32,192.32,0,0,1,50.88,0l5-19.63a8.1,8.1,0,0,1,9.21-6L203.69,54A8.08,8.08,0,0,1,210.23,60l29.53,116.37A8,8,0,0,1,235.21,185.59Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M104,140a12,12,0,1,1-12-12A12,12,0,0,1,104,140Zm60-12a12,12,0,1,0,12,12A12,12,0,0,0,164,128Zm74.45,64.9-67,29.71a16.17,16.17,0,0,1-21.71-9.1l-8.11-22q-6.72.45-13.63.46t-13.63-.46l-8.11,22a16.18,16.18,0,0,1-21.71,9.1l-67-29.71a15.94,15.94,0,0,1-9.06-18.51L38,58A16.08,16.08,0,0,1,51,46.13l36.06-5.92a16.21,16.21,0,0,1,18.26,11.88l3.26,12.83Q118.11,64,128,64t19.4.92l3.26-12.83a16.22,16.22,0,0,1,18.26-11.88L205,46.13A16.08,16.08,0,0,1,218,58l29.53,116.38A15.94,15.94,0,0,1,238.45,192.9ZM232,178.28,202.47,62s0,0-.08,0L166.33,56a.17.17,0,0,0-.17,0l-2.83,11.14c5,.94,10,2.06,14.83,3.42A8,8,0,0,1,176,86.31a8.09,8.09,0,0,1-2.16-.3A172.25,172.25,0,0,0,128,80a172.25,172.25,0,0,0-45.84,6,8,8,0,1,1-4.32-15.4c4.82-1.36,9.78-2.48,14.82-3.42L89.83,56a.21.21,0,0,0-.12,0h0L53.61,61.92a.24.24,0,0,0-.09,0L24,178.33,91,208a.21.21,0,0,0,.22,0L98,189.72a173.2,173.2,0,0,1-20.14-4.32A8,8,0,0,1,82.16,170,171.85,171.85,0,0,0,128,176a171.85,171.85,0,0,0,45.84-6,8,8,0,0,1,4.32,15.41A173.2,173.2,0,0,1,158,189.72L164.75,208a.22.22,0,0,0,.21,0Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,jle,[...r[2]||=[R(`path`,{d:`M247.51,174.39,218,58a16.08,16.08,0,0,0-13-11.88l-36.06-5.92a16.22,16.22,0,0,0-18.26,11.88l-.21.85a4,4,0,0,0,3.27,4.93,155.62,155.62,0,0,1,24.41,5.62,8.2,8.2,0,0,1,5.62,9.7,8,8,0,0,1-10.19,5.64,155.4,155.4,0,0,0-90.8-.1,8.22,8.22,0,0,1-10.28-4.81,8,8,0,0,1,5.08-10.33,156.85,156.85,0,0,1,24.72-5.72,4,4,0,0,0,3.27-4.93l-.21-.85A16.21,16.21,0,0,0,87.08,40.21L51,46.13A16.08,16.08,0,0,0,38,58L8.49,174.39a15.94,15.94,0,0,0,9.06,18.51l67,29.71a16.17,16.17,0,0,0,21.71-9.1l3.49-9.45a4,4,0,0,0-3.27-5.35,158.13,158.13,0,0,1-28.63-6.2,8.2,8.2,0,0,1-5.61-9.67,8,8,0,0,1,10.2-5.66,155.59,155.59,0,0,0,91.12,0,8,8,0,0,1,10.19,5.65,8.19,8.19,0,0,1-5.61,9.68,157.84,157.84,0,0,1-28.62,6.2,4,4,0,0,0-3.27,5.35l3.49,9.45a16.18,16.18,0,0,0,21.71,9.1l67-29.71A15.94,15.94,0,0,0,247.51,174.39ZM92,152a12,12,0,1,1,12-12A12,12,0,0,1,92,152Zm72,0a12,12,0,1,1,12-12A12,12,0,0,1,164,152Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,Mle,[...r[3]||=[R(`path`,{d:`M102,140a10,10,0,1,1-10-10A10,10,0,0,1,102,140Zm62-10a10,10,0,1,0,10,10A10,10,0,0,0,164,130Zm73.64,61.08-67,29.71a14.43,14.43,0,0,1-5.77,1.21,14.13,14.13,0,0,1-13.25-9.18L143,189.43c-4.93.37-9.92.58-15,.58s-10.06-.21-15-.58l-8.63,23.39A14.13,14.13,0,0,1,91.13,222a14.43,14.43,0,0,1-5.77-1.21l-67-29.71a14,14,0,0,1-7.93-16.2L40,58.5A14.07,14.07,0,0,1,51.34,48.11L87.4,42.19a14.19,14.19,0,0,1,16,10.39l3.69,14.53a197.5,197.5,0,0,1,41.82,0l3.69-14.53a14.19,14.19,0,0,1,16-10.39l36.06,5.92A14.07,14.07,0,0,1,216,58.5l29.53,116.38A14,14,0,0,1,237.64,191.08Zm-3.7-13.25L204.41,61.45a2.08,2.08,0,0,0-1.7-1.5L166.65,54a2.13,2.13,0,0,0-2.42,1.5l-3.36,13.24a169.28,169.28,0,0,1,16.75,3.76A6,6,0,0,1,176,84.31a5.71,5.71,0,0,1-1.62-.23A174.26,174.26,0,0,0,128,78a174.26,174.26,0,0,0-46.38,6.08,6,6,0,1,1-3.24-11.55,169.28,169.28,0,0,1,16.75-3.76L91.77,55.53A2.12,2.12,0,0,0,89.35,54L53.29,60a2.08,2.08,0,0,0-1.7,1.5L22.06,177.83a2,2,0,0,0,1.16,2.28l67,29.7a2.19,2.19,0,0,0,1.76,0,2.07,2.07,0,0,0,1.14-1.17l7.58-20.55a171.46,171.46,0,0,1-22.33-4.64,6,6,0,1,1,3.24-11.55A174.26,174.26,0,0,0,128,178a174.26,174.26,0,0,0,46.38-6.08,6,6,0,1,1,3.24,11.55,171.46,171.46,0,0,1-22.33,4.64l7.58,20.55a2.07,2.07,0,0,0,1.14,1.17,2.19,2.19,0,0,0,1.76,0l67-29.7A2,2,0,0,0,233.94,177.83Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,Nle,[...r[4]||=[R(`path`,{d:`M104,140a12,12,0,1,1-12-12A12,12,0,0,1,104,140Zm60-12a12,12,0,1,0,12,12A12,12,0,0,0,164,128Zm74.45,64.9-67,29.71a16.17,16.17,0,0,1-21.71-9.1l-8.11-22q-6.72.45-13.63.46t-13.63-.46l-8.11,22a16.18,16.18,0,0,1-21.71,9.1l-67-29.71a15.93,15.93,0,0,1-9.06-18.51L38,58A16.07,16.07,0,0,1,51,46.14l36.06-5.93a16.22,16.22,0,0,1,18.26,11.88l3.26,12.84Q118.11,64,128,64t19.4.93l3.26-12.84a16.21,16.21,0,0,1,18.26-11.88L205,46.14A16.07,16.07,0,0,1,218,58l29.53,116.38A15.93,15.93,0,0,1,238.45,192.9ZM232,178.28,202.47,62s0,0-.08,0L166.33,56a.17.17,0,0,0-.17,0l-2.83,11.14c5,.94,10,2.06,14.83,3.42A8,8,0,0,1,176,86.31a8.09,8.09,0,0,1-2.16-.3A172.25,172.25,0,0,0,128,80a172.25,172.25,0,0,0-45.84,6,8,8,0,1,1-4.32-15.4c4.82-1.36,9.78-2.48,14.82-3.42L89.83,56s0,0-.12,0h0L53.61,61.93a.17.17,0,0,0-.09,0L24,178.33,91,208a.23.23,0,0,0,.22,0L98,189.72a173.2,173.2,0,0,1-20.14-4.32A8,8,0,0,1,82.16,170,171.85,171.85,0,0,0,128,176a171.85,171.85,0,0,0,45.84-6,8,8,0,0,1,4.32,15.41A173.2,173.2,0,0,1,158,189.72L164.75,208a.22.22,0,0,0,.21,0Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,Ple,[...r[5]||=[R(`path`,{d:`M100,140a8,8,0,1,1-8-8A8,8,0,0,1,100,140Zm64-8a8,8,0,1,0,8,8A8,8,0,0,0,164,132Zm72.83,57.25-67,29.71a12.36,12.36,0,0,1-5,1,12.13,12.13,0,0,1-11.38-7.88l-9.15-24.81c-5.36.45-10.81.69-16.34.69s-11-.24-16.34-.69l-9.15,24.81A12.13,12.13,0,0,1,91.13,220a12.36,12.36,0,0,1-5-1l-67-29.71a12,12,0,0,1-6.8-13.88L41.9,59a12.06,12.06,0,0,1,9.77-8.91l36.06-5.92a12.18,12.18,0,0,1,13.73,8.91l4.12,16.22a195.47,195.47,0,0,1,44.84,0l4.12-16.22a12.18,12.18,0,0,1,13.73-8.91l36.06,5.92A12.06,12.06,0,0,1,214.1,59l29.53,116.38A12,12,0,0,1,236.83,189.25Zm-1-11.91L206.35,61A4.07,4.07,0,0,0,203,58L167,52.05a4.15,4.15,0,0,0-4.69,3L158.4,70.38a166.74,166.74,0,0,1,18.68,4.08,4,4,0,1,1-2.16,7.7A176.21,176.21,0,0,0,128,76a176.21,176.21,0,0,0-46.92,6.16,4,4,0,1,1-2.16-7.7A166.74,166.74,0,0,1,97.6,70.38L93.71,55a4.15,4.15,0,0,0-4.69-3L53,58a4.07,4.07,0,0,0-3.31,3L20.12,177.34a4,4,0,0,0,2.29,4.59l67,29.71a4.16,4.16,0,0,0,3.35,0A4,4,0,0,0,95,209.35l8.45-22.88a171.49,171.49,0,0,1-24.53-4.92,4,4,0,0,1,2.16-7.71A176.21,176.21,0,0,0,128,180a176.21,176.21,0,0,0,46.92-6.16,4,4,0,0,1,2.16,7.71,171.49,171.49,0,0,1-24.53,4.92L161,209.35a4,4,0,0,0,2.23,2.32,4.16,4.16,0,0,0,3.35,0l67-29.71A4,4,0,0,0,235.88,177.34Z`},null,-1)]])):B(``,!0)],16))}})})),Lle,Rle=s((()=>{Ile(),Lle=Fle})),zle,Ble,Vle,Hle,Ule,Wle,Gle,Kle=s((()=>{nc(),G(),zle={key:0},Ble={key:1},Vle={key:2},Hle={key:3},Ule={key:4},Wle={key:5},Gle=N({name:`ScalarIconEnvelopeSimple`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,zle,[...r[0]||=[R(`path`,{d:`M224,44H32A12,12,0,0,0,20,56V192a20,20,0,0,0,20,20H216a20,20,0,0,0,20-20V56A12,12,0,0,0,224,44ZM193.15,68,128,127.72,62.85,68ZM44,188V83.28l75.89,69.57a12,12,0,0,0,16.22,0L212,83.28V188Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,Ble,[...r[1]||=[R(`path`,{d:`M224,56l-96,88L32,56Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M224,48H32a8,8,0,0,0-8,8V192a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V56A8,8,0,0,0,224,48ZM203.43,64,128,133.15,52.57,64ZM216,192H40V74.19l82.59,75.71a8,8,0,0,0,10.82,0L216,74.19V192Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,Vle,[...r[2]||=[R(`path`,{d:`M224,48H32a8,8,0,0,0-8,8V192a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V56A8,8,0,0,0,224,48Zm-8,144H40V74.19l82.59,75.71a8,8,0,0,0,10.82,0L216,74.19V192Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,Hle,[...r[3]||=[R(`path`,{d:`M224,50H32a6,6,0,0,0-6,6V192a14,14,0,0,0,14,14H216a14,14,0,0,0,14-14V56A6,6,0,0,0,224,50ZM208.58,62,128,135.86,47.42,62ZM216,194H40a2,2,0,0,1-2-2V69.64l86,78.78a6,6,0,0,0,8.1,0L218,69.64V192A2,2,0,0,1,216,194Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,Ule,[...r[4]||=[R(`path`,{d:`M224,48H32a8,8,0,0,0-8,8V192a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V56A8,8,0,0,0,224,48ZM203.43,64,128,133.15,52.57,64ZM216,192H40V74.19l82.59,75.71a8,8,0,0,0,10.82,0L216,74.19V192Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,Wle,[...r[5]||=[R(`path`,{d:`M224,52H32a4,4,0,0,0-4,4V192a12,12,0,0,0,12,12H216a12,12,0,0,0,12-12V56A4,4,0,0,0,224,52Zm-10.28,8L128,138.57,42.28,60ZM216,196H40a4,4,0,0,1-4-4V65.09L125.3,147a4,4,0,0,0,5.4,0L220,65.09V192A4,4,0,0,1,216,196Z`},null,-1)]])):B(``,!0)],16))}})})),dc,qle=s((()=>{Kle(),dc=Gle})),Jle,Yle,Xle,Zle,Qle,$le,eue,tue=s((()=>{nc(),G(),Jle={key:0},Yle={key:1},Xle={key:2},Zle={key:3},Qle={key:4},$le={key:5},eue=N({name:`ScalarIconEye`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,Jle,[...r[0]||=[R(`path`,{d:`M251,123.13c-.37-.81-9.13-20.26-28.48-39.61C196.63,57.67,164,44,128,44S59.37,57.67,33.51,83.52C14.16,102.87,5.4,122.32,5,123.13a12.08,12.08,0,0,0,0,9.75c.37.82,9.13,20.26,28.49,39.61C59.37,198.34,92,212,128,212s68.63-13.66,94.48-39.51c19.36-19.35,28.12-38.79,28.49-39.61A12.08,12.08,0,0,0,251,123.13Zm-46.06,33C183.47,177.27,157.59,188,128,188s-55.47-10.73-76.91-31.88A130.36,130.36,0,0,1,29.52,128,130.45,130.45,0,0,1,51.09,99.89C72.54,78.73,98.41,68,128,68s55.46,10.73,76.91,31.89A130.36,130.36,0,0,1,226.48,128,130.45,130.45,0,0,1,204.91,156.12ZM128,84a44,44,0,1,0,44,44A44.05,44.05,0,0,0,128,84Zm0,64a20,20,0,1,1,20-20A20,20,0,0,1,128,148Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,Yle,[...r[1]||=[R(`path`,{d:`M128,56C48,56,16,128,16,128s32,72,112,72,112-72,112-72S208,56,128,56Zm0,112a40,40,0,1,1,40-40A40,40,0,0,1,128,168Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M247.31,124.76c-.35-.79-8.82-19.58-27.65-38.41C194.57,61.26,162.88,48,128,48S61.43,61.26,36.34,86.35C17.51,105.18,9,124,8.69,124.76a8,8,0,0,0,0,6.5c.35.79,8.82,19.57,27.65,38.4C61.43,194.74,93.12,208,128,208s66.57-13.26,91.66-38.34c18.83-18.83,27.3-37.61,27.65-38.4A8,8,0,0,0,247.31,124.76ZM128,192c-30.78,0-57.67-11.19-79.93-33.25A133.47,133.47,0,0,1,25,128,133.33,133.33,0,0,1,48.07,97.25C70.33,75.19,97.22,64,128,64s57.67,11.19,79.93,33.25A133.46,133.46,0,0,1,231.05,128C223.84,141.46,192.43,192,128,192Zm0-112a48,48,0,1,0,48,48A48.05,48.05,0,0,0,128,80Zm0,80a32,32,0,1,1,32-32A32,32,0,0,1,128,160Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,Xle,[...r[2]||=[R(`path`,{d:`M247.31,124.76c-.35-.79-8.82-19.58-27.65-38.41C194.57,61.26,162.88,48,128,48S61.43,61.26,36.34,86.35C17.51,105.18,9,124,8.69,124.76a8,8,0,0,0,0,6.5c.35.79,8.82,19.57,27.65,38.4C61.43,194.74,93.12,208,128,208s66.57-13.26,91.66-38.34c18.83-18.83,27.3-37.61,27.65-38.4A8,8,0,0,0,247.31,124.76ZM128,168a40,40,0,1,1,40-40A40,40,0,0,1,128,168Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,Zle,[...r[3]||=[R(`path`,{d:`M245.48,125.57c-.34-.78-8.66-19.23-27.24-37.81C201,70.54,171.38,50,128,50S55,70.54,37.76,87.76c-18.58,18.58-26.9,37-27.24,37.81a6,6,0,0,0,0,4.88c.34.77,8.66,19.22,27.24,37.8C55,185.47,84.62,206,128,206s73-20.53,90.24-37.75c18.58-18.58,26.9-37,27.24-37.8A6,6,0,0,0,245.48,125.57ZM128,194c-31.38,0-58.78-11.42-81.45-33.93A134.77,134.77,0,0,1,22.69,128,134.56,134.56,0,0,1,46.55,95.94C69.22,73.42,96.62,62,128,62s58.78,11.42,81.45,33.94A134.56,134.56,0,0,1,233.31,128C226.94,140.21,195,194,128,194Zm0-112a46,46,0,1,0,46,46A46.06,46.06,0,0,0,128,82Zm0,80a34,34,0,1,1,34-34A34,34,0,0,1,128,162Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,Qle,[...r[4]||=[R(`path`,{d:`M247.31,124.76c-.35-.79-8.82-19.58-27.65-38.41C194.57,61.26,162.88,48,128,48S61.43,61.26,36.34,86.35C17.51,105.18,9,124,8.69,124.76a8,8,0,0,0,0,6.5c.35.79,8.82,19.57,27.65,38.4C61.43,194.74,93.12,208,128,208s66.57-13.26,91.66-38.34c18.83-18.83,27.3-37.61,27.65-38.4A8,8,0,0,0,247.31,124.76ZM128,192c-30.78,0-57.67-11.19-79.93-33.25A133.47,133.47,0,0,1,25,128,133.33,133.33,0,0,1,48.07,97.25C70.33,75.19,97.22,64,128,64s57.67,11.19,79.93,33.25A133.46,133.46,0,0,1,231.05,128C223.84,141.46,192.43,192,128,192Zm0-112a48,48,0,1,0,48,48A48.05,48.05,0,0,0,128,80Zm0,80a32,32,0,1,1,32-32A32,32,0,0,1,128,160Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,$le,[...r[5]||=[R(`path`,{d:`M243.66,126.38c-.34-.76-8.52-18.89-26.83-37.2C199.87,72.22,170.7,52,128,52S56.13,72.22,39.17,89.18c-18.31,18.31-26.49,36.44-26.83,37.2a4.08,4.08,0,0,0,0,3.25c.34.77,8.52,18.89,26.83,37.2,17,17,46.14,37.17,88.83,37.17s71.87-20.21,88.83-37.17c18.31-18.31,26.49-36.43,26.83-37.2A4.08,4.08,0,0,0,243.66,126.38Zm-32.7,35c-23.07,23-51,34.62-83,34.62s-59.89-11.65-83-34.62A135.71,135.71,0,0,1,20.44,128,135.69,135.69,0,0,1,45,94.62C68.11,71.65,96,60,128,60s59.89,11.65,83,34.62A135.79,135.79,0,0,1,235.56,128,135.71,135.71,0,0,1,211,161.38ZM128,84a44,44,0,1,0,44,44A44.05,44.05,0,0,0,128,84Zm0,80a36,36,0,1,1,36-36A36,36,0,0,1,128,164Z`},null,-1)]])):B(``,!0)],16))}})})),nue,rue=s((()=>{tue(),nue=eue})),iue,aue,oue,sue,cue,lue,uue,due=s((()=>{nc(),G(),iue={key:0},aue={key:1},oue={key:2},sue={key:3},cue={key:4},lue={key:5},uue=N({name:`ScalarIconEyeSlash`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,iue,[...r[0]||=[R(`path`,{d:`M56.88,31.93A12,12,0,1,0,39.12,48.07l16,17.65C20.67,88.66,5.72,121.58,5,123.13a12.08,12.08,0,0,0,0,9.75c.37.82,9.13,20.26,28.49,39.61C59.37,198.34,92,212,128,212a131.34,131.34,0,0,0,51-10l20.09,22.1a12,12,0,0,0,17.76-16.14ZM128,188c-29.59,0-55.47-10.73-76.91-31.88A130.69,130.69,0,0,1,29.52,128c5.27-9.31,18.79-29.9,42-44.29l90.09,99.11A109.33,109.33,0,0,1,128,188Zm123-55.12c-.36.81-9,20-28,39.16a12,12,0,1,1-17-16.9A130.48,130.48,0,0,0,226.48,128a130.36,130.36,0,0,0-21.57-28.12C183.46,78.73,157.59,68,128,68c-3.35,0-6.7.14-10,.42a12,12,0,1,1-2-23.91c3.93-.34,8-.51,12-.51,36,0,68.63,13.67,94.49,39.52,19.35,19.35,28.11,38.8,28.48,39.61A12.08,12.08,0,0,1,251,132.88Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,aue,[...r[1]||=[R(`path`,{d:`M128,56C48,56,16,128,16,128s32,72,112,72,112-72,112-72S208,56,128,56Zm0,112a40,40,0,1,1,40-40A40,40,0,0,1,128,168Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M53.92,34.62A8,8,0,1,0,42.08,45.38L61.32,66.55C25,88.84,9.38,123.2,8.69,124.76a8,8,0,0,0,0,6.5c.35.79,8.82,19.57,27.65,38.4C61.43,194.74,93.12,208,128,208a127.11,127.11,0,0,0,52.07-10.83l22,24.21a8,8,0,1,0,11.84-10.76Zm47.33,75.84,41.67,45.85a32,32,0,0,1-41.67-45.85ZM128,192c-30.78,0-57.67-11.19-79.93-33.25A133.16,133.16,0,0,1,25,128c4.69-8.79,19.66-33.39,47.35-49.38l18,19.75a48,48,0,0,0,63.66,70l14.73,16.2A112,112,0,0,1,128,192Zm6-95.43a8,8,0,0,1,3-15.72,48.16,48.16,0,0,1,38.77,42.64,8,8,0,0,1-7.22,8.71,6.39,6.39,0,0,1-.75,0,8,8,0,0,1-8-7.26A32.09,32.09,0,0,0,134,96.57Zm113.28,34.69c-.42.94-10.55,23.37-33.36,43.8a8,8,0,1,1-10.67-11.92A132.77,132.77,0,0,0,231.05,128a133.15,133.15,0,0,0-23.12-30.77C185.67,75.19,158.78,64,128,64a118.37,118.37,0,0,0-19.36,1.57A8,8,0,1,1,106,49.79,134,134,0,0,1,128,48c34.88,0,66.57,13.26,91.66,38.35,18.83,18.83,27.3,37.62,27.65,38.41A8,8,0,0,1,247.31,131.26Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,oue,[...r[2]||=[R(`path`,{d:`M96.68,57.87a4,4,0,0,1,2.08-6.6A130.13,130.13,0,0,1,128,48c34.88,0,66.57,13.26,91.66,38.35,18.83,18.83,27.3,37.62,27.65,38.41a8,8,0,0,1,0,6.5c-.35.79-8.82,19.57-27.65,38.4q-4.28,4.26-8.79,8.07a4,4,0,0,1-5.55-.36ZM213.92,210.62a8,8,0,1,1-11.84,10.76L180,197.13A127.21,127.21,0,0,1,128,208c-34.88,0-66.57-13.26-91.66-38.34C17.51,150.83,9,132.05,8.69,131.26a8,8,0,0,1,0-6.5C9,124,17.51,105.18,36.34,86.35a135,135,0,0,1,25-19.78L42.08,45.38A8,8,0,1,1,53.92,34.62Zm-65.49-48.25-52.69-58a40,40,0,0,0,52.69,58Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,sue,[...r[3]||=[R(`path`,{d:`M52.44,36A6,6,0,0,0,43.56,44L64.44,67c-37.28,21.9-53.23,57-53.92,58.57a6,6,0,0,0,0,4.88c.34.77,8.66,19.22,27.24,37.8C55,185.47,84.62,206,128,206a124.91,124.91,0,0,0,52.57-11.25l23,25.29a6,6,0,0,0,8.88-8.08Zm48.62,71.32,45,49.52a34,34,0,0,1-45-49.52ZM128,194c-31.38,0-58.78-11.42-81.45-33.93A134.57,134.57,0,0,1,22.69,128c4.29-8.2,20.1-35.18,50-51.91L92.89,98.3a46,46,0,0,0,61.35,67.48l17.81,19.6A113.47,113.47,0,0,1,128,194Zm6.4-99.4a6,6,0,0,1,2.25-11.79,46.17,46.17,0,0,1,37.15,40.87,6,6,0,0,1-5.42,6.53l-.56,0a6,6,0,0,1-6-5.45A34.1,34.1,0,0,0,134.4,94.6Zm111.08,35.85c-.41.92-10.37,23-32.86,43.12a6,6,0,1,1-8-8.94A134.07,134.07,0,0,0,233.31,128a134.67,134.67,0,0,0-23.86-32.07C186.78,73.42,159.38,62,128,62a120.19,120.19,0,0,0-19.69,1.6,6,6,0,1,1-2-11.83A131.12,131.12,0,0,1,128,50c43.38,0,73,20.54,90.24,37.76,18.58,18.58,26.9,37,27.24,37.81A6,6,0,0,1,245.48,130.45Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,cue,[...r[4]||=[R(`path`,{d:`M53.92,34.62A8,8,0,1,0,42.08,45.38L61.32,66.55C25,88.84,9.38,123.2,8.69,124.76a8,8,0,0,0,0,6.5c.35.79,8.82,19.57,27.65,38.4C61.43,194.74,93.12,208,128,208a127.11,127.11,0,0,0,52.07-10.83l22,24.21a8,8,0,1,0,11.84-10.76Zm47.33,75.84,41.67,45.85a32,32,0,0,1-41.67-45.85ZM128,192c-30.78,0-57.67-11.19-79.93-33.25A133.16,133.16,0,0,1,25,128c4.69-8.79,19.66-33.39,47.35-49.38l18,19.75a48,48,0,0,0,63.66,70l14.73,16.2A112,112,0,0,1,128,192Zm6-95.43a8,8,0,0,1,3-15.72,48.16,48.16,0,0,1,38.77,42.64,8,8,0,0,1-7.22,8.71,6.39,6.39,0,0,1-.75,0,8,8,0,0,1-8-7.26A32.09,32.09,0,0,0,134,96.57Zm113.28,34.69c-.42.94-10.55,23.37-33.36,43.8a8,8,0,1,1-10.67-11.92A132.77,132.77,0,0,0,231.05,128a133.15,133.15,0,0,0-23.12-30.77C185.67,75.19,158.78,64,128,64a118.37,118.37,0,0,0-19.36,1.57A8,8,0,1,1,106,49.79,134,134,0,0,1,128,48c34.88,0,66.57,13.26,91.66,38.35,18.83,18.83,27.3,37.62,27.65,38.41A8,8,0,0,1,247.31,131.26Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,lue,[...r[5]||=[R(`path`,{d:`M51,37.31A4,4,0,0,0,45,42.69L67.59,67.5C29.34,89,13,124.81,12.34,126.38a4.08,4.08,0,0,0,0,3.25c.34.77,8.52,18.89,26.83,37.2,17,17,46.14,37.17,88.83,37.17a122.59,122.59,0,0,0,53.06-11.69l24,26.38a4,4,0,1,0,5.92-5.38ZM149.1,157.16A36,36,0,0,1,101,104.22ZM128,196c-32,0-59.89-11.65-83-34.62A135.81,135.81,0,0,1,20.44,128c3.65-7.23,20.09-36.81,52.68-54.43l22.45,24.7a44,44,0,0,0,59,64.83l20.89,23A114.94,114.94,0,0,1,128,196Zm6.78-103.36a4,4,0,0,1,1.49-7.86,44.15,44.15,0,0,1,35.54,39.09,4,4,0,0,1-3.61,4.35l-.38,0a4,4,0,0,1-4-3.63A36.1,36.1,0,0,0,134.78,92.64Zm108.88,37c-.41.91-10.2,22.58-32.38,42.45a4,4,0,0,1-2.67,1,4,4,0,0,1-2.67-7A136.71,136.71,0,0,0,235.56,128,136.07,136.07,0,0,0,211,94.62C187.89,71.65,160,60,128,60a122,122,0,0,0-20,1.63,4,4,0,0,1-1.32-7.89A129.3,129.3,0,0,1,128,52c42.7,0,71.87,20.22,88.83,37.18,18.31,18.31,26.49,36.44,26.83,37.2A4.08,4.08,0,0,1,243.66,129.63Z`},null,-1)]])):B(``,!0)],16))}})})),fue,pue=s((()=>{due(),fue=uue})),mue,hue,gue,_ue,vue,yue,bue,xue=s((()=>{nc(),G(),mue={key:0},hue={key:1},gue={key:2},_ue={key:3},vue={key:4},yue={key:5},bue=N({name:`ScalarIconFileDashed`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,mue,[...r[0]||=[R(`path`,{d:`M84,224a12,12,0,0,1-12,12H56a20,20,0,0,1-20-20V184a12,12,0,0,1,24,0v28H72A12,12,0,0,1,84,224ZM220,88v48a12,12,0,0,1-24,0V104H148a12,12,0,0,1-12-12V44H120a12,12,0,0,1,0-24h32a12,12,0,0,1,8.49,3.51l56,56A12,12,0,0,1,220,88Zm-60-8h23L160,57ZM80,20H56A20,20,0,0,0,36,40V64a12,12,0,0,0,24,0V44H80a12,12,0,0,0,0-24ZM208,164a12,12,0,0,0-12,12v36h-4a12,12,0,0,0,0,24h8a20,20,0,0,0,20-20V176A12,12,0,0,0,208,164ZM48,156a12,12,0,0,0,12-12V104a12,12,0,0,0-24,0v40A12,12,0,0,0,48,156Zm104,56H112a12,12,0,0,0,0,24h40a12,12,0,0,0,0-24Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,hue,[...r[1]||=[R(`path`,{d:`M208,88H152V32Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M80,224a8,8,0,0,1-8,8H56a16,16,0,0,1-16-16V184a8,8,0,0,1,16,0v32H72A8,8,0,0,1,80,224ZM216,88v48a8,8,0,0,1-16,0V96H152a8,8,0,0,1-8-8V40H120a8,8,0,0,1,0-16h32a8,8,0,0,1,5.66,2.34l56,56A8,8,0,0,1,216,88Zm-56-8h28.69L160,51.31ZM80,24H56A16,16,0,0,0,40,40V64a8,8,0,0,0,16,0V40H80a8,8,0,0,0,0-16ZM208,168a8,8,0,0,0-8,8v40h-8a8,8,0,0,0,0,16h8a16,16,0,0,0,16-16V176A8,8,0,0,0,208,168ZM48,152a8,8,0,0,0,8-8V104a8,8,0,0,0-16,0v40A8,8,0,0,0,48,152Zm104,64H112a8,8,0,0,0,0,16h40a8,8,0,0,0,0-16Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,gue,[...r[2]||=[R(`path`,{d:`M80,224a8,8,0,0,1-8,8H56a16,16,0,0,1-16-16V184a8,8,0,0,1,16,0v32H72A8,8,0,0,1,80,224ZM213.66,82.34l-56-56A8,8,0,0,0,152,24H120a8,8,0,0,0,0,16h24V88a8,8,0,0,0,8,8h48v40a8,8,0,0,0,16,0V88A8,8,0,0,0,213.66,82.34ZM80,24H56A16,16,0,0,0,40,40V64a8,8,0,0,0,16,0V40H80a8,8,0,0,0,0-16ZM208,168a8,8,0,0,0-8,8v40h-8a8,8,0,0,0,0,16h8a16,16,0,0,0,16-16V176A8,8,0,0,0,208,168ZM48,152a8,8,0,0,0,8-8V104a8,8,0,0,0-16,0v40A8,8,0,0,0,48,152Zm104,64H112a8,8,0,0,0,0,16h40a8,8,0,0,0,0-16Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,_ue,[...r[3]||=[R(`path`,{d:`M78,224a6,6,0,0,1-6,6H56a14,14,0,0,1-14-14V184a6,6,0,0,1,12,0v32a2,2,0,0,0,2,2H72A6,6,0,0,1,78,224ZM214,88v48a6,6,0,0,1-12,0V94H152a6,6,0,0,1-6-6V38H120a6,6,0,0,1,0-12h32a6,6,0,0,1,4.24,1.76l56,56A6,6,0,0,1,214,88Zm-56-6h35.51L158,46.49ZM80,26H56A14,14,0,0,0,42,40V64a6,6,0,0,0,12,0V40a2,2,0,0,1,2-2H80a6,6,0,0,0,0-12ZM208,170a6,6,0,0,0-6,6v40a2,2,0,0,1-2,2h-8a6,6,0,0,0,0,12h8a14,14,0,0,0,14-14V176A6,6,0,0,0,208,170ZM48,150a6,6,0,0,0,6-6V104a6,6,0,0,0-12,0v40A6,6,0,0,0,48,150Zm104,68H112a6,6,0,0,0,0,12h40a6,6,0,0,0,0-12Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,vue,[...r[4]||=[R(`path`,{d:`M80,224a8,8,0,0,1-8,8H56a16,16,0,0,1-16-16V184a8,8,0,0,1,16,0v32H72A8,8,0,0,1,80,224ZM216,88v48a8,8,0,0,1-16,0V96H152a8,8,0,0,1-8-8V40H120a8,8,0,0,1,0-16h32a8,8,0,0,1,5.66,2.34l56,56A8,8,0,0,1,216,88Zm-56-8h28.69L160,51.31ZM80,24H56A16,16,0,0,0,40,40V64a8,8,0,0,0,16,0V40H80a8,8,0,0,0,0-16ZM208,168a8,8,0,0,0-8,8v40h-8a8,8,0,0,0,0,16h8a16,16,0,0,0,16-16V176A8,8,0,0,0,208,168ZM48,152a8,8,0,0,0,8-8V104a8,8,0,0,0-16,0v40A8,8,0,0,0,48,152Zm104,64H112a8,8,0,0,0,0,16h40a8,8,0,0,0,0-16Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,yue,[...r[5]||=[R(`path`,{d:`M76,224a4,4,0,0,1-4,4H56a12,12,0,0,1-12-12V184a4,4,0,0,1,8,0v32a4,4,0,0,0,4,4H72A4,4,0,0,1,76,224ZM212,88v48a4,4,0,0,1-8,0V92H152a4,4,0,0,1-4-4V36H120a4,4,0,0,1,0-8h32a4,4,0,0,1,2.83,1.17l56,56A4,4,0,0,1,212,88Zm-56-4h42.34L156,41.66ZM80,28H56A12,12,0,0,0,44,40V64a4,4,0,0,0,8,0V40a4,4,0,0,1,4-4H80a4,4,0,0,0,0-8ZM208,172a4,4,0,0,0-4,4v40a4,4,0,0,1-4,4h-8a4,4,0,0,0,0,8h8a12,12,0,0,0,12-12V176A4,4,0,0,0,208,172ZM48,148a4,4,0,0,0,4-4V104a4,4,0,0,0-8,0v40A4,4,0,0,0,48,148Zm104,72H112a4,4,0,0,0,0,8h40a4,4,0,0,0,0-8Z`},null,-1)]])):B(``,!0)],16))}})})),Sue,Cue=s((()=>{xue(),Sue=bue})),wue,Tue,Eue,Due,Oue,kue,Aue,jue=s((()=>{nc(),G(),wue={key:0},Tue={key:1},Eue={key:2},Due={key:3},Oue={key:4},kue={key:5},Aue=N({name:`ScalarIconFileMd`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,wue,[...r[0]||=[R(`path`,{d:`M100,152v56a12,12,0,0,1-24,0V190.07l-6.17,8.81a12,12,0,0,1-19.66,0L44,190.07V208a12,12,0,0,1-24,0V152a12,12,0,0,1,21.83-6.88L60,171.07l18.17-25.95A12,12,0,0,1,100,152Zm84,28a40,40,0,0,1-40,40H128a12,12,0,0,1-12-12V152a12,12,0,0,1,12-12h16A40,40,0,0,1,184,180Zm-24,0a16,16,0,0,0-16-16h-4v32h4A16,16,0,0,0,160,180Zm60-92V224a12,12,0,0,1-24,0V104H148a12,12,0,0,1-12-12V44H60v64a12,12,0,0,1-24,0V40A20,20,0,0,1,56,20h96a12,12,0,0,1,8.49,3.52l56,56A12,12,0,0,1,220,88Zm-60-8h23L160,57Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,Tue,[...r[1]||=[R(`path`,{d:`M208,88H152V32Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M213.66,82.34l-56-56A8,8,0,0,0,152,24H56A16,16,0,0,0,40,40v72a8,8,0,0,0,16,0V40h88V88a8,8,0,0,0,8,8h48V224a8,8,0,0,0,16,0V88A8,8,0,0,0,213.66,82.34ZM160,51.31,188.69,80H160ZM144,144H128a8,8,0,0,0-8,8v56a8,8,0,0,0,8,8h16a36,36,0,0,0,0-72Zm0,56h-8V160h8a20,20,0,0,1,0,40Zm-40-48v56a8,8,0,0,1-16,0V177.38L74.55,196.59a8,8,0,0,1-13.1,0L48,177.38V208a8,8,0,0,1-16,0V152a8,8,0,0,1,14.55-4.59L68,178.05l21.45-30.64A8,8,0,0,1,104,152Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,Eue,[...r[2]||=[R(`path`,{d:`M213.66,82.34l-56-56A8,8,0,0,0,152,24H56A16,16,0,0,0,40,40v76a4,4,0,0,0,4,4H196a4,4,0,0,1,4,4V224a8,8,0,0,0,9.19,7.91,8.15,8.15,0,0,0,6.81-8.16V88A8,8,0,0,0,213.66,82.34ZM152,88V44l44,44Zm-8,56H128a8,8,0,0,0-8,8v56a8,8,0,0,0,8,8h15.32c19.66,0,36.21-15.48,36.67-35.13A36,36,0,0,0,144,144Zm-.49,56H136V160h8a20,20,0,0,1,20,20.77C163.58,191.59,154.34,200,143.51,200ZM104,152v55.73A8.17,8.17,0,0,1,96.53,216,8,8,0,0,1,88,208V177.38l-13.32,19a8.3,8.3,0,0,1-4.2,3.2,8,8,0,0,1-9-3L48,177.38v30.35A8.17,8.17,0,0,1,40.53,216,8,8,0,0,1,32,208V152.31a8.27,8.27,0,0,1,4.56-7.53,8,8,0,0,1,10,2.63L68,178.05l21.27-30.39a8.28,8.28,0,0,1,8.06-3.55A8,8,0,0,1,104,152Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,Due,[...r[3]||=[R(`path`,{d:`M212.24,83.76l-56-56A6,6,0,0,0,152,26H56A14,14,0,0,0,42,40v72a6,6,0,0,0,12,0V40a2,2,0,0,1,2-2h90V88a6,6,0,0,0,6,6h50V224a6,6,0,0,0,12,0V88A6,6,0,0,0,212.24,83.76ZM158,46.48,193.52,82H158ZM144,146H128a6,6,0,0,0-6,6v56a6,6,0,0,0,6,6h16a34,34,0,0,0,0-68Zm0,56H134V158h10a22,22,0,0,1,0,44Zm-42-50v56a6,6,0,0,1-12,0V171L72.92,195.44a6,6,0,0,1-9.84,0L46,171v37a6,6,0,0,1-12,0V152a6,6,0,0,1,10.92-3.44l23.08,33,23.08-33A6,6,0,0,1,102,152Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,Oue,[...r[4]||=[R(`path`,{d:`M213.66,82.34l-56-56A8,8,0,0,0,152,24H56A16,16,0,0,0,40,40v72a8,8,0,0,0,16,0V40h88V88a8,8,0,0,0,8,8h48V224a8,8,0,0,0,16,0V88A8,8,0,0,0,213.66,82.34ZM160,51.31,188.69,80H160ZM144,144H128a8,8,0,0,0-8,8v56a8,8,0,0,0,8,8h16a36,36,0,0,0,0-72Zm0,56h-8V160h8a20,20,0,0,1,0,40Zm-40-48v56a8,8,0,0,1-16,0V177.38L74.55,196.59a8,8,0,0,1-13.1,0L48,177.38V208a8,8,0,0,1-16,0V152a8,8,0,0,1,14.55-4.59L68,178.05l21.45-30.64A8,8,0,0,1,104,152Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,kue,[...r[5]||=[R(`path`,{d:`M210.83,85.17l-56-56A4,4,0,0,0,152,28H56A12,12,0,0,0,44,40v72a4,4,0,0,0,8,0V40a4,4,0,0,1,4-4h92V88a4,4,0,0,0,4,4h52V224a4,4,0,0,0,8,0V88A4,4,0,0,0,210.83,85.17ZM156,41.65,198.34,84H156ZM144,148H128a4,4,0,0,0-4,4v56a4,4,0,0,0,4,4h16a32,32,0,0,0,0-64Zm0,56H132V156h12a24,24,0,0,1,0,48Zm-44-52v56a4,4,0,0,1-8,0V164.69l-20.72,29.6a4,4,0,0,1-6.56,0L44,164.69V208a4,4,0,0,1-8,0V152a4,4,0,0,1,7.28-2.29L68,185l24.72-35.31A4,4,0,0,1,100,152Z`},null,-1)]])):B(``,!0)],16))}})})),Mue,Nue=s((()=>{jue(),Mue=Aue})),Pue,Fue,Iue,Lue,Rue,zue,Bue,Vue=s((()=>{nc(),G(),Pue={key:0},Fue={key:1},Iue={key:2},Lue={key:3},Rue={key:4},zue={key:5},Bue=N({name:`ScalarIconFileText`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,Pue,[...r[0]||=[R(`path`,{d:`M216.49,79.52l-56-56A12,12,0,0,0,152,20H56A20,20,0,0,0,36,40V216a20,20,0,0,0,20,20H200a20,20,0,0,0,20-20V88A12,12,0,0,0,216.49,79.52ZM160,57l23,23H160ZM60,212V44h76V92a12,12,0,0,0,12,12h48V212Zm112-80a12,12,0,0,1-12,12H96a12,12,0,0,1,0-24h64A12,12,0,0,1,172,132Zm0,40a12,12,0,0,1-12,12H96a12,12,0,0,1,0-24h64A12,12,0,0,1,172,172Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,Fue,[...r[1]||=[R(`path`,{d:`M208,88H152V32Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M213.66,82.34l-56-56A8,8,0,0,0,152,24H56A16,16,0,0,0,40,40V216a16,16,0,0,0,16,16H200a16,16,0,0,0,16-16V88A8,8,0,0,0,213.66,82.34ZM160,51.31,188.69,80H160ZM200,216H56V40h88V88a8,8,0,0,0,8,8h48V216Zm-32-80a8,8,0,0,1-8,8H96a8,8,0,0,1,0-16h64A8,8,0,0,1,168,136Zm0,32a8,8,0,0,1-8,8H96a8,8,0,0,1,0-16h64A8,8,0,0,1,168,168Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,Iue,[...r[2]||=[R(`path`,{d:`M213.66,82.34l-56-56A8,8,0,0,0,152,24H56A16,16,0,0,0,40,40V216a16,16,0,0,0,16,16H200a16,16,0,0,0,16-16V88A8,8,0,0,0,213.66,82.34ZM160,176H96a8,8,0,0,1,0-16h64a8,8,0,0,1,0,16Zm0-32H96a8,8,0,0,1,0-16h64a8,8,0,0,1,0,16Zm-8-56V44l44,44Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,Lue,[...r[3]||=[R(`path`,{d:`M212.24,83.76l-56-56A6,6,0,0,0,152,26H56A14,14,0,0,0,42,40V216a14,14,0,0,0,14,14H200a14,14,0,0,0,14-14V88A6,6,0,0,0,212.24,83.76ZM158,46.48,193.52,82H158ZM200,218H56a2,2,0,0,1-2-2V40a2,2,0,0,1,2-2h90V88a6,6,0,0,0,6,6h50V216A2,2,0,0,1,200,218Zm-34-82a6,6,0,0,1-6,6H96a6,6,0,0,1,0-12h64A6,6,0,0,1,166,136Zm0,32a6,6,0,0,1-6,6H96a6,6,0,0,1,0-12h64A6,6,0,0,1,166,168Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,Rue,[...r[4]||=[R(`path`,{d:`M213.66,82.34l-56-56A8,8,0,0,0,152,24H56A16,16,0,0,0,40,40V216a16,16,0,0,0,16,16H200a16,16,0,0,0,16-16V88A8,8,0,0,0,213.66,82.34ZM160,51.31,188.69,80H160ZM200,216H56V40h88V88a8,8,0,0,0,8,8h48V216Zm-32-80a8,8,0,0,1-8,8H96a8,8,0,0,1,0-16h64A8,8,0,0,1,168,136Zm0,32a8,8,0,0,1-8,8H96a8,8,0,0,1,0-16h64A8,8,0,0,1,168,168Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,zue,[...r[5]||=[R(`path`,{d:`M210.83,85.17l-56-56A4,4,0,0,0,152,28H56A12,12,0,0,0,44,40V216a12,12,0,0,0,12,12H200a12,12,0,0,0,12-12V88A4,4,0,0,0,210.83,85.17ZM156,41.65,198.34,84H156ZM200,220H56a4,4,0,0,1-4-4V40a4,4,0,0,1,4-4h92V88a4,4,0,0,0,4,4h52V216A4,4,0,0,1,200,220Zm-36-84a4,4,0,0,1-4,4H96a4,4,0,0,1,0-8h64A4,4,0,0,1,164,136Zm0,32a4,4,0,0,1-4,4H96a4,4,0,0,1,0-8h64A4,4,0,0,1,164,168Z`},null,-1)]])):B(``,!0)],16))}})})),Hue,Uue=s((()=>{Vue(),Hue=Bue})),Wue,Gue,Kue,que,Jue,Yue,Xue,Zue=s((()=>{nc(),G(),Wue={key:0},Gue={key:1},Kue={key:2},que={key:3},Jue={key:4},Yue={key:5},Xue=N({name:`ScalarIconGavel`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,Wue,[...r[0]||=[R(`path`,{d:`M246.14,113.86l-16-16a20,20,0,0,0-23.06-3.75l-45.2-45.2a20,20,0,0,0-3.74-23.06l-16-16a20,20,0,0,0-28.28,0l-64,64a20,20,0,0,0,0,28.28l16,16a20,20,0,0,0,23,3.79L29.36,181.38a32,32,0,0,0,45.26,45.26L134,167.21a20,20,0,0,0,3.81,22.94l16,16a20,20,0,0,0,28.29,0l64-64a20,20,0,0,0,0-28.29ZM80,98.34,69.64,88,128,29.65,138.34,40ZM57.64,209.67a8,8,0,0,1-11.31-11.32l59.52-59.52,11.31,11.32Zm92.7-60.29-43.72-43.72,39-39,43.72,43.72Zm17.65,37L157.65,176,216,117.66,226.34,128Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,Gue,[...r[1]||=[R(`path`,{d:`M149.66,45.66l-64,64a8,8,0,0,1-11.32,0l-16-16a8,8,0,0,1,0-11.32l64-64a8,8,0,0,1,11.32,0l16,16A8,8,0,0,1,149.66,45.66Zm88,76.68-16-16a8,8,0,0,0-11.32,0l-64,64a8,8,0,0,0,0,11.32l16,16a8,8,0,0,0,11.32,0l64-64A8,8,0,0,0,237.66,122.34Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M243.32,116.69l-16-16a16,16,0,0,0-20.84-1.53L156.84,49.52a16,16,0,0,0-1.52-20.84l-16-16a16,16,0,0,0-22.63,0l-64,64a16,16,0,0,0,0,22.63l16,16a16,16,0,0,0,20.83,1.52L96.69,124,31.31,189.38A25,25,0,0,0,66.63,224.7L132,159.32l7.17,7.16a16,16,0,0,0,1.52,20.84l16,16a16,16,0,0,0,22.63,0l64-64A16,16,0,0,0,243.32,116.69ZM80,104,64,88l64-64,16,16ZM55.32,213.38a9,9,0,0,1-12.69,0,9,9,0,0,1,0-12.68L108,135.32,120.69,148ZM101,105.66,145.66,61,195,110.34,150.35,155ZM168,192l-16-16,4-4h0l56-56h0l4-4,16,16Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,Kue,[...r[2]||=[R(`path`,{d:`M52.69,99.31a16,16,0,0,1,0-22.63l64-64a16,16,0,0,1,22.63,22.63l-64,64a16,16,0,0,1-22.63,0Zm190.63,17.37a16,16,0,0,0-22.63,0l-64,64a16,16,0,0,0,0,22.63h0a16,16,0,0,0,22.63,0l64-64A16,16,0,0,0,243.32,116.68Zm-35.11-15.8L155.12,47.79a4,4,0,0,0-5.66,0L87.8,109.45a4,4,0,0,0,0,5.66L103,130.34,28.69,204.69a16,16,0,0,0,22.62,22.62L125.66,153l15.23,15.23a4,4,0,0,0,5.66,0l61.66-61.66A4,4,0,0,0,208.21,100.88Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,que,[...r[3]||=[R(`path`,{d:`M241.91,118.1l-16-16a14,14,0,0,0-19.55-.23L154.13,49.64a14,14,0,0,0-.23-19.55l-16-16a14,14,0,0,0-19.8,0l-64,64a14,14,0,0,0,0,19.8l16,16a14,14,0,0,0,19.55.23L99.52,124,32.73,190.79a23,23,0,0,0,32.48,32.49L132,156.49l9.87,9.87a14,14,0,0,0,.23,19.55l16,16a14,14,0,0,0,19.8,0l64-64A14,14,0,0,0,241.91,118.1Zm-91.56,39.76-52.21-52.2,47.52-47.52,52.2,52.2ZM78.59,105.41l-16-16a2,2,0,0,1,0-2.83l64-64a2,2,0,0,1,2.83,0l16,16a2,2,0,0,1,0,2.83l-64,64A2,2,0,0,1,78.59,105.41ZM56.73,214.8a11,11,0,0,1-15.52-15.52L108,132.49,123.52,148Zm176.69-85.38-64,64a2,2,0,0,1-2.83,0l-16-16a2,2,0,0,1,0-2.83l64-64a2,2,0,0,1,2.83,0l16,16A2,2,0,0,1,233.42,129.42Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,Jue,[...r[4]||=[R(`path`,{d:`M243.32,116.69l-16-16a16,16,0,0,0-20.84-1.53L156.84,49.52a16,16,0,0,0-1.52-20.84l-16-16a16,16,0,0,0-22.63,0l-64,64a16,16,0,0,0,0,22.63l16,16a16,16,0,0,0,20.83,1.52L96.69,124,31.31,189.38A25,25,0,0,0,66.63,224.7L132,159.32l7.17,7.16a16,16,0,0,0,1.52,20.84l16,16a16,16,0,0,0,22.63,0l64-64A16,16,0,0,0,243.32,116.69ZM80,104,64,88l64-64,16,16ZM55.32,213.38a9,9,0,0,1-12.69,0,9,9,0,0,1,0-12.68L108,135.32,120.69,148ZM101,105.66,145.66,61,195,110.34,150.35,155ZM168,192l-16-16,4-4h0l56-56h0l4-4,16,16Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,Yue,[...r[5]||=[R(`path`,{d:`M240.49,119.52l-16-16a12,12,0,0,0-17,0l-1.17,1.17-55-55,1.18-1.17a12,12,0,0,0,0-17l-16-16a12,12,0,0,0-17,0l-64,64a12,12,0,0,0,0,17l16,16a12,12,0,0,0,17,0l1.17-1.18L102.34,124l-68.2,68.21A21,21,0,0,0,63.8,221.87L132,153.66l12.69,12.69-1.18,1.17a12,12,0,0,0,0,17l16,16a12,12,0,0,0,17,0l64-64a12,12,0,0,0,0-17ZM77.17,106.83l-16-16a4,4,0,0,1,0-5.66l64-64a4,4,0,0,1,5.66,0l16,16a4,4,0,0,1,0,5.65l-64,64A4,4,0,0,1,77.17,106.83Zm-19,109.38A13,13,0,1,1,39.8,197.87L108,129.66,126.34,148ZM95.31,105.66l50.35-50.35,55,55-50.35,50.35Zm139.52,25.17-64,64a4,4,0,0,1-5.66,0l-16-16a4,4,0,0,1,0-5.65l64-64a4,4,0,0,1,5.66,0l16,16a4,4,0,0,1,0,5.66Z`},null,-1)]])):B(``,!0)],16))}})})),fc,Que=s((()=>{Zue(),fc=Xue})),$ue,ede,tde,nde,rde,ide,ade,ode=s((()=>{nc(),G(),$ue={key:0},ede={key:1},tde={key:2},nde={key:3},rde={key:4},ide={key:5},ade=N({name:`ScalarIconGear`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,$ue,[...r[0]||=[R(`path`,{d:`M128,76a52,52,0,1,0,52,52A52.06,52.06,0,0,0,128,76Zm0,80a28,28,0,1,1,28-28A28,28,0,0,1,128,156Zm92-27.21v-1.58l14-17.51a12,12,0,0,0,2.23-10.59A111.75,111.75,0,0,0,225,71.89,12,12,0,0,0,215.89,66L193.61,63.5l-1.11-1.11L190,40.1A12,12,0,0,0,184.11,31a111.67,111.67,0,0,0-27.23-11.27A12,12,0,0,0,146.3,22L128.79,36h-1.58L109.7,22a12,12,0,0,0-10.59-2.23A111.75,111.75,0,0,0,71.89,31.05,12,12,0,0,0,66,40.11L63.5,62.39,62.39,63.5,40.1,66A12,12,0,0,0,31,71.89,111.67,111.67,0,0,0,19.77,99.12,12,12,0,0,0,22,109.7l14,17.51v1.58L22,146.3a12,12,0,0,0-2.23,10.59,111.75,111.75,0,0,0,11.29,27.22A12,12,0,0,0,40.11,190l22.28,2.48,1.11,1.11L66,215.9A12,12,0,0,0,71.89,225a111.67,111.67,0,0,0,27.23,11.27A12,12,0,0,0,109.7,234l17.51-14h1.58l17.51,14a12,12,0,0,0,10.59,2.23A111.75,111.75,0,0,0,184.11,225a12,12,0,0,0,5.91-9.06l2.48-22.28,1.11-1.11L215.9,190a12,12,0,0,0,9.06-5.91,111.67,111.67,0,0,0,11.27-27.23A12,12,0,0,0,234,146.3Zm-24.12-4.89a70.1,70.1,0,0,1,0,8.2,12,12,0,0,0,2.61,8.22l12.84,16.05A86.47,86.47,0,0,1,207,166.86l-20.43,2.27a12,12,0,0,0-7.65,4,69,69,0,0,1-5.8,5.8,12,12,0,0,0-4,7.65L166.86,207a86.47,86.47,0,0,1-10.49,4.35l-16.05-12.85a12,12,0,0,0-7.5-2.62c-.24,0-.48,0-.72,0a70.1,70.1,0,0,1-8.2,0,12.06,12.06,0,0,0-8.22,2.6L99.63,211.33A86.47,86.47,0,0,1,89.14,207l-2.27-20.43a12,12,0,0,0-4-7.65,69,69,0,0,1-5.8-5.8,12,12,0,0,0-7.65-4L49,166.86a86.47,86.47,0,0,1-4.35-10.49l12.84-16.05a12,12,0,0,0,2.61-8.22,70.1,70.1,0,0,1,0-8.2,12,12,0,0,0-2.61-8.22L44.67,99.63A86.47,86.47,0,0,1,49,89.14l20.43-2.27a12,12,0,0,0,7.65-4,69,69,0,0,1,5.8-5.8,12,12,0,0,0,4-7.65L89.14,49a86.47,86.47,0,0,1,10.49-4.35l16.05,12.85a12.06,12.06,0,0,0,8.22,2.6,70.1,70.1,0,0,1,8.2,0,12,12,0,0,0,8.22-2.6l16.05-12.85A86.47,86.47,0,0,1,166.86,49l2.27,20.43a12,12,0,0,0,4,7.65,69,69,0,0,1,5.8,5.8,12,12,0,0,0,7.65,4L207,89.14a86.47,86.47,0,0,1,4.35,10.49l-12.84,16.05A12,12,0,0,0,195.88,123.9Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,ede,[...r[1]||=[R(`path`,{d:`M207.86,123.18l16.78-21a99.14,99.14,0,0,0-10.07-24.29l-26.7-3a81,81,0,0,0-6.81-6.81l-3-26.71a99.43,99.43,0,0,0-24.3-10l-21,16.77a81.59,81.59,0,0,0-9.64,0l-21-16.78A99.14,99.14,0,0,0,77.91,41.43l-3,26.7a81,81,0,0,0-6.81,6.81l-26.71,3a99.43,99.43,0,0,0-10,24.3l16.77,21a81.59,81.59,0,0,0,0,9.64l-16.78,21a99.14,99.14,0,0,0,10.07,24.29l26.7,3a81,81,0,0,0,6.81,6.81l3,26.71a99.43,99.43,0,0,0,24.3,10l21-16.77a81.59,81.59,0,0,0,9.64,0l21,16.78a99.14,99.14,0,0,0,24.29-10.07l3-26.7a81,81,0,0,0,6.81-6.81l26.71-3a99.43,99.43,0,0,0,10-24.3l-16.77-21A81.59,81.59,0,0,0,207.86,123.18ZM128,168a40,40,0,1,1,40-40A40,40,0,0,1,128,168Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M128,80a48,48,0,1,0,48,48A48.05,48.05,0,0,0,128,80Zm0,80a32,32,0,1,1,32-32A32,32,0,0,1,128,160Zm88-29.84q.06-2.16,0-4.32l14.92-18.64a8,8,0,0,0,1.48-7.06,107.6,107.6,0,0,0-10.88-26.25,8,8,0,0,0-6-3.93l-23.72-2.64q-1.48-1.56-3-3L186,40.54a8,8,0,0,0-3.94-6,107.29,107.29,0,0,0-26.25-10.86,8,8,0,0,0-7.06,1.48L130.16,40Q128,40,125.84,40L107.2,25.11a8,8,0,0,0-7.06-1.48A107.6,107.6,0,0,0,73.89,34.51a8,8,0,0,0-3.93,6L67.32,64.27q-1.56,1.49-3,3L40.54,70a8,8,0,0,0-6,3.94,107.71,107.71,0,0,0-10.87,26.25,8,8,0,0,0,1.49,7.06L40,125.84Q40,128,40,130.16L25.11,148.8a8,8,0,0,0-1.48,7.06,107.6,107.6,0,0,0,10.88,26.25,8,8,0,0,0,6,3.93l23.72,2.64q1.49,1.56,3,3L70,215.46a8,8,0,0,0,3.94,6,107.71,107.71,0,0,0,26.25,10.87,8,8,0,0,0,7.06-1.49L125.84,216q2.16.06,4.32,0l18.64,14.92a8,8,0,0,0,7.06,1.48,107.21,107.21,0,0,0,26.25-10.88,8,8,0,0,0,3.93-6l2.64-23.72q1.56-1.48,3-3L215.46,186a8,8,0,0,0,6-3.94,107.71,107.71,0,0,0,10.87-26.25,8,8,0,0,0-1.49-7.06Zm-16.1-6.5a73.93,73.93,0,0,1,0,8.68,8,8,0,0,0,1.74,5.48l14.19,17.73a91.57,91.57,0,0,1-6.23,15L187,173.11a8,8,0,0,0-5.1,2.64,74.11,74.11,0,0,1-6.14,6.14,8,8,0,0,0-2.64,5.1l-2.51,22.58a91.32,91.32,0,0,1-15,6.23l-17.74-14.19a8,8,0,0,0-5-1.75h-.48a73.93,73.93,0,0,1-8.68,0,8.06,8.06,0,0,0-5.48,1.74L100.45,215.8a91.57,91.57,0,0,1-15-6.23L82.89,187a8,8,0,0,0-2.64-5.1,74.11,74.11,0,0,1-6.14-6.14,8,8,0,0,0-5.1-2.64L46.43,170.6a91.32,91.32,0,0,1-6.23-15l14.19-17.74a8,8,0,0,0,1.74-5.48,73.93,73.93,0,0,1,0-8.68,8,8,0,0,0-1.74-5.48L40.2,100.45a91.57,91.57,0,0,1,6.23-15L69,82.89a8,8,0,0,0,5.1-2.64,74.11,74.11,0,0,1,6.14-6.14A8,8,0,0,0,82.89,69L85.4,46.43a91.32,91.32,0,0,1,15-6.23l17.74,14.19a8,8,0,0,0,5.48,1.74,73.93,73.93,0,0,1,8.68,0,8.06,8.06,0,0,0,5.48-1.74L155.55,40.2a91.57,91.57,0,0,1,15,6.23L173.11,69a8,8,0,0,0,2.64,5.1,74.11,74.11,0,0,1,6.14,6.14,8,8,0,0,0,5.1,2.64l22.58,2.51a91.32,91.32,0,0,1,6.23,15l-14.19,17.74A8,8,0,0,0,199.87,123.66Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,tde,[...r[2]||=[R(`path`,{d:`M216,130.16q.06-2.16,0-4.32l14.92-18.64a8,8,0,0,0,1.48-7.06,107.6,107.6,0,0,0-10.88-26.25,8,8,0,0,0-6-3.93l-23.72-2.64q-1.48-1.56-3-3L186,40.54a8,8,0,0,0-3.94-6,107.29,107.29,0,0,0-26.25-10.86,8,8,0,0,0-7.06,1.48L130.16,40Q128,40,125.84,40L107.2,25.11a8,8,0,0,0-7.06-1.48A107.6,107.6,0,0,0,73.89,34.51a8,8,0,0,0-3.93,6L67.32,64.27q-1.56,1.49-3,3L40.54,70a8,8,0,0,0-6,3.94,107.71,107.71,0,0,0-10.87,26.25,8,8,0,0,0,1.49,7.06L40,125.84Q40,128,40,130.16L25.11,148.8a8,8,0,0,0-1.48,7.06,107.6,107.6,0,0,0,10.88,26.25,8,8,0,0,0,6,3.93l23.72,2.64q1.49,1.56,3,3L70,215.46a8,8,0,0,0,3.94,6,107.71,107.71,0,0,0,26.25,10.87,8,8,0,0,0,7.06-1.49L125.84,216q2.16.06,4.32,0l18.64,14.92a8,8,0,0,0,7.06,1.48,107.21,107.21,0,0,0,26.25-10.88,8,8,0,0,0,3.93-6l2.64-23.72q1.56-1.48,3-3L215.46,186a8,8,0,0,0,6-3.94,107.71,107.71,0,0,0,10.87-26.25,8,8,0,0,0-1.49-7.06ZM128,168a40,40,0,1,1,40-40A40,40,0,0,1,128,168Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,nde,[...r[3]||=[R(`path`,{d:`M128,82a46,46,0,1,0,46,46A46.06,46.06,0,0,0,128,82Zm0,80a34,34,0,1,1,34-34A34,34,0,0,1,128,162ZM214,130.84c.06-1.89.06-3.79,0-5.68L229.33,106a6,6,0,0,0,1.11-5.29A105.34,105.34,0,0,0,219.76,74.9a6,6,0,0,0-4.53-3l-24.45-2.71q-1.93-2.07-4-4l-2.72-24.46a6,6,0,0,0-3-4.53,105.65,105.65,0,0,0-25.77-10.66A6,6,0,0,0,150,26.68l-19.2,15.37c-1.89-.06-3.79-.06-5.68,0L106,26.67a6,6,0,0,0-5.29-1.11A105.34,105.34,0,0,0,74.9,36.24a6,6,0,0,0-3,4.53L69.23,65.22q-2.07,1.94-4,4L40.76,72a6,6,0,0,0-4.53,3,105.65,105.65,0,0,0-10.66,25.77A6,6,0,0,0,26.68,106l15.37,19.2c-.06,1.89-.06,3.79,0,5.68L26.67,150.05a6,6,0,0,0-1.11,5.29A105.34,105.34,0,0,0,36.24,181.1a6,6,0,0,0,4.53,3l24.45,2.71q1.94,2.07,4,4L72,215.24a6,6,0,0,0,3,4.53,105.65,105.65,0,0,0,25.77,10.66,6,6,0,0,0,5.29-1.11L125.16,214c1.89.06,3.79.06,5.68,0l19.21,15.38a6,6,0,0,0,3.75,1.31,6.2,6.2,0,0,0,1.54-.2,105.34,105.34,0,0,0,25.76-10.68,6,6,0,0,0,3-4.53l2.71-24.45q2.07-1.93,4-4l24.46-2.72a6,6,0,0,0,4.53-3,105.49,105.49,0,0,0,10.66-25.77,6,6,0,0,0-1.11-5.29Zm-3.1,41.63-23.64,2.63a6,6,0,0,0-3.82,2,75.14,75.14,0,0,1-6.31,6.31,6,6,0,0,0-2,3.82l-2.63,23.63A94.28,94.28,0,0,1,155.14,218l-18.57-14.86a6,6,0,0,0-3.75-1.31h-.36a78.07,78.07,0,0,1-8.92,0,6,6,0,0,0-4.11,1.3L100.87,218a94.13,94.13,0,0,1-17.34-7.17L80.9,187.21a6,6,0,0,0-2-3.82,75.14,75.14,0,0,1-6.31-6.31,6,6,0,0,0-3.82-2l-23.63-2.63A94.28,94.28,0,0,1,38,155.14l14.86-18.57a6,6,0,0,0,1.3-4.11,78.07,78.07,0,0,1,0-8.92,6,6,0,0,0-1.3-4.11L38,100.87a94.13,94.13,0,0,1,7.17-17.34L68.79,80.9a6,6,0,0,0,3.82-2,75.14,75.14,0,0,1,6.31-6.31,6,6,0,0,0,2-3.82l2.63-23.63A94.28,94.28,0,0,1,100.86,38l18.57,14.86a6,6,0,0,0,4.11,1.3,78.07,78.07,0,0,1,8.92,0,6,6,0,0,0,4.11-1.3L155.13,38a94.13,94.13,0,0,1,17.34,7.17l2.63,23.64a6,6,0,0,0,2,3.82,75.14,75.14,0,0,1,6.31,6.31,6,6,0,0,0,3.82,2l23.63,2.63A94.28,94.28,0,0,1,218,100.86l-14.86,18.57a6,6,0,0,0-1.3,4.11,78.07,78.07,0,0,1,0,8.92,6,6,0,0,0,1.3,4.11L218,155.13A94.13,94.13,0,0,1,210.85,172.47Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,rde,[...r[4]||=[R(`path`,{d:`M128,80a48,48,0,1,0,48,48A48.05,48.05,0,0,0,128,80Zm0,80a32,32,0,1,1,32-32A32,32,0,0,1,128,160Zm88-29.84q.06-2.16,0-4.32l14.92-18.64a8,8,0,0,0,1.48-7.06,107.21,107.21,0,0,0-10.88-26.25,8,8,0,0,0-6-3.93l-23.72-2.64q-1.48-1.56-3-3L186,40.54a8,8,0,0,0-3.94-6,107.71,107.71,0,0,0-26.25-10.87,8,8,0,0,0-7.06,1.49L130.16,40Q128,40,125.84,40L107.2,25.11a8,8,0,0,0-7.06-1.48A107.6,107.6,0,0,0,73.89,34.51a8,8,0,0,0-3.93,6L67.32,64.27q-1.56,1.49-3,3L40.54,70a8,8,0,0,0-6,3.94,107.71,107.71,0,0,0-10.87,26.25,8,8,0,0,0,1.49,7.06L40,125.84Q40,128,40,130.16L25.11,148.8a8,8,0,0,0-1.48,7.06,107.21,107.21,0,0,0,10.88,26.25,8,8,0,0,0,6,3.93l23.72,2.64q1.49,1.56,3,3L70,215.46a8,8,0,0,0,3.94,6,107.71,107.71,0,0,0,26.25,10.87,8,8,0,0,0,7.06-1.49L125.84,216q2.16.06,4.32,0l18.64,14.92a8,8,0,0,0,7.06,1.48,107.21,107.21,0,0,0,26.25-10.88,8,8,0,0,0,3.93-6l2.64-23.72q1.56-1.48,3-3L215.46,186a8,8,0,0,0,6-3.94,107.71,107.71,0,0,0,10.87-26.25,8,8,0,0,0-1.49-7.06Zm-16.1-6.5a73.93,73.93,0,0,1,0,8.68,8,8,0,0,0,1.74,5.48l14.19,17.73a91.57,91.57,0,0,1-6.23,15L187,173.11a8,8,0,0,0-5.1,2.64,74.11,74.11,0,0,1-6.14,6.14,8,8,0,0,0-2.64,5.1l-2.51,22.58a91.32,91.32,0,0,1-15,6.23l-17.74-14.19a8,8,0,0,0-5-1.75h-.48a73.93,73.93,0,0,1-8.68,0,8,8,0,0,0-5.48,1.74L100.45,215.8a91.57,91.57,0,0,1-15-6.23L82.89,187a8,8,0,0,0-2.64-5.1,74.11,74.11,0,0,1-6.14-6.14,8,8,0,0,0-5.1-2.64L46.43,170.6a91.32,91.32,0,0,1-6.23-15l14.19-17.74a8,8,0,0,0,1.74-5.48,73.93,73.93,0,0,1,0-8.68,8,8,0,0,0-1.74-5.48L40.2,100.45a91.57,91.57,0,0,1,6.23-15L69,82.89a8,8,0,0,0,5.1-2.64,74.11,74.11,0,0,1,6.14-6.14A8,8,0,0,0,82.89,69L85.4,46.43a91.32,91.32,0,0,1,15-6.23l17.74,14.19a8,8,0,0,0,5.48,1.74,73.93,73.93,0,0,1,8.68,0,8,8,0,0,0,5.48-1.74L155.55,40.2a91.57,91.57,0,0,1,15,6.23L173.11,69a8,8,0,0,0,2.64,5.1,74.11,74.11,0,0,1,6.14,6.14,8,8,0,0,0,5.1,2.64l22.58,2.51a91.32,91.32,0,0,1,6.23,15l-14.19,17.74A8,8,0,0,0,199.87,123.66Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,ide,[...r[5]||=[R(`path`,{d:`M128,84a44,44,0,1,0,44,44A44.05,44.05,0,0,0,128,84Zm0,80a36,36,0,1,1,36-36A36,36,0,0,1,128,164Zm83.93-32.49q.13-3.51,0-7l15.83-19.79a4,4,0,0,0,.75-3.53A103.64,103.64,0,0,0,218,75.9a4,4,0,0,0-3-2l-25.19-2.8c-1.58-1.71-3.24-3.37-4.95-4.95L182.07,41a4,4,0,0,0-2-3A104,104,0,0,0,154.82,27.5a4,4,0,0,0-3.53.74L131.51,44.07q-3.51-.14-7,0L104.7,28.24a4,4,0,0,0-3.53-.75A103.64,103.64,0,0,0,75.9,38a4,4,0,0,0-2,3l-2.8,25.19c-1.71,1.58-3.37,3.24-4.95,4.95L41,73.93a4,4,0,0,0-3,2A104,104,0,0,0,27.5,101.18a4,4,0,0,0,.74,3.53l15.83,19.78q-.14,3.51,0,7L28.24,151.3a4,4,0,0,0-.75,3.53A103.64,103.64,0,0,0,38,180.1a4,4,0,0,0,3,2l25.19,2.8c1.58,1.71,3.24,3.37,4.95,4.95l2.8,25.2a4,4,0,0,0,2,3,104,104,0,0,0,25.28,10.46,4,4,0,0,0,3.53-.74l19.78-15.83q3.51.13,7,0l19.79,15.83a4,4,0,0,0,2.5.88,4,4,0,0,0,1-.13A103.64,103.64,0,0,0,180.1,218a4,4,0,0,0,2-3l2.8-25.19c1.71-1.58,3.37-3.24,4.95-4.95l25.2-2.8a4,4,0,0,0,3-2,104,104,0,0,0,10.46-25.28,4,4,0,0,0-.74-3.53Zm.17,42.83-24.67,2.74a4,4,0,0,0-2.55,1.32,76.2,76.2,0,0,1-6.48,6.48,4,4,0,0,0-1.32,2.55l-2.74,24.66a95.45,95.45,0,0,1-19.64,8.15l-19.38-15.51a4,4,0,0,0-2.5-.87h-.24a73.67,73.67,0,0,1-9.16,0,4,4,0,0,0-2.74.87l-19.37,15.5a95.33,95.33,0,0,1-19.65-8.13l-2.74-24.67a4,4,0,0,0-1.32-2.55,76.2,76.2,0,0,1-6.48-6.48,4,4,0,0,0-2.55-1.32l-24.66-2.74a95.45,95.45,0,0,1-8.15-19.64l15.51-19.38a4,4,0,0,0,.87-2.74,77.76,77.76,0,0,1,0-9.16,4,4,0,0,0-.87-2.74l-15.5-19.37A95.33,95.33,0,0,1,43.9,81.66l24.67-2.74a4,4,0,0,0,2.55-1.32,76.2,76.2,0,0,1,6.48-6.48,4,4,0,0,0,1.32-2.55l2.74-24.66a95.45,95.45,0,0,1,19.64-8.15l19.38,15.51a4,4,0,0,0,2.74.87,73.67,73.67,0,0,1,9.16,0,4,4,0,0,0,2.74-.87l19.37-15.5a95.33,95.33,0,0,1,19.65,8.13l2.74,24.67a4,4,0,0,0,1.32,2.55,76.2,76.2,0,0,1,6.48,6.48,4,4,0,0,0,2.55,1.32l24.66,2.74a95.45,95.45,0,0,1,8.15,19.64l-15.51,19.38a4,4,0,0,0-.87,2.74,77.76,77.76,0,0,1,0,9.16,4,4,0,0,0,.87,2.74l15.5,19.37A95.33,95.33,0,0,1,212.1,174.34Z`},null,-1)]])):B(``,!0)],16))}})})),pc,sde=s((()=>{ode(),pc=ade})),cde,lde,ude,dde,fde,pde,mde,hde=s((()=>{nc(),G(),cde={key:0},lde={key:1},ude={key:2},dde={key:3},fde={key:4},pde={key:5},mde=N({name:`ScalarIconGearSix`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,cde,[...r[0]||=[R(`path`,{d:`M128,76a52,52,0,1,0,52,52A52.06,52.06,0,0,0,128,76Zm0,80a28,28,0,1,1,28-28A28,28,0,0,1,128,156Zm113.86-49.57A12,12,0,0,0,236,98.34L208.21,82.49l-.11-31.31a12,12,0,0,0-4.25-9.12,116,116,0,0,0-38-21.41,12,12,0,0,0-9.68.89L128,37.27,99.83,21.53a12,12,0,0,0-9.7-.9,116.06,116.06,0,0,0-38,21.47,12,12,0,0,0-4.24,9.1l-.14,31.34L20,98.35a12,12,0,0,0-5.85,8.11,110.7,110.7,0,0,0,0,43.11A12,12,0,0,0,20,157.66l27.82,15.85.11,31.31a12,12,0,0,0,4.25,9.12,116,116,0,0,0,38,21.41,12,12,0,0,0,9.68-.89L128,218.73l28.14,15.74a12,12,0,0,0,9.7.9,116.06,116.06,0,0,0,38-21.47,12,12,0,0,0,4.24-9.1l.14-31.34,27.81-15.81a12,12,0,0,0,5.85-8.11A110.7,110.7,0,0,0,241.86,106.43Zm-22.63,33.18-26.88,15.28a11.94,11.94,0,0,0-4.55,4.59c-.54,1-1.11,1.93-1.7,2.88a12,12,0,0,0-1.83,6.31L184.13,199a91.83,91.83,0,0,1-21.07,11.87l-27.15-15.19a12,12,0,0,0-5.86-1.53h-.29c-1.14,0-2.3,0-3.44,0a12.08,12.08,0,0,0-6.14,1.51L93,210.82A92.27,92.27,0,0,1,71.88,199l-.11-30.24a12,12,0,0,0-1.83-6.32c-.58-.94-1.16-1.91-1.7-2.88A11.92,11.92,0,0,0,63.7,155L36.8,139.63a86.53,86.53,0,0,1,0-23.24l26.88-15.28a12,12,0,0,0,4.55-4.58c.54-1,1.11-1.94,1.7-2.89a12,12,0,0,0,1.83-6.31L71.87,57A91.83,91.83,0,0,1,92.94,45.17l27.15,15.19a11.92,11.92,0,0,0,6.15,1.52c1.14,0,2.3,0,3.44,0a12.08,12.08,0,0,0,6.14-1.51L163,45.18A92.27,92.27,0,0,1,184.12,57l.11,30.24a12,12,0,0,0,1.83,6.32c.58.94,1.16,1.91,1.7,2.88A11.92,11.92,0,0,0,192.3,101l26.9,15.33A86.53,86.53,0,0,1,219.23,139.61Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,lde,[...r[1]||=[R(`path`,{d:`M230.1,108.76,198.25,90.62c-.64-1.16-1.31-2.29-2-3.41l-.12-36A104.61,104.61,0,0,0,162,32L130,49.89c-1.34,0-2.69,0-4,0L94,32A104.58,104.58,0,0,0,59.89,51.25l-.16,36c-.7,1.12-1.37,2.26-2,3.41l-31.84,18.1a99.15,99.15,0,0,0,0,38.46l31.85,18.14c.64,1.16,1.31,2.29,2,3.41l.12,36A104.61,104.61,0,0,0,94,224l32-17.87c1.34,0,2.69,0,4,0L162,224a104.58,104.58,0,0,0,34.08-19.25l.16-36c.7-1.12,1.37-2.26,2-3.41l31.84-18.1A99.15,99.15,0,0,0,230.1,108.76ZM128,168a40,40,0,1,1,40-40A40,40,0,0,1,128,168Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M128,80a48,48,0,1,0,48,48A48.05,48.05,0,0,0,128,80Zm0,80a32,32,0,1,1,32-32A32,32,0,0,1,128,160Zm109.94-52.79a8,8,0,0,0-3.89-5.4l-29.83-17-.12-33.62a8,8,0,0,0-2.83-6.08,111.91,111.91,0,0,0-36.72-20.67,8,8,0,0,0-6.46.59L128,41.85,97.88,25a8,8,0,0,0-6.47-.6A111.92,111.92,0,0,0,54.73,45.15a8,8,0,0,0-2.83,6.07l-.15,33.65-29.83,17a8,8,0,0,0-3.89,5.4,106.47,106.47,0,0,0,0,41.56,8,8,0,0,0,3.89,5.4l29.83,17,.12,33.63a8,8,0,0,0,2.83,6.08,111.91,111.91,0,0,0,36.72,20.67,8,8,0,0,0,6.46-.59L128,214.15,158.12,231a7.91,7.91,0,0,0,3.9,1,8.09,8.09,0,0,0,2.57-.42,112.1,112.1,0,0,0,36.68-20.73,8,8,0,0,0,2.83-6.07l.15-33.65,29.83-17a8,8,0,0,0,3.89-5.4A106.47,106.47,0,0,0,237.94,107.21Zm-15,34.91-28.57,16.25a8,8,0,0,0-3,3c-.58,1-1.19,2.06-1.81,3.06a7.94,7.94,0,0,0-1.22,4.21l-.15,32.25a95.89,95.89,0,0,1-25.37,14.3L134,199.13a8,8,0,0,0-3.91-1h-.19c-1.21,0-2.43,0-3.64,0a8.1,8.1,0,0,0-4.1,1l-28.84,16.1A96,96,0,0,1,67.88,201l-.11-32.2a8,8,0,0,0-1.22-4.22c-.62-1-1.23-2-1.8-3.06a8.09,8.09,0,0,0-3-3.06l-28.6-16.29a90.49,90.49,0,0,1,0-28.26L61.67,97.63a8,8,0,0,0,3-3c.58-1,1.19-2.06,1.81-3.06a7.94,7.94,0,0,0,1.22-4.21l.15-32.25a95.89,95.89,0,0,1,25.37-14.3L122,56.87a8,8,0,0,0,4.1,1c1.21,0,2.43,0,3.64,0a8,8,0,0,0,4.1-1l28.84-16.1A96,96,0,0,1,188.12,55l.11,32.2a8,8,0,0,0,1.22,4.22c.62,1,1.23,2,1.8,3.06a8.09,8.09,0,0,0,3,3.06l28.6,16.29A90.49,90.49,0,0,1,222.9,142.12Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,ude,[...r[2]||=[R(`path`,{d:`M237.94,107.21a8,8,0,0,0-3.89-5.4l-29.83-17-.12-33.62a8,8,0,0,0-2.83-6.08,111.91,111.91,0,0,0-36.72-20.67,8,8,0,0,0-6.46.59L128,41.85,97.88,25a8,8,0,0,0-6.47-.6A111.92,111.92,0,0,0,54.73,45.15a8,8,0,0,0-2.83,6.07l-.15,33.65-29.83,17a8,8,0,0,0-3.89,5.4,106.47,106.47,0,0,0,0,41.56,8,8,0,0,0,3.89,5.4l29.83,17,.12,33.63a8,8,0,0,0,2.83,6.08,111.91,111.91,0,0,0,36.72,20.67,8,8,0,0,0,6.46-.59L128,214.15,158.12,231a7.91,7.91,0,0,0,3.9,1,8.09,8.09,0,0,0,2.57-.42,112.1,112.1,0,0,0,36.68-20.73,8,8,0,0,0,2.83-6.07l.15-33.65,29.83-17a8,8,0,0,0,3.89-5.4A106.47,106.47,0,0,0,237.94,107.21ZM128,168a40,40,0,1,1,40-40A40,40,0,0,1,128,168Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,dde,[...r[3]||=[R(`path`,{d:`M128,82a46,46,0,1,0,46,46A46.06,46.06,0,0,0,128,82Zm0,80a34,34,0,1,1,34-34A34,34,0,0,1,128,162Zm108-54.4a6,6,0,0,0-2.92-4L202.64,86.22l-.42-.71L202.1,51.2A6,6,0,0,0,200,46.64a110.12,110.12,0,0,0-36.07-20.31,6,6,0,0,0-4.84.45L128.46,43.86h-1L96.91,26.76a6,6,0,0,0-4.86-.44A109.92,109.92,0,0,0,56,46.68a6,6,0,0,0-2.12,4.55l-.16,34.34c-.14.23-.28.47-.41.71L22.91,103.57A6,6,0,0,0,20,107.62a104.81,104.81,0,0,0,0,40.78,6,6,0,0,0,2.92,4l30.42,17.33.42.71.12,34.31A6,6,0,0,0,56,209.36a110.12,110.12,0,0,0,36.07,20.31,6,6,0,0,0,4.84-.45l30.61-17.08h1l30.56,17.1A6.09,6.09,0,0,0,162,230a5.83,5.83,0,0,0,1.93-.32,109.92,109.92,0,0,0,36-20.36,6,6,0,0,0,2.12-4.55l.16-34.34c.14-.23.28-.47.41-.71l30.42-17.29a6,6,0,0,0,2.92-4.05A104.81,104.81,0,0,0,236,107.6Zm-11.25,35.79L195.32,160.1a6.07,6.07,0,0,0-2.28,2.3c-.59,1-1.21,2.11-1.86,3.14a6,6,0,0,0-.91,3.16l-.16,33.21a98.15,98.15,0,0,1-27.52,15.53L133,200.88a6,6,0,0,0-2.93-.77h-.14c-1.24,0-2.5,0-3.74,0a6,6,0,0,0-3.07.76L93.45,217.43a98,98,0,0,1-27.56-15.49l-.12-33.17a6,6,0,0,0-.91-3.16c-.64-1-1.27-2.08-1.86-3.14a6,6,0,0,0-2.27-2.3L31.3,143.4a93,93,0,0,1,0-30.79L60.68,95.9A6.07,6.07,0,0,0,63,93.6c.59-1,1.21-2.11,1.86-3.14a6,6,0,0,0,.91-3.16l.16-33.21A98.15,98.15,0,0,1,93.41,38.56L123,55.12a5.81,5.81,0,0,0,3.07.76c1.24,0,2.5,0,3.74,0a6,6,0,0,0,3.07-.76l29.65-16.56a98,98,0,0,1,27.56,15.49l.12,33.17a6,6,0,0,0,.91,3.16c.64,1,1.27,2.08,1.86,3.14a6,6,0,0,0,2.27,2.3L224.7,112.6A93,93,0,0,1,224.73,143.39Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,fde,[...r[4]||=[R(`path`,{d:`M128,80a48,48,0,1,0,48,48A48.05,48.05,0,0,0,128,80Zm0,80a32,32,0,1,1,32-32A32,32,0,0,1,128,160Zm109.94-52.79a8,8,0,0,0-3.89-5.4l-29.83-17-.12-33.62a8,8,0,0,0-2.83-6.08,111.91,111.91,0,0,0-36.72-20.67,8,8,0,0,0-6.46.59L128,41.85,97.88,25a8,8,0,0,0-6.47-.6A112.1,112.1,0,0,0,54.73,45.15a8,8,0,0,0-2.83,6.07l-.15,33.65-29.83,17a8,8,0,0,0-3.89,5.4,106.47,106.47,0,0,0,0,41.56,8,8,0,0,0,3.89,5.4l29.83,17,.12,33.62a8,8,0,0,0,2.83,6.08,111.91,111.91,0,0,0,36.72,20.67,8,8,0,0,0,6.46-.59L128,214.15,158.12,231a7.91,7.91,0,0,0,3.9,1,8.09,8.09,0,0,0,2.57-.42,112.1,112.1,0,0,0,36.68-20.73,8,8,0,0,0,2.83-6.07l.15-33.65,29.83-17a8,8,0,0,0,3.89-5.4A106.47,106.47,0,0,0,237.94,107.21Zm-15,34.91-28.57,16.25a8,8,0,0,0-3,3c-.58,1-1.19,2.06-1.81,3.06a7.94,7.94,0,0,0-1.22,4.21l-.15,32.25a95.89,95.89,0,0,1-25.37,14.3L134,199.13a8,8,0,0,0-3.91-1h-.19c-1.21,0-2.43,0-3.64,0a8.08,8.08,0,0,0-4.1,1l-28.84,16.1A96,96,0,0,1,67.88,201l-.11-32.2a8,8,0,0,0-1.22-4.22c-.62-1-1.23-2-1.8-3.06a8.09,8.09,0,0,0-3-3.06l-28.6-16.29a90.49,90.49,0,0,1,0-28.26L61.67,97.63a8,8,0,0,0,3-3c.58-1,1.19-2.06,1.81-3.06a7.94,7.94,0,0,0,1.22-4.21l.15-32.25a95.89,95.89,0,0,1,25.37-14.3L122,56.87a8,8,0,0,0,4.1,1c1.21,0,2.43,0,3.64,0a8.08,8.08,0,0,0,4.1-1l28.84-16.1A96,96,0,0,1,188.12,55l.11,32.2a8,8,0,0,0,1.22,4.22c.62,1,1.23,2,1.8,3.06a8.09,8.09,0,0,0,3,3.06l28.6,16.29A90.49,90.49,0,0,1,222.9,142.12Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,pde,[...r[5]||=[R(`path`,{d:`M128,84a44,44,0,1,0,44,44A44.05,44.05,0,0,0,128,84Zm0,80a36,36,0,1,1,36-36A36,36,0,0,1,128,164Zm106-56a4,4,0,0,0-2-2.7l-30.89-17.6q-.47-.82-1-1.62L200.1,51.2a3.94,3.94,0,0,0-1.42-3,107.8,107.8,0,0,0-35.41-19.94,4,4,0,0,0-3.23.29L129,45.87h-2l-31-17.36a4,4,0,0,0-3.23-.3,108.05,108.05,0,0,0-35.39,20,4,4,0,0,0-1.41,3l-.16,34.9-1,1.62L23.9,105.3A4,4,0,0,0,22,108a102.76,102.76,0,0,0,0,40,4,4,0,0,0,1.95,2.7l30.89,17.6q.47.83,1,1.62l.12,34.87a3.94,3.94,0,0,0,1.42,3,107.8,107.8,0,0,0,35.41,19.94,4,4,0,0,0,3.23-.29L127,210.13h2l31,17.36a4,4,0,0,0,3.23.3,108.05,108.05,0,0,0,35.39-20,4,4,0,0,0,1.41-3l.16-34.9,1-1.62L232.1,150.7a4,4,0,0,0,2-2.71A102.76,102.76,0,0,0,234,108Zm-7.48,36.67L196.3,161.84a4,4,0,0,0-1.51,1.53c-.61,1.09-1.25,2.17-1.91,3.24a3.92,3.92,0,0,0-.61,2.1l-.16,34.15a99.8,99.8,0,0,1-29.7,16.77l-30.4-17a4.06,4.06,0,0,0-2-.51H130c-1.28,0-2.57,0-3.84,0a4.1,4.1,0,0,0-2.05.51l-30.45,17A100.23,100.23,0,0,1,63.89,202.9l-.12-34.12a3.93,3.93,0,0,0-.61-2.11c-.66-1-1.3-2.14-1.91-3.23a4,4,0,0,0-1.51-1.53L29.49,144.68a94.78,94.78,0,0,1,0-33.34L59.7,94.16a4,4,0,0,0,1.51-1.53c.61-1.09,1.25-2.17,1.91-3.23a4,4,0,0,0,.61-2.11l.16-34.15a99.8,99.8,0,0,1,29.7-16.77l30.4,17a4.1,4.1,0,0,0,2.05.51c1.28,0,2.57,0,3.84,0a4,4,0,0,0,2.05-.51l30.45-17A100.23,100.23,0,0,1,192.11,53.1l.12,34.12a3.93,3.93,0,0,0,.61,2.11c.66,1,1.3,2.14,1.91,3.23a4,4,0,0,0,1.51,1.53l30.25,17.23A94.78,94.78,0,0,1,226.54,144.66Z`},null,-1)]])):B(``,!0)],16))}})})),gde,_de=s((()=>{hde(),gde=mde})),vde,yde,bde,xde,Sde,Cde,wde,Tde=s((()=>{nc(),G(),vde={key:0},yde={key:1},bde={key:2},xde={key:3},Sde={key:4},Cde={key:5},wde=N({name:`ScalarIconGitBranch`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,vde,[...r[0]||=[R(`path`,{d:`M236,64a36,36,0,1,0-48,33.94V112a4,4,0,0,1-4,4H96a27.8,27.8,0,0,0-4,.29V97.94a36,36,0,1,0-24,0v60.12a36,36,0,1,0,24,0V144a4,4,0,0,1,4-4h88a28,28,0,0,0,28-28V97.94A36.07,36.07,0,0,0,236,64ZM80,52A12,12,0,1,1,68,64,12,12,0,0,1,80,52Zm0,152a12,12,0,1,1,12-12A12,12,0,0,1,80,204ZM200,76a12,12,0,1,1,12-12A12,12,0,0,1,200,76Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,yde,[...r[1]||=[R(`path`,{d:`M224,64a24,24,0,1,1-24-24A24,24,0,0,1,224,64Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M232,64a32,32,0,1,0-40,31v17a8,8,0,0,1-8,8H96a23.84,23.84,0,0,0-8,1.38V95a32,32,0,1,0-16,0v66a32,32,0,1,0,16,0V144a8,8,0,0,1,8-8h88a24,24,0,0,0,24-24V95A32.06,32.06,0,0,0,232,64ZM64,64A16,16,0,1,1,80,80,16,16,0,0,1,64,64ZM96,192a16,16,0,1,1-16-16A16,16,0,0,1,96,192ZM200,80a16,16,0,1,1,16-16A16,16,0,0,1,200,80Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,bde,[...r[2]||=[R(`path`,{d:`M232,64a32,32,0,1,0-40,31v17a8,8,0,0,1-8,8H96a23.84,23.84,0,0,0-8,1.38V95a32,32,0,1,0-16,0v66a32,32,0,1,0,16,0V144a8,8,0,0,1,8-8h88a24,24,0,0,0,24-24V95A32.06,32.06,0,0,0,232,64ZM64,64A16,16,0,1,1,80,80,16,16,0,0,1,64,64ZM96,192a16,16,0,1,1-16-16A16,16,0,0,1,96,192Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,xde,[...r[3]||=[R(`path`,{d:`M230,64a30,30,0,1,0-36,29.4V112a10,10,0,0,1-10,10H96a21.84,21.84,0,0,0-10,2.42v-31a30,30,0,1,0-12,0v69.2a30,30,0,1,0,12,0V144a10,10,0,0,1,10-10h88a22,22,0,0,0,22-22V93.4A30.05,30.05,0,0,0,230,64ZM62,64A18,18,0,1,1,80,82,18,18,0,0,1,62,64ZM98,192a18,18,0,1,1-18-18A18,18,0,0,1,98,192ZM200,82a18,18,0,1,1,18-18A18,18,0,0,1,200,82Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,Sde,[...r[4]||=[R(`path`,{d:`M232,64a32,32,0,1,0-40,31v17a8,8,0,0,1-8,8H96a23.84,23.84,0,0,0-8,1.38V95a32,32,0,1,0-16,0v66a32,32,0,1,0,16,0V144a8,8,0,0,1,8-8h88a24,24,0,0,0,24-24V95A32.06,32.06,0,0,0,232,64ZM64,64A16,16,0,1,1,80,80,16,16,0,0,1,64,64ZM96,192a16,16,0,1,1-16-16A16,16,0,0,1,96,192ZM200,80a16,16,0,1,1,16-16A16,16,0,0,1,200,80Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,Cde,[...r[5]||=[R(`path`,{d:`M228,64a28,28,0,1,0-32,27.71V112a12,12,0,0,1-12,12H96a19.91,19.91,0,0,0-12,4V91.71a28,28,0,1,0-8,0v72.58a28,28,0,1,0,8,0V144a12,12,0,0,1,12-12h88a20,20,0,0,0,20-20V91.71A28,28,0,0,0,228,64ZM60,64A20,20,0,1,1,80,84,20,20,0,0,1,60,64Zm40,128a20,20,0,1,1-20-20A20,20,0,0,1,100,192ZM200,84a20,20,0,1,1,20-20A20,20,0,0,1,200,84Z`},null,-1)]])):B(``,!0)],16))}})})),Ede,Dde=s((()=>{Tde(),Ede=wde})),Ode,kde,Ade,jde,Mde,Nde,Pde,Fde=s((()=>{nc(),G(),Ode={key:0},kde={key:1},Ade={key:2},jde={key:3},Mde={key:4},Nde={key:5},Pde=N({name:`ScalarIconGithubLogo`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,Ode,[...r[0]||=[R(`path`,{d:`M212.62,75.17A63.7,63.7,0,0,0,206.39,26,12,12,0,0,0,196,20a63.71,63.71,0,0,0-50,24H126A63.71,63.71,0,0,0,76,20a12,12,0,0,0-10.39,6,63.7,63.7,0,0,0-6.23,49.17A61.5,61.5,0,0,0,52,104v8a60.1,60.1,0,0,0,45.76,58.28A43.66,43.66,0,0,0,92,192v4H76a20,20,0,0,1-20-20,44.05,44.05,0,0,0-44-44,12,12,0,0,0,0,24,20,20,0,0,1,20,20,44.05,44.05,0,0,0,44,44H92v12a12,12,0,0,0,24,0V192a20,20,0,0,1,40,0v40a12,12,0,0,0,24,0V192a43.66,43.66,0,0,0-5.76-21.72A60.1,60.1,0,0,0,220,112v-8A61.5,61.5,0,0,0,212.62,75.17ZM196,112a36,36,0,0,1-36,36H112a36,36,0,0,1-36-36v-8a37.87,37.87,0,0,1,6.13-20.12,11.65,11.65,0,0,0,1.58-11.49,39.9,39.9,0,0,1-.4-27.72,39.87,39.87,0,0,1,26.41,17.8A12,12,0,0,0,119.82,68h32.35a12,12,0,0,0,10.11-5.53,39.84,39.84,0,0,1,26.41-17.8,39.9,39.9,0,0,1-.4,27.72,12,12,0,0,0,1.61,11.53A37.85,37.85,0,0,1,196,104Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,kde,[...r[1]||=[R(`path`,{d:`M208,104v8a48,48,0,0,1-48,48H136a32,32,0,0,1,32,32v40H104V192a32,32,0,0,1,32-32H112a48,48,0,0,1-48-48v-8a49.28,49.28,0,0,1,8.51-27.3A51.92,51.92,0,0,1,76,32a52,52,0,0,1,43.83,24h32.34A52,52,0,0,1,196,32a51.92,51.92,0,0,1,3.49,44.7A49.28,49.28,0,0,1,208,104Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M208.3,75.68A59.74,59.74,0,0,0,202.93,28,8,8,0,0,0,196,24a59.75,59.75,0,0,0-48,24H124A59.75,59.75,0,0,0,76,24a8,8,0,0,0-6.93,4,59.78,59.78,0,0,0-5.38,47.68A58.14,58.14,0,0,0,56,104v8a56.06,56.06,0,0,0,48.44,55.47A39.8,39.8,0,0,0,96,192v8H72a24,24,0,0,1-24-24A40,40,0,0,0,8,136a8,8,0,0,0,0,16,24,24,0,0,1,24,24,40,40,0,0,0,40,40H96v16a8,8,0,0,0,16,0V192a24,24,0,0,1,48,0v40a8,8,0,0,0,16,0V192a39.8,39.8,0,0,0-8.44-24.53A56.06,56.06,0,0,0,216,112v-8A58,58,0,0,0,208.3,75.68ZM200,112a40,40,0,0,1-40,40H112a40,40,0,0,1-40-40v-8a41.74,41.74,0,0,1,6.9-22.48A8,8,0,0,0,80,73.83a43.81,43.81,0,0,1,.79-33.58,43.88,43.88,0,0,1,32.32,20.06A8,8,0,0,0,119.82,64h32.35a8,8,0,0,0,6.74-3.69,43.87,43.87,0,0,1,32.32-20.06A43.81,43.81,0,0,1,192,73.83a8.09,8.09,0,0,0,1,7.65A41.76,41.76,0,0,1,200,104Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,Ade,[...r[2]||=[R(`path`,{d:`M216,104v8a56.06,56.06,0,0,1-48.44,55.47A39.8,39.8,0,0,1,176,192v40a8,8,0,0,1-8,8H104a8,8,0,0,1-8-8V216H72a40,40,0,0,1-40-40A24,24,0,0,0,8,152a8,8,0,0,1,0-16,40,40,0,0,1,40,40,24,24,0,0,0,24,24H96v-8a39.8,39.8,0,0,1,8.44-24.53A56.06,56.06,0,0,1,56,112v-8a58.14,58.14,0,0,1,7.69-28.32A59.78,59.78,0,0,1,69.07,28,8,8,0,0,1,76,24a59.75,59.75,0,0,1,48,24h24a59.75,59.75,0,0,1,48-24,8,8,0,0,1,6.93,4,59.74,59.74,0,0,1,5.37,47.68A58,58,0,0,1,216,104Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,jde,[...r[3]||=[R(`path`,{d:`M206.13,75.92A57.79,57.79,0,0,0,201.2,29a6,6,0,0,0-5.2-3,57.77,57.77,0,0,0-47,24H123A57.77,57.77,0,0,0,76,26a6,6,0,0,0-5.2,3,57.79,57.79,0,0,0-4.93,46.92A55.88,55.88,0,0,0,58,104v8a54.06,54.06,0,0,0,50.45,53.87A37.85,37.85,0,0,0,98,192v10H72a26,26,0,0,1-26-26A38,38,0,0,0,8,138a6,6,0,0,0,0,12,26,26,0,0,1,26,26,38,38,0,0,0,38,38H98v18a6,6,0,0,0,12,0V192a26,26,0,0,1,52,0v40a6,6,0,0,0,12,0V192a37.85,37.85,0,0,0-10.45-26.13A54.06,54.06,0,0,0,214,112v-8A55.88,55.88,0,0,0,206.13,75.92ZM202,112a42,42,0,0,1-42,42H112a42,42,0,0,1-42-42v-8a43.86,43.86,0,0,1,7.3-23.69,6,6,0,0,0,.81-5.76,45.85,45.85,0,0,1,1.43-36.42,45.85,45.85,0,0,1,35.23,21.1A6,6,0,0,0,119.83,62h32.34a6,6,0,0,0,5.06-2.76,45.83,45.83,0,0,1,35.23-21.11,45.85,45.85,0,0,1,1.43,36.42,6,6,0,0,0,.79,5.74A43.78,43.78,0,0,1,202,104Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,Mde,[...r[4]||=[R(`path`,{d:`M208.31,75.68A59.78,59.78,0,0,0,202.93,28,8,8,0,0,0,196,24a59.75,59.75,0,0,0-48,24H124A59.75,59.75,0,0,0,76,24a8,8,0,0,0-6.93,4,59.78,59.78,0,0,0-5.38,47.68A58.14,58.14,0,0,0,56,104v8a56.06,56.06,0,0,0,48.44,55.47A39.8,39.8,0,0,0,96,192v8H72a24,24,0,0,1-24-24A40,40,0,0,0,8,136a8,8,0,0,0,0,16,24,24,0,0,1,24,24,40,40,0,0,0,40,40H96v16a8,8,0,0,0,16,0V192a24,24,0,0,1,48,0v40a8,8,0,0,0,16,0V192a39.8,39.8,0,0,0-8.44-24.53A56.06,56.06,0,0,0,216,112v-8A58.14,58.14,0,0,0,208.31,75.68ZM200,112a40,40,0,0,1-40,40H112a40,40,0,0,1-40-40v-8a41.74,41.74,0,0,1,6.9-22.48A8,8,0,0,0,80,73.83a43.81,43.81,0,0,1,.79-33.58,43.88,43.88,0,0,1,32.32,20.06A8,8,0,0,0,119.82,64h32.35a8,8,0,0,0,6.74-3.69,43.87,43.87,0,0,1,32.32-20.06A43.81,43.81,0,0,1,192,73.83a8.09,8.09,0,0,0,1,7.65A41.72,41.72,0,0,1,200,104Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,Nde,[...r[5]||=[R(`path`,{d:`M203.94,76.16A55.73,55.73,0,0,0,199.46,30,4,4,0,0,0,196,28a55.78,55.78,0,0,0-46,24H122A55.78,55.78,0,0,0,76,28a4,4,0,0,0-3.46,2,55.73,55.73,0,0,0-4.48,46.16A53.78,53.78,0,0,0,60,104v8a52.06,52.06,0,0,0,52,52h1.41A36,36,0,0,0,100,192v12H72a28,28,0,0,1-28-28A36,36,0,0,0,8,140a4,4,0,0,0,0,8,28,28,0,0,1,28,28,36,36,0,0,0,36,36h28v20a4,4,0,0,0,8,0V192a28,28,0,0,1,56,0v40a4,4,0,0,0,8,0V192a36,36,0,0,0-13.41-28H160a52.06,52.06,0,0,0,52-52v-8A53.78,53.78,0,0,0,203.94,76.16ZM204,112a44.05,44.05,0,0,1-44,44H112a44.05,44.05,0,0,1-44-44v-8a45.76,45.76,0,0,1,7.71-24.89,4,4,0,0,0,.53-3.84,47.82,47.82,0,0,1,2.1-39.21,47.8,47.8,0,0,1,38.12,22.1A4,4,0,0,0,119.83,60h32.34a4,4,0,0,0,3.37-1.84,47.8,47.8,0,0,1,38.12-22.1,47.82,47.82,0,0,1,2.1,39.21,4,4,0,0,0,.53,3.83A45.85,45.85,0,0,1,204,104Z`},null,-1)]])):B(``,!0)],16))}})})),Ide,Lde=s((()=>{Fde(),Ide=Pde})),Rde,zde,Bde,Vde,Hde,Ude,Wde,Gde=s((()=>{nc(),G(),Rde={key:0},zde={key:1},Bde={key:2},Vde={key:3},Hde={key:4},Ude={key:5},Wde=N({name:`ScalarIconGlobe`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,Rde,[...r[0]||=[R(`path`,{d:`M128,20A108,108,0,1,0,236,128,108.12,108.12,0,0,0,128,20Zm0,187a113.4,113.4,0,0,1-20.39-35h40.82a116.94,116.94,0,0,1-10,20.77A108.61,108.61,0,0,1,128,207Zm-26.49-59a135.42,135.42,0,0,1,0-40h53a135.42,135.42,0,0,1,0,40ZM44,128a83.49,83.49,0,0,1,2.43-20H77.25a160.63,160.63,0,0,0,0,40H46.43A83.49,83.49,0,0,1,44,128Zm84-79a113.4,113.4,0,0,1,20.39,35H107.59a116.94,116.94,0,0,1,10-20.77A108.61,108.61,0,0,1,128,49Zm50.73,59h30.82a83.52,83.52,0,0,1,0,40H178.75a160.63,160.63,0,0,0,0-40Zm20.77-24H173.71a140.82,140.82,0,0,0-15.5-34.36A84.51,84.51,0,0,1,199.52,84ZM97.79,49.64A140.82,140.82,0,0,0,82.29,84H56.48A84.51,84.51,0,0,1,97.79,49.64ZM56.48,172H82.29a140.82,140.82,0,0,0,15.5,34.36A84.51,84.51,0,0,1,56.48,172Zm101.73,34.36A140.82,140.82,0,0,0,173.71,172h25.81A84.51,84.51,0,0,1,158.21,206.36Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,zde,[...r[1]||=[R(`path`,{d:`M224,128a96,96,0,1,1-96-96A96,96,0,0,1,224,128Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M128,24h0A104,104,0,1,0,232,128,104.12,104.12,0,0,0,128,24Zm88,104a87.61,87.61,0,0,1-3.33,24H174.16a157.44,157.44,0,0,0,0-48h38.51A87.61,87.61,0,0,1,216,128ZM102,168H154a115.11,115.11,0,0,1-26,45A115.27,115.27,0,0,1,102,168Zm-3.9-16a140.84,140.84,0,0,1,0-48h59.88a140.84,140.84,0,0,1,0,48ZM40,128a87.61,87.61,0,0,1,3.33-24H81.84a157.44,157.44,0,0,0,0,48H43.33A87.61,87.61,0,0,1,40,128ZM154,88H102a115.11,115.11,0,0,1,26-45A115.27,115.27,0,0,1,154,88Zm52.33,0H170.71a135.28,135.28,0,0,0-22.3-45.6A88.29,88.29,0,0,1,206.37,88ZM107.59,42.4A135.28,135.28,0,0,0,85.29,88H49.63A88.29,88.29,0,0,1,107.59,42.4ZM49.63,168H85.29a135.28,135.28,0,0,0,22.3,45.6A88.29,88.29,0,0,1,49.63,168Zm98.78,45.6a135.28,135.28,0,0,0,22.3-45.6h35.66A88.29,88.29,0,0,1,148.41,213.6Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,Bde,[...r[2]||=[R(`path`,{d:`M128,24h0A104,104,0,1,0,232,128,104.12,104.12,0,0,0,128,24Zm78.36,64H170.71a135.28,135.28,0,0,0-22.3-45.6A88.29,88.29,0,0,1,206.37,88ZM216,128a87.61,87.61,0,0,1-3.33,24H174.16a157.44,157.44,0,0,0,0-48h38.51A87.61,87.61,0,0,1,216,128ZM128,43a115.27,115.27,0,0,1,26,45H102A115.11,115.11,0,0,1,128,43ZM102,168H154a115.11,115.11,0,0,1-26,45A115.27,115.27,0,0,1,102,168Zm-3.9-16a140.84,140.84,0,0,1,0-48h59.88a140.84,140.84,0,0,1,0,48Zm50.35,61.6a135.28,135.28,0,0,0,22.3-45.6h35.66A88.29,88.29,0,0,1,148.41,213.6Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,Vde,[...r[3]||=[R(`path`,{d:`M128,26A102,102,0,1,0,230,128,102.12,102.12,0,0,0,128,26Zm81.57,64H169.19a132.58,132.58,0,0,0-25.73-50.67A90.29,90.29,0,0,1,209.57,90ZM218,128a89.7,89.7,0,0,1-3.83,26H171.81a155.43,155.43,0,0,0,0-52h42.36A89.7,89.7,0,0,1,218,128Zm-90,87.83a110,110,0,0,1-15.19-19.45A124.24,124.24,0,0,1,99.35,166h57.3a124.24,124.24,0,0,1-13.46,30.38A110,110,0,0,1,128,215.83ZM96.45,154a139.18,139.18,0,0,1,0-52h63.1a139.18,139.18,0,0,1,0,52ZM38,128a89.7,89.7,0,0,1,3.83-26H84.19a155.43,155.43,0,0,0,0,52H41.83A89.7,89.7,0,0,1,38,128Zm90-87.83a110,110,0,0,1,15.19,19.45A124.24,124.24,0,0,1,156.65,90H99.35a124.24,124.24,0,0,1,13.46-30.38A110,110,0,0,1,128,40.17Zm-15.46-.84A132.58,132.58,0,0,0,86.81,90H46.43A90.29,90.29,0,0,1,112.54,39.33ZM46.43,166H86.81a132.58,132.58,0,0,0,25.73,50.67A90.29,90.29,0,0,1,46.43,166Zm97,50.67A132.58,132.58,0,0,0,169.19,166h40.38A90.29,90.29,0,0,1,143.46,216.67Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,Hde,[...r[4]||=[R(`path`,{d:`M128,24h0A104,104,0,1,0,232,128,104.12,104.12,0,0,0,128,24Zm88,104a87.61,87.61,0,0,1-3.33,24H174.16a157.44,157.44,0,0,0,0-48h38.51A87.61,87.61,0,0,1,216,128ZM102,168H154a115.11,115.11,0,0,1-26,45A115.27,115.27,0,0,1,102,168Zm-3.9-16a140.84,140.84,0,0,1,0-48h59.88a140.84,140.84,0,0,1,0,48ZM40,128a87.61,87.61,0,0,1,3.33-24H81.84a157.44,157.44,0,0,0,0,48H43.33A87.61,87.61,0,0,1,40,128ZM154,88H102a115.11,115.11,0,0,1,26-45A115.27,115.27,0,0,1,154,88Zm52.33,0H170.71a135.28,135.28,0,0,0-22.3-45.6A88.29,88.29,0,0,1,206.37,88ZM107.59,42.4A135.28,135.28,0,0,0,85.29,88H49.63A88.29,88.29,0,0,1,107.59,42.4ZM49.63,168H85.29a135.28,135.28,0,0,0,22.3,45.6A88.29,88.29,0,0,1,49.63,168Zm98.78,45.6a135.28,135.28,0,0,0,22.3-45.6h35.66A88.29,88.29,0,0,1,148.41,213.6Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,Ude,[...r[5]||=[R(`path`,{d:`M128,28h0A100,100,0,1,0,228,128,100.11,100.11,0,0,0,128,28Zm0,190.61c-6.33-6.09-23-24.41-31.27-54.61h62.54C151,194.2,134.33,212.52,128,218.61ZM94.82,156a140.42,140.42,0,0,1,0-56h66.36a140.42,140.42,0,0,1,0,56ZM128,37.39c6.33,6.09,23,24.41,31.27,54.61H96.73C105,61.8,121.67,43.48,128,37.39ZM169.41,100h46.23a92.09,92.09,0,0,1,0,56H169.41a152.65,152.65,0,0,0,0-56Zm43.25-8h-45a129.39,129.39,0,0,0-29.19-55.4A92.25,92.25,0,0,1,212.66,92ZM117.54,36.6A129.39,129.39,0,0,0,88.35,92h-45A92.25,92.25,0,0,1,117.54,36.6ZM40.36,100H86.59a152.65,152.65,0,0,0,0,56H40.36a92.09,92.09,0,0,1,0-56Zm3,64h45a129.39,129.39,0,0,0,29.19,55.4A92.25,92.25,0,0,1,43.34,164Zm95.12,55.4A129.39,129.39,0,0,0,167.65,164h45A92.25,92.25,0,0,1,138.46,219.4Z`},null,-1)]])):B(``,!0)],16))}})})),Kde,qde=s((()=>{Gde(),Kde=Wde})),Jde,Yde,Xde,Zde,Qde,$de,efe,tfe=s((()=>{nc(),G(),Jde={key:0},Yde={key:1},Xde={key:2},Zde={key:3},Qde={key:4},$de={key:5},efe=N({name:`ScalarIconGlobeSimple`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,Jde,[...r[0]||=[R(`path`,{d:`M128,20A108,108,0,1,0,236,128,108.12,108.12,0,0,0,128,20Zm83.13,96H179.56a144.3,144.3,0,0,0-21.35-66.36A84.22,84.22,0,0,1,211.13,116ZM128,207c-9.36-10.81-24.46-33.13-27.45-67h54.94a119.74,119.74,0,0,1-17.11,52.77A108.61,108.61,0,0,1,128,207Zm-27.45-91a119.74,119.74,0,0,1,17.11-52.77A108.61,108.61,0,0,1,128,49c9.36,10.81,24.46,33.13,27.45,67ZM97.79,49.64A144.3,144.3,0,0,0,76.44,116H44.87A84.22,84.22,0,0,1,97.79,49.64ZM44.87,140H76.44a144.3,144.3,0,0,0,21.35,66.36A84.22,84.22,0,0,1,44.87,140Zm113.34,66.36A144.3,144.3,0,0,0,179.56,140h31.57A84.22,84.22,0,0,1,158.21,206.36Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,Yde,[...r[1]||=[R(`path`,{d:`M224,128a96,96,0,1,1-96-96A96,96,0,0,1,224,128Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M128,24h0A104,104,0,1,0,232,128,104.12,104.12,0,0,0,128,24Zm87.62,96H175.79C174,83.49,159.94,57.67,148.41,42.4A88.19,88.19,0,0,1,215.63,120ZM96.23,136h63.54c-2.31,41.61-22.23,67.11-31.77,77C118.45,203.1,98.54,177.6,96.23,136Zm0-16C98.54,78.39,118.46,52.89,128,43c9.55,9.93,29.46,35.43,31.77,77Zm11.36-77.6C96.06,57.67,82,83.49,80.21,120H40.37A88.19,88.19,0,0,1,107.59,42.4ZM40.37,136H80.21c1.82,36.51,15.85,62.33,27.38,77.6A88.19,88.19,0,0,1,40.37,136Zm108,77.6c11.53-15.27,25.56-41.09,27.38-77.6h39.84A88.19,88.19,0,0,1,148.41,213.6Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,Xde,[...r[2]||=[R(`path`,{d:`M128,24h0A104,104,0,1,0,232,128,104.12,104.12,0,0,0,128,24Zm87.62,96H175.79C174,83.49,159.94,57.67,148.41,42.4A88.19,88.19,0,0,1,215.63,120ZM96.23,136h63.54c-2.31,41.61-22.23,67.11-31.77,77C118.45,203.1,98.54,177.6,96.23,136Zm0-16C98.54,78.39,118.46,52.89,128,43c9.55,9.93,29.46,35.43,31.77,77Zm52.18,93.6c11.53-15.27,25.56-41.09,27.38-77.6h39.84A88.19,88.19,0,0,1,148.41,213.6Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,Zde,[...r[3]||=[R(`path`,{d:`M128,26A102,102,0,1,0,230,128,102.12,102.12,0,0,0,128,26Zm89.8,96H173.89c-1.54-40.77-18.48-68.23-30.43-82.67A90.19,90.19,0,0,1,217.8,122ZM128,215.83a110,110,0,0,1-15.19-19.45A128.37,128.37,0,0,1,94.13,134h67.74a128.37,128.37,0,0,1-18.68,62.38A110,110,0,0,1,128,215.83ZM94.13,122a128.37,128.37,0,0,1,18.68-62.38A110,110,0,0,1,128,40.17a110,110,0,0,1,15.19,19.45A128.37,128.37,0,0,1,161.87,122Zm18.41-82.67c-12,14.44-28.89,41.9-30.43,82.67H38.2A90.19,90.19,0,0,1,112.54,39.33ZM38.2,134H82.11c1.54,40.77,18.48,68.23,30.43,82.67A90.19,90.19,0,0,1,38.2,134Zm105.26,82.67c11.95-14.44,28.89-41.9,30.43-82.67H217.8A90.19,90.19,0,0,1,143.46,216.67Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,Qde,[...r[4]||=[R(`path`,{d:`M128,24h0A104,104,0,1,0,232,128,104.12,104.12,0,0,0,128,24Zm87.62,96H175.79C174,83.49,159.94,57.67,148.41,42.4A88.19,88.19,0,0,1,215.63,120ZM96.23,136h63.54c-2.31,41.61-22.23,67.11-31.77,77C118.45,203.1,98.54,177.6,96.23,136Zm0-16C98.54,78.39,118.46,52.89,128,43c9.55,9.93,29.46,35.43,31.77,77Zm11.36-77.6C96.06,57.67,82,83.49,80.21,120H40.37A88.19,88.19,0,0,1,107.59,42.4ZM40.37,136H80.21c1.82,36.51,15.85,62.33,27.38,77.6A88.19,88.19,0,0,1,40.37,136Zm108,77.6c11.53-15.27,25.56-41.09,27.38-77.6h39.84A88.19,88.19,0,0,1,148.41,213.6Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,$de,[...r[5]||=[R(`path`,{d:`M128,28h0A100,100,0,1,0,228,128,100.11,100.11,0,0,0,128,28Zm91.9,96h-48c-1.15-45.55-21.74-74.52-33.48-87.4A92.14,92.14,0,0,1,219.91,124ZM128,218.61c-8.32-8-34.57-37.13-35.93-86.61h71.86C162.57,181.48,136.32,210.61,128,218.61ZM92.07,124C93.43,74.52,119.68,45.39,128,37.39c8.32,8,34.57,37.13,35.93,86.61Zm25.47-87.4C105.8,49.48,85.21,78.45,84.06,124h-48A92.14,92.14,0,0,1,117.54,36.6ZM36.09,132h48c1.15,45.55,21.74,74.52,33.48,87.4A92.14,92.14,0,0,1,36.09,132Zm102.37,87.4c11.74-12.88,32.33-41.85,33.48-87.4h48A92.14,92.14,0,0,1,138.46,219.4Z`},null,-1)]])):B(``,!0)],16))}})})),nfe,rfe=s((()=>{tfe(),nfe=efe})),ife,afe,ofe,sfe,cfe,lfe,mc,ufe=s((()=>{nc(),G(),ife={key:0},afe={key:1},ofe={key:2},sfe={key:3},cfe={key:4},lfe={key:5},mc=N({name:`ScalarIconHash`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,ife,[...r[0]||=[R(`path`,{d:`M224,84H180.2l7.61-41.85a12,12,0,0,0-23.62-4.3L155.8,84H116.2l7.61-41.85a12,12,0,1,0-23.62-4.3L91.8,84H48a12,12,0,0,0,0,24H87.44l-7.27,40H32a12,12,0,0,0,0,24H75.8l-7.61,41.85a12,12,0,0,0,9.66,14A11.43,11.43,0,0,0,80,228a12,12,0,0,0,11.8-9.86L100.2,172h39.6l-7.61,41.85a12,12,0,0,0,9.66,14,11.43,11.43,0,0,0,2.16.2,12,12,0,0,0,11.8-9.86L164.2,172H208a12,12,0,0,0,0-24H168.56l7.27-40H224a12,12,0,0,0,0-24Zm-79.83,64H104.56l7.27-40h39.61Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,afe,[...r[1]||=[R(`path`,{d:`M165.82,96l-11.64,64h-64l11.64-64Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,ofe,[...r[2]||=[R(`path`,{d:`M116.25,112h31.5l-8,32h-31.5ZM224,48V208a16,16,0,0,1-16,16H48a16,16,0,0,1-16-16V48A16,16,0,0,1,48,32H208A16,16,0,0,1,224,48Zm-16,56a8,8,0,0,0-8-8H168.25l7.51-30.06a8,8,0,0,0-15.52-3.88L151.75,96h-31.5l7.51-30.06a8,8,0,0,0-15.52-3.88L103.75,96H64a8,8,0,0,0,0,16H99.75l-8,32H56a8,8,0,0,0,0,16H87.75l-7.51,30.06a8,8,0,0,0,5.82,9.7,8.13,8.13,0,0,0,2,.24,8,8,0,0,0,7.75-6.06L104.25,160h31.5l-7.51,30.06a8,8,0,0,0,5.82,9.7A8.13,8.13,0,0,0,136,200a8,8,0,0,0,7.75-6.06L152.25,160H192a8,8,0,0,0,0-16H156.25l8-32H200A8,8,0,0,0,208,104Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,sfe,[...r[3]||=[R(`path`,{d:`M224,90H173l8.89-48.93a6,6,0,1,0-11.8-2.14L160.81,90H109l8.89-48.93a6,6,0,0,0-11.8-2.14L96.81,90H48a6,6,0,0,0,0,12H94.63l-9.46,52H32a6,6,0,0,0,0,12H83L74.1,214.93a6,6,0,0,0,4.83,7A5.64,5.64,0,0,0,80,222a6,6,0,0,0,5.89-4.93L95.19,166H147l-8.89,48.93a6,6,0,0,0,4.83,7,5.64,5.64,0,0,0,1.08.1,6,6,0,0,0,5.89-4.93L159.19,166H208a6,6,0,0,0,0-12H161.37l9.46-52H224a6,6,0,0,0,0-12Zm-74.83,64H97.37l9.46-52h51.8Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,cfe,[...r[4]||=[R(`path`,{d:`M224,88H175.4l8.47-46.57a8,8,0,0,0-15.74-2.86l-9,49.43H111.4l8.47-46.57a8,8,0,0,0-15.74-2.86L95.14,88H48a8,8,0,0,0,0,16H92.23L83.5,152H32a8,8,0,0,0,0,16H80.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,80,224a8,8,0,0,0,7.86-6.57l9-49.43H144.6l-8.47,46.57a8,8,0,0,0,6.44,9.3A7.79,7.79,0,0,0,144,224a8,8,0,0,0,7.86-6.57l9-49.43H208a8,8,0,0,0,0-16H163.77l8.73-48H224a8,8,0,0,0,0-16Zm-76.5,64H99.77l8.73-48h47.73Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,lfe,[...r[5]||=[R(`path`,{d:`M224,92H170.61l9.33-51.28a4,4,0,1,0-7.88-1.44L162.48,92H106.61l9.33-51.28a4,4,0,1,0-7.88-1.44L98.48,92H48a4,4,0,0,0,0,8H97L86.84,156H32a4,4,0,0,0,0,8H85.39l-9.33,51.28a4,4,0,0,0,3.22,4.65A3.65,3.65,0,0,0,80,220a4,4,0,0,0,3.94-3.29L93.52,164h55.87l-9.33,51.28a4,4,0,0,0,3.22,4.65,3.65,3.65,0,0,0,.72.07,4,4,0,0,0,3.94-3.29L157.52,164H208a4,4,0,0,0,0-8H159l10.19-56H224a4,4,0,0,0,0-8Zm-73.16,64H95l10.19-56H161Z`},null,-1)]])):B(``,!0)],16))}})})),hc,dfe=s((()=>{ufe(),hc=mc})),gc,_c,vc,yc,bc,xc,Sc,ffe=s((()=>{nc(),G(),gc={key:0},_c={key:1},vc={key:2},yc={key:3},bc={key:4},xc={key:5},Sc=N({name:`ScalarIconHouse`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,gc,[...r[0]||=[R(`path`,{d:`M222.14,105.85l-80-80a20,20,0,0,0-28.28,0l-80,80A19.86,19.86,0,0,0,28,120v96a12,12,0,0,0,12,12h64a12,12,0,0,0,12-12V164h24v52a12,12,0,0,0,12,12h64a12,12,0,0,0,12-12V120A19.86,19.86,0,0,0,222.14,105.85ZM204,204H164V152a12,12,0,0,0-12-12H104a12,12,0,0,0-12,12v52H52V121.65l76-76,76,76Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,_c,[...r[1]||=[R(`path`,{d:`M216,120v96H152V152H104v64H40V120a8,8,0,0,1,2.34-5.66l80-80a8,8,0,0,1,11.32,0l80,80A8,8,0,0,1,216,120Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M219.31,108.68l-80-80a16,16,0,0,0-22.62,0l-80,80A15.87,15.87,0,0,0,32,120v96a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V160h32v56a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V120A15.87,15.87,0,0,0,219.31,108.68ZM208,208H160V152a8,8,0,0,0-8-8H104a8,8,0,0,0-8,8v56H48V120l80-80,80,80Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,vc,[...r[2]||=[R(`path`,{d:`M224,120v96a8,8,0,0,1-8,8H160a8,8,0,0,1-8-8V164a4,4,0,0,0-4-4H108a4,4,0,0,0-4,4v52a8,8,0,0,1-8,8H40a8,8,0,0,1-8-8V120a16,16,0,0,1,4.69-11.31l80-80a16,16,0,0,1,22.62,0l80,80A16,16,0,0,1,224,120Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,yc,[...r[3]||=[R(`path`,{d:`M217.9,110.1l-80-80a14,14,0,0,0-19.8,0l-80,80A13.92,13.92,0,0,0,34,120v96a6,6,0,0,0,6,6h64a6,6,0,0,0,6-6V158h36v58a6,6,0,0,0,6,6h64a6,6,0,0,0,6-6V120A13.92,13.92,0,0,0,217.9,110.1ZM210,210H158V152a6,6,0,0,0-6-6H104a6,6,0,0,0-6,6v58H46V120a2,2,0,0,1,.58-1.42l80-80a2,2,0,0,1,2.84,0l80,80A2,2,0,0,1,210,120Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,bc,[...r[4]||=[R(`path`,{d:`M219.31,108.68l-80-80a16,16,0,0,0-22.62,0l-80,80A15.87,15.87,0,0,0,32,120v96a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V160h32v56a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V120A15.87,15.87,0,0,0,219.31,108.68ZM208,208H160V152a8,8,0,0,0-8-8H104a8,8,0,0,0-8,8v56H48V120l80-80,80,80Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,xc,[...r[5]||=[R(`path`,{d:`M216.49,111.51l-80-80a12,12,0,0,0-17,0l-80,80A12,12,0,0,0,36,120v96a4,4,0,0,0,4,4h64a4,4,0,0,0,4-4V156h40v60a4,4,0,0,0,4,4h64a4,4,0,0,0,4-4V120A12,12,0,0,0,216.49,111.51ZM212,212H156V152a4,4,0,0,0-4-4H104a4,4,0,0,0-4,4v60H44V120a4,4,0,0,1,1.17-2.83l80-80a4,4,0,0,1,5.66,0l80,80A4,4,0,0,1,212,120Z`},null,-1)]])):B(``,!0)],16))}})})),Cc,pfe=s((()=>{ffe(),Cc=Sc})),wc,Tc,Ec,Dc,Oc,kc,Ac,mfe=s((()=>{nc(),G(),wc={key:0},Tc={key:1},Ec={key:2},Dc={key:3},Oc={key:4},kc={key:5},Ac=N({name:`ScalarIconInfo`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,wc,[...r[0]||=[R(`path`,{d:`M108,84a16,16,0,1,1,16,16A16,16,0,0,1,108,84Zm128,44A108,108,0,1,1,128,20,108.12,108.12,0,0,1,236,128Zm-24,0a84,84,0,1,0-84,84A84.09,84.09,0,0,0,212,128Zm-72,36.68V132a20,20,0,0,0-20-20,12,12,0,0,0-4,23.32V168a20,20,0,0,0,20,20,12,12,0,0,0,4-23.32Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,Tc,[...r[1]||=[R(`path`,{d:`M224,128a96,96,0,1,1-96-96A96,96,0,0,1,224,128Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M144,176a8,8,0,0,1-8,8,16,16,0,0,1-16-16V128a8,8,0,0,1,0-16,16,16,0,0,1,16,16v40A8,8,0,0,1,144,176Zm88-48A104,104,0,1,1,128,24,104.11,104.11,0,0,1,232,128Zm-16,0a88,88,0,1,0-88,88A88.1,88.1,0,0,0,216,128ZM124,96a12,12,0,1,0-12-12A12,12,0,0,0,124,96Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,Ec,[...r[2]||=[R(`path`,{d:`M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm-4,48a12,12,0,1,1-12,12A12,12,0,0,1,124,72Zm12,112a16,16,0,0,1-16-16V128a8,8,0,0,1,0-16,16,16,0,0,1,16,16v40a8,8,0,0,1,0,16Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,Dc,[...r[3]||=[R(`path`,{d:`M142,176a6,6,0,0,1-6,6,14,14,0,0,1-14-14V128a2,2,0,0,0-2-2,6,6,0,0,1,0-12,14,14,0,0,1,14,14v40a2,2,0,0,0,2,2A6,6,0,0,1,142,176ZM124,94a10,10,0,1,0-10-10A10,10,0,0,0,124,94Zm106,34A102,102,0,1,1,128,26,102.12,102.12,0,0,1,230,128Zm-12,0a90,90,0,1,0-90,90A90.1,90.1,0,0,0,218,128Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,Oc,[...r[4]||=[R(`path`,{d:`M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,192a88,88,0,1,1,88-88A88.1,88.1,0,0,1,128,216Zm16-40a8,8,0,0,1-8,8,16,16,0,0,1-16-16V128a8,8,0,0,1,0-16,16,16,0,0,1,16,16v40A8,8,0,0,1,144,176ZM112,84a12,12,0,1,1,12,12A12,12,0,0,1,112,84Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,kc,[...r[5]||=[R(`path`,{d:`M140,176a4,4,0,0,1-4,4,12,12,0,0,1-12-12V128a4,4,0,0,0-4-4,4,4,0,0,1,0-8,12,12,0,0,1,12,12v40a4,4,0,0,0,4,4A4,4,0,0,1,140,176ZM124,92a8,8,0,1,0-8-8A8,8,0,0,0,124,92Zm104,36A100,100,0,1,1,128,28,100.11,100.11,0,0,1,228,128Zm-8,0a92,92,0,1,0-92,92A92.1,92.1,0,0,0,220,128Z`},null,-1)]])):B(``,!0)],16))}})})),jc,hfe=s((()=>{mfe(),jc=Ac})),Mc,Nc,Pc,Fc,Ic,Lc,Rc,gfe=s((()=>{nc(),G(),Mc={key:0},Nc={key:1},Pc={key:2},Fc={key:3},Ic={key:4},Lc={key:5},Rc=N({name:`ScalarIconLink`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,Mc,[...r[0]||=[R(`path`,{d:`M117.18,188.74a12,12,0,0,1,0,17l-5.12,5.12A58.26,58.26,0,0,1,70.6,228h0A58.62,58.62,0,0,1,29.14,127.92L63.89,93.17a58.64,58.64,0,0,1,98.56,28.11,12,12,0,1,1-23.37,5.44,34.65,34.65,0,0,0-58.22-16.58L46.11,144.89A34.62,34.62,0,0,0,70.57,204h0a34.41,34.41,0,0,0,24.49-10.14l5.11-5.12A12,12,0,0,1,117.18,188.74ZM226.83,45.17a58.65,58.65,0,0,0-82.93,0l-5.11,5.11a12,12,0,0,0,17,17l5.12-5.12a34.63,34.63,0,1,1,49,49L175.1,145.86A34.39,34.39,0,0,1,150.61,156h0a34.63,34.63,0,0,1-33.69-26.72,12,12,0,0,0-23.38,5.44A58.64,58.64,0,0,0,150.56,180h.05a58.28,58.28,0,0,0,41.47-17.17l34.75-34.75a58.62,58.62,0,0,0,0-82.91Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,Nc,[...r[1]||=[R(`path`,{d:`M218.34,119.6,183.6,154.34a46.58,46.58,0,0,1-44.31,12.26c-.31.34-.62.67-.95,1L103.6,202.34A46.63,46.63,0,1,1,37.66,136.4L72.4,101.66A46.6,46.6,0,0,1,116.71,89.4c.31-.34.62-.67,1-1L152.4,53.66a46.63,46.63,0,0,1,65.94,65.94Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M240,88.23a54.43,54.43,0,0,1-16,37L189.25,160a54.27,54.27,0,0,1-38.63,16h-.05A54.63,54.63,0,0,1,96,119.84a8,8,0,0,1,16,.45A38.62,38.62,0,0,0,150.58,160h0a38.39,38.39,0,0,0,27.31-11.31l34.75-34.75a38.63,38.63,0,0,0-54.63-54.63l-11,11A8,8,0,0,1,135.7,59l11-11A54.65,54.65,0,0,1,224,48,54.86,54.86,0,0,1,240,88.23ZM109,185.66l-11,11A38.41,38.41,0,0,1,70.6,208h0a38.63,38.63,0,0,1-27.29-65.94L78,107.31A38.63,38.63,0,0,1,144,135.71a8,8,0,0,0,7.78,8.22H152a8,8,0,0,0,8-7.78A54.86,54.86,0,0,0,144,96a54.65,54.65,0,0,0-77.27,0L32,130.75A54.62,54.62,0,0,0,70.56,224h0a54.28,54.28,0,0,0,38.64-16l11-11A8,8,0,0,0,109,185.66Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,Pc,[...r[2]||=[R(`path`,{d:`M208,32H48A16,16,0,0,0,32,48V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V48A16,16,0,0,0,208,32ZM115.7,192.49a43.31,43.31,0,0,1-55-66.43l25.37-25.37a43.35,43.35,0,0,1,61.25,0,42.9,42.9,0,0,1,9.95,15.43,8,8,0,1,1-15,5.6A27.33,27.33,0,0,0,97.37,112L72,137.37a27.32,27.32,0,0,0,34.68,41.91,8,8,0,1,1,9,13.21Zm79.61-62.55-25.37,25.37A43,43,0,0,1,139.32,168h0a43.35,43.35,0,0,1-40.53-28.12,8,8,0,1,1,15-5.6A27.35,27.35,0,0,0,139.28,152h0a27.14,27.14,0,0,0,19.32-8L184,118.63a27.32,27.32,0,0,0-34.68-41.91,8,8,0,1,1-9-13.21,43.32,43.32,0,0,1,55,66.43Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,Fc,[...r[3]||=[R(`path`,{d:`M238,88.18a52.42,52.42,0,0,1-15.4,35.66l-34.75,34.75A52.28,52.28,0,0,1,150.62,174h-.05A52.63,52.63,0,0,1,98,119.9a6,6,0,0,1,6-5.84h.17a6,6,0,0,1,5.83,6.16A40.62,40.62,0,0,0,150.58,162h0a40.4,40.4,0,0,0,28.73-11.9l34.75-34.74A40.63,40.63,0,0,0,156.63,57.9l-11,11a6,6,0,0,1-8.49-8.49l11-11a52.62,52.62,0,0,1,74.43,0A52.83,52.83,0,0,1,238,88.18Zm-127.62,98.9-11,11A40.36,40.36,0,0,1,70.6,210h0a40.63,40.63,0,0,1-28.7-69.36L76.62,105.9A40.63,40.63,0,0,1,146,135.77a6,6,0,0,0,5.83,6.16H152a6,6,0,0,0,6-5.84A52.63,52.63,0,0,0,68.14,97.42L33.38,132.16A52.63,52.63,0,0,0,70.56,222h0a52.26,52.26,0,0,0,37.22-15.42l11-11a6,6,0,1,0-8.49-8.48Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,Ic,[...r[4]||=[R(`path`,{d:`M240,88.23a54.43,54.43,0,0,1-16,37L189.25,160a54.27,54.27,0,0,1-38.63,16h-.05A54.63,54.63,0,0,1,96,119.84a8,8,0,0,1,16,.45A38.62,38.62,0,0,0,150.58,160h0a38.39,38.39,0,0,0,27.31-11.31l34.75-34.75a38.63,38.63,0,0,0-54.63-54.63l-11,11A8,8,0,0,1,135.7,59l11-11A54.65,54.65,0,0,1,224,48,54.86,54.86,0,0,1,240,88.23ZM109,185.66l-11,11A38.41,38.41,0,0,1,70.6,208h0a38.63,38.63,0,0,1-27.29-65.94L78,107.31A38.63,38.63,0,0,1,144,135.71a8,8,0,0,0,16,.45A54.86,54.86,0,0,0,144,96a54.65,54.65,0,0,0-77.27,0L32,130.75A54.62,54.62,0,0,0,70.56,224h0a54.28,54.28,0,0,0,38.64-16l11-11A8,8,0,0,0,109,185.66Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,Lc,[...r[5]||=[R(`path`,{d:`M236,88.12a50.44,50.44,0,0,1-14.81,34.31l-34.75,34.74A50.33,50.33,0,0,1,150.62,172h-.05A50.63,50.63,0,0,1,100,120a4,4,0,0,1,4-3.89h.11a4,4,0,0,1,3.89,4.11A42.64,42.64,0,0,0,150.58,164h0a42.32,42.32,0,0,0,30.14-12.49l34.75-34.74a42.63,42.63,0,1,0-60.29-60.28l-11,11a4,4,0,0,1-5.66-5.65l11-11A50.64,50.64,0,0,1,236,88.12ZM111.78,188.49l-11,11A42.33,42.33,0,0,1,70.6,212h0a42.63,42.63,0,0,1-30.11-72.77l34.75-34.74A42.63,42.63,0,0,1,148,135.82a4,4,0,0,0,8,.23A50.64,50.64,0,0,0,69.55,98.83L34.8,133.57A50.63,50.63,0,0,0,70.56,220h0a50.33,50.33,0,0,0,35.81-14.83l11-11a4,4,0,1,0-5.65-5.66Z`},null,-1)]])):B(``,!0)],16))}})})),zc,_fe=s((()=>{gfe(),zc=Rc})),Bc,Vc,Hc,Uc,Wc,Gc,Kc,vfe=s((()=>{nc(),G(),Bc={key:0},Vc={key:1},Hc={key:2},Uc={key:3},Wc={key:4},Gc={key:5},Kc=N({name:`ScalarIconList`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,Bc,[...r[0]||=[R(`path`,{d:`M228,128a12,12,0,0,1-12,12H40a12,12,0,0,1,0-24H216A12,12,0,0,1,228,128ZM40,76H216a12,12,0,0,0,0-24H40a12,12,0,0,0,0,24ZM216,180H40a12,12,0,0,0,0,24H216a12,12,0,0,0,0-24Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,Vc,[...r[1]||=[R(`path`,{d:`M216,64V192H40V64Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M224,128a8,8,0,0,1-8,8H40a8,8,0,0,1,0-16H216A8,8,0,0,1,224,128ZM40,72H216a8,8,0,0,0,0-16H40a8,8,0,0,0,0,16ZM216,184H40a8,8,0,0,0,0,16H216a8,8,0,0,0,0-16Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,Hc,[...r[2]||=[R(`path`,{d:`M208,32H48A16,16,0,0,0,32,48V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V48A16,16,0,0,0,208,32ZM192,184H64a8,8,0,0,1,0-16H192a8,8,0,0,1,0,16Zm0-48H64a8,8,0,0,1,0-16H192a8,8,0,0,1,0,16Zm0-48H64a8,8,0,0,1,0-16H192a8,8,0,0,1,0,16Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,Uc,[...r[3]||=[R(`path`,{d:`M222,128a6,6,0,0,1-6,6H40a6,6,0,0,1,0-12H216A6,6,0,0,1,222,128ZM40,70H216a6,6,0,0,0,0-12H40a6,6,0,0,0,0,12ZM216,186H40a6,6,0,0,0,0,12H216a6,6,0,0,0,0-12Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,Wc,[...r[4]||=[R(`path`,{d:`M224,128a8,8,0,0,1-8,8H40a8,8,0,0,1,0-16H216A8,8,0,0,1,224,128ZM40,72H216a8,8,0,0,0,0-16H40a8,8,0,0,0,0,16ZM216,184H40a8,8,0,0,0,0,16H216a8,8,0,0,0,0-16Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,Gc,[...r[5]||=[R(`path`,{d:`M220,128a4,4,0,0,1-4,4H40a4,4,0,0,1,0-8H216A4,4,0,0,1,220,128ZM40,68H216a4,4,0,0,0,0-8H40a4,4,0,0,0,0,8ZM216,188H40a4,4,0,0,0,0,8H216a4,4,0,0,0,0-8Z`},null,-1)]])):B(``,!0)],16))}})})),qc,yfe=s((()=>{vfe(),qc=Kc})),Jc,Yc,Xc,Zc,Qc,$c,bfe,xfe=s((()=>{nc(),G(),Jc={key:0},Yc={key:1},Xc={key:2},Zc={key:3},Qc={key:4},$c={key:5},bfe=N({name:`ScalarIconLockSimple`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,Jc,[...r[0]||=[R(`path`,{d:`M208,76H180V56A52,52,0,0,0,76,56V76H48A20,20,0,0,0,28,96V208a20,20,0,0,0,20,20H208a20,20,0,0,0,20-20V96A20,20,0,0,0,208,76ZM100,56a28,28,0,0,1,56,0V76H100ZM204,204H52V100H204Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,Yc,[...r[1]||=[R(`path`,{d:`M216,96V208a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V96a8,8,0,0,1,8-8H208A8,8,0,0,1,216,96Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M208,80H176V56a48,48,0,0,0-96,0V80H48A16,16,0,0,0,32,96V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V96A16,16,0,0,0,208,80ZM96,56a32,32,0,0,1,64,0V80H96ZM208,208H48V96H208V208Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,Xc,[...r[2]||=[R(`path`,{d:`M208,80H176V56a48,48,0,0,0-96,0V80H48A16,16,0,0,0,32,96V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V96A16,16,0,0,0,208,80ZM96,56a32,32,0,0,1,64,0V80H96Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,Zc,[...r[3]||=[R(`path`,{d:`M208,82H174V56a46,46,0,0,0-92,0V82H48A14,14,0,0,0,34,96V208a14,14,0,0,0,14,14H208a14,14,0,0,0,14-14V96A14,14,0,0,0,208,82ZM94,56a34,34,0,0,1,68,0V82H94ZM210,208a2,2,0,0,1-2,2H48a2,2,0,0,1-2-2V96a2,2,0,0,1,2-2H208a2,2,0,0,1,2,2Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,Qc,[...r[4]||=[R(`path`,{d:`M208,80H176V56a48,48,0,0,0-96,0V80H48A16,16,0,0,0,32,96V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V96A16,16,0,0,0,208,80ZM96,56a32,32,0,0,1,64,0V80H96ZM208,208H48V96H208V208Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,$c,[...r[5]||=[R(`path`,{d:`M208,84H172V56a44,44,0,0,0-88,0V84H48A12,12,0,0,0,36,96V208a12,12,0,0,0,12,12H208a12,12,0,0,0,12-12V96A12,12,0,0,0,208,84ZM92,56a36,36,0,0,1,72,0V84H92ZM212,208a4,4,0,0,1-4,4H48a4,4,0,0,1-4-4V96a4,4,0,0,1,4-4H208a4,4,0,0,1,4,4Z`},null,-1)]])):B(``,!0)],16))}})})),el,Sfe=s((()=>{xfe(),el=bfe})),Cfe,wfe,Tfe,Efe,Dfe,Ofe,kfe,Afe=s((()=>{nc(),G(),Cfe={key:0},wfe={key:1},Tfe={key:2},Efe={key:3},Dfe={key:4},Ofe={key:5},kfe=N({name:`ScalarIconLockSimpleOpen`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,Cfe,[...r[0]||=[R(`path`,{d:`M208,76H100V56a28,28,0,0,1,28-28c13.51,0,25.65,9.62,28.24,22.39a12,12,0,1,0,23.52-4.78C174.87,21.5,153.1,4,128,4A52.06,52.06,0,0,0,76,56V76H48A20,20,0,0,0,28,96V208a20,20,0,0,0,20,20H208a20,20,0,0,0,20-20V96A20,20,0,0,0,208,76Zm-4,128H52V100H204Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,wfe,[...r[1]||=[R(`path`,{d:`M216,96V208a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V96a8,8,0,0,1,8-8H208A8,8,0,0,1,216,96Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M208,80H96V56a32,32,0,0,1,32-32c15.37,0,29.2,11,32.16,25.59a8,8,0,0,0,15.68-3.18C171.32,24.15,151.2,8,128,8A48.05,48.05,0,0,0,80,56V80H48A16,16,0,0,0,32,96V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V96A16,16,0,0,0,208,80Zm0,128H48V96H208V208Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,Tfe,[...r[2]||=[R(`path`,{d:`M224,96V208a16,16,0,0,1-16,16H48a16,16,0,0,1-16-16V96A16,16,0,0,1,48,80H80V56A48.05,48.05,0,0,1,128,8c23.2,0,43.32,16.15,47.84,38.41a8,8,0,0,1-15.68,3.18C157.2,35,143.37,24,128,24A32,32,0,0,0,96,56V80H208A16,16,0,0,1,224,96Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,Efe,[...r[3]||=[R(`path`,{d:`M208,82H94V56a34,34,0,0,1,34-34c16.3,0,31,11.69,34.12,27.19a6,6,0,0,0,11.76-2.38C169.55,25.48,150.26,10,128,10A46.06,46.06,0,0,0,82,56V82H48A14,14,0,0,0,34,96V208a14,14,0,0,0,14,14H208a14,14,0,0,0,14-14V96A14,14,0,0,0,208,82Zm2,126a2,2,0,0,1-2,2H48a2,2,0,0,1-2-2V96a2,2,0,0,1,2-2H208a2,2,0,0,1,2,2Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,Dfe,[...r[4]||=[R(`path`,{d:`M208,80H96V56a32,32,0,0,1,32-32c15.37,0,29.2,11,32.16,25.59a8,8,0,0,0,15.68-3.18C171.32,24.15,151.2,8,128,8A48.05,48.05,0,0,0,80,56V80H48A16,16,0,0,0,32,96V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V96A16,16,0,0,0,208,80Zm0,128H48V96H208V208Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,Ofe,[...r[5]||=[R(`path`,{d:`M208,84H92V56a36,36,0,0,1,36-36c17.24,0,32.75,12.38,36.08,28.8a4,4,0,1,0,7.84-1.6C167.78,26.81,149.31,12,128,12A44.05,44.05,0,0,0,84,56V84H48A12,12,0,0,0,36,96V208a12,12,0,0,0,12,12H208a12,12,0,0,0,12-12V96A12,12,0,0,0,208,84Zm4,124a4,4,0,0,1-4,4H48a4,4,0,0,1-4-4V96a4,4,0,0,1,4-4H208a4,4,0,0,1,4,4Z`},null,-1)]])):B(``,!0)],16))}})})),jfe,Mfe=s((()=>{Afe(),jfe=kfe})),Nfe,Pfe,Ffe,Ife,Lfe,Rfe,zfe,Bfe=s((()=>{nc(),G(),Nfe={key:0},Pfe={key:1},Ffe={key:2},Ife={key:3},Lfe={key:4},Rfe={key:5},zfe=N({name:`ScalarIconMagnifyingGlass`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,Nfe,[...r[0]||=[R(`path`,{d:`M232.49,215.51,185,168a92.12,92.12,0,1,0-17,17l47.53,47.54a12,12,0,0,0,17-17ZM44,112a68,68,0,1,1,68,68A68.07,68.07,0,0,1,44,112Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,Pfe,[...r[1]||=[R(`path`,{d:`M192,112a80,80,0,1,1-80-80A80,80,0,0,1,192,112Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M229.66,218.34,179.6,168.28a88.21,88.21,0,1,0-11.32,11.31l50.06,50.07a8,8,0,0,0,11.32-11.32ZM40,112a72,72,0,1,1,72,72A72.08,72.08,0,0,1,40,112Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,Ffe,[...r[2]||=[R(`path`,{d:`M168,112a56,56,0,1,1-56-56A56,56,0,0,1,168,112Zm61.66,117.66a8,8,0,0,1-11.32,0l-50.06-50.07a88,88,0,1,1,11.32-11.31l50.06,50.06A8,8,0,0,1,229.66,229.66ZM112,184a72,72,0,1,0-72-72A72.08,72.08,0,0,0,112,184Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,Ife,[...r[3]||=[R(`path`,{d:`M228.24,219.76l-51.38-51.38a86.15,86.15,0,1,0-8.48,8.48l51.38,51.38a6,6,0,0,0,8.48-8.48ZM38,112a74,74,0,1,1,74,74A74.09,74.09,0,0,1,38,112Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,Lfe,[...r[4]||=[R(`path`,{d:`M229.66,218.34l-50.07-50.06a88.11,88.11,0,1,0-11.31,11.31l50.06,50.07a8,8,0,0,0,11.32-11.32ZM40,112a72,72,0,1,1,72,72A72.08,72.08,0,0,1,40,112Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,Rfe,[...r[5]||=[R(`path`,{d:`M226.83,221.17l-52.7-52.7a84.1,84.1,0,1,0-5.66,5.66l52.7,52.7a4,4,0,0,0,5.66-5.66ZM36,112a76,76,0,1,1,76,76A76.08,76.08,0,0,1,36,112Z`},null,-1)]])):B(``,!0)],16))}})})),tl,Vfe=s((()=>{Bfe(),tl=zfe})),Hfe,Ufe,Wfe,Gfe,Kfe,qfe,Jfe,Yfe=s((()=>{nc(),G(),Hfe={key:0},Ufe={key:1},Wfe={key:2},Gfe={key:3},Kfe={key:4},qfe={key:5},Jfe=N({name:`ScalarIconMinus`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,Hfe,[...r[0]||=[R(`path`,{d:`M228,128a12,12,0,0,1-12,12H40a12,12,0,0,1,0-24H216A12,12,0,0,1,228,128Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,Ufe,[...r[1]||=[R(`path`,{d:`M216,56V200a16,16,0,0,1-16,16H56a16,16,0,0,1-16-16V56A16,16,0,0,1,56,40H200A16,16,0,0,1,216,56Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M224,128a8,8,0,0,1-8,8H40a8,8,0,0,1,0-16H216A8,8,0,0,1,224,128Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,Wfe,[...r[2]||=[R(`path`,{d:`M208,32H48A16,16,0,0,0,32,48V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V48A16,16,0,0,0,208,32ZM184,136H72a8,8,0,0,1,0-16H184a8,8,0,0,1,0,16Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,Gfe,[...r[3]||=[R(`path`,{d:`M222,128a6,6,0,0,1-6,6H40a6,6,0,0,1,0-12H216A6,6,0,0,1,222,128Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,Kfe,[...r[4]||=[R(`path`,{d:`M224,128a8,8,0,0,1-8,8H40a8,8,0,0,1,0-16H216A8,8,0,0,1,224,128Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,qfe,[...r[5]||=[R(`path`,{d:`M220,128a4,4,0,0,1-4,4H40a4,4,0,0,1,0-8H216A4,4,0,0,1,220,128Z`},null,-1)]])):B(``,!0)],16))}})})),Xfe,Zfe=s((()=>{Yfe(),Xfe=Jfe})),Qfe,$fe,epe,tpe,npe,rpe,ipe,ape=s((()=>{nc(),G(),Qfe={key:0},$fe={key:1},epe={key:2},tpe={key:3},npe={key:4},rpe={key:5},ipe=N({name:`ScalarIconNotepad`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,Qfe,[...r[0]||=[R(`path`,{d:`M172,124a12,12,0,0,1-12,12H96a12,12,0,0,1,0-24h64A12,12,0,0,1,172,124Zm-12,28H96a12,12,0,0,0,0,24h64a12,12,0,0,0,0-24ZM220,40V200a36,36,0,0,1-36,36H72a36,36,0,0,1-36-36V40A12,12,0,0,1,48,28H72V24a12,12,0,0,1,24,0v4h20V24a12,12,0,0,1,24,0v4h20V24a12,12,0,0,1,24,0v4h24A12,12,0,0,1,220,40ZM196,52H184v4a12,12,0,0,1-24,0V52H140v4a12,12,0,0,1-24,0V52H96v4a12,12,0,0,1-24,0V52H60V200a12,12,0,0,0,12,12H184a12,12,0,0,0,12-12Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,$fe,[...r[1]||=[R(`path`,{d:`M208,40V200a24,24,0,0,1-24,24H72a24,24,0,0,1-24-24V40Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M168,128a8,8,0,0,1-8,8H96a8,8,0,0,1,0-16h64A8,8,0,0,1,168,128Zm-8,24H96a8,8,0,0,0,0,16h64a8,8,0,0,0,0-16ZM216,40V200a32,32,0,0,1-32,32H72a32,32,0,0,1-32-32V40a8,8,0,0,1,8-8H72V24a8,8,0,0,1,16,0v8h32V24a8,8,0,0,1,16,0v8h32V24a8,8,0,0,1,16,0v8h24A8,8,0,0,1,216,40Zm-16,8H184v8a8,8,0,0,1-16,0V48H136v8a8,8,0,0,1-16,0V48H88v8a8,8,0,0,1-16,0V48H56V200a16,16,0,0,0,16,16H184a16,16,0,0,0,16-16Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,epe,[...r[2]||=[R(`path`,{d:`M208,32H184V24a8,8,0,0,0-16,0v8H136V24a8,8,0,0,0-16,0v8H88V24a8,8,0,0,0-16,0v8H48a8,8,0,0,0-8,8V200a32,32,0,0,0,32,32H184a32,32,0,0,0,32-32V40A8,8,0,0,0,208,32ZM120,56a8,8,0,0,1,16,0v8a8,8,0,0,1-16,0ZM80,72a8,8,0,0,1-8-8V56a8,8,0,0,1,16,0v8A8,8,0,0,1,80,72Zm80,96H96a8,8,0,0,1,0-16h64a8,8,0,0,1,0,16Zm0-32H96a8,8,0,0,1,0-16h64a8,8,0,0,1,0,16Zm24-72a8,8,0,0,1-16,0V56a8,8,0,0,1,16,0Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,tpe,[...r[3]||=[R(`path`,{d:`M166,128a6,6,0,0,1-6,6H96a6,6,0,0,1,0-12h64A6,6,0,0,1,166,128Zm-6,26H96a6,6,0,0,0,0,12h64a6,6,0,0,0,0-12ZM214,40V200a30,30,0,0,1-30,30H72a30,30,0,0,1-30-30V40a6,6,0,0,1,6-6H74V24a6,6,0,0,1,12,0V34h36V24a6,6,0,0,1,12,0V34h36V24a6,6,0,0,1,12,0V34h26A6,6,0,0,1,214,40Zm-12,6H182V56a6,6,0,0,1-12,0V46H134V56a6,6,0,0,1-12,0V46H86V56a6,6,0,0,1-12,0V46H54V200a18,18,0,0,0,18,18H184a18,18,0,0,0,18-18Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,npe,[...r[4]||=[R(`path`,{d:`M168,128a8,8,0,0,1-8,8H96a8,8,0,0,1,0-16h64A8,8,0,0,1,168,128Zm-8,24H96a8,8,0,0,0,0,16h64a8,8,0,0,0,0-16ZM216,40V200a32,32,0,0,1-32,32H72a32,32,0,0,1-32-32V40a8,8,0,0,1,8-8H72V24a8,8,0,0,1,16,0v8h32V24a8,8,0,0,1,16,0v8h32V24a8,8,0,0,1,16,0v8h24A8,8,0,0,1,216,40Zm-16,8H184v8a8,8,0,0,1-16,0V48H136v8a8,8,0,0,1-16,0V48H88v8a8,8,0,0,1-16,0V48H56V200a16,16,0,0,0,16,16H184a16,16,0,0,0,16-16Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,rpe,[...r[5]||=[R(`path`,{d:`M164,128a4,4,0,0,1-4,4H96a4,4,0,0,1,0-8h64A4,4,0,0,1,164,128Zm-4,28H96a4,4,0,0,0,0,8h64a4,4,0,0,0,0-8ZM212,40V200a28,28,0,0,1-28,28H72a28,28,0,0,1-28-28V40a4,4,0,0,1,4-4H76V24a4,4,0,0,1,8,0V36h40V24a4,4,0,0,1,8,0V36h40V24a4,4,0,0,1,8,0V36h28A4,4,0,0,1,212,40Zm-8,4H180V56a4,4,0,0,1-8,0V44H132V56a4,4,0,0,1-8,0V44H84V56a4,4,0,0,1-8,0V44H52V200a20,20,0,0,0,20,20H184a20,20,0,0,0,20-20Z`},null,-1)]])):B(``,!0)],16))}})})),ope,spe=s((()=>{ape(),ope=ipe})),cpe,lpe,upe,dpe,fpe,ppe,mpe,hpe=s((()=>{nc(),G(),cpe={key:0},lpe={key:1},upe={key:2},dpe={key:3},fpe={key:4},ppe={key:5},mpe=N({name:`ScalarIconPencilSimple`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,cpe,[...r[0]||=[R(`path`,{d:`M230.14,70.54,185.46,25.85a20,20,0,0,0-28.29,0L33.86,149.17A19.85,19.85,0,0,0,28,163.31V208a20,20,0,0,0,20,20H92.69a19.86,19.86,0,0,0,14.14-5.86L230.14,98.82a20,20,0,0,0,0-28.28ZM91,204H52V165l84-84,39,39ZM192,103,153,64l18.34-18.34,39,39Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,lpe,[...r[1]||=[R(`path`,{d:`M221.66,90.34,192,120,136,64l29.66-29.66a8,8,0,0,1,11.31,0L221.66,79A8,8,0,0,1,221.66,90.34Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M227.31,73.37,182.63,28.68a16,16,0,0,0-22.63,0L36.69,152A15.86,15.86,0,0,0,32,163.31V208a16,16,0,0,0,16,16H92.69A15.86,15.86,0,0,0,104,219.31L227.31,96a16,16,0,0,0,0-22.63ZM92.69,208H48V163.31l88-88L180.69,120ZM192,108.68,147.31,64l24-24L216,84.68Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,upe,[...r[2]||=[R(`path`,{d:`M227.31,73.37,182.63,28.68a16,16,0,0,0-22.63,0L36.69,152A15.86,15.86,0,0,0,32,163.31V208a16,16,0,0,0,16,16H92.69A15.86,15.86,0,0,0,104,219.31L227.31,96a16,16,0,0,0,0-22.63ZM192,108.68,147.31,64l24-24L216,84.68Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,dpe,[...r[3]||=[R(`path`,{d:`M225.9,74.78,181.21,30.09a14,14,0,0,0-19.8,0L38.1,153.41a13.94,13.94,0,0,0-4.1,9.9V208a14,14,0,0,0,14,14H92.69a13.94,13.94,0,0,0,9.9-4.1L225.9,94.58a14,14,0,0,0,0-19.8ZM94.1,209.41a2,2,0,0,1-1.41.59H48a2,2,0,0,1-2-2V163.31a2,2,0,0,1,.59-1.41L136,72.48,183.51,120ZM217.41,86.1,192,111.51,144.49,64,169.9,38.58a2,2,0,0,1,2.83,0l44.68,44.69a2,2,0,0,1,0,2.83Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,fpe,[...r[4]||=[R(`path`,{d:`M227.31,73.37,182.63,28.68a16,16,0,0,0-22.63,0L36.69,152A15.86,15.86,0,0,0,32,163.31V208a16,16,0,0,0,16,16H92.69A15.86,15.86,0,0,0,104,219.31L227.31,96a16,16,0,0,0,0-22.63ZM92.69,208H48V163.31l88-88L180.69,120ZM192,108.68,147.31,64l24-24L216,84.68Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,ppe,[...r[5]||=[R(`path`,{d:`M224.49,76.2,179.8,31.51a12,12,0,0,0-17,0L133.17,61.17h0L39.52,154.83A11.9,11.9,0,0,0,36,163.31V208a12,12,0,0,0,12,12H92.69a12,12,0,0,0,8.48-3.51L224.48,93.17a12,12,0,0,0,0-17Zm-129,134.63A4,4,0,0,1,92.69,212H48a4,4,0,0,1-4-4V163.31a4,4,0,0,1,1.17-2.83L136,69.65,186.34,120ZM218.83,87.51,192,114.34,141.66,64l26.82-26.83a4,4,0,0,1,5.66,0l44.69,44.68a4,4,0,0,1,0,5.66Z`},null,-1)]])):B(``,!0)],16))}})})),nl,gpe=s((()=>{hpe(),nl=mpe})),_pe,vpe,ype,bpe,xpe,Spe,Cpe,wpe=s((()=>{nc(),G(),_pe={key:0},vpe={key:1},ype={key:2},bpe={key:3},xpe={key:4},Spe={key:5},Cpe=N({name:`ScalarIconPlay`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,_pe,[...r[0]||=[R(`path`,{d:`M234.49,111.07,90.41,22.94A20,20,0,0,0,60,39.87V216.13a20,20,0,0,0,30.41,16.93l144.08-88.13a19.82,19.82,0,0,0,0-33.86ZM84,208.85V47.15L216.16,128Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,vpe,[...r[1]||=[R(`path`,{d:`M228.23,134.69,84.15,222.81A8,8,0,0,1,72,216.12V39.88a8,8,0,0,1,12.15-6.69l144.08,88.12A7.82,7.82,0,0,1,228.23,134.69Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M232.4,114.49,88.32,26.35a16,16,0,0,0-16.2-.3A15.86,15.86,0,0,0,64,39.87V216.13A15.94,15.94,0,0,0,80,232a16.07,16.07,0,0,0,8.36-2.35L232.4,141.51a15.81,15.81,0,0,0,0-27ZM80,215.94V40l143.83,88Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,ype,[...r[2]||=[R(`path`,{d:`M240,128a15.74,15.74,0,0,1-7.6,13.51L88.32,229.65a16,16,0,0,1-16.2.3A15.86,15.86,0,0,1,64,216.13V39.87a15.86,15.86,0,0,1,8.12-13.82,16,16,0,0,1,16.2.3L232.4,114.49A15.74,15.74,0,0,1,240,128Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,bpe,[...r[3]||=[R(`path`,{d:`M231.36,116.19,87.28,28.06a14,14,0,0,0-14.18-.27A13.69,13.69,0,0,0,66,39.87V216.13a13.69,13.69,0,0,0,7.1,12.08,14,14,0,0,0,14.18-.27l144.08-88.13a13.82,13.82,0,0,0,0-23.62Zm-6.26,13.38L81,217.7a2,2,0,0,1-2.06,0,1.78,1.78,0,0,1-1-1.61V39.87a1.78,1.78,0,0,1,1-1.61A2.06,2.06,0,0,1,80,38a2,2,0,0,1,1,.31L225.1,126.43a1.82,1.82,0,0,1,0,3.14Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,xpe,[...r[4]||=[R(`path`,{d:`M232.4,114.49,88.32,26.35a16,16,0,0,0-16.2-.3A15.86,15.86,0,0,0,64,39.87V216.13A15.94,15.94,0,0,0,80,232a16.07,16.07,0,0,0,8.36-2.35L232.4,141.51a15.81,15.81,0,0,0,0-27ZM80,215.94V40l143.83,88Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,Spe,[...r[5]||=[R(`path`,{d:`M230.32,117.9,86.24,29.79a11.91,11.91,0,0,0-12.17-.23A11.71,11.71,0,0,0,68,39.89V216.11a11.71,11.71,0,0,0,6.07,10.33,11.91,11.91,0,0,0,12.17-.23L230.32,138.1a11.82,11.82,0,0,0,0-20.2Zm-4.18,13.37L82.06,219.39a4,4,0,0,1-4.07.07,3.77,3.77,0,0,1-2-3.35V39.89a3.77,3.77,0,0,1,2-3.35,4,4,0,0,1,4.07.07l144.08,88.12a3.8,3.8,0,0,1,0,6.54Z`},null,-1)]])):B(``,!0)],16))}})})),rl,Tpe=s((()=>{wpe(),rl=Cpe})),Epe,Dpe,Ope,kpe,Ape,jpe,Mpe,Npe=s((()=>{nc(),G(),Epe={key:0},Dpe={key:1},Ope={key:2},kpe={key:3},Ape={key:4},jpe={key:5},Mpe=N({name:`ScalarIconPlugsConnected`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,Epe,[...r[0]||=[R(`path`,{d:`M240.49,15.51a12,12,0,0,0-17,0L173.94,65.09l-2.54-2.55a36.05,36.05,0,0,0-50.91,0L100,83l-3.51-3.52a12,12,0,0,0-17,17L83,100,62.54,120.49a36,36,0,0,0,0,50.91l2.55,2.54L15.51,223.51a12,12,0,0,0,17,17l49.57-49.58,2.54,2.55a36.06,36.06,0,0,0,50.91,0L156,173l3.51,3.52a12,12,0,0,0,17-17L173,156l20.49-20.49a36,36,0,0,0,0-50.91l-2.55-2.54,49.58-49.57A12,12,0,0,0,240.49,15.51Zm-121.95,161a12,12,0,0,1-17,0L79.51,154.43a12,12,0,0,1,0-17L100,117l39,39Zm58-57.95h0L156,139l-39-39,20.49-20.49a12,12,0,0,1,17,0l22.06,22.06a12,12,0,0,1,0,17ZM85.27,33.37a12,12,0,0,1,21.46-10.74l8,16A12,12,0,1,1,93.27,49.37Zm-68,57.26a12,12,0,0,1,16.1-5.36l16,8a12,12,0,1,1-10.74,21.46l-16-8A12,12,0,0,1,17.27,90.63Zm221.46,74.74a12,12,0,0,1-16.1,5.36l-16-8a12,12,0,0,1,10.74-21.46l16,8A12,12,0,0,1,238.73,165.37Zm-68,57.26a12,12,0,1,1-21.46,10.74l-8-16a12,12,0,0,1,21.46-10.74Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,Dpe,[...r[1]||=[R(`path`,{d:`M185,127,127,185a24,24,0,0,1-33.94,0L71,162.91A24,24,0,0,1,71,129L129,71a24,24,0,0,1,33.94,0L185,93.09A24,24,0,0,1,185,127Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M237.66,18.34a8,8,0,0,0-11.32,0l-52.4,52.41-5.37-5.38a32.05,32.05,0,0,0-45.26,0L100,88.69l-6.34-6.35A8,8,0,0,0,82.34,93.66L88.69,100,65.37,123.31a32,32,0,0,0,0,45.26l5.38,5.37-52.41,52.4a8,8,0,0,0,11.32,11.32l52.4-52.41,5.37,5.38a32.06,32.06,0,0,0,45.26,0L156,167.31l6.34,6.35a8,8,0,0,0,11.32-11.32L167.31,156l23.32-23.31a32,32,0,0,0,0-45.26l-5.38-5.37,52.41-52.4A8,8,0,0,0,237.66,18.34Zm-116.29,161a16,16,0,0,1-22.62,0L76.69,157.25a16,16,0,0,1,0-22.62L100,111.31,144.69,156Zm57.94-57.94h0L156,144.69,111.31,100l23.32-23.31a16,16,0,0,1,22.62,0l22.06,22a16,16,0,0,1,0,22.63ZM88.57,35A8,8,0,0,1,103.43,29l8,20A8,8,0,0,1,96.57,55ZM24.57,93A8,8,0,0,1,35,88.57l20,8A8,8,0,0,1,49,111.43l-20-8A8,8,0,0,1,24.57,93ZM231.43,163a8,8,0,0,1-10.4,4.46l-20-8A8,8,0,1,1,207,144.57l20,8A8,8,0,0,1,231.43,163Zm-64,58.06A8,8,0,0,1,152.57,227l-8-20A8,8,0,0,1,159.43,201Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,Ope,[...r[2]||=[R(`path`,{d:`M88.57,35A8,8,0,0,1,103.43,29l8,20A8,8,0,0,1,96.57,55ZM29,103.43l20,8A8,8,0,1,0,55,96.57l-20-8A8,8,0,0,0,29,103.43ZM227,152.57l-20-8A8,8,0,1,0,201,159.43l20,8A8,8,0,0,0,227,152.57ZM159.43,201A8,8,0,0,0,144.57,207l8,20A8,8,0,1,0,167.43,221ZM237.91,18.52a8,8,0,0,0-11.5-.18L174,70.75l-5.38-5.38a32,32,0,0,0-45.28,0L106.14,82.54a4,4,0,0,0,0,5.66l61.7,61.66a4,4,0,0,0,5.66,0l16.74-16.74a32.76,32.76,0,0,0,9.81-22.52,31.82,31.82,0,0,0-9.37-23.17l-5.38-5.37,52.2-52.17A8.22,8.22,0,0,0,237.91,18.52ZM85.64,90.34a8,8,0,0,0-11.49.18,8.22,8.22,0,0,0,.41,11.37L80.67,108,65.34,123.31A31.82,31.82,0,0,0,56,146.47,32.75,32.75,0,0,0,65.77,169l5,4.94L18.49,226.13a8.21,8.21,0,0,0-.61,11.1,8,8,0,0,0,11.72.43L82,185.25l5.37,5.38a32.1,32.1,0,0,0,45.29,0L148,175.31l6.34,6.35a8,8,0,0,0,11.32-11.32Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,kpe,[...r[3]||=[R(`path`,{d:`M236.24,19.76a6,6,0,0,0-8.48,0L173.94,73.57l-6.79-6.78a30,30,0,0,0-42.42,0L100,91.51l-7.76-7.75a6,6,0,0,0-8.48,8.48L91.51,100,66.79,124.73a30,30,0,0,0,0,42.42l6.78,6.79L19.76,227.76a6,6,0,1,0,8.48,8.48l53.82-53.81,6.79,6.78a30,30,0,0,0,42.42,0L156,164.49l7.76,7.75a6,6,0,0,0,8.48-8.48L164.49,156l24.72-24.73a30,30,0,0,0,0-42.42l-6.78-6.79,53.81-53.82A6,6,0,0,0,236.24,19.76Zm-113.45,161a18,18,0,0,1-25.46,0L75.27,158.67a18,18,0,0,1,0-25.46L100,108.49,147.51,156Zm57.94-57.94L156,147.51,108.49,100l24.72-24.73a18,18,0,0,1,25.46,0l22.06,22.06a18,18,0,0,1,0,25.46ZM90.43,34.23a6,6,0,0,1,11.14-4.46l8,20a6,6,0,1,1-11.14,4.46Zm-64,59.54a6,6,0,0,1,7.8-3.34l20,8a6,6,0,1,1-4.46,11.14l-20-8A6,6,0,0,1,26.43,93.77Zm203.14,68.46a6,6,0,0,1-7.8,3.34l-20-8a6,6,0,0,1,4.46-11.14l20,8A6,6,0,0,1,229.57,162.23Zm-64,59.54a6,6,0,1,1-11.14,4.46l-8-20a6,6,0,0,1,11.14-4.46Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,Ape,[...r[4]||=[R(`path`,{d:`M237.66,18.34a8,8,0,0,0-11.32,0l-52.4,52.41-5.37-5.38a32.05,32.05,0,0,0-45.26,0L100,88.69l-6.34-6.35A8,8,0,0,0,82.34,93.66L88.69,100,65.37,123.31a32,32,0,0,0,0,45.26l5.38,5.37-52.41,52.4a8,8,0,0,0,11.32,11.32l52.4-52.41,5.37,5.38a32,32,0,0,0,45.26,0L156,167.31l6.34,6.35a8,8,0,0,0,11.32-11.32L167.31,156l23.32-23.31a32,32,0,0,0,0-45.26l-5.38-5.37,52.41-52.4A8,8,0,0,0,237.66,18.34Zm-116.29,161a16,16,0,0,1-22.62,0L76.69,157.25a16,16,0,0,1,0-22.62L100,111.31,144.69,156Zm57.94-57.94L156,144.69,111.31,100l23.32-23.31a16,16,0,0,1,22.62,0l22.06,22A16,16,0,0,1,179.31,121.37ZM88.57,35A8,8,0,0,1,103.43,29l8,20A8,8,0,0,1,96.57,55ZM24.57,93A8,8,0,0,1,35,88.57l20,8A8,8,0,0,1,49,111.43l-20-8A8,8,0,0,1,24.57,93ZM231.43,163a8,8,0,0,1-10.4,4.46l-20-8A8,8,0,1,1,207,144.57l20,8A8,8,0,0,1,231.43,163Zm-64,58.06A8,8,0,0,1,152.57,227l-8-20A8,8,0,0,1,159.43,201Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,jpe,[...r[5]||=[R(`path`,{d:`M234.83,21.17a4,4,0,0,0-5.66,0L173.94,76.4l-8.2-8.2a28,28,0,0,0-39.6,0L100,94.34l-9.17-9.17a4,4,0,0,0-5.66,5.66L94.34,100,68.2,126.14a28,28,0,0,0,0,39.6l8.2,8.2L21.17,229.17a4,4,0,0,0,5.66,5.66L82.06,179.6l8.2,8.2a28,28,0,0,0,39.6,0L156,161.66l9.17,9.17a4,4,0,0,0,5.66-5.66L161.66,156l26.14-26.14a28,28,0,0,0,0-39.6l-8.2-8.2,55.23-55.23A4,4,0,0,0,234.83,21.17Zm-110.63,161a20,20,0,0,1-28.28,0L73.86,160.08a20,20,0,0,1,0-28.28L100,105.66,150.34,156Zm57.94-57.94L156,150.34,105.66,100,131.8,73.86a20,20,0,0,1,28.28,0l22.06,22.06A20,20,0,0,1,182.14,124.2ZM92.29,33.49a4,4,0,1,1,7.42-3l8,20a4,4,0,0,1-2.22,5.2A3.91,3.91,0,0,1,104,56a4,4,0,0,1-3.71-2.51Zm-64,61a4,4,0,0,1,5.2-2.22l20,8A4,4,0,0,1,52,108a3.91,3.91,0,0,1-1.49-.29l-20-8A4,4,0,0,1,28.29,94.51Zm199.42,67A4,4,0,0,1,224,164a3.91,3.91,0,0,1-1.49-.29l-20-8a4,4,0,1,1,3-7.42l20,8A4,4,0,0,1,227.71,161.49Zm-64,61a4,4,0,0,1-2.22,5.2A3.91,3.91,0,0,1,160,228a4,4,0,0,1-3.71-2.51l-8-20a4,4,0,0,1,7.42-3Z`},null,-1)]])):B(``,!0)],16))}})})),Ppe,Fpe=s((()=>{Npe(),Ppe=Mpe})),Ipe,Lpe,Rpe,zpe,Bpe,Vpe,Hpe,Upe=s((()=>{nc(),G(),Ipe={key:0},Lpe={key:1},Rpe={key:2},zpe={key:3},Bpe={key:4},Vpe={key:5},Hpe=N({name:`ScalarIconPlus`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,Ipe,[...r[0]||=[R(`path`,{d:`M228,128a12,12,0,0,1-12,12H140v76a12,12,0,0,1-24,0V140H40a12,12,0,0,1,0-24h76V40a12,12,0,0,1,24,0v76h76A12,12,0,0,1,228,128Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,Lpe,[...r[1]||=[R(`path`,{d:`M216,56V200a16,16,0,0,1-16,16H56a16,16,0,0,1-16-16V56A16,16,0,0,1,56,40H200A16,16,0,0,1,216,56Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M224,128a8,8,0,0,1-8,8H136v80a8,8,0,0,1-16,0V136H40a8,8,0,0,1,0-16h80V40a8,8,0,0,1,16,0v80h80A8,8,0,0,1,224,128Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,Rpe,[...r[2]||=[R(`path`,{d:`M208,32H48A16,16,0,0,0,32,48V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V48A16,16,0,0,0,208,32ZM184,136H136v48a8,8,0,0,1-16,0V136H72a8,8,0,0,1,0-16h48V72a8,8,0,0,1,16,0v48h48a8,8,0,0,1,0,16Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,zpe,[...r[3]||=[R(`path`,{d:`M222,128a6,6,0,0,1-6,6H134v82a6,6,0,0,1-12,0V134H40a6,6,0,0,1,0-12h82V40a6,6,0,0,1,12,0v82h82A6,6,0,0,1,222,128Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,Bpe,[...r[4]||=[R(`path`,{d:`M224,128a8,8,0,0,1-8,8H136v80a8,8,0,0,1-16,0V136H40a8,8,0,0,1,0-16h80V40a8,8,0,0,1,16,0v80h80A8,8,0,0,1,224,128Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,Vpe,[...r[5]||=[R(`path`,{d:`M220,128a4,4,0,0,1-4,4H132v84a4,4,0,0,1-8,0V132H40a4,4,0,0,1,0-8h84V40a4,4,0,0,1,8,0v84h84A4,4,0,0,1,220,128Z`},null,-1)]])):B(``,!0)],16))}})})),il,Wpe=s((()=>{Upe(),il=Hpe})),Gpe,Kpe,qpe,Jpe,Ype,Xpe,Zpe,Qpe=s((()=>{nc(),G(),Gpe={key:0},Kpe={key:1},qpe={key:2},Jpe={key:3},Ype={key:4},Xpe={key:5},Zpe=N({name:`ScalarIconScroll`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,Gpe,[...r[0]||=[R(`path`,{d:`M92,92a12,12,0,0,1,12-12h60a12,12,0,0,1,0,24H104A12,12,0,0,1,92,92Zm12,52h60a12,12,0,0,0,0-24H104a12,12,0,0,0,0,24Zm132,48a36,36,0,0,1-36,36H88a36,36,0,0,1-36-36V64a12,12,0,0,0-24,0c0,3.73,3.35,6.51,3.38,6.54l-.18-.14h0A12,12,0,1,1,16.81,89.59h0C15.49,88.62,4,79.55,4,64A36,36,0,0,1,40,28H176a36,36,0,0,1,36,36V164h4a12,12,0,0,1,7.2,2.4C224.51,167.38,236,176.45,236,192ZM92.62,172.2A12,12,0,0,1,104,164h84V64a12,12,0,0,0-12-12H73.94A35.88,35.88,0,0,1,76,64V192a12,12,0,0,0,24,0c0-3.58-3.17-6.38-3.2-6.4A12,12,0,0,1,92.62,172.2ZM212,192a7.69,7.69,0,0,0-1.24-4h-87a30.32,30.32,0,0,1,.26,4,35.84,35.84,0,0,1-2.06,12H200A12,12,0,0,0,212,192Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,Kpe,[...r[1]||=[R(`path`,{d:`M200,176H104s8,6,8,16a24,24,0,0,1-48,0V64A24,24,0,0,0,40,40H176a24,24,0,0,1,24,24Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M96,104a8,8,0,0,1,8-8h64a8,8,0,0,1,0,16H104A8,8,0,0,1,96,104Zm8,40h64a8,8,0,0,0,0-16H104a8,8,0,0,0,0,16Zm128,48a32,32,0,0,1-32,32H88a32,32,0,0,1-32-32V64a16,16,0,0,0-32,0c0,5.74,4.83,9.62,4.88,9.66h0A8,8,0,0,1,24,88a7.89,7.89,0,0,1-4.79-1.61h0C18.05,85.54,8,77.61,8,64A32,32,0,0,1,40,32H176a32,32,0,0,1,32,32V168h8a8,8,0,0,1,4.8,1.6C222,170.46,232,178.39,232,192ZM96.26,173.48A8.07,8.07,0,0,1,104,168h88V64a16,16,0,0,0-16-16H67.69A31.71,31.71,0,0,1,72,64V192a16,16,0,0,0,32,0c0-5.74-4.83-9.62-4.88-9.66A7.82,7.82,0,0,1,96.26,173.48ZM216,192a12.58,12.58,0,0,0-3.23-8h-94a26.92,26.92,0,0,1,1.21,8,31.82,31.82,0,0,1-4.29,16H200A16,16,0,0,0,216,192Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,qpe,[...r[2]||=[R(`path`,{d:`M220.8,169.6A8,8,0,0,0,216,168h-8V64a32,32,0,0,0-32-32H40A32,32,0,0,0,8,64C8,77.61,18.05,85.54,19.2,86.4h0A7.89,7.89,0,0,0,24,88a8,8,0,0,0,4.87-14.33h0C28.83,73.62,24,69.74,24,64a16,16,0,0,1,32,0V192a32,32,0,0,0,32,32H200a32,32,0,0,0,32-32C232,178.39,222,170.46,220.8,169.6ZM104,96h64a8,8,0,0,1,0,16H104a8,8,0,0,1,0-16Zm-8,40a8,8,0,0,1,8-8h64a8,8,0,0,1,0,16H104A8,8,0,0,1,96,136Zm104,72H107.71A31.82,31.82,0,0,0,112,192a26.92,26.92,0,0,0-1.21-8h102a12.58,12.58,0,0,1,3.23,8A16,16,0,0,1,200,208Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,Jpe,[...r[3]||=[R(`path`,{d:`M98,136a6,6,0,0,1,6-6h64a6,6,0,0,1,0,12H104A6,6,0,0,1,98,136Zm6-26h64a6,6,0,0,0,0-12H104a6,6,0,0,0,0,12Zm126,82a30,30,0,0,1-30,30H88a30,30,0,0,1-30-30V64a18,18,0,0,0-36,0c0,6.76,5.58,11.19,5.64,11.23A6,6,0,1,1,20.4,84.8C20,84.48,10,76.85,10,64A30,30,0,0,1,40,34H176a30,30,0,0,1,30,30V170h10a6,6,0,0,1,3.6,1.2C220,171.52,230,179.15,230,192Zm-124,0c0-6.76-5.59-11.19-5.64-11.23A6,6,0,0,1,104,170h90V64a18,18,0,0,0-18-18H64a29.82,29.82,0,0,1,6,18V192a18,18,0,0,0,36,0Zm112,0a14.94,14.94,0,0,0-4.34-10H115.88A24.83,24.83,0,0,1,118,192a29.87,29.87,0,0,1-6,18h88A18,18,0,0,0,218,192Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,Ype,[...r[4]||=[R(`path`,{d:`M96,104a8,8,0,0,1,8-8h64a8,8,0,0,1,0,16H104A8,8,0,0,1,96,104Zm8,40h64a8,8,0,0,0,0-16H104a8,8,0,0,0,0,16Zm128,48a32,32,0,0,1-32,32H88a32,32,0,0,1-32-32V64a16,16,0,0,0-32,0c0,5.74,4.83,9.62,4.88,9.66h0A8,8,0,0,1,24,88a7.89,7.89,0,0,1-4.79-1.61h0C18.05,85.54,8,77.61,8,64A32,32,0,0,1,40,32H176a32,32,0,0,1,32,32V168h8a8,8,0,0,1,4.8,1.6C222,170.46,232,178.39,232,192ZM96.26,173.48A8.07,8.07,0,0,1,104,168h88V64a16,16,0,0,0-16-16H67.69A31.71,31.71,0,0,1,72,64V192a16,16,0,0,0,32,0c0-5.74-4.83-9.62-4.88-9.66A7.82,7.82,0,0,1,96.26,173.48ZM216,192a12.58,12.58,0,0,0-3.23-8h-94a26.92,26.92,0,0,1,1.21,8,31.82,31.82,0,0,1-4.29,16H200A16,16,0,0,0,216,192Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,Xpe,[...r[5]||=[R(`path`,{d:`M100,104a4,4,0,0,1,4-4h64a4,4,0,0,1,0,8H104A4,4,0,0,1,100,104Zm4,36h64a4,4,0,0,0,0-8H104a4,4,0,0,0,0,8Zm124,52a28,28,0,0,1-28,28H88a28,28,0,0,1-28-28V64a20,20,0,0,0-40,0c0,7.78,6.34,12.75,6.4,12.8a4,4,0,1,1-4.8,6.4C21.21,82.91,12,75.86,12,64A28,28,0,0,1,40,36H176a28,28,0,0,1,28,28V172h12a4,4,0,0,1,2.4.8C218.79,173.09,228,180.14,228,192Zm-120,0c0-7.78-6.34-12.75-6.4-12.8A4,4,0,0,1,104,172h92V64a20,20,0,0,0-20-20H59.57A27.9,27.9,0,0,1,68,64V192a20,20,0,0,0,40,0Zm112,0c0-6-3.74-10.3-5.5-12H112.61A23.31,23.31,0,0,1,116,192a27.94,27.94,0,0,1-8.42,20H200A20,20,0,0,0,220,192Z`},null,-1)]])):B(``,!0)],16))}})})),$pe,eme=s((()=>{Qpe(),$pe=Zpe})),tme,nme,rme,ime,ame,ome,sme,cme=s((()=>{nc(),G(),tme={key:0},nme={key:1},rme={key:2},ime={key:3},ame={key:4},ome={key:5},sme=N({name:`ScalarIconSparkle`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,tme,[...r[0]||=[R(`path`,{d:`M199,125.31l-49.88-18.39L130.69,57a19.92,19.92,0,0,0-37.38,0L74.92,106.92,25,125.31a19.92,19.92,0,0,0,0,37.38l49.88,18.39L93.31,231a19.92,19.92,0,0,0,37.38,0l18.39-49.88L199,162.69a19.92,19.92,0,0,0,0-37.38Zm-63.38,35.16a12,12,0,0,0-7.11,7.11L112,212.28l-16.47-44.7a12,12,0,0,0-7.11-7.11L43.72,144l44.7-16.47a12,12,0,0,0,7.11-7.11L112,75.72l16.47,44.7a12,12,0,0,0,7.11,7.11L180.28,144ZM140,40a12,12,0,0,1,12-12h12V16a12,12,0,0,1,24,0V28h12a12,12,0,0,1,0,24H188V64a12,12,0,0,1-24,0V52H152A12,12,0,0,1,140,40ZM252,88a12,12,0,0,1-12,12h-4v4a12,12,0,0,1-24,0v-4h-4a12,12,0,0,1,0-24h4V72a12,12,0,0,1,24,0v4h4A12,12,0,0,1,252,88Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,nme,[...r[1]||=[R(`path`,{d:`M194.82,151.43l-55.09,20.3-20.3,55.09a7.92,7.92,0,0,1-14.86,0l-20.3-55.09-55.09-20.3a7.92,7.92,0,0,1,0-14.86l55.09-20.3,20.3-55.09a7.92,7.92,0,0,1,14.86,0l20.3,55.09,55.09,20.3A7.92,7.92,0,0,1,194.82,151.43Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M197.58,129.06,146,110l-19-51.62a15.92,15.92,0,0,0-29.88,0L78,110l-51.62,19a15.92,15.92,0,0,0,0,29.88L78,178l19,51.62a15.92,15.92,0,0,0,29.88,0L146,178l51.62-19a15.92,15.92,0,0,0,0-29.88ZM137,164.22a8,8,0,0,0-4.74,4.74L112,223.85,91.78,169A8,8,0,0,0,87,164.22L32.15,144,87,123.78A8,8,0,0,0,91.78,119L112,64.15,132.22,119a8,8,0,0,0,4.74,4.74L191.85,144ZM144,40a8,8,0,0,1,8-8h16V16a8,8,0,0,1,16,0V32h16a8,8,0,0,1,0,16H184V64a8,8,0,0,1-16,0V48H152A8,8,0,0,1,144,40ZM248,88a8,8,0,0,1-8,8h-8v8a8,8,0,0,1-16,0V96h-8a8,8,0,0,1,0-16h8V72a8,8,0,0,1,16,0v8h8A8,8,0,0,1,248,88Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,rme,[...r[2]||=[R(`path`,{d:`M208,144a15.78,15.78,0,0,1-10.42,14.94L146,178l-19,51.62a15.92,15.92,0,0,1-29.88,0L78,178l-51.62-19a15.92,15.92,0,0,1,0-29.88L78,110l19-51.62a15.92,15.92,0,0,1,29.88,0L146,110l51.62,19A15.78,15.78,0,0,1,208,144ZM152,48h16V64a8,8,0,0,0,16,0V48h16a8,8,0,0,0,0-16H184V16a8,8,0,0,0-16,0V32H152a8,8,0,0,0,0,16Zm88,32h-8V72a8,8,0,0,0-16,0v8h-8a8,8,0,0,0,0,16h8v8a8,8,0,0,0,16,0V96h8a8,8,0,0,0,0-16Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,ime,[...r[3]||=[R(`path`,{d:`M196.89,130.94,144.4,111.6,125.06,59.11a13.92,13.92,0,0,0-26.12,0L79.6,111.6,27.11,130.94a13.92,13.92,0,0,0,0,26.12L79.6,176.4l19.34,52.49a13.92,13.92,0,0,0,26.12,0L144.4,176.4l52.49-19.34a13.92,13.92,0,0,0,0-26.12Zm-4.15,14.86-55.08,20.3a6,6,0,0,0-3.56,3.56l-20.3,55.08a1.92,1.92,0,0,1-3.6,0L89.9,169.66a6,6,0,0,0-3.56-3.56L31.26,145.8a1.92,1.92,0,0,1,0-3.6l55.08-20.3a6,6,0,0,0,3.56-3.56l20.3-55.08a1.92,1.92,0,0,1,3.6,0l20.3,55.08a6,6,0,0,0,3.56,3.56l55.08,20.3a1.92,1.92,0,0,1,0,3.6ZM146,40a6,6,0,0,1,6-6h18V16a6,6,0,0,1,12,0V34h18a6,6,0,0,1,0,12H182V64a6,6,0,0,1-12,0V46H152A6,6,0,0,1,146,40ZM246,88a6,6,0,0,1-6,6H230v10a6,6,0,0,1-12,0V94H208a6,6,0,0,1,0-12h10V72a6,6,0,0,1,12,0V82h10A6,6,0,0,1,246,88Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,ame,[...r[4]||=[R(`path`,{d:`M197.58,129.06,146,110l-19-51.62a15.92,15.92,0,0,0-29.88,0L78,110l-51.62,19a15.92,15.92,0,0,0,0,29.88L78,178l19,51.62a15.92,15.92,0,0,0,29.88,0L146,178l51.62-19a15.92,15.92,0,0,0,0-29.88ZM137,164.22a8,8,0,0,0-4.74,4.74L112,223.85,91.78,169A8,8,0,0,0,87,164.22L32.15,144,87,123.78A8,8,0,0,0,91.78,119L112,64.15,132.22,119a8,8,0,0,0,4.74,4.74L191.85,144ZM144,40a8,8,0,0,1,8-8h16V16a8,8,0,0,1,16,0V32h16a8,8,0,0,1,0,16H184V64a8,8,0,0,1-16,0V48H152A8,8,0,0,1,144,40ZM248,88a8,8,0,0,1-8,8h-8v8a8,8,0,0,1-16,0V96h-8a8,8,0,0,1,0-16h8V72a8,8,0,0,1,16,0v8h8A8,8,0,0,1,248,88Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,ome,[...r[5]||=[R(`path`,{d:`M196.2,132.81l-53.36-19.65L123.19,59.8a11.93,11.93,0,0,0-22.38,0L81.16,113.16,27.8,132.81a11.93,11.93,0,0,0,0,22.38l53.36,19.65,19.65,53.36a11.93,11.93,0,0,0,22.38,0l19.65-53.36,53.36-19.65a11.93,11.93,0,0,0,0-22.38Zm-2.77,14.87L138.35,168a4,4,0,0,0-2.37,2.37l-20.3,55.08a3.92,3.92,0,0,1-7.36,0L88,170.35A4,4,0,0,0,85.65,168l-55.08-20.3a3.92,3.92,0,0,1,0-7.36L85.65,120A4,4,0,0,0,88,117.65l20.3-55.08a3.92,3.92,0,0,1,7.36,0L136,117.65a4,4,0,0,0,2.37,2.37l55.08,20.3a3.92,3.92,0,0,1,0,7.36ZM148,40a4,4,0,0,1,4-4h20V16a4,4,0,0,1,8,0V36h20a4,4,0,0,1,0,8H180V64a4,4,0,0,1-8,0V44H152A4,4,0,0,1,148,40Zm96,48a4,4,0,0,1-4,4H228v12a4,4,0,0,1-8,0V92H208a4,4,0,0,1,0-8h12V72a4,4,0,0,1,8,0V84h12A4,4,0,0,1,244,88Z`},null,-1)]])):B(``,!0)],16))}})})),al,lme=s((()=>{cme(),al=sme})),ume,dme,fme,pme,mme,hme,gme,_me=s((()=>{nc(),G(),ume={key:0},dme={key:1},fme={key:2},pme={key:3},mme={key:4},hme={key:5},gme=N({name:`ScalarIconSwap`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,ume,[...r[0]||=[R(`path`,{d:`M228,48V152a20,20,0,0,1-20,20H112.92a12,12,0,0,1-17.41,16.49l-20-20a12,12,0,0,1,0-17l20-20A12,12,0,0,1,112.92,148H204V52H100a12,12,0,0,1-24,0V48A20,20,0,0,1,96,28H208A20,20,0,0,1,228,48ZM168,192a12,12,0,0,0-12,12H52V108h91.08a12,12,0,0,0,17.41,16.49l20-20a12,12,0,0,0,0-17l-20-20A12,12,0,0,0,143.08,84H48a20,20,0,0,0-20,20V208a20,20,0,0,0,20,20H160a20,20,0,0,0,20-20v-4A12,12,0,0,0,168,192Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,dme,[...r[1]||=[R(`path`,{d:`M216,48V152a8,8,0,0,1-8,8H168v48a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V104a8,8,0,0,1,8-8H88V48a8,8,0,0,1,8-8H208A8,8,0,0,1,216,48Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M224,48V152a16,16,0,0,1-16,16H99.31l10.35,10.34a8,8,0,0,1-11.32,11.32l-24-24a8,8,0,0,1,0-11.32l24-24a8,8,0,0,1,11.32,11.32L99.31,152H208V48H96v8a8,8,0,0,1-16,0V48A16,16,0,0,1,96,32H208A16,16,0,0,1,224,48ZM168,192a8,8,0,0,0-8,8v8H48V104H156.69l-10.35,10.34a8,8,0,0,0,11.32,11.32l24-24a8,8,0,0,0,0-11.32l-24-24a8,8,0,0,0-11.32,11.32L156.69,88H48a16,16,0,0,0-16,16V208a16,16,0,0,0,16,16H160a16,16,0,0,0,16-16v-8A8,8,0,0,0,168,192Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,fme,[...r[2]||=[R(`path`,{d:`M224,48V152a16,16,0,0,1-16,16H112v16a8,8,0,0,1-13.66,5.66l-24-24a8,8,0,0,1,0-11.32l24-24A8,8,0,0,1,112,136v16h96V48H96v8a8,8,0,0,1-16,0V48A16,16,0,0,1,96,32H208A16,16,0,0,1,224,48ZM168,192a8,8,0,0,0-8,8v8H48V104h96v16a8,8,0,0,0,13.66,5.66l24-24a8,8,0,0,0,0-11.32l-24-24A8,8,0,0,0,144,72V88H48a16,16,0,0,0-16,16V208a16,16,0,0,0,16,16H160a16,16,0,0,0,16-16v-8A8,8,0,0,0,168,192Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,pme,[...r[3]||=[R(`path`,{d:`M222,48V152a14,14,0,0,1-14,14H94.49l13.75,13.76a6,6,0,1,1-8.48,8.48l-24-24a6,6,0,0,1,0-8.48l24-24a6,6,0,0,1,8.48,8.48L94.49,154H208a2,2,0,0,0,2-2V48a2,2,0,0,0-2-2H96a2,2,0,0,0-2,2v8a6,6,0,0,1-12,0V48A14,14,0,0,1,96,34H208A14,14,0,0,1,222,48ZM168,194a6,6,0,0,0-6,6v8a2,2,0,0,1-2,2H48a2,2,0,0,1-2-2V104a2,2,0,0,1,2-2H161.51l-13.75,13.76a6,6,0,1,0,8.48,8.48l24-24a6,6,0,0,0,0-8.48l-24-24a6,6,0,0,0-8.48,8.48L161.51,90H48a14,14,0,0,0-14,14V208a14,14,0,0,0,14,14H160a14,14,0,0,0,14-14v-8A6,6,0,0,0,168,194Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,mme,[...r[4]||=[R(`path`,{d:`M224,48V152a16,16,0,0,1-16,16H99.31l10.35,10.34a8,8,0,0,1-11.32,11.32l-24-24a8,8,0,0,1,0-11.32l24-24a8,8,0,0,1,11.32,11.32L99.31,152H208V48H96v8a8,8,0,0,1-16,0V48A16,16,0,0,1,96,32H208A16,16,0,0,1,224,48ZM168,192a8,8,0,0,0-8,8v8H48V104H156.69l-10.35,10.34a8,8,0,0,0,11.32,11.32l24-24a8,8,0,0,0,0-11.32l-24-24a8,8,0,0,0-11.32,11.32L156.69,88H48a16,16,0,0,0-16,16V208a16,16,0,0,0,16,16H160a16,16,0,0,0,16-16v-8A8,8,0,0,0,168,192Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,hme,[...r[5]||=[R(`path`,{d:`M220,48V152a12,12,0,0,1-12,12H89.66l17.17,17.17a4,4,0,0,1-5.66,5.66l-24-24a4,4,0,0,1,0-5.66l24-24a4,4,0,0,1,5.66,5.66L89.66,156H208a4,4,0,0,0,4-4V48a4,4,0,0,0-4-4H96a4,4,0,0,0-4,4v8a4,4,0,0,1-8,0V48A12,12,0,0,1,96,36H208A12,12,0,0,1,220,48ZM168,196a4,4,0,0,0-4,4v8a4,4,0,0,1-4,4H48a4,4,0,0,1-4-4V104a4,4,0,0,1,4-4H166.34l-17.17,17.17a4,4,0,0,0,5.66,5.66l24-24a4,4,0,0,0,0-5.66l-24-24a4,4,0,0,0-5.66,5.66L166.34,92H48a12,12,0,0,0-12,12V208a12,12,0,0,0,12,12H160a12,12,0,0,0,12-12v-8A4,4,0,0,0,168,196Z`},null,-1)]])):B(``,!0)],16))}})})),vme,yme=s((()=>{_me(),vme=gme})),bme,xme,Sme,Cme,wme,Tme,Eme,Dme=s((()=>{nc(),G(),bme={key:0},xme={key:1},Sme={key:2},Cme={key:3},wme={key:4},Tme={key:5},Eme=N({name:`ScalarIconTag`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,bme,[...r[0]||=[R(`path`,{d:`M246.15,133.18,146.83,33.86A19.85,19.85,0,0,0,132.69,28H40A12,12,0,0,0,28,40v92.69a19.85,19.85,0,0,0,5.86,14.14l99.32,99.32a20,20,0,0,0,28.28,0l84.69-84.69A20,20,0,0,0,246.15,133.18Zm-98.83,93.17L52,131V52h79l95.32,95.32ZM104,88A16,16,0,1,1,88,72,16,16,0,0,1,104,88Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,xme,[...r[1]||=[R(`path`,{d:`M237.66,153,153,237.66a8,8,0,0,1-11.31,0L42.34,138.34A8,8,0,0,1,40,132.69V40h92.69a8,8,0,0,1,5.65,2.34l99.32,99.32A8,8,0,0,1,237.66,153Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M243.31,136,144,36.69A15.86,15.86,0,0,0,132.69,32H40a8,8,0,0,0-8,8v92.69A15.86,15.86,0,0,0,36.69,144L136,243.31a16,16,0,0,0,22.63,0l84.68-84.68a16,16,0,0,0,0-22.63Zm-96,96L48,132.69V48h84.69L232,147.31ZM96,84A12,12,0,1,1,84,72,12,12,0,0,1,96,84Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,Sme,[...r[2]||=[R(`path`,{d:`M243.31,136,144,36.69A15.86,15.86,0,0,0,132.69,32H40a8,8,0,0,0-8,8v92.69A15.86,15.86,0,0,0,36.69,144L136,243.31a16,16,0,0,0,22.63,0l84.68-84.68a16,16,0,0,0,0-22.63ZM84,96A12,12,0,1,1,96,84,12,12,0,0,1,84,96Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,Cme,[...r[3]||=[R(`path`,{d:`M241.91,137.42,142.59,38.1a13.94,13.94,0,0,0-9.9-4.1H40a6,6,0,0,0-6,6v92.69a13.94,13.94,0,0,0,4.1,9.9l99.32,99.32a14,14,0,0,0,19.8,0l84.69-84.69A14,14,0,0,0,241.91,137.42Zm-8.49,11.31-84.69,84.69a2,2,0,0,1-2.83,0L46.59,134.1a2,2,0,0,1-.59-1.41V46h86.69a2,2,0,0,1,1.41.59l99.32,99.31A2,2,0,0,1,233.42,148.73ZM94,84A10,10,0,1,1,84,74,10,10,0,0,1,94,84Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,wme,[...r[4]||=[R(`path`,{d:`M243.31,136,144,36.69A15.86,15.86,0,0,0,132.69,32H40a8,8,0,0,0-8,8v92.69A15.86,15.86,0,0,0,36.69,144L136,243.31a16,16,0,0,0,22.63,0l84.68-84.68a16,16,0,0,0,0-22.63Zm-96,96L48,132.69V48h84.69L232,147.31ZM96,84A12,12,0,1,1,84,72,12,12,0,0,1,96,84Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,Tme,[...r[5]||=[R(`path`,{d:`M240.49,138.83,141.17,39.51A11.93,11.93,0,0,0,132.69,36H40a4,4,0,0,0-4,4v92.69a11.93,11.93,0,0,0,3.51,8.48l99.32,99.32a12,12,0,0,0,17,0l84.69-84.69a12,12,0,0,0,0-17Zm-5.66,11.31-84.69,84.69a4,4,0,0,1-5.65,0L45.17,135.51A4,4,0,0,1,44,132.69V44h88.69a4,4,0,0,1,2.82,1.17l99.32,99.32A4,4,0,0,1,234.83,150.14ZM92,84a8,8,0,1,1-8-8A8,8,0,0,1,92,84Z`},null,-1)]])):B(``,!0)],16))}})})),Ome,kme=s((()=>{Dme(),Ome=Eme})),Ame,jme,Mme,Nme,Pme,Fme,Ime,Lme=s((()=>{nc(),G(),Ame={key:0},jme={key:1},Mme={key:2},Nme={key:3},Pme={key:4},Fme={key:5},Ime=N({name:`ScalarIconTerminalWindow`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,Ame,[...r[0]||=[R(`path`,{d:`M72.5,150.63,100.79,128,72.5,105.37a12,12,0,1,1,15-18.74l40,32a12,12,0,0,1,0,18.74l-40,32a12,12,0,0,1-15-18.74ZM144,172h32a12,12,0,0,0,0-24H144a12,12,0,0,0,0,24ZM236,56V200a20,20,0,0,1-20,20H40a20,20,0,0,1-20-20V56A20,20,0,0,1,40,36H216A20,20,0,0,1,236,56Zm-24,4H44V196H212Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,jme,[...r[1]||=[R(`path`,{d:`M224,56V200a8,8,0,0,1-8,8H40a8,8,0,0,1-8-8V56a8,8,0,0,1,8-8H216A8,8,0,0,1,224,56Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M128,128a8,8,0,0,1-3,6.25l-40,32a8,8,0,1,1-10-12.5L107.19,128,75,102.25a8,8,0,1,1,10-12.5l40,32A8,8,0,0,1,128,128Zm48,24H136a8,8,0,0,0,0,16h40a8,8,0,0,0,0-16Zm56-96V200a16,16,0,0,1-16,16H40a16,16,0,0,1-16-16V56A16,16,0,0,1,40,40H216A16,16,0,0,1,232,56ZM216,200V56H40V200H216Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,Mme,[...r[2]||=[R(`path`,{d:`M216,40H40A16,16,0,0,0,24,56V200a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V56A16,16,0,0,0,216,40Zm-91,94.25-40,32a8,8,0,1,1-10-12.5L107.19,128,75,102.25a8,8,0,1,1,10-12.5l40,32a8,8,0,0,1,0,12.5ZM176,168H136a8,8,0,0,1,0-16h40a8,8,0,0,1,0,16Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,Nme,[...r[3]||=[R(`path`,{d:`M126,128a6,6,0,0,1-2.25,4.69l-40,32a6,6,0,0,1-7.5-9.38L110.4,128,76.25,100.69a6,6,0,1,1,7.5-9.38l40,32A6,6,0,0,1,126,128Zm50,26H136a6,6,0,0,0,0,12h40a6,6,0,0,0,0-12Zm54-98V200a14,14,0,0,1-14,14H40a14,14,0,0,1-14-14V56A14,14,0,0,1,40,42H216A14,14,0,0,1,230,56Zm-12,0a2,2,0,0,0-2-2H40a2,2,0,0,0-2,2V200a2,2,0,0,0,2,2H216a2,2,0,0,0,2-2Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,Pme,[...r[4]||=[R(`path`,{d:`M128,128a8,8,0,0,1-3,6.25l-40,32a8,8,0,1,1-10-12.5L107.19,128,75,102.25a8,8,0,1,1,10-12.5l40,32A8,8,0,0,1,128,128Zm48,24H136a8,8,0,0,0,0,16h40a8,8,0,0,0,0-16Zm56-96V200a16,16,0,0,1-16,16H40a16,16,0,0,1-16-16V56A16,16,0,0,1,40,40H216A16,16,0,0,1,232,56ZM216,200V56H40V200H216Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,Fme,[...r[5]||=[R(`path`,{d:`M122.5,124.88a4,4,0,0,1,0,6.24l-40,32a4,4,0,0,1-5-6.24L113.6,128,77.5,99.12a4,4,0,0,1,5-6.24ZM176,156H136a4,4,0,0,0,0,8h40a4,4,0,0,0,0-8ZM228,56V200a12,12,0,0,1-12,12H40a12,12,0,0,1-12-12V56A12,12,0,0,1,40,44H216A12,12,0,0,1,228,56Zm-8,0a4,4,0,0,0-4-4H40a4,4,0,0,0-4,4V200a4,4,0,0,0,4,4H216a4,4,0,0,0,4-4Z`},null,-1)]])):B(``,!0)],16))}})})),ol,Rme=s((()=>{Lme(),ol=Ime})),zme,Bme,Vme,Hme,Ume,Wme,Gme,Kme=s((()=>{nc(),G(),zme={key:0},Bme={key:1},Vme={key:2},Hme={key:3},Ume={key:4},Wme={key:5},Gme=N({name:`ScalarIconTextAlignLeft`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,zme,[...r[0]||=[R(`path`,{d:`M28,64A12,12,0,0,1,40,52H216a12,12,0,0,1,0,24H40A12,12,0,0,1,28,64Zm12,52H168a12,12,0,0,0,0-24H40a12,12,0,0,0,0,24Zm176,16H40a12,12,0,0,0,0,24H216a12,12,0,0,0,0-24Zm-48,40H40a12,12,0,0,0,0,24H168a12,12,0,0,0,0-24Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,Bme,[...r[1]||=[R(`path`,{d:`M216,64V168a16,16,0,0,1-16,16H40V64Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M32,64a8,8,0,0,1,8-8H216a8,8,0,0,1,0,16H40A8,8,0,0,1,32,64Zm8,48H168a8,8,0,0,0,0-16H40a8,8,0,0,0,0,16Zm176,24H40a8,8,0,0,0,0,16H216a8,8,0,0,0,0-16Zm-48,40H40a8,8,0,0,0,0,16H168a8,8,0,0,0,0-16Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,Vme,[...r[2]||=[R(`path`,{d:`M208,32H48A16,16,0,0,0,32,48V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V48A16,16,0,0,0,208,32ZM160,184H64a8,8,0,0,1,0-16h96a8,8,0,0,1,0,16Zm32-32H64a8,8,0,0,1,0-16H192a8,8,0,0,1,0,16ZM56,112a8,8,0,0,1,8-8h96a8,8,0,0,1,0,16H64A8,8,0,0,1,56,112ZM192,88H64a8,8,0,0,1,0-16H192a8,8,0,0,1,0,16Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,Hme,[...r[3]||=[R(`path`,{d:`M34,64a6,6,0,0,1,6-6H216a6,6,0,0,1,0,12H40A6,6,0,0,1,34,64Zm6,46H168a6,6,0,0,0,0-12H40a6,6,0,0,0,0,12Zm176,28H40a6,6,0,0,0,0,12H216a6,6,0,0,0,0-12Zm-48,40H40a6,6,0,0,0,0,12H168a6,6,0,0,0,0-12Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,Ume,[...r[4]||=[R(`path`,{d:`M32,64a8,8,0,0,1,8-8H216a8,8,0,0,1,0,16H40A8,8,0,0,1,32,64Zm8,48H168a8,8,0,0,0,0-16H40a8,8,0,0,0,0,16Zm176,24H40a8,8,0,0,0,0,16H216a8,8,0,0,0,0-16Zm-48,40H40a8,8,0,0,0,0,16H168a8,8,0,0,0,0-16Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,Wme,[...r[5]||=[R(`path`,{d:`M36,64a4,4,0,0,1,4-4H216a4,4,0,0,1,0,8H40A4,4,0,0,1,36,64Zm4,44H168a4,4,0,0,0,0-8H40a4,4,0,0,0,0,8Zm176,32H40a4,4,0,0,0,0,8H216a4,4,0,0,0,0-8Zm-48,40H40a4,4,0,0,0,0,8H168a4,4,0,0,0,0-8Z`},null,-1)]])):B(``,!0)],16))}})})),qme,Jme=s((()=>{Kme(),qme=Gme})),Yme,Xme,Zme,Qme,$me,ehe,the,nhe=s((()=>{nc(),G(),Yme={key:0},Xme={key:1},Zme={key:2},Qme={key:3},$me={key:4},ehe={key:5},the=N({name:`ScalarIconTrash`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,Yme,[...r[0]||=[R(`path`,{d:`M216,48H180V36A28,28,0,0,0,152,8H104A28,28,0,0,0,76,36V48H40a12,12,0,0,0,0,24h4V208a20,20,0,0,0,20,20H192a20,20,0,0,0,20-20V72h4a12,12,0,0,0,0-24ZM100,36a4,4,0,0,1,4-4h48a4,4,0,0,1,4,4V48H100Zm88,168H68V72H188ZM116,104v64a12,12,0,0,1-24,0V104a12,12,0,0,1,24,0Zm48,0v64a12,12,0,0,1-24,0V104a12,12,0,0,1,24,0Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,Xme,[...r[1]||=[R(`path`,{d:`M200,56V208a8,8,0,0,1-8,8H64a8,8,0,0,1-8-8V56Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M216,48H176V40a24,24,0,0,0-24-24H104A24,24,0,0,0,80,40v8H40a8,8,0,0,0,0,16h8V208a16,16,0,0,0,16,16H192a16,16,0,0,0,16-16V64h8a8,8,0,0,0,0-16ZM96,40a8,8,0,0,1,8-8h48a8,8,0,0,1,8,8v8H96Zm96,168H64V64H192ZM112,104v64a8,8,0,0,1-16,0V104a8,8,0,0,1,16,0Zm48,0v64a8,8,0,0,1-16,0V104a8,8,0,0,1,16,0Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,Zme,[...r[2]||=[R(`path`,{d:`M216,48H176V40a24,24,0,0,0-24-24H104A24,24,0,0,0,80,40v8H40a8,8,0,0,0,0,16h8V208a16,16,0,0,0,16,16H192a16,16,0,0,0,16-16V64h8a8,8,0,0,0,0-16ZM112,168a8,8,0,0,1-16,0V104a8,8,0,0,1,16,0Zm48,0a8,8,0,0,1-16,0V104a8,8,0,0,1,16,0Zm0-120H96V40a8,8,0,0,1,8-8h48a8,8,0,0,1,8,8Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,Qme,[...r[3]||=[R(`path`,{d:`M216,50H174V40a22,22,0,0,0-22-22H104A22,22,0,0,0,82,40V50H40a6,6,0,0,0,0,12H50V208a14,14,0,0,0,14,14H192a14,14,0,0,0,14-14V62h10a6,6,0,0,0,0-12ZM94,40a10,10,0,0,1,10-10h48a10,10,0,0,1,10,10V50H94ZM194,208a2,2,0,0,1-2,2H64a2,2,0,0,1-2-2V62H194ZM110,104v64a6,6,0,0,1-12,0V104a6,6,0,0,1,12,0Zm48,0v64a6,6,0,0,1-12,0V104a6,6,0,0,1,12,0Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,$me,[...r[4]||=[R(`path`,{d:`M216,48H176V40a24,24,0,0,0-24-24H104A24,24,0,0,0,80,40v8H40a8,8,0,0,0,0,16h8V208a16,16,0,0,0,16,16H192a16,16,0,0,0,16-16V64h8a8,8,0,0,0,0-16ZM96,40a8,8,0,0,1,8-8h48a8,8,0,0,1,8,8v8H96Zm96,168H64V64H192ZM112,104v64a8,8,0,0,1-16,0V104a8,8,0,0,1,16,0Zm48,0v64a8,8,0,0,1-16,0V104a8,8,0,0,1,16,0Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,ehe,[...r[5]||=[R(`path`,{d:`M216,52H172V40a20,20,0,0,0-20-20H104A20,20,0,0,0,84,40V52H40a4,4,0,0,0,0,8H52V208a12,12,0,0,0,12,12H192a12,12,0,0,0,12-12V60h12a4,4,0,0,0,0-8ZM92,40a12,12,0,0,1,12-12h48a12,12,0,0,1,12,12V52H92ZM196,208a4,4,0,0,1-4,4H64a4,4,0,0,1-4-4V60H196ZM108,104v64a4,4,0,0,1-8,0V104a4,4,0,0,1,8,0Zm48,0v64a4,4,0,0,1-8,0V104a4,4,0,0,1,8,0Z`},null,-1)]])):B(``,!0)],16))}})})),sl,rhe=s((()=>{nhe(),sl=the})),ihe,ahe,ohe,she,che,lhe,uhe,dhe=s((()=>{nc(),G(),ihe={key:0},ahe={key:1},ohe={key:2},she={key:3},che={key:4},lhe={key:5},uhe=N({name:`ScalarIconUpload`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,ihe,[...r[0]||=[R(`path`,{d:`M188,184a16,16,0,1,1,16-16A16,16,0,0,1,188,184Zm36-68H180a12,12,0,0,0,0,24h40v56H36V140H76a12,12,0,0,0,0-24H32a20,20,0,0,0-20,20v64a20,20,0,0,0,20,20H224a20,20,0,0,0,20-20V136A20,20,0,0,0,224,116ZM88.49,80.49,116,53v75a12,12,0,0,0,24,0V53l27.51,27.52a12,12,0,1,0,17-17l-48-48a12,12,0,0,0-17,0l-48,48a12,12,0,1,0,17,17Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,ahe,[...r[1]||=[R(`path`,{d:`M232,136v64a8,8,0,0,1-8,8H32a8,8,0,0,1-8-8V136a8,8,0,0,1,8-8H224A8,8,0,0,1,232,136Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M240,136v64a16,16,0,0,1-16,16H32a16,16,0,0,1-16-16V136a16,16,0,0,1,16-16H80a8,8,0,0,1,0,16H32v64H224V136H176a8,8,0,0,1,0-16h48A16,16,0,0,1,240,136ZM85.66,77.66,120,43.31V128a8,8,0,0,0,16,0V43.31l34.34,34.35a8,8,0,0,0,11.32-11.32l-48-48a8,8,0,0,0-11.32,0l-48,48A8,8,0,0,0,85.66,77.66ZM200,168a12,12,0,1,0-12,12A12,12,0,0,0,200,168Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,ohe,[...r[2]||=[R(`path`,{d:`M74.34,77.66a8,8,0,0,1,0-11.32l48-48a8,8,0,0,1,11.32,0l48,48a8,8,0,0,1-11.32,11.32L136,43.31V128a8,8,0,0,1-16,0V43.31L85.66,77.66A8,8,0,0,1,74.34,77.66ZM240,136v64a16,16,0,0,1-16,16H32a16,16,0,0,1-16-16V136a16,16,0,0,1,16-16h68a4,4,0,0,1,4,4v3.46c0,13.45,11,24.79,24.46,24.54A24,24,0,0,0,152,128v-4a4,4,0,0,1,4-4h68A16,16,0,0,1,240,136Zm-40,32a12,12,0,1,0-12,12A12,12,0,0,0,200,168Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,she,[...r[3]||=[R(`path`,{d:`M238,136v64a14,14,0,0,1-14,14H32a14,14,0,0,1-14-14V136a14,14,0,0,1,14-14H80a6,6,0,0,1,0,12H32a2,2,0,0,0-2,2v64a2,2,0,0,0,2,2H224a2,2,0,0,0,2-2V136a2,2,0,0,0-2-2H176a6,6,0,0,1,0-12h48A14,14,0,0,1,238,136ZM84.24,76.24,122,38.49V128a6,6,0,0,0,12,0V38.49l37.76,37.75a6,6,0,0,0,8.48-8.48l-48-48a6,6,0,0,0-8.48,0l-48,48a6,6,0,0,0,8.48,8.48ZM198,168a10,10,0,1,0-10,10A10,10,0,0,0,198,168Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,che,[...r[4]||=[R(`path`,{d:`M240,136v64a16,16,0,0,1-16,16H32a16,16,0,0,1-16-16V136a16,16,0,0,1,16-16H80a8,8,0,0,1,0,16H32v64H224V136H176a8,8,0,0,1,0-16h48A16,16,0,0,1,240,136ZM85.66,77.66,120,43.31V128a8,8,0,0,0,16,0V43.31l34.34,34.35a8,8,0,0,0,11.32-11.32l-48-48a8,8,0,0,0-11.32,0l-48,48A8,8,0,0,0,85.66,77.66ZM200,168a12,12,0,1,0-12,12A12,12,0,0,0,200,168Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,lhe,[...r[5]||=[R(`path`,{d:`M236,136v64a12,12,0,0,1-12,12H32a12,12,0,0,1-12-12V136a12,12,0,0,1,12-12H80a4,4,0,0,1,0,8H32a4,4,0,0,0-4,4v64a4,4,0,0,0,4,4H224a4,4,0,0,0,4-4V136a4,4,0,0,0-4-4H176a4,4,0,0,1,0-8h48A12,12,0,0,1,236,136ZM82.83,74.83,124,33.66V128a4,4,0,0,0,8,0V33.66l41.17,41.17a4,4,0,1,0,5.66-5.66l-48-48a4,4,0,0,0-5.66,0l-48,48a4,4,0,0,0,5.66,5.66ZM196,168a8,8,0,1,0-8,8A8,8,0,0,0,196,168Z`},null,-1)]])):B(``,!0)],16))}})})),fhe,phe=s((()=>{dhe(),fhe=uhe})),mhe,hhe,ghe,_he,vhe,yhe,bhe,xhe=s((()=>{nc(),G(),mhe={key:0},hhe={key:1},ghe={key:2},_he={key:3},vhe={key:4},yhe={key:5},bhe=N({name:`ScalarIconWarning`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,mhe,[...r[0]||=[R(`path`,{d:`M240.26,186.1,152.81,34.23h0a28.74,28.74,0,0,0-49.62,0L15.74,186.1a27.45,27.45,0,0,0,0,27.71A28.31,28.31,0,0,0,40.55,228h174.9a28.31,28.31,0,0,0,24.79-14.19A27.45,27.45,0,0,0,240.26,186.1Zm-20.8,15.7a4.46,4.46,0,0,1-4,2.2H40.55a4.46,4.46,0,0,1-4-2.2,3.56,3.56,0,0,1,0-3.73L124,46.2a4.77,4.77,0,0,1,8,0l87.44,151.87A3.56,3.56,0,0,1,219.46,201.8ZM116,136V104a12,12,0,0,1,24,0v32a12,12,0,0,1-24,0Zm28,40a16,16,0,1,1-16-16A16,16,0,0,1,144,176Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,hhe,[...r[1]||=[R(`path`,{d:`M215.46,216H40.54C27.92,216,20,202.79,26.13,192.09L113.59,40.22c6.3-11,22.52-11,28.82,0l87.46,151.87C236,202.79,228.08,216,215.46,216Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M236.8,188.09,149.35,36.22h0a24.76,24.76,0,0,0-42.7,0L19.2,188.09a23.51,23.51,0,0,0,0,23.72A24.35,24.35,0,0,0,40.55,224h174.9a24.35,24.35,0,0,0,21.33-12.19A23.51,23.51,0,0,0,236.8,188.09ZM222.93,203.8a8.5,8.5,0,0,1-7.48,4.2H40.55a8.5,8.5,0,0,1-7.48-4.2,7.59,7.59,0,0,1,0-7.72L120.52,44.21a8.75,8.75,0,0,1,15,0l87.45,151.87A7.59,7.59,0,0,1,222.93,203.8ZM120,144V104a8,8,0,0,1,16,0v40a8,8,0,0,1-16,0Zm20,36a12,12,0,1,1-12-12A12,12,0,0,1,140,180Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,ghe,[...r[2]||=[R(`path`,{d:`M236.8,188.09,149.35,36.22h0a24.76,24.76,0,0,0-42.7,0L19.2,188.09a23.51,23.51,0,0,0,0,23.72A24.35,24.35,0,0,0,40.55,224h174.9a24.35,24.35,0,0,0,21.33-12.19A23.51,23.51,0,0,0,236.8,188.09ZM120,104a8,8,0,0,1,16,0v40a8,8,0,0,1-16,0Zm8,88a12,12,0,1,1,12-12A12,12,0,0,1,128,192Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,_he,[...r[3]||=[R(`path`,{d:`M235.07,189.09,147.61,37.22h0a22.75,22.75,0,0,0-39.22,0L20.93,189.09a21.53,21.53,0,0,0,0,21.72A22.35,22.35,0,0,0,40.55,222h174.9a22.35,22.35,0,0,0,19.6-11.19A21.53,21.53,0,0,0,235.07,189.09ZM224.66,204.8a10.46,10.46,0,0,1-9.21,5.2H40.55a10.46,10.46,0,0,1-9.21-5.2,9.51,9.51,0,0,1,0-9.72L118.79,43.21a10.75,10.75,0,0,1,18.42,0l87.46,151.87A9.51,9.51,0,0,1,224.66,204.8ZM122,144V104a6,6,0,0,1,12,0v40a6,6,0,0,1-12,0Zm16,36a10,10,0,1,1-10-10A10,10,0,0,1,138,180Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,vhe,[...r[4]||=[R(`path`,{d:`M236.8,188.09,149.35,36.22h0a24.76,24.76,0,0,0-42.7,0L19.2,188.09a23.51,23.51,0,0,0,0,23.72A24.35,24.35,0,0,0,40.55,224h174.9a24.35,24.35,0,0,0,21.33-12.19A23.51,23.51,0,0,0,236.8,188.09ZM222.93,203.8a8.5,8.5,0,0,1-7.48,4.2H40.55a8.5,8.5,0,0,1-7.48-4.2,7.59,7.59,0,0,1,0-7.72L120.52,44.21a8.75,8.75,0,0,1,15,0l87.45,151.87A7.59,7.59,0,0,1,222.93,203.8ZM120,144V104a8,8,0,0,1,16,0v40a8,8,0,0,1-16,0Zm20,36a12,12,0,1,1-12-12A12,12,0,0,1,140,180Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,yhe,[...r[5]||=[R(`path`,{d:`M233.34,190.09,145.88,38.22h0a20.75,20.75,0,0,0-35.76,0L22.66,190.09a19.52,19.52,0,0,0,0,19.71A20.36,20.36,0,0,0,40.54,220H215.46a20.36,20.36,0,0,0,17.86-10.2A19.52,19.52,0,0,0,233.34,190.09ZM226.4,205.8a12.47,12.47,0,0,1-10.94,6.2H40.54a12.47,12.47,0,0,1-10.94-6.2,11.45,11.45,0,0,1,0-11.72L117.05,42.21a12.76,12.76,0,0,1,21.9,0L226.4,194.08A11.45,11.45,0,0,1,226.4,205.8ZM124,144V104a4,4,0,0,1,8,0v40a4,4,0,0,1-8,0Zm12,36a8,8,0,1,1-8-8A8,8,0,0,1,136,180Z`},null,-1)]])):B(``,!0)],16))}})})),She,Che=s((()=>{xhe(),She=bhe})),whe,The,Ehe,Dhe,Ohe,khe,Ahe,jhe=s((()=>{nc(),G(),whe={key:0},The={key:1},Ehe={key:2},Dhe={key:3},Ohe={key:4},khe={key:5},Ahe=N({name:`ScalarIconWarningCircle`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,whe,[...r[0]||=[R(`path`,{d:`M128,20A108,108,0,1,0,236,128,108.12,108.12,0,0,0,128,20Zm0,192a84,84,0,1,1,84-84A84.09,84.09,0,0,1,128,212Zm-12-80V80a12,12,0,0,1,24,0v52a12,12,0,0,1-24,0Zm28,40a16,16,0,1,1-16-16A16,16,0,0,1,144,172Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,The,[...r[1]||=[R(`path`,{d:`M224,128a96,96,0,1,1-96-96A96,96,0,0,1,224,128Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,192a88,88,0,1,1,88-88A88.1,88.1,0,0,1,128,216Zm-8-80V80a8,8,0,0,1,16,0v56a8,8,0,0,1-16,0Zm20,36a12,12,0,1,1-12-12A12,12,0,0,1,140,172Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,Ehe,[...r[2]||=[R(`path`,{d:`M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm-8,56a8,8,0,0,1,16,0v56a8,8,0,0,1-16,0Zm8,104a12,12,0,1,1,12-12A12,12,0,0,1,128,184Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,Dhe,[...r[3]||=[R(`path`,{d:`M128,26A102,102,0,1,0,230,128,102.12,102.12,0,0,0,128,26Zm0,192a90,90,0,1,1,90-90A90.1,90.1,0,0,1,128,218Zm-6-82V80a6,6,0,0,1,12,0v56a6,6,0,0,1-12,0Zm16,36a10,10,0,1,1-10-10A10,10,0,0,1,138,172Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,Ohe,[...r[4]||=[R(`path`,{d:`M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,192a88,88,0,1,1,88-88A88.1,88.1,0,0,1,128,216Zm-8-80V80a8,8,0,0,1,16,0v56a8,8,0,0,1-16,0Zm20,36a12,12,0,1,1-12-12A12,12,0,0,1,140,172Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,khe,[...r[5]||=[R(`path`,{d:`M128,28A100,100,0,1,0,228,128,100.11,100.11,0,0,0,128,28Zm0,192a92,92,0,1,1,92-92A92.1,92.1,0,0,1,128,220Zm-4-84V80a4,4,0,0,1,8,0v56a4,4,0,0,1-8,0Zm12,36a8,8,0,1,1-8-8A8,8,0,0,1,136,172Z`},null,-1)]])):B(``,!0)],16))}})})),Mhe,Nhe=s((()=>{jhe(),Mhe=Ahe})),Phe,Fhe,Ihe,Lhe,Rhe,zhe,Bhe,Vhe=s((()=>{nc(),G(),Phe={key:0},Fhe={key:1},Ihe={key:2},Lhe={key:3},Rhe={key:4},zhe={key:5},Bhe=N({name:`ScalarIconWarningOctagon`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,Phe,[...r[0]||=[R(`path`,{d:`M116,132V80a12,12,0,0,1,24,0v52a12,12,0,0,1-24,0ZM236,91.55v72.9a19.86,19.86,0,0,1-5.86,14.14l-51.55,51.55A19.85,19.85,0,0,1,164.45,236H91.55a19.85,19.85,0,0,1-14.14-5.86L25.86,178.59A19.86,19.86,0,0,1,20,164.45V91.55a19.86,19.86,0,0,1,5.86-14.14L77.41,25.86A19.85,19.85,0,0,1,91.55,20h72.9a19.85,19.85,0,0,1,14.14,5.86l51.55,51.55A19.86,19.86,0,0,1,236,91.55Zm-24,1.66L162.79,44H93.21L44,93.21v69.58L93.21,212h69.58L212,162.79ZM128,156a16,16,0,1,0,16,16A16,16,0,0,0,128,156Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,Fhe,[...r[1]||=[R(`path`,{d:`M224,91.55v72.9a8,8,0,0,1-2.34,5.66l-51.55,51.55a8,8,0,0,1-5.66,2.34H91.55a8,8,0,0,1-5.66-2.34L34.34,170.11A8,8,0,0,1,32,164.45V91.55a8,8,0,0,1,2.34-5.66L85.89,34.34A8,8,0,0,1,91.55,32h72.9a8,8,0,0,1,5.66,2.34l51.55,51.55A8,8,0,0,1,224,91.55Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M120,136V80a8,8,0,0,1,16,0v56a8,8,0,0,1-16,0ZM232,91.55v72.9a15.86,15.86,0,0,1-4.69,11.31l-51.55,51.55A15.86,15.86,0,0,1,164.45,232H91.55a15.86,15.86,0,0,1-11.31-4.69L28.69,175.76A15.86,15.86,0,0,1,24,164.45V91.55a15.86,15.86,0,0,1,4.69-11.31L80.24,28.69A15.86,15.86,0,0,1,91.55,24h72.9a15.86,15.86,0,0,1,11.31,4.69l51.55,51.55A15.86,15.86,0,0,1,232,91.55Zm-16,0L164.45,40H91.55L40,91.55v72.9L91.55,216h72.9L216,164.45ZM128,160a12,12,0,1,0,12,12A12,12,0,0,0,128,160Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,Ihe,[...r[2]||=[R(`path`,{d:`M227.31,80.23,175.77,28.69A16.13,16.13,0,0,0,164.45,24H91.55a16.13,16.13,0,0,0-11.32,4.69L28.69,80.23A16.13,16.13,0,0,0,24,91.55v72.9a16.13,16.13,0,0,0,4.69,11.32l51.54,51.54A16.13,16.13,0,0,0,91.55,232h72.9a16.13,16.13,0,0,0,11.32-4.69l51.54-51.54A16.13,16.13,0,0,0,232,164.45V91.55A16.13,16.13,0,0,0,227.31,80.23ZM120,80a8,8,0,0,1,16,0v56a8,8,0,0,1-16,0Zm8,104a12,12,0,1,1,12-12A12,12,0,0,1,128,184Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,Lhe,[...r[3]||=[R(`path`,{d:`M122,136V80a6,6,0,0,1,12,0v56a6,6,0,0,1-12,0ZM230,91.55v72.9a13.92,13.92,0,0,1-4.1,9.9L174.35,225.9a13.92,13.92,0,0,1-9.9,4.1H91.55a13.92,13.92,0,0,1-9.9-4.1L30.1,174.35a13.92,13.92,0,0,1-4.1-9.9V91.55a13.92,13.92,0,0,1,4.1-9.9L81.65,30.1a13.92,13.92,0,0,1,9.9-4.1h72.9a13.92,13.92,0,0,1,9.9,4.1L225.9,81.65A13.92,13.92,0,0,1,230,91.55Zm-12,0a2,2,0,0,0-.59-1.42L165.87,38.59a2,2,0,0,0-1.42-.59H91.55a2,2,0,0,0-1.41.59L38.58,90.13A2,2,0,0,0,38,91.55v72.9a2,2,0,0,0,.59,1.42l51.54,51.54a2,2,0,0,0,1.42.59h72.9a2,2,0,0,0,1.41-.59l51.56-51.54a2,2,0,0,0,.58-1.42ZM128,162a10,10,0,1,0,10,10A10,10,0,0,0,128,162Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,Rhe,[...r[4]||=[R(`path`,{d:`M120,136V80a8,8,0,0,1,16,0v56a8,8,0,0,1-16,0ZM232,91.55v72.9a15.86,15.86,0,0,1-4.69,11.31l-51.55,51.55A15.86,15.86,0,0,1,164.45,232H91.55a15.86,15.86,0,0,1-11.31-4.69L28.69,175.76A15.86,15.86,0,0,1,24,164.45V91.55a15.86,15.86,0,0,1,4.69-11.31L80.24,28.69A15.86,15.86,0,0,1,91.55,24h72.9a15.86,15.86,0,0,1,11.31,4.69l51.55,51.55A15.86,15.86,0,0,1,232,91.55Zm-16,0L164.45,40H91.55L40,91.55v72.9L91.55,216h72.9L216,164.45ZM128,160a12,12,0,1,0,12,12A12,12,0,0,0,128,160Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,zhe,[...r[5]||=[R(`path`,{d:`M124,136V80a4,4,0,0,1,8,0v56a4,4,0,0,1-8,0ZM228,91.55v72.9a12,12,0,0,1-3.51,8.49l-51.55,51.55a12,12,0,0,1-8.49,3.51H91.55a12,12,0,0,1-8.49-3.51L31.51,172.94A12,12,0,0,1,28,164.45V91.55a12,12,0,0,1,3.51-8.49L83.06,31.51A12,12,0,0,1,91.55,28h72.9a12,12,0,0,1,8.49,3.51l51.55,51.55A12,12,0,0,1,228,91.55Zm-8,0a4,4,0,0,0-1.17-2.83L167.28,37.17A4.06,4.06,0,0,0,164.45,36H91.55a4.06,4.06,0,0,0-2.83,1.17L37.17,88.72A4,4,0,0,0,36,91.55v72.9a4,4,0,0,0,1.17,2.83l51.55,51.55A4.06,4.06,0,0,0,91.55,220h72.9a4.06,4.06,0,0,0,2.83-1.17l51.55-51.55a4,4,0,0,0,1.17-2.83ZM128,164a8,8,0,1,0,8,8A8,8,0,0,0,128,164Z`},null,-1)]])):B(``,!0)],16))}})})),Hhe,Uhe=s((()=>{Vhe(),Hhe=Bhe})),Whe,Ghe,Khe,qhe,Jhe,Yhe,Xhe,Zhe=s((()=>{nc(),G(),Whe={key:0},Ghe={key:1},Khe={key:2},qhe={key:3},Jhe={key:4},Yhe={key:5},Xhe=N({name:`ScalarIconWebhooksLogo`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,Whe,[...r[0]||=[R(`path`,{d:`M192,180H118.71a56,56,0,1,1-104.6-37.46,12,12,0,1,1,21.37,10.92A31.64,31.64,0,0,0,32,168a32,32,0,0,0,64,0,12,12,0,0,1,12-12h84a12,12,0,0,1,0,24Zm0-68a55.9,55.9,0,0,0-18.45,3.12L138.22,57.71a12,12,0,0,0-20.44,12.58l40.94,66.52a12,12,0,0,0,16.52,3.93,32,32,0,1,1,19.68,59.13A12,12,0,0,0,196,223.82a10.05,10.05,0,0,0,1.09,0A56,56,0,0,0,192,112ZM57.71,178.22a12,12,0,0,0,16.51-3.93l40.94-66.52a12,12,0,0,0-3.92-16.51,32,32,0,1,1,45.28-41.8,12,12,0,1,0,21.37-10.92A56,56,0,1,0,89.1,104.32L53.78,161.71A12,12,0,0,0,57.71,178.22Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,Ghe,[...r[1]||=[R(`path`,{d:`M128,104a40,40,0,1,1,40-40A40,40,0,0,1,128,104Zm64,24a40,40,0,1,0,40,40A40,40,0,0,0,192,128ZM64,128a40,40,0,1,0,40,40A40,40,0,0,0,64,128Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M178.16,176H111.32A48,48,0,1,1,25.6,139.19a8,8,0,0,1,12.8,9.61A31.69,31.69,0,0,0,32,168a32,32,0,0,0,64,0,8,8,0,0,1,8-8h74.16a16,16,0,1,1,0,16ZM64,184a16,16,0,0,0,14.08-23.61l35.77-58.14a8,8,0,0,0-2.62-11,32,32,0,1,1,46.1-40.06A8,8,0,1,0,172,44.79a48,48,0,1,0-75.62,55.33L64.44,152c-.15,0-.29,0-.44,0a16,16,0,0,0,0,32Zm128-64a48.18,48.18,0,0,0-18,3.49L142.08,71.6A16,16,0,1,0,128,80l.44,0,35.78,58.15a8,8,0,0,0,11,2.61A32,32,0,1,1,192,200a8,8,0,0,0,0,16,48,48,0,0,0,0-96Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,Khe,[...r[2]||=[R(`path`,{d:`M50.15,160,89.07,92.57l-2.24-3.88a48,48,0,1,1,85.05-44.17,8.17,8.17,0,0,1-3.19,10.4,8,8,0,0,1-11.35-3.72,32,32,0,1,0-56.77,29.3.57.57,0,0,1,.08.13l13.83,23.94a8,8,0,0,1,0,8L77.86,176a16,16,0,0,1-27.71-16Zm141-40H178.81L141.86,56a16,16,0,0,0-27.71,16l34.64,60a8,8,0,0,0,6.92,4h35.63c17.89,0,32.95,14.64,32.66,32.53A32,32,0,0,1,192.31,200a8.23,8.23,0,0,0-8.28,7.33,8,8,0,0,0,8,8.67,48.05,48.05,0,0,0,48-48.93C239.49,140.79,217.48,120,191.19,120ZM208,167.23c-.4-8.61-7.82-15.23-16.43-15.23H114.81a8,8,0,0,0-6.93,4L91.72,184h0a32,32,0,1,1-53.47-35,8.2,8.2,0,0,0-.92-11,8,8,0,0,0-11.72,1.17A47.63,47.63,0,0,0,16,167.54,48,48,0,0,0,105.55,192v0l4.62-8H192A16,16,0,0,0,208,167.23Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,qhe,[...r[3]||=[R(`path`,{d:`M179.37,174H109.6a46,46,0,1,1-82.4-33.61,6,6,0,0,1,9.6,7.21A33.68,33.68,0,0,0,30,168a34,34,0,0,0,68,0,6,6,0,0,1,6-6h75.37a14,14,0,1,1,0,12ZM64,182a14,14,0,0,0,11.73-21.62l36.42-59.18a6,6,0,0,0-2-8.25,34,34,0,1,1,49-42.57,6,6,0,1,0,11-4.79A46,46,0,1,0,99,99.7L65.52,154.08c-.5-.05-1-.08-1.52-.08a14,14,0,0,0,0,28Zm128-60a46,46,0,0,0-18.8,4L139.73,71.61A14,14,0,1,0,128,78a12.79,12.79,0,0,0,1.52-.09l36.4,59.17a6.05,6.05,0,0,0,3.73,2.69,6,6,0,0,0,4.53-.73A34,34,0,1,1,192,202a6,6,0,0,0,0,12,46,46,0,0,0,0-92Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,Jhe,[...r[4]||=[R(`path`,{d:`M178.16,176H111.32A48,48,0,1,1,25.6,139.19a8,8,0,0,1,12.8,9.61A31.69,31.69,0,0,0,32,168a32,32,0,0,0,64,0,8,8,0,0,1,8-8h74.16a16,16,0,1,1,0,16ZM64,184a16,16,0,0,0,14.08-23.61l35.77-58.14a8,8,0,0,0-2.62-11,32,32,0,1,1,46.1-40.06A8,8,0,1,0,172,44.79a48,48,0,1,0-75.62,55.33L64.44,152c-.15,0-.29,0-.44,0a16,16,0,0,0,0,32Zm128-64a48.18,48.18,0,0,0-18,3.49L142.08,71.6A16,16,0,1,0,128,80l.44,0,35.78,58.15a8,8,0,0,0,11,2.61A32,32,0,1,1,192,200a8,8,0,0,0,0,16,48,48,0,0,0,0-96Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,Yhe,[...r[5]||=[R(`path`,{d:`M180.7,172H107.81a44,44,0,1,1-79-30.41,4,4,0,0,1,6.4,4.81A35.67,35.67,0,0,0,28,168a36,36,0,0,0,72,0,4,4,0,0,1,4-4h76.7a12,12,0,1,1,0,8ZM64,180a12,12,0,0,0,9.33-19.54l37.11-60.3a4,4,0,0,0-1.31-5.51A36,36,0,1,1,161,49.58a4,4,0,1,0,7.33-3.19,44,44,0,1,0-66.71,52.83l-35.1,57.05A11.58,11.58,0,0,0,64,156a12,12,0,0,0,0,24Zm128-56a44,44,0,0,0-19.56,4.58l-35.11-57A12,12,0,1,0,128,76a12.24,12.24,0,0,0,2.52-.27L167.63,136a4,4,0,0,0,5.5,1.31A36,36,0,1,1,192,204a4,4,0,0,0,0,8,44,44,0,0,0,0-88Z`},null,-1)]])):B(``,!0)],16))}})})),cl,Qhe=s((()=>{Zhe(),cl=Xhe})),$he,ege,tge,nge,rge,ige,age,oge=s((()=>{nc(),G(),$he={key:0},ege={key:1},tge={key:2},nge={key:3},rge={key:4},ige={key:5},age=N({name:`ScalarIconX`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,$he,[...r[0]||=[R(`path`,{d:`M208.49,191.51a12,12,0,0,1-17,17L128,145,64.49,208.49a12,12,0,0,1-17-17L111,128,47.51,64.49a12,12,0,0,1,17-17L128,111l63.51-63.52a12,12,0,0,1,17,17L145,128Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,ege,[...r[1]||=[R(`path`,{d:`M216,56V200a16,16,0,0,1-16,16H56a16,16,0,0,1-16-16V56A16,16,0,0,1,56,40H200A16,16,0,0,1,216,56Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M205.66,194.34a8,8,0,0,1-11.32,11.32L128,139.31,61.66,205.66a8,8,0,0,1-11.32-11.32L116.69,128,50.34,61.66A8,8,0,0,1,61.66,50.34L128,116.69l66.34-66.35a8,8,0,0,1,11.32,11.32L139.31,128Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,tge,[...r[2]||=[R(`path`,{d:`M208,32H48A16,16,0,0,0,32,48V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V48A16,16,0,0,0,208,32ZM181.66,170.34a8,8,0,0,1-11.32,11.32L128,139.31,85.66,181.66a8,8,0,0,1-11.32-11.32L116.69,128,74.34,85.66A8,8,0,0,1,85.66,74.34L128,116.69l42.34-42.35a8,8,0,0,1,11.32,11.32L139.31,128Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,nge,[...r[3]||=[R(`path`,{d:`M204.24,195.76a6,6,0,1,1-8.48,8.48L128,136.49,60.24,204.24a6,6,0,0,1-8.48-8.48L119.51,128,51.76,60.24a6,6,0,0,1,8.48-8.48L128,119.51l67.76-67.75a6,6,0,0,1,8.48,8.48L136.49,128Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,rge,[...r[4]||=[R(`path`,{d:`M205.66,194.34a8,8,0,0,1-11.32,11.32L128,139.31,61.66,205.66a8,8,0,0,1-11.32-11.32L116.69,128,50.34,61.66A8,8,0,0,1,61.66,50.34L128,116.69l66.34-66.35a8,8,0,0,1,11.32,11.32L139.31,128Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,ige,[...r[5]||=[R(`path`,{d:`M202.83,197.17a4,4,0,0,1-5.66,5.66L128,133.66,58.83,202.83a4,4,0,0,1-5.66-5.66L122.34,128,53.17,58.83a4,4,0,0,1,5.66-5.66L128,122.34l69.17-69.17a4,4,0,1,1,5.66,5.66L133.66,128Z`},null,-1)]])):B(``,!0)],16))}})})),ll,sge=s((()=>{oge(),ll=age})),cge,lge,uge,dge,fge,pge,mge,hge=s((()=>{nc(),G(),cge={key:0},lge={key:1},uge={key:2},dge={key:3},fge={key:4},pge={key:5},mge=N({name:`ScalarIconXCircle`,props:{label:{},weight:{}},setup(e){let{bind:t,weight:n}=tc(e);return(e,r)=>(F(),I(`svg`,V({xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 256 256`,fill:`currentColor`},j(t)),[P(e.$slots,`default`),j(n)===`bold`?(F(),I(`g`,cge,[...r[0]||=[R(`path`,{d:`M168.49,104.49,145,128l23.52,23.51a12,12,0,0,1-17,17L128,145l-23.51,23.52a12,12,0,0,1-17-17L111,128,87.51,104.49a12,12,0,0,1,17-17L128,111l23.51-23.52a12,12,0,0,1,17,17ZM236,128A108,108,0,1,1,128,20,108.12,108.12,0,0,1,236,128Zm-24,0a84,84,0,1,0-84,84A84.09,84.09,0,0,0,212,128Z`},null,-1)]])):j(n)===`duotone`?(F(),I(`g`,lge,[...r[1]||=[R(`path`,{d:`M224,128a96,96,0,1,1-96-96A96,96,0,0,1,224,128Z`,opacity:`0.2`},null,-1),R(`path`,{d:`M165.66,101.66,139.31,128l26.35,26.34a8,8,0,0,1-11.32,11.32L128,139.31l-26.34,26.35a8,8,0,0,1-11.32-11.32L116.69,128,90.34,101.66a8,8,0,0,1,11.32-11.32L128,116.69l26.34-26.35a8,8,0,0,1,11.32,11.32ZM232,128A104,104,0,1,1,128,24,104.11,104.11,0,0,1,232,128Zm-16,0a88,88,0,1,0-88,88A88.1,88.1,0,0,0,216,128Z`},null,-1)]])):j(n)===`fill`?(F(),I(`g`,uge,[...r[2]||=[R(`path`,{d:`M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm37.66,130.34a8,8,0,0,1-11.32,11.32L128,139.31l-26.34,26.35a8,8,0,0,1-11.32-11.32L116.69,128,90.34,101.66a8,8,0,0,1,11.32-11.32L128,116.69l26.34-26.35a8,8,0,0,1,11.32,11.32L139.31,128Z`},null,-1)]])):j(n)===`light`?(F(),I(`g`,dge,[...r[3]||=[R(`path`,{d:`M164.24,100.24,136.48,128l27.76,27.76a6,6,0,1,1-8.48,8.48L128,136.48l-27.76,27.76a6,6,0,0,1-8.48-8.48L119.52,128,91.76,100.24a6,6,0,0,1,8.48-8.48L128,119.52l27.76-27.76a6,6,0,0,1,8.48,8.48ZM230,128A102,102,0,1,1,128,26,102.12,102.12,0,0,1,230,128Zm-12,0a90,90,0,1,0-90,90A90.1,90.1,0,0,0,218,128Z`},null,-1)]])):j(n)===`regular`?(F(),I(`g`,fge,[...r[4]||=[R(`path`,{d:`M165.66,101.66,139.31,128l26.35,26.34a8,8,0,0,1-11.32,11.32L128,139.31l-26.34,26.35a8,8,0,0,1-11.32-11.32L116.69,128,90.34,101.66a8,8,0,0,1,11.32-11.32L128,116.69l26.34-26.35a8,8,0,0,1,11.32,11.32ZM232,128A104,104,0,1,1,128,24,104.11,104.11,0,0,1,232,128Zm-16,0a88,88,0,1,0-88,88A88.1,88.1,0,0,0,216,128Z`},null,-1)]])):j(n)===`thin`?(F(),I(`g`,pge,[...r[5]||=[R(`path`,{d:`M162.83,98.83,133.66,128l29.17,29.17a4,4,0,0,1-5.66,5.66L128,133.66,98.83,162.83a4,4,0,0,1-5.66-5.66L122.34,128,93.17,98.83a4,4,0,0,1,5.66-5.66L128,122.34l29.17-29.17a4,4,0,1,1,5.66,5.66ZM228,128A100,100,0,1,1,128,28,100.11,100.11,0,0,1,228,128Zm-8,0a92,92,0,1,0-92,92A92.1,92.1,0,0,0,220,128Z`},null,-1)]])):B(``,!0)],16))}})})),gge,_ge=s((()=>{hge(),gge=mge})),ul=s((()=>{mse(),Cse(),Mse(),Vse(),Zse(),sce(),gce(),Tce(),Pce(),Wce(),ele(),lle(),yle(),Ole(),Rle(),qle(),rue(),pue(),Cue(),Nue(),Uue(),Que(),sde(),_de(),Dde(),Lde(),qde(),rfe(),dfe(),pfe(),hfe(),_fe(),yfe(),Sfe(),Mfe(),Vfe(),Zfe(),spe(),gpe(),Tpe(),Fpe(),Wpe(),eme(),lme(),yme(),kme(),Rme(),Jme(),rhe(),phe(),Che(),Nhe(),Uhe(),Qhe(),sge(),_ge()})),dl,fl=s((()=>{dl={PROTOCOL:/^(?:https?|ftp|file|mailto|tel|data|wss?)*:\/\//,MULTIPLE_SLASHES:/(?{fl(),pl=e=>!(dl.PROTOCOL.test(e)||/^[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+(\/|$)/.test(e))}));function vge(e){return dl.PROTOCOL.test(e)?e:`http://${e.replace(/^\//,``)}`}var yge=s((()=>{fl()})),hl,gl,_l,vl=s((()=>{fl(),ml(),yge(),hl=(...e)=>{let t={};e.forEach(e=>{let n=Array.from(e.keys());new Set(n).forEach(n=>{let r=e.getAll(n),i=r.length>1?r:r[0]??``;t[n]=i})});let n=new URLSearchParams;return Object.entries(t).forEach(([e,t])=>{Array.isArray(t)?t.forEach(t=>n.append(e,t)):n.append(e,t)}),n},gl=(e,t)=>!t||e===t?e.trim():e?`${e.trim()}/${t.trim()}`.replace(dl.MULTIPLE_SLASHES,`/`):t.trim(),_l=(e,t,n=new URLSearchParams,r=!1)=>{if(e&&(!pl(e)||typeof window<`u`)){let[i=``,a]=(r?e:pl(e)?gl(window.location.origin,e):vge(e)).split(`?`),o=new URLSearchParams(a||``),[s=``,c]=t.split(`?`),l=new URLSearchParams(c||``),u=e===t?i:gl(i,s),d=hl(o,l,n).toString();return d?`${u}?${d}`:u}return t?gl(e,t):``}})),yl,bge=s((()=>{vl(),yl=(e,{baseUrl:t,basePath:n}={})=>{if(typeof window>`u`&&!t)return e;try{return new URL(e),e}catch{}try{let r=t||window.location.href;return n&&(r=gl(t?new URL(t).origin:window.location.origin,n+`/`)),new URL(e,r).toString()}catch{return e}}})),xge,Sge,Cge=s((()=>{G(),ul(),bge(),xge=[`href`],Sge=N({__name:`OpenApiClientButton`,props:{buttonSource:{},source:{default:`api-reference`},isDevelopment:{type:Boolean},integration:{},url:{},operationPath:{},operationMethod:{}},setup(e){let t=W(()=>{let t=e.url??(typeof window<`u`?window.location.href:void 0);if(!t)return;let n=yl(t);if(!n?.length)return;let r=new URL(e.isDevelopment?`http://localhost:5065`:`https://client.scalar.com`);if(r.searchParams.set(`url`,n),e.operationPath?.length&&e.operationMethod?.length&&(r.searchParams.set(`operation_path`,e.operationPath),r.searchParams.set(`operation_method`,e.operationMethod.toLowerCase())),e.integration!==null&&r.searchParams.set(`integration`,e.integration??`vue`),r.searchParams.set(`utm_source`,`api-reference`),r.searchParams.set(`utm_medium`,`button`),r.searchParams.set(`utm_campaign`,e.buttonSource),e.source===`gitbook`){r.searchParams.set(`utm_source`,`gitbook`);let e=document.querySelector(`img.dark\\:block[alt='Logo']`),t=document.querySelector(`img.dark\\:hidden[alt='Logo']`);e&&e instanceof HTMLImageElement&&r.searchParams.set(`dark_logo`,encodeURIComponent(e.src)),t&&t instanceof HTMLImageElement&&r.searchParams.set(`light_logo`,encodeURIComponent(t.src))}return r.toString()});return(e,n)=>t.value?(F(),I(`a`,{key:0,class:`open-api-client-button`,href:t.value,target:`_blank`},[U(j(ic),{class:`size-3`,weight:`regular`}),n[0]||=z(` Open API Client `,-1)],8,xge)):B(``,!0)}})})),bl,wge=s((()=>{ec(),Cge(),bl=$s(Sge,[[`__scopeId`,`data-v-cd067f84`]])})),xl,Tge=s((()=>{xl=e=>`getSetCookie`in e&&typeof e.getSetCookie==`function`?e.getSetCookie():[]})),Sl,Ege,Dge=s((()=>{Sl=(e,t)=>{for(let n of t)if(n.responseBody){for(let t of n.responseBody)if(Ege(e,t.mimeTypes))return t}},Ege=(e,t)=>{let n=e.toLowerCase();for(let e of t){let t=e.toLowerCase();if(t===n)return!0;if(t.includes(`*`)){let e=t.replace(/[.+?^${}()|[\]\\]/g,`\\$&`).replace(/\*/g,`.*`);if(RegExp(`^${e}$`).test(n))return!0}}return!1}})),Cl,Oge,kge,wl,Tl,El=s((()=>{Cl=/^[!#$%&'*+\-.^_`|~A-Za-z0-9]+$/,Oge=e=>`"${e.replaceAll(/(["\\])/g,`\\$1`)}"`,kge=e=>{let t=e.indexOf(`=`);if(t===-1)return null;let n=e.slice(0,t).trim().toLowerCase();if(!n||!Cl.test(n))return null;let r=e.slice(t+1).trim();return r?r.startsWith(`"`)&&r.endsWith(`"`)&&r.length>=2?[n,r.slice(1,-1).replaceAll(/\\(["\\])/g,`$1`)]:[n,r]:null},wl=e=>{let[t=``,n=``]=e.split(`/`,2),r=t.trim().toLowerCase(),i=n.trim().toLowerCase();if(!r||!i||!Cl.test(r)||!Cl.test(i))throw Error(`Invalid MIME type: "${e}"`);return{essence:`${r}/${i}`,type:r,subtype:i}},Tl=(e=`text/plain`)=>{let[t=``,...n]=e.split(`;`),r;try{r=wl(t)}catch{r=wl(`text/plain`)}let{essence:i,type:a,subtype:o}=r,s=new Map;return n.forEach(e=>{let t=kge(e);if(!t)return;let[n,r]=t;s.set(n,r)}),{essence:i,type:a,subtype:o,parameters:s,toString:()=>{let e=Array.from(s.entries()).map(([e,t])=>`${e}=${Cl.test(t)?t:Oge(t)}`);return e.length?`${i}; ${e.join(`; `)}`:i}}}})),Dl,Ol,Age=s((()=>{El(),Dl=e=>e??`text/plain;charset=UTF-8`,Ol=e=>Tl(Dl(e))}));function kl(e){let t=Al[e];if(t)return t;if(e.endsWith(`+json`))return{extension:`.json`,raw:!0,language:`json`,preview:`json`}}function jge(e){return!!kl(e)?.raw}var Al,Mge,jl=s((()=>{Al={"application/epub+zip":{extension:`.epub`},"application/gzip":{extension:`.gz`},"application/java-archive":{extension:`.jar`},"application/javascript":{extension:`.js`,raw:!0},"application/json":{extension:`.json`,raw:!0,language:`json`,preview:`json`},"application/ld+json":{extension:`.jsonld`,raw:!0,language:`json`,preview:`json`},"application/problem+json":{extension:`.json`,raw:!0,language:`json`,preview:`json`},"application/vnd.api+json":{extension:`.json`,raw:!0,language:`json`,preview:`json`},"application/dns-json":{extension:`.json`,raw:!0,language:`json`,preview:`json`},"application/msword":{extension:`.doc`},"application/octet-stream":{extension:`.bin`},"application/ogg":{extension:`.ogx`},"application/pdf":{extension:`.pdf`,preview:`object`},"application/rtf":{extension:`.rtf`,raw:!0},"application/vnd.amazon.ebook":{extension:`.azw`},"application/vnd.apple.installer+xml":{extension:`.mpkg`,raw:!0,language:`xml`},"application/vnd.mozilla.xul+xml":{extension:`.xul`,raw:!0,language:`xml`},"application/vnd.ms-excel":{extension:`.xls`},"application/vnd.ms-fontobject":{extension:`.eot`},"application/vnd.ms-powerpoint":{extension:`.ppt`},"application/vnd.oasis.opendocument.presentation":{extension:`.odp`},"application/vnd.oasis.opendocument.spreadsheet":{extension:`.ods`},"application/vnd.oasis.opendocument.text":{extension:`.odt`},"application/vnd.openxmlformats-officedocument.presentationml.presentation":{extension:`.pptx`},"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet":{extension:`.xlsx`},"application/vnd.openxmlformats-officedocument.wordprocessingml.document":{extension:`.docx`},"application/vnd.rar":{extension:`.rar`},"application/vnd.visio":{extension:`.vsd`},"application/x-7z-compressed":{extension:`.7z`},"application/x-abiword":{extension:`.abw`},"application/x-bzip":{extension:`.bz`},"application/x-bzip2":{extension:`.bz2`},"application/x-cdf":{extension:`.cda`},"application/x-csh":{extension:`.csh`},"application/x-freearc":{extension:`.arc`},"application/x-httpd-php":{extension:`.php`,raw:!0},"application/x-sh":{extension:`.sh`,raw:!0},"application/x-tar":{extension:`.tar`},"application/xhtml+xml":{extension:`.xhtml`,raw:!0,language:`html`},"application/xml":{extension:`.xml`,raw:!0,language:`xml`},"application/yaml":{extension:`.yaml`,raw:!0,language:`yaml`},"application/zip":{extension:`.zip`},"audio/aac":{extension:`.aac`},"audio/midi":{extension:`.midi`},"audio/mpeg":{extension:`.mp3`,preview:`audio`},"audio/ogg":{extension:`.oga`},"audio/wav":{extension:`.wav`},"audio/webm":{extension:`.weba`},"font/otf":{extension:`.otf`},"font/ttf":{extension:`.ttf`},"font/woff":{extension:`.woff`},"font/woff2":{extension:`.woff2`},"image/apng":{extension:`.apng`,preview:`image`,alpha:!0},"image/avif":{extension:`.avif`,preview:`image`},"image/bmp":{extension:`.bmp`,preview:`image`},"image/gif":{extension:`.gif`,preview:`image`,alpha:!0},"image/jpeg":{extension:`.jpg`,preview:`image`},"image/png":{extension:`.png`,preview:`image`,alpha:!0},"image/svg+xml":{extension:`.svg`,raw:!0,language:`xml`,preview:`image`,alpha:!0},"image/tiff":{extension:`.tiff`},"image/vnd.microsoft.icon":{extension:`.ico`,preview:`image`},"image/webp":{extension:`.webp`,preview:`image`,alpha:!0},"text/calendar":{extension:`.ics`,raw:!0},"text/css":{extension:`.css`,raw:!0,language:`css`},"text/csv":{extension:`.csv`,raw:!0},"text/html":{extension:`.html`,raw:!0,language:`html`,preview:`object`},"text/javascript":{extension:`.js`,raw:!0},"text/json":{extension:`.json`,raw:!0,language:`json`,preview:`json`},"text/plain":{extension:`.txt`,raw:!0},"text/xml":{extension:`.xml`,raw:!0,language:`xml`},"text/yaml":{extension:`.yaml`,raw:!0,language:`yaml`},"video/3gpp":{extension:`.3gp`},"audio/3gpp":{extension:`.3gp`},"video/3gpp2":{extension:`.3g2`},"audio/3gpp2":{extension:`.3g2`},"video/mp2t":{extension:`.ts`},"video/mp4":{extension:`.mp4`,preview:`video`},"video/mpeg":{extension:`.mpeg`},"video/ogg":{extension:`.ogv`},"video/webm":{extension:`.webm`,preview:`video`},"video/x-msvideo":{extension:`.avi`}},Mge=Object.entries(Al).filter(([,e])=>e?.raw).map(([e])=>e)})),Nge,Pge=s((()=>{jl(),El(),Nge=async(e,t,n)=>{let r=Tl(t);return n?.decode?await n.decode(e,t):jge(r.essence)?new TextDecoder(r.parameters.get(`charset`)).decode(e):new Blob([e],{type:r.essence})}})),Ml,Nl,Fge,Ige=s((()=>{Ml={BUILDING_REQUEST_FAILED:`An error occurred while building the request`,DEFAULT:`An unknown error has occurred.`,INVALID_URL:`The URL seems to be invalid. Try adding a valid URL.`,INVALID_URL_PROTOCOL:`The URL must start with http:// or https://.`,INVALID_HEADER:`There is an invalid header present, please double check your params.`,MISSING_FILE:`File uploads are not saved in history, you must re-upload the file.`,REQUEST_ABORTED:`The request has been cancelled`,REQUEST_FAILED:`An error occurred while making the request`,URL_EMPTY:`The address bar input seems to be empty. Try adding a URL.`,ON_BEFORE_REQUEST_FAILED:`onBeforeRequest request hook failed`},Nl=e=>e===`Failed to execute 'append' on 'FormData': parameter 2 is not of type 'Blob'.`?Ml.MISSING_FILE:e===`Failed to construct 'URL': Invalid URL`?Ml.INVALID_URL:e.includes(`Invalid URL protocol`)?Ml.INVALID_URL_PROTOCOL:e===`Failed to execute 'fetch' on 'Window': Invalid name`?Ml.INVALID_HEADER:e,Fge=(e,t=Ml.DEFAULT)=>(console.error(e),e instanceof Error?(e.message=Nl(e.message),e):Error(typeof e==`string`?Nl(e):t))})),Pl,Fl=s((()=>{Pl=()=>typeof window<`u`&&`electron`in window})),Lge,Il,Ll,Rl=s((()=>{Fl(),Lge=new Set([`post`,`put`,`patch`,`delete`]),Il=(e,t=!1)=>{let n=e.toLowerCase();return Pl()&&!t?!0:Lge.has(n)},Ll=(e,t)=>new Request(e,{...t,body:Il(t.method??`GET`,!0)?t.body:null})})),zl,Bl=s((()=>{zl={100:{name:`Continue`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/100`,color:`var(--scalar-color-blue)`},101:{name:`Switching Protocols`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/101`,color:`var(--scalar-color-blue)`},102:{name:`Processing`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/102`,color:`var(--scalar-color-blue)`},103:{name:`Early Hints`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/103`,color:`var(--scalar-color-blue)`},200:{name:`OK`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/200`,color:`var(--scalar-color-green)`},201:{name:`Created`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/201`,color:`var(--scalar-color-green)`},202:{name:`Accepted`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/202`,color:`var(--scalar-color-green)`},203:{name:`Non-Authoritative Information`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/203`,color:`var(--scalar-color-green)`},204:{name:`No Content`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/204`,color:`var(--scalar-color-green)`},205:{name:`Reset Content`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/205`,color:`var(--scalar-color-green)`},206:{name:`Partial Content`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/206`,color:`var(--scalar-color-green)`},207:{name:`Multi-Status`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/207`,color:`var(--scalar-color-green)`},208:{name:`Already Reported`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/208`,color:`var(--scalar-color-green)`},226:{name:`IM Used`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/226`,color:`var(--scalar-color-green)`},300:{name:`Multiple Choices`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/300`,color:`var(--scalar-color-yellow)`},301:{name:`Moved Permanently`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/301`,color:`var(--scalar-color-yellow)`},302:{name:`Found`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/302`,color:`var(--scalar-color-yellow)`},303:{name:`See Other`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/303`,color:`var(--scalar-color-yellow)`},304:{name:`Not Modified`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/304`,color:`var(--scalar-color-yellow)`},305:{name:`Use Proxy`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/305`,color:`var(--scalar-color-yellow)`},306:{name:`(Unused)`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/306`,color:`var(--scalar-color-yellow)`},307:{name:`Temporary Redirect`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/307`,color:`var(--scalar-color-yellow)`},308:{name:`Permanent Redirect`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/308`,color:`var(--scalar-color-yellow)`},400:{name:`Bad Request`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/400`,color:`var(--scalar-color-red)`},401:{name:`Unauthorized`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/401`,color:`var(--scalar-color-red)`},402:{name:`Payment Required`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/402`,color:`var(--scalar-color-red)`},403:{name:`Forbidden`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/403`,color:`var(--scalar-color-red)`},404:{name:`Not Found`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/404`,color:`var(--scalar-color-red)`},405:{name:`Method Not Allowed`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/405`,color:`var(--scalar-color-red)`},406:{name:`Not Acceptable`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/406`,color:`var(--scalar-color-red)`},407:{name:`Proxy Authentication Required`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/407`,color:`var(--scalar-color-red)`},408:{name:`Request Timeout`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/408`,color:`var(--scalar-color-red)`},409:{name:`Conflict`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/409`,color:`var(--scalar-color-red)`},410:{name:`Gone`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/410`,color:`var(--scalar-color-red)`},411:{name:`Length Required`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/411`,color:`var(--scalar-color-red)`},412:{name:`Precondition Failed`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/412`,color:`var(--scalar-color-red)`},413:{name:`Content Too Large`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/413`,color:`var(--scalar-color-red)`},414:{name:`URI Too Long`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/414`,color:`var(--scalar-color-red)`},415:{name:`Unsupported Media Type`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/415`,color:`var(--scalar-color-red)`},416:{name:`Range Not Satisfiable`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/416`,color:`var(--scalar-color-red)`},417:{name:`Expectation Failed`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/417`,color:`var(--scalar-color-red)`},418:{name:`I'm a teapot`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/418`,color:`var(--scalar-color-red)`},421:{name:`Misdirected Request`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/421`,color:`var(--scalar-color-red)`},422:{name:`Unprocessable Content`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/422`,color:`var(--scalar-color-red)`},423:{name:`Locked`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/423`,color:`var(--scalar-color-red)`},424:{name:`Failed Dependency`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/424`,color:`var(--scalar-color-red)`},425:{name:`Too Early`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/425`,color:`var(--scalar-color-red)`},426:{name:`Upgrade Required`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/426`,color:`var(--scalar-color-red)`},428:{name:`Precondition Required`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/428`,color:`var(--scalar-color-red)`},429:{name:`Too Many Requests`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/429`,color:`var(--scalar-color-red)`},431:{name:`Request Header Fields Too Large`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/431`,color:`var(--scalar-color-red)`},451:{name:`Unavailable For Legal Reasons`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/451`,color:`var(--scalar-color-red)`},500:{name:`Internal Server Error`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/500`,color:`var(--scalar-color-red)`},501:{name:`Not Implemented`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/501`,color:`var(--scalar-color-red)`},502:{name:`Bad Gateway`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/502`,color:`var(--scalar-color-red)`},503:{name:`Service Unavailable`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/503`,color:`var(--scalar-color-red)`},504:{name:`Gateway Timeout`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/504`,color:`var(--scalar-color-red)`},505:{name:`HTTP Version Not Supported`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/505`,color:`var(--scalar-color-red)`},506:{name:`Variant Also Negotiates`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/506`,color:`var(--scalar-color-red)`},507:{name:`Insufficient Storage`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/507`,color:`var(--scalar-color-red)`},508:{name:`Loop Detected`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/508`,color:`var(--scalar-color-red)`},510:{name:`Not Extended`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/510`,color:`var(--scalar-color-red)`},511:{name:`Network Authentication Required`,url:`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/511`,color:`var(--scalar-color-red)`}}})),Rge,zge,Bge,Vge,Hge,Uge,Vl=s((()=>{Rge=`x-scalar-cookie`,zge=`x-scalar-set-cookie`,Bge=`x-scalar-user-agent`,Vge=`x-scalar-date`,Hge=`x-scalar-dnt`,Uge=`x-scalar-referer`})),Wge,Gge,Kge=s((()=>{Vl(),Wge=(e,t=!1)=>{let n=Object.fromEntries(e);t&&[`Access-Control-Allow-Credentials`,`Access-Control-Allow-Headers`,`Access-Control-Allow-Methods`,`Access-Control-Allow-Origin`,`Access-Control-Expose-Headers`].map(e=>e.toLowerCase()).forEach(e=>delete n[e]),delete n[zge];let r=Object.keys(n).find(e=>e.toLowerCase()===`x-scalar-modified-headers`),i=r?n[r]?.toString().split(`, `)?.map(e=>e.toLowerCase())??[]:[];return Object.keys(n).forEach(e=>{i.includes(e.toLowerCase())&&delete n[e]}),r&&delete n[r],Object.keys(n).forEach(e=>{let t=/^x-scalar-original-/i;if(t.test(e)){let r=e.replace(t,``);n[e]&&(n[r]=n[e],delete n[e])}}),Object.keys(n).forEach(e=>{let t=Gge(e);e!==t&&n[e]&&(n[t]=n[e],delete n[e])}),Object.fromEntries(Object.entries(n).sort(([e],[t])=>e.localeCompare(t)))},Gge=e=>e.split(`-`).map(e=>e.charAt(0).toUpperCase()+e.toLowerCase().slice(1)).join(`-`)})),qge,Jge,Yge,Xge,Zge,Qge=s((()=>{qge=/^[!-:<>-~]+$/,Jge=/^[!-:<-~]*$/,Yge=/^([.]?[a-z0-9]([a-z0-9-]{0,61}[a-z0-9])?)([.][a-z0-9]([a-z0-9-]{0,61}[a-z0-9])?)*$/i,Xge=/^[ -:=-~]*$/,Zge=(e,t,n={})=>{if(!qge.test(e))throw TypeError(`argument name is invalid: ${e}`);if(!Jge.test(t))throw TypeError(`argument val is invalid: ${t}`);let r=`${e}=${t}`;if(n.maxAge!==void 0){if(!Number.isInteger(n.maxAge))throw TypeError(`option maxAge is invalid: ${n.maxAge}`);r+=`; Max-Age=${n.maxAge}`}if(n.domain){if(!Yge.test(n.domain))throw TypeError(`option domain is invalid: ${n.domain}`);r+=`; Domain=${n.domain}`}if(n.path){if(!Xge.test(n.path))throw TypeError(`option path is invalid: ${n.path}`);r+=`; Path=${n.path}`}if(n.expires){if(!(n.expires instanceof Date)||!Number.isFinite(n.expires.valueOf()))throw TypeError(`option expires is invalid: ${n.expires}`);r+=`; Expires=${n.expires.toUTCString()}`}if(n.httpOnly&&(r+=`; HttpOnly`),n.secure&&(r+=`; Secure`),n.partitioned&&(r+=`; Partitioned`),n.priority)switch(typeof n.priority==`string`?n.priority.toLowerCase():void 0){case`low`:r+=`; Priority=Low`;break;case`medium`:r+=`; Priority=Medium`;break;case`high`:r+=`; Priority=High`;break;default:throw TypeError(`option priority is invalid: ${n.priority}`)}if(n.sameSite)switch(typeof n.sameSite==`string`?n.sameSite.toLowerCase():n.sameSite){case!0:case`strict`:r+=`; SameSite=Strict`;break;case`lax`:r+=`; SameSite=Lax`;break;case`none`:r+=`; SameSite=None`;break;default:throw TypeError(`option sameSite is invalid: ${n.sameSite}`)}return r}}));function Hl(e){return typeof e!=`string`||e in{}}function Ul(){return Object.create(null)}function $ge(e){return typeof e==`string`&&!!e.trim()}function Wl(e,t){var n=e.split(`;`).filter($ge),r=e_e(n.shift()),i=r.name,a=r.value;if(t=t?Object.assign({},Kl,t):Kl,Hl(i))return null;try{a=t.decodeValues?decodeURIComponent(a):a}catch(e){console.error(`set-cookie-parser: failed to decode cookie value. Set options.decodeValues=false to disable decoding.`,e)}var o=Ul();return o.name=i,o.value=a,n.forEach(function(e){var t=e.split(`=`),n=t.shift().trimLeft().toLowerCase();if(!Hl(n)){var r=t.join(`=`);if(n===`expires`)o.expires=new Date(r);else if(n===`max-age`){var i=parseInt(r,10);Number.isNaN(i)||(o.maxAge=i)}else n===`secure`?o.secure=!0:n===`httponly`?o.httpOnly=!0:n===`samesite`?o.sameSite=r:n===`partitioned`?o.partitioned=!0:n&&(o[n]=r)}}),o}function e_e(e){var t=``,n=``,r=e.split(`=`);return r.length>1?(t=r.shift(),n=r.join(`=`)):n=e,{name:t,value:n}}function Gl(e,t){if(t=t?Object.assign({},Kl,t):Kl,!e)return t.map?Ul():[];if(e.headers)if(typeof e.headers.getSetCookie==`function`)e=e.headers.getSetCookie();else if(e.headers[`set-cookie`])e=e.headers[`set-cookie`];else{var n=e.headers[Object.keys(e.headers).find(function(e){return e.toLowerCase()===`set-cookie`})];!n&&e.headers.cookie&&!t.silent&&console.warn(`Warning: set-cookie-parser appears to have been called on a request object. It is designed to parse Set-Cookie headers from responses, not Cookie headers from requests. Set the option {silent: true} to suppress this warning.`),e=n}var r=t.split,i=Array.isArray(e);if(r===`auto`&&(r=!i),i||(e=[e]),e=e.filter($ge),r&&(e=e.map(t_e).flat()),t.map){var a=Ul();return e.reduce(function(e,n){var r=Wl(n,t);return r&&!Hl(r.name)&&(e[r.name]=r),e},a)}else return e.map(function(e){return Wl(e,t)}).filter(Boolean)}function t_e(e){if(Array.isArray(e))return e;if(typeof e!=`string`)return[];var t=[],n=0,r,i,a,o,s;function c(){for(;n=e.length)&&t.push(e.substring(r,e.length))}return t}var Kl,n_e=s((()=>{Kl={decodeValues:!0,map:!1,silent:!1,split:`auto`},Gl.parseSetCookie=Gl,Gl.parse=Gl,Gl.parseString=Wl,Gl.splitCookiesString=t_e})),r_e,i_e,ql,a_e,o_e,s_e=s((()=>{Tge(),Dge(),Age(),Pge(),Ige(),Fl(),Rl(),Bl(),Kge(),Vl(),Qge(),n_e(),r_e=[204,205,304],i_e=async({isUsingProxy:e,requestPayload:t,request:n,plugins:r=[],customFetch:i=fetch})=>{try{let a=performance.now(),o=Pl()?await i(...t):await i(n??Ll(...t)),s=performance.now(),c=Date.now(),l=s-a,u=o.headers.get(`content-type`),d=Wge(o.headers,e),f=new URL(o.url),p=f.pathname+f.search,m=o.statusText||zl[o.status]?.name||``,h=t[1].method??`GET`,g=r_e.includes(o.status);return u?.startsWith(`text/event-stream`)&&o.body?a_e({response:o,requestPayload:t,timestamp:c,duration:l,responseHeaders:d,statusText:m,method:h,fullPath:p}):o_e({response:o,requestPayload:t,timestamp:c,duration:l,responseHeaders:d,statusText:m,method:h,fullPath:p,contentType:u,shouldSkipBody:g,plugins:r})}catch(e){return[Fge(e,Ml.REQUEST_FAILED),null]}},ql=e=>{let t=Gl(e.headers.get(`x-scalar-set-cookie`)??``).map(e=>Zge(e.name,e.value,{...e,sameSite:e.sameSite}));return t.length?t:null},a_e=({response:e,requestPayload:t,timestamp:n,duration:r,responseHeaders:i,statusText:a,method:o,fullPath:s})=>{let c=new Response(null,{status:e.status,statusText:a,headers:e.headers}),l=ql(c)??xl(c.headers);return[null,{timestamp:n,requestPayload:t,response:{...c,headers:i,cookieHeaderKeys:l,reader:e.body.getReader(),duration:r,method:o,path:s},originalResponse:c.clone()}]},o_e=async({response:e,requestPayload:t,timestamp:n,duration:r,responseHeaders:i,statusText:a,method:o,fullPath:s,contentType:c,shouldSkipBody:l,plugins:u})=>{let d=await e.clone().arrayBuffer(),f=Dl(c),p=Ol(c).essence,m=await Nge(d,f,Sl(p,u)),h=new Response(l?null:d,{status:e.status,statusText:a,headers:e.headers}),g=ql(h)??xl(h.headers);return[null,{timestamp:n,requestPayload:t,response:{...h,headers:i,cookieHeaderKeys:g,data:m,size:d.byteLength,duration:r,method:o,status:e.status,path:s},originalResponse:e.clone()}]}}));function c_e(e){var t,n,r=``;if(typeof e==`string`||typeof e==`number`)r+=e;else if(typeof e==`object`)if(Array.isArray(e)){var i=e.length;for(t=0;t{})),Yl,Xl,u_e,d_e,f_e,p_e=s((()=>{l_e(),Yl=e=>typeof e==`boolean`?`${e}`:e===0?`0`:e,Xl=e=>{let t=function(){for(var t=arguments.length,n=Array(t),r=0;r{let r=Object.fromEntries(Object.entries(e||{}).filter(e=>{let[t]=e;return![`class`,`className`].includes(t)}));return t(n.map(e=>e(r)),e?.class,e?.className)}},cva:e=>n=>{if(e?.variants==null)return t(e?.base,n?.class,n?.className);let{variants:r,defaultVariants:i}=e,a=Object.keys(r).map(e=>{let t=n?.[e],a=i?.[e],o=Yl(t)||Yl(a);return r[e][o]}),o={...i,...n&&Object.entries(n).reduce((e,t)=>{let[n,r]=t;return r===void 0?e:{...e,[n]:r}},{})},s=e?.compoundVariants?.reduce((e,t)=>{let{class:n,className:r,...i}=t;return Object.entries(i).every(e=>{let[t,n]=e,r=o[t];return Array.isArray(n)?n.includes(r):r===n})?[...e,n,r]:e},[]);return t(e?.base,a,s,n?.class,n?.className)},cx:t}},{compose:u_e,cva:d_e,cx:f_e}=Xl()})),m_e,h_e,Zl,Ql,$l,g_e,__e,eu,v_e,y_e,b_e,tu,x_e,S_e,C_e,w_e,nu,T_e,E_e,ru,iu,D_e,au,O_e,k_e,A_e,j_e,M_e,N_e,ou,su,P_e,cu,lu,uu,F_e,I_e,L_e,R_e,z_e,B_e,du,fu,pu,mu,hu,gu,V_e,_u,H_e,U_e,W_e,G_e,vu,yu,bu,K_e,q_e,xu,J_e,Su,Cu,wu,Y_e,Tu,X_e,Z_e,Eu,Q_e,Du,Ou,ku,Au,ju,Mu,$_e,Nu,Pu,Fu,Iu,eve,Lu,Ru,zu,Bu,tve,nve=s((()=>{m_e=(e,t)=>{let n=Array(e.length+t.length);for(let t=0;t({classGroupId:e,validator:t}),Zl=(e=new Map,t=null,n)=>({nextPart:e,validators:t,classGroupId:n}),Ql=`-`,$l=[],g_e=`arbitrary..`,__e=e=>{let t=y_e(e),{conflictingClassGroups:n,conflictingClassGroupModifiers:r}=e;return{getClassGroupId:e=>{if(e.startsWith(`[`)&&e.endsWith(`]`))return v_e(e);let n=e.split(Ql),r=+(n[0]===``&&n.length>1);return eu(n,r,t)},getConflictingClassGroupIds:(e,t)=>{if(t){let t=r[e],i=n[e];return t?i?m_e(i,t):t:i||$l}return n[e]||$l}}},eu=(e,t,n)=>{if(e.length-t===0)return n.classGroupId;let r=e[t],i=n.nextPart.get(r);if(i){let n=eu(e,t+1,i);if(n)return n}let a=n.validators;if(a===null)return;let o=t===0?e.join(Ql):e.slice(t).join(Ql),s=a.length;for(let e=0;ee.slice(1,-1).indexOf(`:`)===-1?void 0:(()=>{let t=e.slice(1,-1),n=t.indexOf(`:`),r=t.slice(0,n);return r?g_e+r:void 0})(),y_e=e=>{let{theme:t,classGroups:n}=e;return b_e(n,t)},b_e=(e,t)=>{let n=Zl();for(let r in e){let i=e[r];tu(i,n,r,t)}return n},tu=(e,t,n,r)=>{let i=e.length;for(let a=0;a{if(typeof e==`string`){S_e(e,t,n);return}if(typeof e==`function`){C_e(e,t,n,r);return}w_e(e,t,n,r)},S_e=(e,t,n)=>{let r=e===``?t:nu(t,e);r.classGroupId=n},C_e=(e,t,n,r)=>{if(T_e(e)){tu(e(r),t,n,r);return}t.validators===null&&(t.validators=[]),t.validators.push(h_e(n,e))},w_e=(e,t,n,r)=>{let i=Object.entries(e),a=i.length;for(let e=0;e{let n=e,r=t.split(Ql),i=r.length;for(let e=0;e`isThemeGetter`in e&&e.isThemeGetter===!0,E_e=e=>{if(e<1)return{get:()=>void 0,set:()=>{}};let t=0,n=Object.create(null),r=Object.create(null),i=(i,a)=>{n[i]=a,t++,t>e&&(t=0,r=n,n=Object.create(null))};return{get(e){let t=n[e];if(t!==void 0)return t;if((t=r[e])!==void 0)return i(e,t),t},set(e,t){e in n?n[e]=t:i(e,t)}}},ru=`!`,iu=`:`,D_e=[],au=(e,t,n,r,i)=>({modifiers:e,hasImportantModifier:t,baseClassName:n,maybePostfixModifierPosition:r,isExternal:i}),O_e=e=>{let{prefix:t,experimentalParseClassName:n}=e,r=e=>{let t=[],n=0,r=0,i=0,a,o=e.length;for(let s=0;si?a-i:void 0;return au(t,l,c,u)};if(t){let e=t+iu,n=r;r=t=>t.startsWith(e)?n(t.slice(e.length)):au(D_e,!1,t,void 0,!0)}if(n){let e=r;r=t=>n({className:t,parseClassName:e})}return r},k_e=e=>{let t=new Map;return e.orderSensitiveModifiers.forEach((e,n)=>{t.set(e,1e6+n)}),e=>{let n=[],r=[];for(let i=0;i0&&(r.sort(),n.push(...r),r=[]),n.push(a)):r.push(a)}return r.length>0&&(r.sort(),n.push(...r)),n}},A_e=e=>({cache:E_e(e.cacheSize),parseClassName:O_e(e),sortModifiers:k_e(e),...__e(e)}),j_e=/\s+/,M_e=(e,t)=>{let{parseClassName:n,getClassGroupId:r,getConflictingClassGroupIds:i,sortModifiers:a}=t,o=[],s=e.trim().split(j_e),c=``;for(let e=s.length-1;e>=0;--e){let t=s[e],{isExternal:l,modifiers:u,hasImportantModifier:d,baseClassName:f,maybePostfixModifierPosition:p}=n(t);if(l){c=t+(c.length>0?` `+c:c);continue}let m=!!p,h=r(m?f.substring(0,p):f);if(!h){if(!m){c=t+(c.length>0?` `+c:c);continue}if(h=r(f),!h){c=t+(c.length>0?` `+c:c);continue}m=!1}let g=u.length===0?``:u.length===1?u[0]:a(u).join(`:`),_=d?g+ru:g,v=_+h;if(o.indexOf(v)>-1)continue;o.push(v);let y=i(h,m);for(let e=0;e0?` `+c:c)}return c},N_e=(...e)=>{let t=0,n,r,i=``;for(;t{if(typeof e==`string`)return e;let t,n=``;for(let r=0;r{let n,r,i,a,o=o=>{let c=t.reduce((e,t)=>t(e),e());return n=A_e(c),r=n.cache.get,i=n.cache.set,a=s,s(o)},s=e=>{let t=r(e);if(t)return t;let a=M_e(e,n);return i(e,a),a};return a=o,(...e)=>a(N_e(...e))},P_e=[],cu=e=>{let t=t=>t[e]||P_e;return t.isThemeGetter=!0,t},lu=/^\[(?:(\w[\w-]*):)?(.+)\]$/i,uu=/^\((?:(\w[\w-]*):)?(.+)\)$/i,F_e=/^\d+(?:\.\d+)?\/\d+(?:\.\d+)?$/,I_e=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,L_e=/\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/,R_e=/^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/,z_e=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,B_e=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,du=e=>F_e.test(e),fu=e=>!!e&&!Number.isNaN(Number(e)),pu=e=>!!e&&Number.isInteger(Number(e)),mu=e=>e.endsWith(`%`)&&fu(e.slice(0,-1)),hu=e=>I_e.test(e),gu=()=>!0,V_e=e=>L_e.test(e)&&!R_e.test(e),_u=()=>!1,H_e=e=>z_e.test(e),U_e=e=>B_e.test(e),W_e=e=>!vu(e)&&!Cu(e),G_e=e=>Du(e,ju,_u),vu=e=>lu.test(e),yu=e=>Du(e,Mu,V_e),bu=e=>Du(e,$_e,fu),K_e=e=>Du(e,Pu,gu),q_e=e=>Du(e,Nu,_u),xu=e=>Du(e,ku,_u),J_e=e=>Du(e,Au,U_e),Su=e=>Du(e,Fu,H_e),Cu=e=>uu.test(e),wu=e=>Ou(e,Mu),Y_e=e=>Ou(e,Nu),Tu=e=>Ou(e,ku),X_e=e=>Ou(e,ju),Z_e=e=>Ou(e,Au),Eu=e=>Ou(e,Fu,!0),Q_e=e=>Ou(e,Pu,!0),Du=(e,t,n)=>{let r=lu.exec(e);return r?r[1]?t(r[1]):n(r[2]):!1},Ou=(e,t,n=!1)=>{let r=uu.exec(e);return r?r[1]?t(r[1]):n:!1},ku=e=>e===`position`||e===`percentage`,Au=e=>e===`image`||e===`url`,ju=e=>e===`length`||e===`size`||e===`bg-size`,Mu=e=>e===`length`,$_e=e=>e===`number`,Nu=e=>e===`family-name`,Pu=e=>e===`number`||e===`weight`,Fu=e=>e===`shadow`,Iu=()=>{let e=cu(`color`),t=cu(`font`),n=cu(`text`),r=cu(`font-weight`),i=cu(`tracking`),a=cu(`leading`),o=cu(`breakpoint`),s=cu(`container`),c=cu(`spacing`),l=cu(`radius`),u=cu(`shadow`),d=cu(`inset-shadow`),f=cu(`text-shadow`),p=cu(`drop-shadow`),m=cu(`blur`),h=cu(`perspective`),g=cu(`aspect`),_=cu(`ease`),v=cu(`animate`),y=()=>[`auto`,`avoid`,`all`,`avoid-page`,`page`,`left`,`right`,`column`],b=()=>[`center`,`top`,`bottom`,`left`,`right`,`top-left`,`left-top`,`top-right`,`right-top`,`bottom-right`,`right-bottom`,`bottom-left`,`left-bottom`],ee=()=>[...b(),Cu,vu],te=()=>[`auto`,`hidden`,`clip`,`visible`,`scroll`],ne=()=>[`auto`,`contain`,`none`],x=()=>[Cu,vu,c],re=()=>[du,`full`,`auto`,...x()],ie=()=>[pu,`none`,`subgrid`,Cu,vu],ae=()=>[`auto`,{span:[`full`,pu,Cu,vu]},pu,Cu,vu],oe=()=>[pu,`auto`,Cu,vu],S=()=>[`auto`,`min`,`max`,`fr`,Cu,vu],C=()=>[`start`,`end`,`center`,`between`,`around`,`evenly`,`stretch`,`baseline`,`center-safe`,`end-safe`],se=()=>[`start`,`end`,`center`,`stretch`,`center-safe`,`end-safe`],ce=()=>[`auto`,...x()],le=()=>[du,`auto`,`full`,`dvw`,`dvh`,`lvw`,`lvh`,`svw`,`svh`,`min`,`max`,`fit`,...x()],ue=()=>[du,`screen`,`full`,`dvw`,`lvw`,`svw`,`min`,`max`,`fit`,...x()],de=()=>[du,`screen`,`full`,`lh`,`dvh`,`lvh`,`svh`,`min`,`max`,`fit`,...x()],w=()=>[e,Cu,vu],T=()=>[...b(),Tu,xu,{position:[Cu,vu]}],fe=()=>[`no-repeat`,{repeat:[``,`x`,`y`,`space`,`round`]}],pe=()=>[`auto`,`cover`,`contain`,X_e,G_e,{size:[Cu,vu]}],E=()=>[mu,wu,yu],D=()=>[``,`none`,`full`,l,Cu,vu],me=()=>[``,fu,wu,yu],he=()=>[`solid`,`dashed`,`dotted`,`double`],ge=()=>[`normal`,`multiply`,`screen`,`overlay`,`darken`,`lighten`,`color-dodge`,`color-burn`,`hard-light`,`soft-light`,`difference`,`exclusion`,`hue`,`saturation`,`color`,`luminosity`],_e=()=>[fu,mu,Tu,xu],ve=()=>[``,`none`,m,Cu,vu],ye=()=>[`none`,fu,Cu,vu],be=()=>[`none`,fu,Cu,vu],xe=()=>[fu,Cu,vu],Se=()=>[du,`full`,...x()];return{cacheSize:500,theme:{animate:[`spin`,`ping`,`pulse`,`bounce`],aspect:[`video`],blur:[hu],breakpoint:[hu],color:[gu],container:[hu],"drop-shadow":[hu],ease:[`in`,`out`,`in-out`],font:[W_e],"font-weight":[`thin`,`extralight`,`light`,`normal`,`medium`,`semibold`,`bold`,`extrabold`,`black`],"inset-shadow":[hu],leading:[`none`,`tight`,`snug`,`normal`,`relaxed`,`loose`],perspective:[`dramatic`,`near`,`normal`,`midrange`,`distant`,`none`],radius:[hu],shadow:[hu],spacing:[`px`,fu],text:[hu],"text-shadow":[hu],tracking:[`tighter`,`tight`,`normal`,`wide`,`wider`,`widest`]},classGroups:{aspect:[{aspect:[`auto`,`square`,du,vu,Cu,g]}],container:[`container`],columns:[{columns:[fu,vu,Cu,s]}],"break-after":[{"break-after":y()}],"break-before":[{"break-before":y()}],"break-inside":[{"break-inside":[`auto`,`avoid`,`avoid-page`,`avoid-column`]}],"box-decoration":[{"box-decoration":[`slice`,`clone`]}],box:[{box:[`border`,`content`]}],display:[`block`,`inline-block`,`inline`,`flex`,`inline-flex`,`table`,`inline-table`,`table-caption`,`table-cell`,`table-column`,`table-column-group`,`table-footer-group`,`table-header-group`,`table-row-group`,`table-row`,`flow-root`,`grid`,`inline-grid`,`contents`,`list-item`,`hidden`],sr:[`sr-only`,`not-sr-only`],float:[{float:[`right`,`left`,`none`,`start`,`end`]}],clear:[{clear:[`left`,`right`,`both`,`none`,`start`,`end`]}],isolation:[`isolate`,`isolation-auto`],"object-fit":[{object:[`contain`,`cover`,`fill`,`none`,`scale-down`]}],"object-position":[{object:ee()}],overflow:[{overflow:te()}],"overflow-x":[{"overflow-x":te()}],"overflow-y":[{"overflow-y":te()}],overscroll:[{overscroll:ne()}],"overscroll-x":[{"overscroll-x":ne()}],"overscroll-y":[{"overscroll-y":ne()}],position:[`static`,`fixed`,`absolute`,`relative`,`sticky`],inset:[{inset:re()}],"inset-x":[{"inset-x":re()}],"inset-y":[{"inset-y":re()}],start:[{"inset-s":re(),start:re()}],end:[{"inset-e":re(),end:re()}],"inset-bs":[{"inset-bs":re()}],"inset-be":[{"inset-be":re()}],top:[{top:re()}],right:[{right:re()}],bottom:[{bottom:re()}],left:[{left:re()}],visibility:[`visible`,`invisible`,`collapse`],z:[{z:[pu,`auto`,Cu,vu]}],basis:[{basis:[du,`full`,`auto`,s,...x()]}],"flex-direction":[{flex:[`row`,`row-reverse`,`col`,`col-reverse`]}],"flex-wrap":[{flex:[`nowrap`,`wrap`,`wrap-reverse`]}],flex:[{flex:[fu,du,`auto`,`initial`,`none`,vu]}],grow:[{grow:[``,fu,Cu,vu]}],shrink:[{shrink:[``,fu,Cu,vu]}],order:[{order:[pu,`first`,`last`,`none`,Cu,vu]}],"grid-cols":[{"grid-cols":ie()}],"col-start-end":[{col:ae()}],"col-start":[{"col-start":oe()}],"col-end":[{"col-end":oe()}],"grid-rows":[{"grid-rows":ie()}],"row-start-end":[{row:ae()}],"row-start":[{"row-start":oe()}],"row-end":[{"row-end":oe()}],"grid-flow":[{"grid-flow":[`row`,`col`,`dense`,`row-dense`,`col-dense`]}],"auto-cols":[{"auto-cols":S()}],"auto-rows":[{"auto-rows":S()}],gap:[{gap:x()}],"gap-x":[{"gap-x":x()}],"gap-y":[{"gap-y":x()}],"justify-content":[{justify:[...C(),`normal`]}],"justify-items":[{"justify-items":[...se(),`normal`]}],"justify-self":[{"justify-self":[`auto`,...se()]}],"align-content":[{content:[`normal`,...C()]}],"align-items":[{items:[...se(),{baseline:[``,`last`]}]}],"align-self":[{self:[`auto`,...se(),{baseline:[``,`last`]}]}],"place-content":[{"place-content":C()}],"place-items":[{"place-items":[...se(),`baseline`]}],"place-self":[{"place-self":[`auto`,...se()]}],p:[{p:x()}],px:[{px:x()}],py:[{py:x()}],ps:[{ps:x()}],pe:[{pe:x()}],pbs:[{pbs:x()}],pbe:[{pbe:x()}],pt:[{pt:x()}],pr:[{pr:x()}],pb:[{pb:x()}],pl:[{pl:x()}],m:[{m:ce()}],mx:[{mx:ce()}],my:[{my:ce()}],ms:[{ms:ce()}],me:[{me:ce()}],mbs:[{mbs:ce()}],mbe:[{mbe:ce()}],mt:[{mt:ce()}],mr:[{mr:ce()}],mb:[{mb:ce()}],ml:[{ml:ce()}],"space-x":[{"space-x":x()}],"space-x-reverse":[`space-x-reverse`],"space-y":[{"space-y":x()}],"space-y-reverse":[`space-y-reverse`],size:[{size:le()}],"inline-size":[{inline:[`auto`,...ue()]}],"min-inline-size":[{"min-inline":[`auto`,...ue()]}],"max-inline-size":[{"max-inline":[`none`,...ue()]}],"block-size":[{block:[`auto`,...de()]}],"min-block-size":[{"min-block":[`auto`,...de()]}],"max-block-size":[{"max-block":[`none`,...de()]}],w:[{w:[s,`screen`,...le()]}],"min-w":[{"min-w":[s,`screen`,`none`,...le()]}],"max-w":[{"max-w":[s,`screen`,`none`,`prose`,{screen:[o]},...le()]}],h:[{h:[`screen`,`lh`,...le()]}],"min-h":[{"min-h":[`screen`,`lh`,`none`,...le()]}],"max-h":[{"max-h":[`screen`,`lh`,...le()]}],"font-size":[{text:[`base`,n,wu,yu]}],"font-smoothing":[`antialiased`,`subpixel-antialiased`],"font-style":[`italic`,`not-italic`],"font-weight":[{font:[r,Q_e,K_e]}],"font-stretch":[{"font-stretch":[`ultra-condensed`,`extra-condensed`,`condensed`,`semi-condensed`,`normal`,`semi-expanded`,`expanded`,`extra-expanded`,`ultra-expanded`,mu,vu]}],"font-family":[{font:[Y_e,q_e,t]}],"font-features":[{"font-features":[vu]}],"fvn-normal":[`normal-nums`],"fvn-ordinal":[`ordinal`],"fvn-slashed-zero":[`slashed-zero`],"fvn-figure":[`lining-nums`,`oldstyle-nums`],"fvn-spacing":[`proportional-nums`,`tabular-nums`],"fvn-fraction":[`diagonal-fractions`,`stacked-fractions`],tracking:[{tracking:[i,Cu,vu]}],"line-clamp":[{"line-clamp":[fu,`none`,Cu,bu]}],leading:[{leading:[a,...x()]}],"list-image":[{"list-image":[`none`,Cu,vu]}],"list-style-position":[{list:[`inside`,`outside`]}],"list-style-type":[{list:[`disc`,`decimal`,`none`,Cu,vu]}],"text-alignment":[{text:[`left`,`center`,`right`,`justify`,`start`,`end`]}],"placeholder-color":[{placeholder:w()}],"text-color":[{text:w()}],"text-decoration":[`underline`,`overline`,`line-through`,`no-underline`],"text-decoration-style":[{decoration:[...he(),`wavy`]}],"text-decoration-thickness":[{decoration:[fu,`from-font`,`auto`,Cu,yu]}],"text-decoration-color":[{decoration:w()}],"underline-offset":[{"underline-offset":[fu,`auto`,Cu,vu]}],"text-transform":[`uppercase`,`lowercase`,`capitalize`,`normal-case`],"text-overflow":[`truncate`,`text-ellipsis`,`text-clip`],"text-wrap":[{text:[`wrap`,`nowrap`,`balance`,`pretty`]}],indent:[{indent:x()}],"vertical-align":[{align:[`baseline`,`top`,`middle`,`bottom`,`text-top`,`text-bottom`,`sub`,`super`,Cu,vu]}],whitespace:[{whitespace:[`normal`,`nowrap`,`pre`,`pre-line`,`pre-wrap`,`break-spaces`]}],break:[{break:[`normal`,`words`,`all`,`keep`]}],wrap:[{wrap:[`break-word`,`anywhere`,`normal`]}],hyphens:[{hyphens:[`none`,`manual`,`auto`]}],content:[{content:[`none`,Cu,vu]}],"bg-attachment":[{bg:[`fixed`,`local`,`scroll`]}],"bg-clip":[{"bg-clip":[`border`,`padding`,`content`,`text`]}],"bg-origin":[{"bg-origin":[`border`,`padding`,`content`]}],"bg-position":[{bg:T()}],"bg-repeat":[{bg:fe()}],"bg-size":[{bg:pe()}],"bg-image":[{bg:[`none`,{linear:[{to:[`t`,`tr`,`r`,`br`,`b`,`bl`,`l`,`tl`]},pu,Cu,vu],radial:[``,Cu,vu],conic:[pu,Cu,vu]},Z_e,J_e]}],"bg-color":[{bg:w()}],"gradient-from-pos":[{from:E()}],"gradient-via-pos":[{via:E()}],"gradient-to-pos":[{to:E()}],"gradient-from":[{from:w()}],"gradient-via":[{via:w()}],"gradient-to":[{to:w()}],rounded:[{rounded:D()}],"rounded-s":[{"rounded-s":D()}],"rounded-e":[{"rounded-e":D()}],"rounded-t":[{"rounded-t":D()}],"rounded-r":[{"rounded-r":D()}],"rounded-b":[{"rounded-b":D()}],"rounded-l":[{"rounded-l":D()}],"rounded-ss":[{"rounded-ss":D()}],"rounded-se":[{"rounded-se":D()}],"rounded-ee":[{"rounded-ee":D()}],"rounded-es":[{"rounded-es":D()}],"rounded-tl":[{"rounded-tl":D()}],"rounded-tr":[{"rounded-tr":D()}],"rounded-br":[{"rounded-br":D()}],"rounded-bl":[{"rounded-bl":D()}],"border-w":[{border:me()}],"border-w-x":[{"border-x":me()}],"border-w-y":[{"border-y":me()}],"border-w-s":[{"border-s":me()}],"border-w-e":[{"border-e":me()}],"border-w-bs":[{"border-bs":me()}],"border-w-be":[{"border-be":me()}],"border-w-t":[{"border-t":me()}],"border-w-r":[{"border-r":me()}],"border-w-b":[{"border-b":me()}],"border-w-l":[{"border-l":me()}],"divide-x":[{"divide-x":me()}],"divide-x-reverse":[`divide-x-reverse`],"divide-y":[{"divide-y":me()}],"divide-y-reverse":[`divide-y-reverse`],"border-style":[{border:[...he(),`hidden`,`none`]}],"divide-style":[{divide:[...he(),`hidden`,`none`]}],"border-color":[{border:w()}],"border-color-x":[{"border-x":w()}],"border-color-y":[{"border-y":w()}],"border-color-s":[{"border-s":w()}],"border-color-e":[{"border-e":w()}],"border-color-bs":[{"border-bs":w()}],"border-color-be":[{"border-be":w()}],"border-color-t":[{"border-t":w()}],"border-color-r":[{"border-r":w()}],"border-color-b":[{"border-b":w()}],"border-color-l":[{"border-l":w()}],"divide-color":[{divide:w()}],"outline-style":[{outline:[...he(),`none`,`hidden`]}],"outline-offset":[{"outline-offset":[fu,Cu,vu]}],"outline-w":[{outline:[``,fu,wu,yu]}],"outline-color":[{outline:w()}],shadow:[{shadow:[``,`none`,u,Eu,Su]}],"shadow-color":[{shadow:w()}],"inset-shadow":[{"inset-shadow":[`none`,d,Eu,Su]}],"inset-shadow-color":[{"inset-shadow":w()}],"ring-w":[{ring:me()}],"ring-w-inset":[`ring-inset`],"ring-color":[{ring:w()}],"ring-offset-w":[{"ring-offset":[fu,yu]}],"ring-offset-color":[{"ring-offset":w()}],"inset-ring-w":[{"inset-ring":me()}],"inset-ring-color":[{"inset-ring":w()}],"text-shadow":[{"text-shadow":[`none`,f,Eu,Su]}],"text-shadow-color":[{"text-shadow":w()}],opacity:[{opacity:[fu,Cu,vu]}],"mix-blend":[{"mix-blend":[...ge(),`plus-darker`,`plus-lighter`]}],"bg-blend":[{"bg-blend":ge()}],"mask-clip":[{"mask-clip":[`border`,`padding`,`content`,`fill`,`stroke`,`view`]},`mask-no-clip`],"mask-composite":[{mask:[`add`,`subtract`,`intersect`,`exclude`]}],"mask-image-linear-pos":[{"mask-linear":[fu]}],"mask-image-linear-from-pos":[{"mask-linear-from":_e()}],"mask-image-linear-to-pos":[{"mask-linear-to":_e()}],"mask-image-linear-from-color":[{"mask-linear-from":w()}],"mask-image-linear-to-color":[{"mask-linear-to":w()}],"mask-image-t-from-pos":[{"mask-t-from":_e()}],"mask-image-t-to-pos":[{"mask-t-to":_e()}],"mask-image-t-from-color":[{"mask-t-from":w()}],"mask-image-t-to-color":[{"mask-t-to":w()}],"mask-image-r-from-pos":[{"mask-r-from":_e()}],"mask-image-r-to-pos":[{"mask-r-to":_e()}],"mask-image-r-from-color":[{"mask-r-from":w()}],"mask-image-r-to-color":[{"mask-r-to":w()}],"mask-image-b-from-pos":[{"mask-b-from":_e()}],"mask-image-b-to-pos":[{"mask-b-to":_e()}],"mask-image-b-from-color":[{"mask-b-from":w()}],"mask-image-b-to-color":[{"mask-b-to":w()}],"mask-image-l-from-pos":[{"mask-l-from":_e()}],"mask-image-l-to-pos":[{"mask-l-to":_e()}],"mask-image-l-from-color":[{"mask-l-from":w()}],"mask-image-l-to-color":[{"mask-l-to":w()}],"mask-image-x-from-pos":[{"mask-x-from":_e()}],"mask-image-x-to-pos":[{"mask-x-to":_e()}],"mask-image-x-from-color":[{"mask-x-from":w()}],"mask-image-x-to-color":[{"mask-x-to":w()}],"mask-image-y-from-pos":[{"mask-y-from":_e()}],"mask-image-y-to-pos":[{"mask-y-to":_e()}],"mask-image-y-from-color":[{"mask-y-from":w()}],"mask-image-y-to-color":[{"mask-y-to":w()}],"mask-image-radial":[{"mask-radial":[Cu,vu]}],"mask-image-radial-from-pos":[{"mask-radial-from":_e()}],"mask-image-radial-to-pos":[{"mask-radial-to":_e()}],"mask-image-radial-from-color":[{"mask-radial-from":w()}],"mask-image-radial-to-color":[{"mask-radial-to":w()}],"mask-image-radial-shape":[{"mask-radial":[`circle`,`ellipse`]}],"mask-image-radial-size":[{"mask-radial":[{closest:[`side`,`corner`],farthest:[`side`,`corner`]}]}],"mask-image-radial-pos":[{"mask-radial-at":b()}],"mask-image-conic-pos":[{"mask-conic":[fu]}],"mask-image-conic-from-pos":[{"mask-conic-from":_e()}],"mask-image-conic-to-pos":[{"mask-conic-to":_e()}],"mask-image-conic-from-color":[{"mask-conic-from":w()}],"mask-image-conic-to-color":[{"mask-conic-to":w()}],"mask-mode":[{mask:[`alpha`,`luminance`,`match`]}],"mask-origin":[{"mask-origin":[`border`,`padding`,`content`,`fill`,`stroke`,`view`]}],"mask-position":[{mask:T()}],"mask-repeat":[{mask:fe()}],"mask-size":[{mask:pe()}],"mask-type":[{"mask-type":[`alpha`,`luminance`]}],"mask-image":[{mask:[`none`,Cu,vu]}],filter:[{filter:[``,`none`,Cu,vu]}],blur:[{blur:ve()}],brightness:[{brightness:[fu,Cu,vu]}],contrast:[{contrast:[fu,Cu,vu]}],"drop-shadow":[{"drop-shadow":[``,`none`,p,Eu,Su]}],"drop-shadow-color":[{"drop-shadow":w()}],grayscale:[{grayscale:[``,fu,Cu,vu]}],"hue-rotate":[{"hue-rotate":[fu,Cu,vu]}],invert:[{invert:[``,fu,Cu,vu]}],saturate:[{saturate:[fu,Cu,vu]}],sepia:[{sepia:[``,fu,Cu,vu]}],"backdrop-filter":[{"backdrop-filter":[``,`none`,Cu,vu]}],"backdrop-blur":[{"backdrop-blur":ve()}],"backdrop-brightness":[{"backdrop-brightness":[fu,Cu,vu]}],"backdrop-contrast":[{"backdrop-contrast":[fu,Cu,vu]}],"backdrop-grayscale":[{"backdrop-grayscale":[``,fu,Cu,vu]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[fu,Cu,vu]}],"backdrop-invert":[{"backdrop-invert":[``,fu,Cu,vu]}],"backdrop-opacity":[{"backdrop-opacity":[fu,Cu,vu]}],"backdrop-saturate":[{"backdrop-saturate":[fu,Cu,vu]}],"backdrop-sepia":[{"backdrop-sepia":[``,fu,Cu,vu]}],"border-collapse":[{border:[`collapse`,`separate`]}],"border-spacing":[{"border-spacing":x()}],"border-spacing-x":[{"border-spacing-x":x()}],"border-spacing-y":[{"border-spacing-y":x()}],"table-layout":[{table:[`auto`,`fixed`]}],caption:[{caption:[`top`,`bottom`]}],transition:[{transition:[``,`all`,`colors`,`opacity`,`shadow`,`transform`,`none`,Cu,vu]}],"transition-behavior":[{transition:[`normal`,`discrete`]}],duration:[{duration:[fu,`initial`,Cu,vu]}],ease:[{ease:[`linear`,`initial`,_,Cu,vu]}],delay:[{delay:[fu,Cu,vu]}],animate:[{animate:[`none`,v,Cu,vu]}],backface:[{backface:[`hidden`,`visible`]}],perspective:[{perspective:[h,Cu,vu]}],"perspective-origin":[{"perspective-origin":ee()}],rotate:[{rotate:ye()}],"rotate-x":[{"rotate-x":ye()}],"rotate-y":[{"rotate-y":ye()}],"rotate-z":[{"rotate-z":ye()}],scale:[{scale:be()}],"scale-x":[{"scale-x":be()}],"scale-y":[{"scale-y":be()}],"scale-z":[{"scale-z":be()}],"scale-3d":[`scale-3d`],skew:[{skew:xe()}],"skew-x":[{"skew-x":xe()}],"skew-y":[{"skew-y":xe()}],transform:[{transform:[Cu,vu,``,`none`,`gpu`,`cpu`]}],"transform-origin":[{origin:ee()}],"transform-style":[{transform:[`3d`,`flat`]}],translate:[{translate:Se()}],"translate-x":[{"translate-x":Se()}],"translate-y":[{"translate-y":Se()}],"translate-z":[{"translate-z":Se()}],"translate-none":[`translate-none`],accent:[{accent:w()}],appearance:[{appearance:[`none`,`auto`]}],"caret-color":[{caret:w()}],"color-scheme":[{scheme:[`normal`,`dark`,`light`,`light-dark`,`only-dark`,`only-light`]}],cursor:[{cursor:[`auto`,`default`,`pointer`,`wait`,`text`,`move`,`help`,`not-allowed`,`none`,`context-menu`,`progress`,`cell`,`crosshair`,`vertical-text`,`alias`,`copy`,`no-drop`,`grab`,`grabbing`,`all-scroll`,`col-resize`,`row-resize`,`n-resize`,`e-resize`,`s-resize`,`w-resize`,`ne-resize`,`nw-resize`,`se-resize`,`sw-resize`,`ew-resize`,`ns-resize`,`nesw-resize`,`nwse-resize`,`zoom-in`,`zoom-out`,Cu,vu]}],"field-sizing":[{"field-sizing":[`fixed`,`content`]}],"pointer-events":[{"pointer-events":[`auto`,`none`]}],resize:[{resize:[`none`,``,`y`,`x`]}],"scroll-behavior":[{scroll:[`auto`,`smooth`]}],"scroll-m":[{"scroll-m":x()}],"scroll-mx":[{"scroll-mx":x()}],"scroll-my":[{"scroll-my":x()}],"scroll-ms":[{"scroll-ms":x()}],"scroll-me":[{"scroll-me":x()}],"scroll-mbs":[{"scroll-mbs":x()}],"scroll-mbe":[{"scroll-mbe":x()}],"scroll-mt":[{"scroll-mt":x()}],"scroll-mr":[{"scroll-mr":x()}],"scroll-mb":[{"scroll-mb":x()}],"scroll-ml":[{"scroll-ml":x()}],"scroll-p":[{"scroll-p":x()}],"scroll-px":[{"scroll-px":x()}],"scroll-py":[{"scroll-py":x()}],"scroll-ps":[{"scroll-ps":x()}],"scroll-pe":[{"scroll-pe":x()}],"scroll-pbs":[{"scroll-pbs":x()}],"scroll-pbe":[{"scroll-pbe":x()}],"scroll-pt":[{"scroll-pt":x()}],"scroll-pr":[{"scroll-pr":x()}],"scroll-pb":[{"scroll-pb":x()}],"scroll-pl":[{"scroll-pl":x()}],"snap-align":[{snap:[`start`,`end`,`center`,`align-none`]}],"snap-stop":[{snap:[`normal`,`always`]}],"snap-type":[{snap:[`none`,`x`,`y`,`both`]}],"snap-strictness":[{snap:[`mandatory`,`proximity`]}],touch:[{touch:[`auto`,`none`,`manipulation`]}],"touch-x":[{"touch-pan":[`x`,`left`,`right`]}],"touch-y":[{"touch-pan":[`y`,`up`,`down`]}],"touch-pz":[`touch-pinch-zoom`],select:[{select:[`none`,`text`,`all`,`auto`]}],"will-change":[{"will-change":[`auto`,`scroll`,`contents`,`transform`,Cu,vu]}],fill:[{fill:[`none`,...w()]}],"stroke-w":[{stroke:[fu,wu,yu,bu]}],stroke:[{stroke:[`none`,...w()]}],"forced-color-adjust":[{"forced-color-adjust":[`auto`,`none`]}]},conflictingClassGroups:{overflow:[`overflow-x`,`overflow-y`],overscroll:[`overscroll-x`,`overscroll-y`],inset:[`inset-x`,`inset-y`,`inset-bs`,`inset-be`,`start`,`end`,`top`,`right`,`bottom`,`left`],"inset-x":[`right`,`left`],"inset-y":[`top`,`bottom`],flex:[`basis`,`grow`,`shrink`],gap:[`gap-x`,`gap-y`],p:[`px`,`py`,`ps`,`pe`,`pbs`,`pbe`,`pt`,`pr`,`pb`,`pl`],px:[`pr`,`pl`],py:[`pt`,`pb`],m:[`mx`,`my`,`ms`,`me`,`mbs`,`mbe`,`mt`,`mr`,`mb`,`ml`],mx:[`mr`,`ml`],my:[`mt`,`mb`],size:[`w`,`h`],"font-size":[`leading`],"fvn-normal":[`fvn-ordinal`,`fvn-slashed-zero`,`fvn-figure`,`fvn-spacing`,`fvn-fraction`],"fvn-ordinal":[`fvn-normal`],"fvn-slashed-zero":[`fvn-normal`],"fvn-figure":[`fvn-normal`],"fvn-spacing":[`fvn-normal`],"fvn-fraction":[`fvn-normal`],"line-clamp":[`display`,`overflow`],rounded:[`rounded-s`,`rounded-e`,`rounded-t`,`rounded-r`,`rounded-b`,`rounded-l`,`rounded-ss`,`rounded-se`,`rounded-ee`,`rounded-es`,`rounded-tl`,`rounded-tr`,`rounded-br`,`rounded-bl`],"rounded-s":[`rounded-ss`,`rounded-es`],"rounded-e":[`rounded-se`,`rounded-ee`],"rounded-t":[`rounded-tl`,`rounded-tr`],"rounded-r":[`rounded-tr`,`rounded-br`],"rounded-b":[`rounded-br`,`rounded-bl`],"rounded-l":[`rounded-tl`,`rounded-bl`],"border-spacing":[`border-spacing-x`,`border-spacing-y`],"border-w":[`border-w-x`,`border-w-y`,`border-w-s`,`border-w-e`,`border-w-bs`,`border-w-be`,`border-w-t`,`border-w-r`,`border-w-b`,`border-w-l`],"border-w-x":[`border-w-r`,`border-w-l`],"border-w-y":[`border-w-t`,`border-w-b`],"border-color":[`border-color-x`,`border-color-y`,`border-color-s`,`border-color-e`,`border-color-bs`,`border-color-be`,`border-color-t`,`border-color-r`,`border-color-b`,`border-color-l`],"border-color-x":[`border-color-r`,`border-color-l`],"border-color-y":[`border-color-t`,`border-color-b`],translate:[`translate-x`,`translate-y`,`translate-none`],"translate-none":[`translate`,`translate-x`,`translate-y`,`translate-z`],"scroll-m":[`scroll-mx`,`scroll-my`,`scroll-ms`,`scroll-me`,`scroll-mbs`,`scroll-mbe`,`scroll-mt`,`scroll-mr`,`scroll-mb`,`scroll-ml`],"scroll-mx":[`scroll-mr`,`scroll-ml`],"scroll-my":[`scroll-mt`,`scroll-mb`],"scroll-p":[`scroll-px`,`scroll-py`,`scroll-ps`,`scroll-pe`,`scroll-pbs`,`scroll-pbe`,`scroll-pt`,`scroll-pr`,`scroll-pb`,`scroll-pl`],"scroll-px":[`scroll-pr`,`scroll-pl`],"scroll-py":[`scroll-pt`,`scroll-pb`],touch:[`touch-x`,`touch-y`,`touch-pz`],"touch-x":[`touch`],"touch-y":[`touch`],"touch-pz":[`touch`]},conflictingClassGroupModifiers:{"font-size":[`leading`]},orderSensitiveModifiers:[`*`,`**`,`after`,`backdrop`,`before`,`details-content`,`file`,`first-letter`,`first-line`,`marker`,`placeholder`,`selection`]}},eve=(e,{cacheSize:t,prefix:n,experimentalParseClassName:r,extend:i={},override:a={}})=>(Lu(e,`cacheSize`,t),Lu(e,`prefix`,n),Lu(e,`experimentalParseClassName`,r),Ru(e.theme,a.theme),Ru(e.classGroups,a.classGroups),Ru(e.conflictingClassGroups,a.conflictingClassGroups),Ru(e.conflictingClassGroupModifiers,a.conflictingClassGroupModifiers),Lu(e,`orderSensitiveModifiers`,a.orderSensitiveModifiers),zu(e.theme,i.theme),zu(e.classGroups,i.classGroups),zu(e.conflictingClassGroups,i.conflictingClassGroups),zu(e.conflictingClassGroupModifiers,i.conflictingClassGroupModifiers),Bu(e,i,`orderSensitiveModifiers`),e),Lu=(e,t,n)=>{n!==void 0&&(e[t]=n)},Ru=(e,t)=>{if(t)for(let n in t)Lu(e,n,t[n])},zu=(e,t)=>{if(t)for(let n in t)Bu(e,t,n)},Bu=(e,t,n)=>{let r=t[n];r!==void 0&&(e[n]=e[n]?e[n].concat(r):r)},tve=(e,...t)=>typeof e==`function`?su(Iu,e,...t):su(()=>eve(Iu(),e),...t)})),rve,Vu,Hu,ive,ave=s((()=>{p_e(),nve(),rve=tve({extend:{classGroups:{"font-size":[`text-3xs`,`text-xxs`],"font-weight":[`font-sidebar`,`font-sidebar-active`],"max-w":[{"max-w":[e=>!!e]}],w:[{w:[e=>!!e]}]}}}),{cva:Vu,cx:Hu,compose:ive}=Xl({hooks:{onComplete:e=>rve(e)}})}));function Uu(){let e=Fr(),t=W(()=>{let{class:t,style:n,...r}=e;return{class:t||``,style:n,rest:r}});function n(...e){return{class:Hu(...e,t.value.class),style:t.value.style,...t.value.rest}}function r(...e){return{class:Hu(...e,t.value.class),style:t.value.style}}return{cx:n,stylingAttrsCx:r,otherAttrs:W(()=>t.value.rest)}}var ove=s((()=>{G(),ave()})),Wu=s((()=>{ave(),ove()})),sve,cve=s((()=>{G(),Wu(),sve=N({__name:`ViewLayout`,setup(e){let{cx:t}=Uu();return(e,n)=>(F(),I(`div`,nt(ei(j(t)(`flex flex-col min-h-0 flex-1 *:border-t first:*:border-t-0 md:*:border-t-0 xl:overflow-hidden md:flex-row leading-5`))),[P(e.$slots,`default`)],16))}})})),lve,uve=s((()=>{cve(),lve=sve}));function dve(e,t){return F(),I(`div`,pve,[P(e.$slots,`default`)])}var fve,pve,mve,hve=s((()=>{ec(),G(),fve={},pve={class:`custom-scroll flex flex-col pr-0 *:border-t *:first:border-t-0 xl:flex-row *:xl:border-t-0 *:xl:border-l *:first:xl:border-l-0`},mve=$s(fve,[[`render`,dve]])})),gve,_ve,vve,yve=s((()=>{gve=({harRequest:e})=>{let t=_ve(e),n=vve(e.postData);return[e.url,{method:e.method,headers:t,body:n}]},_ve=e=>{let t=new Headers;if(e.headers.forEach(({name:e,value:n})=>{t.append(e,n)}),e.cookies?.length){let n=e.cookies.map(({name:e,value:t})=>`${e}=${t}`).join(`; `);t.append(`Cookie`,n)}return t},vve=e=>{if(!e)return null;let{params:t,text:n,mimeType:r}=e;if(t?.length){let e=r?.includes(`multipart/form-data`)?new FormData:new URLSearchParams;return t.forEach(({name:t,value:n})=>{e.append(t,n||``)}),e}return n?new TextEncoder().encode(n):null}})),Gu,bve,xve,Sve=s((()=>{Tge(),Gu=({harResponse:e,url:t=``,method:n,path:r,duration:i=0})=>{let a=bve(e),{body:o,data:s,size:c}=xve(e),l=xl(a);return{...new Response(o,{status:e.status,statusText:e.statusText,headers:a}),headers:Object.fromEntries(a.entries()),cookieHeaderKeys:l,duration:i,status:e.status,statusText:e.statusText,method:n,path:r,data:s,size:c,url:t}},bve=e=>{let t=new Headers;return e.headers.forEach(({name:e,value:n})=>{t.append(e,n)}),t},xve=e=>{if(!e.content.text)return{body:null,data:``,size:0};let{text:t,encoding:n}=e.content;if(n)return{body:null,data:t,size:t.length};let r=new TextEncoder().encode(t).buffer;return{body:r,data:t,size:r.byteLength}}})),Cve,wve,Tve,Eve,Dve,Ove=s((()=>{n_e(),Cve=e=>{try{return new URL(e).searchParams.get(`scalar_url`)||e}catch{return e}},wve=e=>{if(!e.startsWith(`/`))return`/`;let t=e.lastIndexOf(`/`);return t<=0?`/`:e.slice(0,t)},Tve=e=>{try{let{hostname:t,pathname:n}=new URL(e,`https://example.com`);return{hostname:t,defaultPath:wve(n)}}catch{return{hostname:``,defaultPath:`/`}}},Eve=(e,t)=>e.name===t.name&&(e.domain??``)===(t.domain??``)&&(e.path??``)===(t.path??``),Dve=({cookieHeaderKeys:e,documentCookies:t,requestUrl:n,now:r=Date.now()})=>{let{hostname:i,defaultPath:a}=Tve(n),o=new Map;for(let t of e){let[e]=Gl(t);if(!e?.name)continue;let n=e.domain||i,s=e.path||a,c=e.maxAge!==void 0&&e.maxAge<=0||e.expires instanceof Date&&e.expires.getTime()<=r;o.set(`${e.name}\n${n}\n${s}`,{cookie:{name:e.name,value:e.value,domain:n,path:s},expired:c})}let s=[],c=[];for(let{cookie:e,expired:n}of o.values()){let r=t.findIndex(t=>Eve(e,t));if(n){r!==-1&&c.push({type:`delete`,cookieName:e.name,index:r});continue}s.push({type:`upsert`,cookie:e,...r===-1?{}:{index:r}})}let l=[...s.filter(e=>e.index!==void 0),...c].sort((e,t)=>(t.index??0)-(e.index??0)),u=s.filter(e=>e.index===void 0);return[...l,...u]}})),Ku,qu=s((()=>{Ku=e=>e!=null}));function Ju(e,t,n,r){return[r,e,t,n].filter(Ku).join(`|`)}function kve(e){return`reader`in e}var Yu,Ave=s((()=>{qu(),Yu=new Map})),jve,Xu,K,Zu=s((()=>{jve=e=>e[`$ref-value`],Xu=e=>{let{"$ref-value":t,...n}=e;return{...t,...n}},K=(e,t=jve)=>typeof e==`object`&&e&&`$ref`in e?t(e):e})),Qu,$u,ed=s((()=>{Qu=e=>{if(typeof e!=`object`||!e)return!1;let t=Object.getPrototypeOf(e);return t===Object.prototype||t===null},$u=e=>typeof e==`object`&&!!e})),Mve,Nve=s((()=>{Mve=e=>decodeURI(e.replace(/~1/g,`/`).replace(/~0/g,`~`))})),td,Pve=s((()=>{Nve(),td=e=>e.split(`/`).slice(1).map(Mve)})),nd,Fve=s((()=>{nd=(e,t,n)=>{let[r,i]=e.split(`#`,2);if(r)return n.has(r)?i?i.startsWith(`/`)?`${n.get(r)}${i}`:n.get(`${r}#${i}`):n.get(r):void 0;if(i)return i.startsWith(`/`)?i.slice(1):n.get(`${t}#${i}`)}})),rd,id,ad,od=s((()=>{rd=e=>{if(e&&typeof e==`object`&&e.$id&&typeof e.$id==`string`)return e.$id},id=e=>e.join(`/`),ad=(e,t=``,n=[],r=new Map,i=new WeakSet)=>{if(typeof e!=`object`||!e||i.has(e))return r;i.add(e);let a=rd(e);a&&r.set(a,id(n));let o=a??t;e.$anchor&&typeof e.$anchor==`string`&&r.set(`${o}#${e.$anchor}`,id(n));for(let t in e)typeof e[t]==`object`&&e[t]!==null&&ad(e[t],o,[...n,t],r,i);return r}}));function sd(e,t){return t.reduce((e,t)=>e.value===void 0||typeof e.value!=`object`||e.value===null?{context:``,value:void 0}:{context:rd(e.value)??e.context,value:e.value?.[t]},{context:``,value:e})}var Ive=s((()=>{od()}));function Lve(e,t){return t.reduce((e,t)=>(e[t]===void 0&&(isNaN(Number(t))?e[t]={}:e[t]=[]),e[t]),e)}var Rve=s((()=>{}));function cd(e){return typeof e!=`object`||!e?e:e[ld]?e[ud]:e}var ld,ud,dd,fd,pd,md,zve=s((()=>{Pve(),ed(),Fve(),od(),Ive(),Rve(),ld=Symbol(`isMagicProxy`),ud=Symbol(`magicProxyTarget`),dd=`$ref-value`,fd=`$ref`,pd=(e,t,n={root:e,proxyCache:new WeakMap,cache:new Map,schemas:ad(e),currentContext:``})=>{if(!Qu(e)&&!Array.isArray(e))return e;if(n.proxyCache.has(e))return n.proxyCache.get(e);let r=new Proxy(e,{get(e,r,i){if(r===ld)return!0;if(r===ud)return e;if(typeof r==`string`&&r.startsWith(`__scalar_`)&&!t?.showInternal)return;let a=Reflect.get(e,fd,i),o=rd(e);if(r===dd&&typeof a==`string`){if(n.cache.has(a))return n.cache.get(a);let e=nd(a,o??n.currentContext,n.schemas);if(e===void 0)return;let r=sd(n.root,td(`/${e}`));if(md(r.value))return r.value;let i=pd(r.value,t,{...n,currentContext:r.context});return n.cache.set(a,i),i}let s=Reflect.get(e,r,i);return md(s)?s:pd(s,t,{...n,currentContext:o??n.currentContext})},set(e,r,i,a){let o=Reflect.get(e,fd,a);if(typeof r==`string`&&r.startsWith(`__scalar_`)&&!t?.showInternal)return!0;if(r===dd&&typeof o==`string`){let t=nd(o,rd(e)??n.currentContext,n.schemas);if(t===void 0)return;let r=td(`/${t}`);if(r.length===0)return!1;let a=()=>sd(n.root,r.slice(0,-1)).value;return a()===void 0&&(Lve(n.root,r.slice(0,-1)),console.warn(`Trying to set $ref-value for invalid reference: ${o}\n\nPlease fix your input file to fix this issue.`)),a()[r.at(-1)]=i,!0}return Reflect.set(e,r,i,a)},deleteProperty(e,t){return Reflect.deleteProperty(e,t)},has(e,n){return typeof n==`string`&&n.startsWith(`__scalar_`)&&!t?.showInternal?!1:n===dd&&fd in e||Reflect.has(e,n)},ownKeys(e){let n=Reflect.ownKeys(e).filter(e=>typeof e!=`string`||!(e.startsWith(`__scalar_`)&&!t?.showInternal));return fd in e&&!n.includes(dd)&&n.push(dd),n},getOwnPropertyDescriptor(e,n){if(typeof n==`string`&&n.startsWith(`__scalar_`)&&!t?.showInternal)return;let r=Reflect.get(e,fd);return n===dd&&typeof r==`string`?{configurable:!0,enumerable:!0,value:void 0,writable:!1}:Reflect.getOwnPropertyDescriptor(e,n)}});return n.proxyCache.set(e,r),r},md=e=>typeof e==`object`&&!!e&&e[ld]===!0})),hd=s((()=>{zve()})),gd,_d,vd,Bve,Vve,Hve=s((()=>{ed(),gd=Symbol(`isDetectChangesProxy`),_d=Symbol(`detectChangesProxyTarget`),vd=(e,t,n={proxyCache:new WeakMap,path:[]})=>{if(!Qu(e)&&!Array.isArray(e))return e;if(n.proxyCache.has(e))return n.proxyCache.get(e);let r=new Proxy(e,{get(e,r,i){if(r===gd)return!0;if(r===_d)return e;let a=Reflect.get(e,r,i);return Bve(a)?a:vd(a,t,{...n,path:[...n.path,String(r)]})},set(e,r,i,a){let o=[...n.path,String(r)];t?.hooks?.onBeforeChange?.(o,i);let s=Reflect.set(e,r,i,a);return t?.hooks?.onAfterChange?.(o,i),s},deleteProperty(e,r){let i=[...n.path,String(r)];t?.hooks?.onBeforeChange?.(i);let a=Reflect.deleteProperty(e,r);return t?.hooks?.onAfterChange?.(i),a}});return n.proxyCache.set(e,r),r},Bve=e=>typeof e==`object`&&!!e&&e[gd]===!0,Vve=e=>typeof e!=`object`||!e?e:e[gd]?e[_d]:e}));function Uve(e){return typeof e==`object`&&e&&e[yd]?e[bd]:e}var yd,bd,xd,Wve,Gve=s((()=>{ed(),yd=Symbol(`isOverridesProxy`),bd=Symbol(`getOverridesTarget`),xd=(e,t,n={cache:new WeakMap})=>{if(!e||typeof e!=`object`)return e;if(n.cache.has(e))return n.cache.get(e);let{overrides:r}=t??{},i=new Proxy(e,{get(e,t,i){if(t===yd)return!0;if(t===bd)return e;let a=Reflect.get(e,t,i);return Wve(a)?a:Qu(a)?xd(a,{overrides:Reflect.get(r??{},t)},n):Reflect.get(r??{},t)??a},set(e,t,n,i){return t===yd||t===bd?!1:r&&Reflect.has(r,t)&&r&&typeof r==`object`?(r[t]=n,!0):Reflect.set(e,t,n,i)}});return n.cache.set(e,i),i},Wve=e=>typeof e==`object`&&!!e&&e[yd]===!0})),Sd,Cd=s((()=>{hd(),G(),Hve(),Gve(),Sd=(e,{depth:t=0}={})=>{let n=(r,i=0)=>{if(typeof r!=`object`||!r)return r;let a=Vve(vn(cd(Uve(r))));return t!==null&&i>=t?a:(i!==0&&a!==r&&(console.warn(`%c⚠ Warning:%c You tried to assign a proxied object (depth: %d). +%c💡 Tip:%c Pass a plain object instead — wrapping a proxy inside another proxy may cause weird bugs. +%c🔍 Debug Info:%c The problematic value is shown below:`,`background: #fdd835; color: #000; font-weight: bold; padding: 2px 4px; border-radius: 3px;`,`color: inherit;`,i,`color: #00bfa5; font-weight: bold;`,`color: inherit;`,`color: #03a9f4; font-weight: bold;`,`color: inherit;`,r,e),console.groupCollapsed(`%c📜 Proxy assignment trace`,`color: #9c27b0; font-weight: bold;`),console.trace({value:r,raw:a}),console.groupEnd()),Object.entries(a).forEach(([e,t])=>{let r=n(t,i+1);Reflect.set(a,e,r)||console.warn(`%c🚫 Readonly Property Error:%c Failed to set property "%s" on object. +%c💡 Tip:%c This property is readonly or non-configurable. You cannot unpack a readonly property — the value was not updated. +%c🔍 Debug Info:%c Property: %s | Value: %o | Object: %o`,`background: #f44336; color: #fff; font-weight: bold; padding: 2px 4px; border-radius: 3px;`,`color: inherit;`,e,`color: #00bfa5; font-weight: bold;`,`color: inherit;`,`color: #03a9f4; font-weight: bold;`,`color: inherit;`,e,r,a)}),a)};return n(e)}})),wd,Td=s((()=>{ed(),Zu(),Cd(),wd=e=>{let t=new WeakSet,n=new WeakMap,r=e=>{if(!Qu(e)&&!Array.isArray(e))return e;let i=Sd(e,{depth:1});if(n.has(i))return n.get(i);if(t.has(i))return`[circular]`;if(t.add(i),`$ref`in e){let t=K(e),a=r(t),o=Object.entries(e).filter(([e])=>e!==`$ref`&&e!==`$ref-value`);if(o.length>0&&Qu(a)){let e={...a};for(let[t,n]of o)e[t]=r(n);return n.set(i,e),e}return n.set(i,a),a}if(Array.isArray(e)){let t=e.map(r);return n.set(i,t),t}let a=Object.fromEntries(Object.entries(e).map(([e,t])=>[e,r(t)]));return n.set(i,a),a};return r(e)}})),Ed,Dd,Od=s((()=>{Zu(),Ed=(e,t,n)=>{if(!e&&!t)return;let r=!!e&&Object.keys(e).length>0,i=n||Object.keys(e??{})[0]||``,a=K(e?.[i]);if(a!==void 0)return a;if((!r||!n)&&t!==void 0)return{value:K(t)}},Dd=(e,t,n)=>{if(`content`in e){let r=e.content?.[n??Object.keys(e.content)[0]??``],i=Ed(r?.examples,r?.example,t);if(i!==void 0)return i}if(`examples`in e||`example`in e){let n=Ed(e.examples,e.example,t);if(n!==void 0)return n}let r=K(e);if(`schema`in r&&r.schema){let e=r.schema;if(`default`in e&&e.default!==void 0)return{value:e.default};if(`enum`in e&&e.enum?.[0]!==void 0)return{value:e.enum[0]};if(`examples`in e&&e.examples?.[0]!==void 0)return{value:e.examples[0]};if(`example`in e&&e.example!==void 0)return{value:e.example}}}})),kd,Kve,Ad,qve,jd,Md,Nd=s((()=>{Zu(),Cd(),kd=e=>typeof e==`object`&&!!e&&`$dynamicRef`in e&&typeof e.$dynamicRef==`string`,Kve=e=>`$dynamicAnchor`in e||`$id`in e||`$defs`in e,Ad=new WeakMap,qve=e=>{let t=Sd(e,{depth:1}),n=Ad.get(t);if(n)return n;let r=new Map,i=e=>{if(!e||typeof e!=`object`)return;let t=e.$dynamicAnchor;typeof t==`string`&&!r.has(t)&&r.set(t,K(e,Xu))};i(e);let a=e.$defs;if(a&&typeof a==`object`)for(let e of Object.keys(a))i(a[e]);return Ad.set(t,r),r},jd=(e,t)=>Kve(t)?[...e,t]:e,Md=(e,t)=>{let n=e.startsWith(`#`)?e.slice(1):void 0;if(!(!n||n.startsWith(`/`)))for(let e of t){let t=qve(e).get(n);if(t)return t}}}));function Jve(e){return Rd(e)&&!Pd(e)&&!Bd(e)&&Symbol.asyncIterator in e}function Pd(e){return Array.isArray(e)}function Yve(e){return typeof e==`bigint`}function Fd(e){return typeof e==`boolean`}function Id(e){return e instanceof globalThis.Date}function Xve(e){return typeof e==`function`}function Zve(e){return Rd(e)&&!Pd(e)&&!Bd(e)&&Symbol.iterator in e}function Qve(e){return e===null}function Ld(e){return typeof e==`number`}function Rd(e){return typeof e==`object`&&!!e}function $ve(e){return e instanceof globalThis.RegExp}function zd(e){return typeof e==`string`}function eye(e){return typeof e==`symbol`}function Bd(e){return e instanceof globalThis.Uint8Array}function Vd(e){return e===void 0}var Hd=s((()=>{}));function tye(e){return e.map(e=>Ud(e))}function nye(e){return new Date(e.getTime())}function rye(e){return new Uint8Array(e)}function iye(e){return new RegExp(e.source,e.flags)}function aye(e){let t={};for(let n of Object.getOwnPropertyNames(e))t[n]=Ud(e[n]);for(let n of Object.getOwnPropertySymbols(e))t[n]=Ud(e[n]);return t}function Ud(e){return Pd(e)?tye(e):Id(e)?nye(e):Bd(e)?rye(e):$ve(e)?iye(e):Rd(e)?aye(e):e}function Wd(e){return Ud(e)}var Gd=s((()=>{Hd()}));function Kd(e,t){return Wd(t===void 0?e:{...t,...e})}var qd=s((()=>{Gd()})),oye=s((()=>{qd(),Gd()}));function sye(e){return Zd(e)&&globalThis.Symbol.asyncIterator in e}function cye(e){return Zd(e)&&globalThis.Symbol.iterator in e}function lye(e){return e instanceof globalThis.Promise}function Jd(e){return e instanceof Date&&globalThis.Number.isFinite(e.getTime())}function uye(e){return e instanceof globalThis.Map}function dye(e){return e instanceof globalThis.Set}function fye(e){return globalThis.ArrayBuffer.isView(e)}function Yd(e){return e instanceof globalThis.Uint8Array}function Xd(e,t){return t in e}function Zd(e){return typeof e==`object`&&!!e}function Qd(e){return globalThis.Array.isArray(e)&&!globalThis.ArrayBuffer.isView(e)}function $d(e){return e===void 0}function ef(e){return e===null}function tf(e){return typeof e==`boolean`}function nf(e){return typeof e==`number`}function pye(e){return globalThis.Number.isInteger(e)}function rf(e){return typeof e==`bigint`}function af(e){return typeof e==`string`}function of(e){return typeof e==`function`}function sf(e){return typeof e==`symbol`}function mye(e){return rf(e)||tf(e)||ef(e)||nf(e)||af(e)||sf(e)||$d(e)}var cf=s((()=>{})),lf=s((()=>{cf()})),uf,hye=s((()=>{lf(),(function(e){e.InstanceMode=`default`,e.ExactOptionalPropertyTypes=!1,e.AllowArrayObject=!1,e.AllowNaN=!1,e.AllowNullVoid=!1;function t(t,n){return e.ExactOptionalPropertyTypes?n in t:t[n]!==void 0}e.IsExactOptionalProperty=t;function n(t){let n=Zd(t);return e.AllowArrayObject?n:n&&!Qd(t)}e.IsObjectLike=n;function r(e){return n(e)&&!(e instanceof Date)&&!(e instanceof Uint8Array)}e.IsRecordLike=r;function i(t){return e.AllowNaN?nf(t):Number.isFinite(t)}e.IsNumberLike=i;function a(t){let n=$d(t);return e.AllowNullVoid?n||t===null:n}e.IsVoidLike=a})(uf||={})}));function gye(e){return globalThis.Object.freeze(e).map(e=>df(e))}function _ye(e){return e}function vye(e){return e}function yye(e){return e}function bye(e){let t={};for(let n of Object.getOwnPropertyNames(e))t[n]=df(e[n]);for(let n of Object.getOwnPropertySymbols(e))t[n]=df(e[n]);return globalThis.Object.freeze(t)}function df(e){return Pd(e)?gye(e):Id(e)?_ye(e):Bd(e)?vye(e):$ve(e)?yye(e):Rd(e)?bye(e):e}var xye=s((()=>{Hd()}));function ff(e,t){let n=t===void 0?e:{...t,...e};switch(uf.InstanceMode){case`freeze`:return df(n);case`clone`:return Wd(n);default:return n}}var pf=s((()=>{hye(),xye(),Gd()})),mf=s((()=>{pf()})),hf,Sye=s((()=>{hf=class extends Error{constructor(e){super(e)}}})),gf=s((()=>{Sye()})),_f,vf,yf,bf,xf,Sf=s((()=>{_f=Symbol.for(`TypeBox.Transform`),vf=Symbol.for(`TypeBox.Readonly`),yf=Symbol.for(`TypeBox.Optional`),bf=Symbol.for(`TypeBox.Hint`),xf=Symbol.for(`TypeBox.Kind`)})),Cf=s((()=>{Sf()}));function wf(e){return Rd(e)&&e[vf]===`Readonly`}function Tf(e){return Rd(e)&&e[yf]===`Optional`}function Cye(e){return If(e,`Any`)}function wye(e){return If(e,`Argument`)}function Ef(e){return If(e,`Array`)}function Df(e){return If(e,`AsyncIterator`)}function Of(e){return If(e,`BigInt`)}function kf(e){return If(e,`Boolean`)}function Af(e){return If(e,`Computed`)}function jf(e){return If(e,`Constructor`)}function Tye(e){return If(e,`Date`)}function Mf(e){return If(e,`Function`)}function Nf(e){return If(e,`Integer`)}function Pf(e){return If(e,`Intersect`)}function Ff(e){return If(e,`Iterator`)}function If(e,t){return Rd(e)&&xf in e&&e[xf]===t}function Eye(e){return Fd(e)||Ld(e)||zd(e)}function Lf(e){return If(e,`Literal`)}function Rf(e){return If(e,`MappedKey`)}function zf(e){return If(e,`MappedResult`)}function Bf(e){return If(e,`Never`)}function Dye(e){return If(e,`Not`)}function Vf(e){return If(e,`Null`)}function Hf(e){return If(e,`Number`)}function Uf(e){return If(e,`Object`)}function Wf(e){return If(e,`Promise`)}function Gf(e){return If(e,`Record`)}function Kf(e){return If(e,`Ref`)}function Oye(e){return If(e,`RegExp`)}function qf(e){return If(e,`String`)}function Jf(e){return If(e,`Symbol`)}function Yf(e){return If(e,`TemplateLiteral`)}function kye(e){return If(e,`This`)}function Xf(e){return Rd(e)&&_f in e}function Zf(e){return If(e,`Tuple`)}function Qf(e){return If(e,`Undefined`)}function $f(e){return If(e,`Union`)}function Aye(e){return If(e,`Uint8Array`)}function jye(e){return If(e,`Unknown`)}function Mye(e){return If(e,`Unsafe`)}function Nye(e){return If(e,`Void`)}function Pye(e){return Rd(e)&&xf in e&&zd(e[xf])}function ep(e){return Cye(e)||wye(e)||Ef(e)||kf(e)||Of(e)||Df(e)||Af(e)||jf(e)||Tye(e)||Mf(e)||Nf(e)||Pf(e)||Ff(e)||Lf(e)||Rf(e)||zf(e)||Bf(e)||Dye(e)||Vf(e)||Hf(e)||Uf(e)||Wf(e)||Gf(e)||Kf(e)||Oye(e)||qf(e)||Jf(e)||Yf(e)||kye(e)||Zf(e)||Qf(e)||$f(e)||Aye(e)||jye(e)||Mye(e)||Nye(e)||Pye(e)}var tp=s((()=>{Hd(),Cf()}));function Fye(e){try{return new RegExp(e),!0}catch{return!1}}function np(e){if(!zd(e))return!1;for(let t=0;t=7&&n<=13||n===27||n===127)return!1}return!0}function Iye(e){return ap(e)||Rp(e)}function rp(e){return Vd(e)||Yve(e)}function ip(e){return Vd(e)||Ld(e)}function ap(e){return Vd(e)||Fd(e)}function op(e){return Vd(e)||zd(e)}function Lye(e){return Vd(e)||zd(e)&&np(e)&&Fye(e)}function Rye(e){return Vd(e)||zd(e)&&np(e)}function zye(e){return Vd(e)||Rp(e)}function sp(e){return Rd(e)&&e[yf]===`Optional`}function cp(e){return yp(e,`Any`)&&op(e.$id)}function Bye(e){return yp(e,`Argument`)&&Ld(e.index)}function lp(e){return yp(e,`Array`)&&e.type===`array`&&op(e.$id)&&Rp(e.items)&&ip(e.minItems)&&ip(e.maxItems)&&ap(e.uniqueItems)&&zye(e.contains)&&ip(e.minContains)&&ip(e.maxContains)}function up(e){return yp(e,`AsyncIterator`)&&e.type===`AsyncIterator`&&op(e.$id)&&Rp(e.items)}function dp(e){return yp(e,`BigInt`)&&e.type===`bigint`&&op(e.$id)&&rp(e.exclusiveMaximum)&&rp(e.exclusiveMinimum)&&rp(e.maximum)&&rp(e.minimum)&&rp(e.multipleOf)}function fp(e){return yp(e,`Boolean`)&&e.type===`boolean`&&op(e.$id)}function Vye(e){return yp(e,`Computed`)&&zd(e.target)&&Pd(e.parameters)&&e.parameters.every(e=>Rp(e))}function pp(e){return yp(e,`Constructor`)&&e.type===`Constructor`&&op(e.$id)&&Pd(e.parameters)&&e.parameters.every(e=>Rp(e))&&Rp(e.returns)}function mp(e){return yp(e,`Date`)&&e.type===`Date`&&op(e.$id)&&ip(e.exclusiveMaximumTimestamp)&&ip(e.exclusiveMinimumTimestamp)&&ip(e.maximumTimestamp)&&ip(e.minimumTimestamp)&&ip(e.multipleOfTimestamp)}function hp(e){return yp(e,`Function`)&&e.type===`Function`&&op(e.$id)&&Pd(e.parameters)&&e.parameters.every(e=>Rp(e))&&Rp(e.returns)}function gp(e){return yp(e,`Integer`)&&e.type===`integer`&&op(e.$id)&&ip(e.exclusiveMaximum)&&ip(e.exclusiveMinimum)&&ip(e.maximum)&&ip(e.minimum)&&ip(e.multipleOf)}function Hye(e){return Rd(e)&&Object.entries(e).every(([e,t])=>np(e)&&Rp(t))}function _p(e){return yp(e,`Intersect`)&&!(zd(e.type)&&e.type!==`object`)&&Pd(e.allOf)&&e.allOf.every(e=>Rp(e)&&!Zye(e))&&op(e.type)&&(ap(e.unevaluatedProperties)||zye(e.unevaluatedProperties))&&op(e.$id)}function vp(e){return yp(e,`Iterator`)&&e.type===`Iterator`&&op(e.$id)&&Rp(e.items)}function yp(e,t){return Rd(e)&&xf in e&&e[xf]===t}function Uye(e){return bp(e)&&zd(e.const)}function Wye(e){return bp(e)&&Ld(e.const)}function Gye(e){return bp(e)&&Fd(e.const)}function bp(e){return yp(e,`Literal`)&&op(e.$id)&&Kye(e.const)}function Kye(e){return Fd(e)||Ld(e)||zd(e)}function qye(e){return yp(e,`MappedKey`)&&Pd(e.keys)&&e.keys.every(e=>Ld(e)||zd(e))}function Jye(e){return yp(e,`MappedResult`)&&Hye(e.properties)}function xp(e){return yp(e,`Never`)&&Rd(e.not)&&Object.getOwnPropertyNames(e.not).length===0}function Sp(e){return yp(e,`Not`)&&Rp(e.not)}function Cp(e){return yp(e,`Null`)&&e.type===`null`&&op(e.$id)}function wp(e){return yp(e,`Number`)&&e.type===`number`&&op(e.$id)&&ip(e.exclusiveMaximum)&&ip(e.exclusiveMinimum)&&ip(e.maximum)&&ip(e.minimum)&&ip(e.multipleOf)}function Tp(e){return yp(e,`Object`)&&e.type===`object`&&op(e.$id)&&Hye(e.properties)&&Iye(e.additionalProperties)&&ip(e.minProperties)&&ip(e.maxProperties)}function Ep(e){return yp(e,`Promise`)&&e.type===`Promise`&&op(e.$id)&&Rp(e.item)}function Dp(e){return yp(e,`Record`)&&e.type===`object`&&op(e.$id)&&Iye(e.additionalProperties)&&Rd(e.patternProperties)&&(e=>{let t=Object.getOwnPropertyNames(e.patternProperties);return t.length===1&&Fye(t[0])&&Rd(e.patternProperties)&&Rp(e.patternProperties[t[0]])})(e)}function Yye(e){return yp(e,`Ref`)&&op(e.$id)&&zd(e.$ref)}function Op(e){return yp(e,`RegExp`)&&op(e.$id)&&zd(e.source)&&zd(e.flags)&&ip(e.maxLength)&&ip(e.minLength)}function kp(e){return yp(e,`String`)&&e.type===`string`&&op(e.$id)&&ip(e.minLength)&&ip(e.maxLength)&&Lye(e.pattern)&&Rye(e.format)}function Ap(e){return yp(e,`Symbol`)&&e.type===`symbol`&&op(e.$id)}function jp(e){return yp(e,`TemplateLiteral`)&&e.type===`string`&&zd(e.pattern)&&e.pattern[0]===`^`&&e.pattern[e.pattern.length-1]===`$`}function Xye(e){return yp(e,`This`)&&op(e.$id)&&zd(e.$ref)}function Zye(e){return Rd(e)&&_f in e}function Mp(e){return yp(e,`Tuple`)&&e.type===`array`&&op(e.$id)&&Ld(e.minItems)&&Ld(e.maxItems)&&e.minItems===e.maxItems&&(Vd(e.items)&&Vd(e.additionalItems)&&e.minItems===0||Pd(e.items)&&e.items.every(e=>Rp(e)))}function Np(e){return yp(e,`Undefined`)&&e.type===`undefined`&&op(e.$id)}function Pp(e){return yp(e,`Union`)&&op(e.$id)&&Rd(e)&&Pd(e.anyOf)&&e.anyOf.every(e=>Rp(e))}function Fp(e){return yp(e,`Uint8Array`)&&e.type===`Uint8Array`&&op(e.$id)&&ip(e.minByteLength)&&ip(e.maxByteLength)}function Ip(e){return yp(e,`Unknown`)&&op(e.$id)}function Qye(e){return yp(e,`Unsafe`)}function Lp(e){return yp(e,`Void`)&&e.type===`void`&&op(e.$id)}function $ye(e){return Rd(e)&&xf in e&&zd(e[xf])&&!ebe.includes(e[xf])}function Rp(e){return Rd(e)&&(cp(e)||Bye(e)||lp(e)||fp(e)||dp(e)||up(e)||Vye(e)||pp(e)||mp(e)||hp(e)||gp(e)||_p(e)||vp(e)||bp(e)||qye(e)||Jye(e)||xp(e)||Sp(e)||Cp(e)||wp(e)||Tp(e)||Ep(e)||Dp(e)||Yye(e)||Op(e)||kp(e)||Ap(e)||jp(e)||Xye(e)||Mp(e)||Np(e)||Pp(e)||Fp(e)||Ip(e)||Qye(e)||Lp(e)||$ye(e))}var ebe,tbe=s((()=>{Hd(),Cf(),ebe=`Argument.Any.Array.AsyncIterator.BigInt.Boolean.Computed.Constructor.Date.Enum.Function.Integer.Intersect.Iterator.Literal.MappedKey.MappedResult.Not.Null.Number.Object.Promise.Record.Ref.RegExp.String.Symbol.TemplateLiteral.This.Tuple.Undefined.Union.Uint8Array.Unknown.Void`.split(`.`)})),nbe=s((()=>{tp(),tbe(),Hd()})),rbe=s((()=>{})),ibe=s((()=>{rbe()})),zp,Bp,Vp,abe,Hp,Up,obe,sbe=s((()=>{zp=`(true|false)`,Bp=`(0|[1-9][0-9]*)`,Vp=`(.*)`,abe=`(?!.*)`,`${zp}`,Hp=`^${Bp}$`,Up=`^${Vp}$`,obe=`^${abe}$`})),Wp=s((()=>{sbe()}));function cbe(e){return Gp.has(e)}function lbe(e){return Gp.get(e)}var Gp,ube=s((()=>{Gp=new Map}));function Kp(e){return qp.has(e)}function dbe(e){return qp.get(e)}var qp,fbe=s((()=>{qp=new Map})),Jp=s((()=>{ube(),fbe()}));function pbe(e,t){return e.includes(t)}function mbe(e){return[...new Set(e)]}function hbe(e,t){return e.filter(e=>t.includes(e))}function gbe(e,t){return e.reduce((e,t)=>hbe(e,t),t)}function _be(e){return e.length===1?e[0]:e.length>1?gbe(e.slice(1),e[0]):[]}function vbe(e){let t=[];for(let n of e)t.push(...n);return t}var ybe=s((()=>{})),Yp=s((()=>{ybe()}));function Xp(e){return ff({[xf]:`Any`},e)}var bbe=s((()=>{mf(),Cf()})),Zp=s((()=>{bbe()}));function Qp(e,t){return ff({[xf]:`Array`,type:`array`,items:e},t)}var xbe=s((()=>{pf(),Cf()})),$p=s((()=>{xbe()}));function Sbe(e){return ff({[xf]:`Argument`,index:e})}var Cbe=s((()=>{pf(),Cf()})),wbe=s((()=>{Cbe()}));function em(e,t){return ff({[xf]:`AsyncIterator`,type:`AsyncIterator`,items:e},t)}var Tbe=s((()=>{Cf(),pf()})),tm=s((()=>{Tbe()}));function nm(e,t,n){return ff({[xf]:`Computed`,target:e,parameters:t},n)}var Ebe=s((()=>{mf(),Sf()})),rm=s((()=>{Ebe()}));function Dbe(e,t){let{[t]:n,...r}=e;return r}function im(e,t){return t.reduce((e,t)=>Dbe(e,t),e)}var am=s((()=>{})),om=s((()=>{am()}));function sm(e){return ff({[xf]:`Never`,not:{}},e)}var Obe=s((()=>{pf(),Cf()})),cm=s((()=>{Obe()})),kbe=s((()=>{}));function lm(e){return ff({[xf]:`MappedResult`,properties:e})}var Abe=s((()=>{pf(),Cf()}));function um(e,t,n){return ff({[xf]:`Constructor`,type:`Constructor`,parameters:e,returns:t},n)}var jbe=s((()=>{pf(),Cf()})),dm=s((()=>{jbe()}));function fm(e,t,n){return ff({[xf]:`Function`,type:`Function`,parameters:e,returns:t},n)}var Mbe=s((()=>{pf(),Cf()})),pm=s((()=>{Mbe()}));function mm(e,t){return ff({[xf]:`Union`,anyOf:e},t)}var Nbe=s((()=>{pf(),Cf()}));function Pbe(e){return e.some(e=>Tf(e))}function Fbe(e){return e.map(e=>Tf(e)?Ibe(e):e)}function Ibe(e){return im(e,[yf])}function Lbe(e,t){return Pbe(e)?nh(mm(Fbe(e),t)):mm(Fbe(e),t)}function hm(e,t){return e.length===1?ff(e[0],t):e.length===0?sm(t):Lbe(e,t)}var Rbe=s((()=>{pf(),Cf(),om(),cm(),rh(),Nbe(),tp()})),zbe=s((()=>{}));function gm(e,t){return e.length===0?sm(t):e.length===1?ff(e[0],t):mm(e,t)}var Bbe=s((()=>{cm(),pf(),Nbe()})),_m=s((()=>{Rbe(),zbe(),Bbe()}));function Vbe(e){return e.replace(/\\\$/g,`$`).replace(/\\\*/g,`*`).replace(/\\\^/g,`^`).replace(/\\\|/g,`|`).replace(/\\\(/g,`(`).replace(/\\\)/g,`)`)}function vm(e,t,n){return e[t]===n&&e.charCodeAt(t-1)!==92}function ym(e,t){return vm(e,t,`(`)}function bm(e,t){return vm(e,t,`)`)}function Hbe(e,t){return vm(e,t,`|`)}function Ube(e){if(!(ym(e,0)&&bm(e,e.length-1)))return!1;let t=0;for(let n=0;n0&&r.push(xm(t)),n=i+1}let i=e.slice(n);return i.length>0&&r.push(xm(i)),r.length===0?{type:`const`,const:``}:r.length===1?r[0]:{type:`or`,expr:r}}function Jbe(e){function t(e,t){if(!ym(e,t))throw new Cm(`TemplateLiteralParser: Index must point to open parens`);let n=0;for(let r=t;r0&&r.push(xm(o)),i=a-1}return r.length===0?{type:`const`,const:``}:r.length===1?r[0]:{type:`and`,expr:r}}function xm(e){return Ube(e)?xm(Wbe(e)):Gbe(e)?qbe(e):Kbe(e)?Jbe(e):{type:`const`,const:Vbe(e)}}function Sm(e){return xm(e.slice(1,e.length-1))}var Cm,wm=s((()=>{gf(),Cm=class extends hf{}}));function Ybe(e){return e.type===`or`&&e.expr.length===2&&e.expr[0].type===`const`&&e.expr[0].const===`0`&&e.expr[1].type===`const`&&e.expr[1].const===`[1-9][0-9]*`}function Xbe(e){return e.type===`or`&&e.expr.length===2&&e.expr[0].type===`const`&&e.expr[0].const===`true`&&e.expr[1].type===`const`&&e.expr[1].const===`false`}function Zbe(e){return e.type===`const`&&e.const===`.*`}function Tm(e){return Ybe(e)||Zbe(e)?!1:Xbe(e)?!0:e.type===`and`||e.type===`or`?e.expr.every(e=>Tm(e)):e.type===`const`||(()=>{throw new $be(`Unknown expression type`)})()}function Qbe(e){return Tm(Sm(e.pattern))}var $be,exe=s((()=>{wm(),gf(),$be=class extends hf{}}));function*txe(e){if(e.length===1)return yield*e[0];for(let t of e[0])for(let n of txe(e.slice(1)))yield`${t}${n}`}function*nxe(e){return yield*txe(e.expr.map(e=>[...Em(e)]))}function*rxe(e){for(let t of e.expr)yield*Em(t)}function*ixe(e){return yield e.const}function*Em(e){return e.type===`and`?yield*nxe(e):e.type===`or`?yield*rxe(e):e.type===`const`?yield*ixe(e):(()=>{throw new axe(`Unknown expression`)})()}function Dm(e){let t=Sm(e.pattern);return Tm(t)?[...Em(t)]:[]}var axe,oxe=s((()=>{exe(),wm(),gf(),axe=class extends hf{}}));function Om(e,t){return ff({[xf]:`Literal`,const:e,type:typeof e},t)}var sxe=s((()=>{pf(),Cf()})),km=s((()=>{sxe()}));function cxe(e){return ff({[xf]:`Boolean`,type:`boolean`},e)}var lxe=s((()=>{Cf(),mf()})),Am=s((()=>{lxe()}));function jm(e){return ff({[xf]:`BigInt`,type:`bigint`},e)}var uxe=s((()=>{Cf(),mf()})),Mm=s((()=>{uxe()}));function Nm(e){return ff({[xf]:`Number`,type:`number`},e)}var dxe=s((()=>{pf(),Cf()})),Pm=s((()=>{dxe()}));function Fm(e){return ff({[xf]:`String`,type:`string`},e)}var fxe=s((()=>{pf(),Cf()})),Im=s((()=>{fxe()}));function*pxe(e){let t=e.trim().replace(/"|'/g,``);return t===`boolean`?yield cxe():t===`number`?yield Nm():t===`bigint`?yield jm():t===`string`?yield Fm():yield(()=>{let e=t.split(`|`).map(e=>Om(e.trim()));return e.length===0?sm():e.length===1?e[0]:hm(e)})()}function*mxe(e){if(e[1]!==`{`)return yield*[Om(`$`),...Lm(e.slice(1))];for(let t=2;t{km(),Am(),Mm(),Pm(),Im(),_m(),cm()}));function _xe(e){return e.replace(/[.*+?^${}()|[\]\\]/g,`\\$&`)}function vxe(e,t){return Yf(e)?e.pattern.slice(1,e.pattern.length-1):$f(e)?`(${e.anyOf.map(e=>vxe(e,t)).join(`|`)})`:Hf(e)||Nf(e)||Of(e)?`${t}${Bp}`:qf(e)?`${t}${Vp}`:Lf(e)?`${t}${_xe(e.const.toString())}`:kf(e)?`${t}${zp}`:(()=>{throw new bxe(`Unexpected Kind '${e[xf]}'`)})()}function yxe(e){return`^${e.map(e=>vxe(e,``)).join(``)}\$`}var bxe,xxe=s((()=>{Wp(),Cf(),gf(),tp(),bxe=class extends hf{}}));function Rm(e){return hm(Dm(e).map(e=>Om(e)))}var Sxe=s((()=>{_m(),km(),oxe()}));function Cxe(e,t){let n=zd(e)?yxe(hxe(e)):yxe(e);return ff({[xf]:`TemplateLiteral`,type:`string`,pattern:n},t)}var wxe=s((()=>{pf(),gxe(),xxe(),Hd(),Cf()})),zm=s((()=>{exe(),oxe(),gxe(),wm(),xxe(),Sxe(),wxe()}));function Txe(e){return Dm(e).map(e=>e.toString())}function Exe(e){let t=[];for(let n of e)t.push(...Bm(n));return t}function Dxe(e){return[e.toString()]}function Bm(e){return[...new Set(Yf(e)?Txe(e):$f(e)?Exe(e.anyOf):Lf(e)?Dxe(e.const):Hf(e)||Nf(e)?[`[number]`]:[])]}var Vm=s((()=>{zm(),tp()}));function Oxe(e,t,n){let r={};for(let i of Object.getOwnPropertyNames(t))r[i]=Hm(e,Bm(t[i]),n);return r}function kxe(e,t,n){return Oxe(e,t.properties,n)}function Axe(e,t,n){return lm(kxe(e,t,n))}var jxe=s((()=>{th(),Vm(),Um()}));function Mxe(e,t){return e.map(e=>Bxe(e,t))}function Nxe(e){return e.filter(e=>!Bf(e))}function Pxe(e,t){return MSe(Nxe(Mxe(e,t)))}function Fxe(e){return e.some(e=>Bf(e))?[]:e}function Ixe(e,t){return hm(Fxe(Mxe(e,t)))}function Lxe(e,t){return t in e?e[t]:t===`[number]`?hm(e):sm()}function Rxe(e,t){return t===`[number]`?e:sm()}function zxe(e,t){return t in e?e[t]:sm()}function Bxe(e,t){return Pf(e)?Pxe(e.allOf,t):$f(e)?Ixe(e.anyOf,t):Zf(e)?Lxe(e.items??[],t):Ef(e)?Rxe(e.items,t):Uf(e)?zxe(e.properties,t):sm()}function Vxe(e,t){return t.map(t=>Bxe(e,t))}function Hxe(e,t){return hm(Vxe(e,t))}function Hm(e,t,n){if(Kf(e)||Kf(t)){if(!ep(e)||!ep(t))throw new hf(`Index types using Ref parameters require both Type and Key to be of TSchema`);return nm(`Index`,[e,t])}return zf(t)?Axe(e,t,n):Rf(t)?qxe(e,t,n):ff(ep(t)?Hxe(e,Bm(t)):Hxe(e,t),n)}var Uxe=s((()=>{pf(),gf(),rm(),cm(),oh(),_m(),Vm(),Jxe(),jxe(),tp()}));function Wxe(e,t,n){return{[t]:Hm(e,[t],Wd(n))}}function Gxe(e,t,n){return t.reduce((t,r)=>({...t,...Wxe(e,r,n)}),{})}function Kxe(e,t,n){return Gxe(e,t.keys,n)}function qxe(e,t,n){return lm(Kxe(e,t,n))}var Jxe=s((()=>{Uxe(),th(),Gd()})),Um=s((()=>{Jxe(),jxe(),Vm(),Uxe()}));function Wm(e,t){return ff({[xf]:`Iterator`,type:`Iterator`,items:e},t)}var Yxe=s((()=>{pf(),Cf()})),Gm=s((()=>{Yxe()}));function Xxe(e){let t=[];for(let n in e)Tf(e[n])||t.push(n);return t}function Zxe(e,t){let n=Xxe(e);return ff(n.length>0?{[xf]:`Object`,type:`object`,properties:e,required:n}:{[xf]:`Object`,type:`object`,properties:e},t)}var Km,Qxe=s((()=>{pf(),Cf(),tp(),Km=Zxe})),qm=s((()=>{Qxe()}));function $xe(e,t){return ff({[xf]:`Promise`,type:`Promise`,item:e},t)}var eSe=s((()=>{pf(),Cf()})),Jm=s((()=>{eSe()}));function tSe(e){return ff(im(e,[vf]))}function nSe(e){return ff({...e,[vf]:`Readonly`})}function rSe(e,t){return t===!1?tSe(e):nSe(e)}function Ym(e,t){let n=t??!0;return zf(e)?sSe(e,n):rSe(e,n)}var iSe=s((()=>{pf(),Cf(),om(),cSe(),tp()}));function aSe(e,t){let n={};for(let r of globalThis.Object.getOwnPropertyNames(e))n[r]=Ym(e[r],t);return n}function oSe(e,t){return aSe(e.properties,t)}function sSe(e,t){return lm(oSe(e,t))}var cSe=s((()=>{th(),iSe()})),Xm=s((()=>{cSe(),iSe()}));function Zm(e,t){return ff(e.length>0?{[xf]:`Tuple`,type:`array`,items:e,additionalItems:!1,minItems:e.length,maxItems:e.length}:{[xf]:`Tuple`,type:`array`,minItems:e.length,maxItems:e.length},t)}var lSe=s((()=>{pf(),Cf()})),Qm=s((()=>{lSe()}));function uSe(e,t){return e in t?eh(e,t[e]):lm(t)}function dSe(e){return{[e]:Om(e)}}function fSe(e){let t={};for(let n of e)t[n]=Om(n);return t}function pSe(e,t){return pbe(t,e)?dSe(e):fSe(t)}function mSe(e,t){return uSe(e,pSe(e,t))}function $m(e,t){return t.map(t=>eh(e,t))}function hSe(e,t){let n={};for(let r of globalThis.Object.getOwnPropertyNames(t))n[r]=eh(e,t[r]);return n}function eh(e,t){let n={...t};return Tf(t)?nh(eh(e,im(t,[yf]))):wf(t)?Ym(eh(e,im(t,[vf]))):zf(t)?uSe(e,t.properties):Rf(t)?mSe(e,t.keys):jf(t)?um($m(e,t.parameters),eh(e,t.returns),n):Mf(t)?fm($m(e,t.parameters),eh(e,t.returns),n):Df(t)?em(eh(e,t.items),n):Ff(t)?Wm(eh(e,t.items),n):Pf(t)?ah($m(e,t.allOf),n):$f(t)?gm($m(e,t.anyOf),n):Zf(t)?Zm($m(e,t.items??[]),n):Uf(t)?Km(hSe(e,t.properties),n):Ef(t)?Qp(eh(e,t.items),n):Wf(t)?$xe(eh(e,t.item),n):t}function gSe(e,t){let n={};for(let r of e)n[r]=eh(r,t);return n}function _Se(e,t,n){let r=ep(e)?Bm(e):e;return Km(gSe(r,t({[xf]:`MappedKey`,keys:r})),n)}var vSe=s((()=>{Cf(),om(),$p(),tm(),dm(),pm(),Um(),oh(),Gm(),km(),qm(),rh(),Jm(),Xm(),Qm(),_m(),Yp(),Abe(),tp()})),th=s((()=>{kbe(),Abe(),vSe()}));function ySe(e){return ff(im(e,[yf]))}function bSe(e){return ff({...e,[yf]:`Optional`})}function xSe(e,t){return t===!1?ySe(e):bSe(e)}function nh(e,t){let n=t??!0;return zf(e)?TSe(e,n):xSe(e,n)}var SSe=s((()=>{pf(),Cf(),om(),ESe(),tp()}));function CSe(e,t){let n={};for(let r of globalThis.Object.getOwnPropertyNames(e))n[r]=nh(e[r],t);return n}function wSe(e,t){return CSe(e.properties,t)}function TSe(e,t){return lm(wSe(e,t))}var ESe=s((()=>{th(),SSe()})),rh=s((()=>{ESe(),SSe()}));function ih(e,t={}){let n=e.every(e=>Uf(e)),r=ep(t.unevaluatedProperties)?{unevaluatedProperties:t.unevaluatedProperties}:{};return ff(t.unevaluatedProperties===!1||ep(t.unevaluatedProperties)||n?{...r,[xf]:`Intersect`,type:`object`,allOf:e}:{...r,[xf]:`Intersect`,allOf:e},t)}var DSe=s((()=>{pf(),Cf(),tp()}));function OSe(e){return e.every(e=>Tf(e))}function kSe(e){return im(e,[yf])}function ASe(e){return e.map(e=>Tf(e)?kSe(e):e)}function jSe(e,t){return OSe(e)?nh(ih(ASe(e),t)):ih(ASe(e),t)}function MSe(e,t={}){if(e.length===1)return ff(e[0],t);if(e.length===0)return sm(t);if(e.some(e=>Xf(e)))throw Error(`Cannot intersect transform types`);return jSe(e,t)}var NSe=s((()=>{Cf(),pf(),om(),cm(),rh(),DSe(),tp()})),PSe=s((()=>{}));function ah(e,t){if(e.length===1)return ff(e[0],t);if(e.length===0)return sm(t);if(e.some(e=>Xf(e)))throw Error(`Cannot intersect transform types`);return ih(e,t)}var FSe=s((()=>{pf(),cm(),DSe(),tp()})),oh=s((()=>{NSe(),PSe(),FSe()}));function sh(...e){let[t,n]=typeof e[0]==`string`?[e[0],e[1]]:[e[0].$id,e[1]];if(typeof t!=`string`)throw new hf(`Ref: $ref must be a string`);return ff({[xf]:`Ref`,$ref:t},n)}var ISe=s((()=>{gf(),pf(),Cf()})),ch=s((()=>{ISe()}));function LSe(e,t){return nm(`Awaited`,[nm(e,t)])}function RSe(e){return nm(`Awaited`,[sh(e)])}function zSe(e){return ah(HSe(e))}function BSe(e){return gm(HSe(e))}function VSe(e){return lh(e)}function HSe(e){return e.map(e=>lh(e))}function lh(e,t){return ff(Af(e)?LSe(e.target,e.parameters):Pf(e)?zSe(e.allOf):$f(e)?BSe(e.anyOf):Wf(e)?VSe(e.item):Kf(e)?RSe(e.$ref):e,t)}var USe=s((()=>{pf(),rm(),oh(),_m(),ch(),tp()})),uh=s((()=>{USe()}));function WSe(e){let t=[];for(let n of e)t.push(dh(n));return t}function GSe(e){return vbe(WSe(e))}function KSe(e){return _be(WSe(e))}function qSe(e){return e.map((e,t)=>t.toString())}function JSe(e){return[`[number]`]}function YSe(e){return globalThis.Object.getOwnPropertyNames(e)}function XSe(e){return ph?globalThis.Object.getOwnPropertyNames(e).map(e=>e[0]===`^`&&e[e.length-1]===`$`?e.slice(1,e.length-1):e):[]}function dh(e){return Pf(e)?GSe(e.allOf):$f(e)?KSe(e.anyOf):Zf(e)?qSe(e.items??[]):Ef(e)?JSe(e.items):Uf(e)?YSe(e.properties):Gf(e)?XSe(e.patternProperties):[]}function fh(e){ph=!0;let t=dh(e);return ph=!1,`^(${t.map(e=>`(${e})`).join(`|`)})$`}var ph,ZSe=s((()=>{Yp(),tp(),ph=!1}));function QSe(e,t){return nm(`KeyOf`,[nm(e,t)])}function $Se(e){return nm(`KeyOf`,[sh(e)])}function eCe(e,t){return ff(hm(tCe(dh(e))),t)}function tCe(e){return e.map(e=>e===`[number]`?Nm():Om(e))}function mh(e,t){return Af(e)?QSe(e.target,e.parameters):Kf(e)?$Se(e.$ref):zf(e)?aCe(e,t):eCe(e,t)}var nCe=s((()=>{pf(),km(),Pm(),rm(),ch(),ZSe(),_m(),oCe(),tp()}));function rCe(e,t){let n={};for(let r of globalThis.Object.getOwnPropertyNames(e))n[r]=mh(e[r],Wd(t));return n}function iCe(e,t){return rCe(e.properties,t)}function aCe(e,t){return lm(iCe(e,t))}var oCe=s((()=>{th(),nCe(),Gd()})),sCe=s((()=>{})),hh=s((()=>{oCe(),sCe(),ZSe(),nCe()}));function cCe(e){let t=[];for(let n of e)t.push(...dh(n));return mbe(t)}function lCe(e){return e.filter(e=>!Bf(e))}function uCe(e,t){let n=[];for(let r of e)n.push(...Vxe(r,[t]));return lCe(n)}function dCe(e,t){let n={};for(let r of t)n[r]=MSe(uCe(e,r));return n}function fCe(e,t){return Km(dCe(e,cCe(e)),t)}var pCe=s((()=>{oh(),Um(),hh(),qm(),Yp(),tp()})),gh=s((()=>{pCe()}));function mCe(e){return ff({[xf]:`Date`,type:`Date`},e)}var hCe=s((()=>{Cf(),pf()})),_h=s((()=>{hCe()}));function gCe(e){return ff({[xf]:`Null`,type:`null`},e)}var _Ce=s((()=>{pf(),Cf()})),vh=s((()=>{_Ce()}));function vCe(e){return ff({[xf]:`Symbol`,type:`symbol`},e)}var yCe=s((()=>{pf(),Cf()})),yh=s((()=>{yCe()}));function bCe(e){return ff({[xf]:`Undefined`,type:`undefined`},e)}var xCe=s((()=>{pf(),Cf()})),bh=s((()=>{xCe()}));function SCe(e){return ff({[xf]:`Uint8Array`,type:`Uint8Array`},e)}var CCe=s((()=>{pf(),Cf()})),xh=s((()=>{CCe()}));function Sh(e){return ff({[xf]:`Unknown`},e)}var wCe=s((()=>{pf(),Cf()})),Ch=s((()=>{wCe()}));function TCe(e){return e.map(e=>Th(e,!1))}function ECe(e){let t={};for(let n of globalThis.Object.getOwnPropertyNames(e))t[n]=Ym(Th(e[n],!1));return t}function wh(e,t){return t===!0?e:Ym(e)}function Th(e,t){return Jve(e)||Zve(e)?wh(Xp(),t):Pd(e)?Ym(Zm(TCe(e))):Bd(e)?SCe():Id(e)?mCe():Rd(e)?wh(Km(ECe(e)),t):Xve(e)?wh(fm([],Sh()),t):Vd(e)?bCe():Qve(e)?gCe():eye(e)?vCe():Yve(e)?jm():Ld(e)||Fd(e)||zd(e)?Om(e):Km({})}function DCe(e,t){return ff(Th(e,!0),t)}var OCe=s((()=>{Zp(),Mm(),_h(),pm(),km(),vh(),qm(),yh(),Qm(),Xm(),bh(),xh(),Ch(),mf(),Hd()})),Eh=s((()=>{OCe()}));function kCe(e,t){return jf(e)?Zm(e.parameters,t):sm(t)}var ACe=s((()=>{Qm(),cm(),tp()})),jCe=s((()=>{ACe()}));function MCe(e,t){if(Vd(e))throw Error(`Enum undefined or empty`);let n=globalThis.Object.getOwnPropertyNames(e).filter(e=>isNaN(e)).map(t=>e[t]);return gm([...new Set(n)].map(e=>Om(e)),{...t,[bf]:`Enum`})}var NCe=s((()=>{km(),Cf(),_m(),Hd()})),Dh=s((()=>{NCe()}));function Oh(e){return e===Wh.False?e:Wh.True}function kh(e){throw new Awe(e)}function Ah(e){return xp(e)||_p(e)||Pp(e)||Ip(e)||cp(e)}function jh(e,t){return xp(t)?YCe(e,t):_p(t)?Nh(e,t):Pp(t)?Vh(e,t):Ip(t)?Ewe(e,t):cp(t)?Mh(e,t):kh(`StructuralRight`)}function Mh(e,t){return Wh.True}function PCe(e,t){return _p(t)?Nh(e,t):Pp(t)&&t.anyOf.some(e=>cp(e)||Ip(e))?Wh.True:Pp(t)?Wh.Union:Ip(t)||cp(t)?Wh.True:Wh.Union}function FCe(e,t){return Ip(e)?Wh.False:cp(e)?Wh.Union:xp(e)?Wh.True:Wh.False}function ICe(e,t){return Tp(t)&&Ih(t)?Wh.True:Ah(t)?jh(e,t):lp(t)?Oh(Hh(e.items,t.items)):Wh.False}function LCe(e,t){return Ah(t)?jh(e,t):up(t)?Oh(Hh(e.items,t.items)):Wh.False}function RCe(e,t){return Ah(t)?jh(e,t):Tp(t)?Lh(e,t):Dp(t)?Bh(e,t):dp(t)?Wh.True:Wh.False}function zCe(e,t){return Gye(e)||fp(e)?Wh.True:Wh.False}function BCe(e,t){return Ah(t)?jh(e,t):Tp(t)?Lh(e,t):Dp(t)?Bh(e,t):fp(t)?Wh.True:Wh.False}function VCe(e,t){return Ah(t)?jh(e,t):Tp(t)?Lh(e,t):pp(t)?e.parameters.length>t.parameters.length?Wh.False:e.parameters.every((e,n)=>Oh(Hh(t.parameters[n],e))===Wh.True)?Oh(Hh(e.returns,t.returns)):Wh.False:Wh.False}function HCe(e,t){return Ah(t)?jh(e,t):Tp(t)?Lh(e,t):Dp(t)?Bh(e,t):mp(t)?Wh.True:Wh.False}function UCe(e,t){return Ah(t)?jh(e,t):Tp(t)?Lh(e,t):hp(t)?e.parameters.length>t.parameters.length?Wh.False:e.parameters.every((e,n)=>Oh(Hh(t.parameters[n],e))===Wh.True)?Oh(Hh(e.returns,t.returns)):Wh.False:Wh.False}function WCe(e,t){return bp(e)&&Ld(e.const)||wp(e)||gp(e)?Wh.True:Wh.False}function GCe(e,t){return gp(t)||wp(t)?Wh.True:Ah(t)?jh(e,t):Tp(t)?Lh(e,t):Dp(t)?Bh(e,t):Wh.False}function Nh(e,t){return t.allOf.every(t=>Hh(e,t)===Wh.True)?Wh.True:Wh.False}function KCe(e,t){return e.allOf.some(e=>Hh(e,t)===Wh.True)?Wh.True:Wh.False}function qCe(e,t){return Ah(t)?jh(e,t):vp(t)?Oh(Hh(e.items,t.items)):Wh.False}function JCe(e,t){return bp(t)&&t.const===e.const?Wh.True:Ah(t)?jh(e,t):Tp(t)?Lh(e,t):Dp(t)?Bh(e,t):kp(t)?gwe(e,t):wp(t)?ewe(e,t):gp(t)?WCe(e,t):fp(t)?zCe(e,t):Wh.False}function YCe(e,t){return Wh.False}function XCe(e,t){return Wh.True}function ZCe(e){let[t,n]=[e,0];for(;Sp(t);)t=t.not,n+=1;return n%2==0?t:Sh()}function QCe(e,t){return Sp(e)?Hh(ZCe(e),t):Sp(t)?Hh(e,ZCe(t)):kh(`Invalid fallthrough for Not`)}function $Ce(e,t){return Ah(t)?jh(e,t):Tp(t)?Lh(e,t):Dp(t)?Bh(e,t):Cp(t)?Wh.True:Wh.False}function ewe(e,t){return Wye(e)||wp(e)||gp(e)?Wh.True:Wh.False}function twe(e,t){return Ah(t)?jh(e,t):Tp(t)?Lh(e,t):Dp(t)?Bh(e,t):gp(t)||wp(t)?Wh.True:Wh.False}function Ph(e,t){return Object.getOwnPropertyNames(e.properties).length===t}function nwe(e){return Ih(e)}function rwe(e){return Ph(e,0)||Ph(e,1)&&`description`in e.properties&&Pp(e.properties.description)&&e.properties.description.anyOf.length===2&&(kp(e.properties.description.anyOf[0])&&Np(e.properties.description.anyOf[1])||kp(e.properties.description.anyOf[1])&&Np(e.properties.description.anyOf[0]))}function Fh(e){return Ph(e,0)}function iwe(e){return Ph(e,0)}function awe(e){return Ph(e,0)}function owe(e){return Ph(e,0)}function swe(e){return Ih(e)}function cwe(e){let t=Nm();return Ph(e,0)||Ph(e,1)&&`length`in e.properties&&Oh(Hh(e.properties.length,t))===Wh.True}function lwe(e){return Ph(e,0)}function Ih(e){let t=Nm();return Ph(e,0)||Ph(e,1)&&`length`in e.properties&&Oh(Hh(e.properties.length,t))===Wh.True}function uwe(e){let t=fm([Xp()],Xp());return Ph(e,0)||Ph(e,1)&&`then`in e.properties&&Oh(Hh(e.properties.then,t))===Wh.True}function dwe(e,t){return Hh(e,t)===Wh.False||sp(e)&&!sp(t)?Wh.False:Wh.True}function Lh(e,t){return Ip(e)?Wh.False:cp(e)?Wh.Union:xp(e)||Uye(e)&&nwe(t)||Wye(e)&&Fh(t)||Gye(e)&&iwe(t)||Ap(e)&&rwe(t)||dp(e)&&awe(t)||kp(e)&&nwe(t)||Ap(e)&&rwe(t)||wp(e)&&Fh(t)||gp(e)&&Fh(t)||fp(e)&&iwe(t)||Fp(e)&&swe(t)||mp(e)&&owe(t)||pp(e)&&lwe(t)||hp(e)&&cwe(t)?Wh.True:Dp(e)&&kp(Rh(e))?t[bf]===`Record`?Wh.True:Wh.False:Dp(e)&&wp(Rh(e))&&Ph(t,0)?Wh.True:Wh.False}function fwe(e,t){return Ah(t)?jh(e,t):Dp(t)?Bh(e,t):Tp(t)?(()=>{for(let n of Object.getOwnPropertyNames(t.properties)){if(!(n in e.properties)&&!sp(t.properties[n]))return Wh.False;if(sp(t.properties[n]))return Wh.True;if(dwe(e.properties[n],t.properties[n])===Wh.False)return Wh.False}return Wh.True})():Wh.False}function pwe(e,t){return Ah(t)?jh(e,t):Tp(t)&&uwe(t)?Wh.True:Ep(t)?Oh(Hh(e.item,t.item)):Wh.False}function Rh(e){return Hp in e.patternProperties?Nm():Up in e.patternProperties?Fm():kh(`Unknown record key pattern`)}function zh(e){return Hp in e.patternProperties?e.patternProperties[Hp]:Up in e.patternProperties?e.patternProperties[Up]:kh(`Unable to get record value schema`)}function Bh(e,t){let[n,r]=[Rh(t),zh(t)];return Uye(e)&&wp(n)&&Oh(Hh(e,r))===Wh.True?Wh.True:Fp(e)&&wp(n)||kp(e)&&wp(n)||lp(e)&&wp(n)?Hh(e,r):Tp(e)?(()=>{for(let t of Object.getOwnPropertyNames(e.properties))if(dwe(r,e.properties[t])===Wh.False)return Wh.False;return Wh.True})():Wh.False}function mwe(e,t){return Ah(t)?jh(e,t):Tp(t)?Lh(e,t):Dp(t)?Hh(zh(e),zh(t)):Wh.False}function hwe(e,t){return Hh(Op(e)?Fm():e,Op(t)?Fm():t)}function gwe(e,t){return bp(e)&&zd(e.const)||kp(e)?Wh.True:Wh.False}function _we(e,t){return Ah(t)?jh(e,t):Tp(t)?Lh(e,t):Dp(t)?Bh(e,t):kp(t)?Wh.True:Wh.False}function vwe(e,t){return Ah(t)?jh(e,t):Tp(t)?Lh(e,t):Dp(t)?Bh(e,t):Ap(t)?Wh.True:Wh.False}function ywe(e,t){return jp(e)?Hh(Rm(e),t):jp(t)?Hh(e,Rm(t)):kh(`Invalid fallthrough for TemplateLiteral`)}function bwe(e,t){return lp(t)&&e.items!==void 0&&e.items.every(e=>Hh(e,t.items)===Wh.True)}function xwe(e,t){return xp(e)?Wh.True:Ip(e)?Wh.False:cp(e)?Wh.Union:Wh.False}function Swe(e,t){return Ah(t)?jh(e,t):Tp(t)&&Ih(t)||lp(t)&&bwe(e,t)?Wh.True:Mp(t)?Vd(e.items)&&!Vd(t.items)||!Vd(e.items)&&Vd(t.items)?Wh.False:Vd(e.items)&&!Vd(t.items)||e.items.every((e,n)=>Hh(e,t.items[n])===Wh.True)?Wh.True:Wh.False:Wh.False}function Cwe(e,t){return Ah(t)?jh(e,t):Tp(t)?Lh(e,t):Dp(t)?Bh(e,t):Fp(t)?Wh.True:Wh.False}function wwe(e,t){return Ah(t)?jh(e,t):Tp(t)?Lh(e,t):Dp(t)?Bh(e,t):Lp(t)?Owe(e,t):Np(t)?Wh.True:Wh.False}function Vh(e,t){return t.anyOf.some(t=>Hh(e,t)===Wh.True)?Wh.True:Wh.False}function Twe(e,t){return e.anyOf.every(e=>Hh(e,t)===Wh.True)?Wh.True:Wh.False}function Ewe(e,t){return Wh.True}function Dwe(e,t){return xp(t)?YCe(e,t):_p(t)?Nh(e,t):Pp(t)?Vh(e,t):cp(t)?Mh(e,t):kp(t)?gwe(e,t):wp(t)?ewe(e,t):gp(t)?WCe(e,t):fp(t)?zCe(e,t):lp(t)?FCe(e,t):Mp(t)?xwe(e,t):Tp(t)?Lh(e,t):Ip(t)?Wh.True:Wh.False}function Owe(e,t){return Np(e)||Np(e)?Wh.True:Wh.False}function kwe(e,t){return _p(t)?Nh(e,t):Pp(t)?Vh(e,t):Ip(t)?Ewe(e,t):cp(t)?Mh(e,t):Tp(t)?Lh(e,t):Lp(t)?Wh.True:Wh.False}function Hh(e,t){return jp(e)||jp(t)?ywe(e,t):Op(e)||Op(t)?hwe(e,t):Sp(e)||Sp(t)?QCe(e,t):cp(e)?PCe(e,t):lp(e)?ICe(e,t):dp(e)?RCe(e,t):fp(e)?BCe(e,t):up(e)?LCe(e,t):pp(e)?VCe(e,t):mp(e)?HCe(e,t):hp(e)?UCe(e,t):gp(e)?GCe(e,t):_p(e)?KCe(e,t):vp(e)?qCe(e,t):bp(e)?JCe(e,t):xp(e)?XCe(e,t):Cp(e)?$Ce(e,t):wp(e)?twe(e,t):Tp(e)?fwe(e,t):Dp(e)?mwe(e,t):kp(e)?_we(e,t):Ap(e)?vwe(e,t):Mp(e)?Swe(e,t):Ep(e)?pwe(e,t):Fp(e)?Cwe(e,t):Np(e)?wwe(e,t):Pp(e)?Twe(e,t):Ip(e)?Dwe(e,t):Lp(e)?kwe(e,t):kh(`Unknown left type operand '${e[xf]}'`)}function Uh(e,t){return Hh(e,t)}var Awe,Wh,jwe=s((()=>{Zp(),pm(),Pm(),Im(),Ch(),zm(),Wp(),Cf(),gf(),nbe(),Awe=class extends hf{},(function(e){e[e.Union=0]=`Union`,e[e.True=1]=`True`,e[e.False=2]=`False`})(Wh||={})}));function Mwe(e,t,n,r,i){let a={};for(let o of globalThis.Object.getOwnPropertyNames(e))a[o]=Gh(e[o],t,n,r,Wd(i));return a}function Nwe(e,t,n,r,i){return Mwe(e.properties,t,n,r,i)}function Pwe(e,t,n,r,i){return lm(Nwe(e,t,n,r,i))}var Fwe=s((()=>{th(),Kh(),Gd()}));function Iwe(e,t,n,r){let i=Uh(e,t);return i===Wh.Union?gm([n,r]):i===Wh.True?n:r}function Gh(e,t,n,r,i){return zf(e)?Pwe(e,t,n,r,i):Rf(e)?ff(Bwe(e,t,n,r,i)):ff(Iwe(e,t,n,r),i)}var Kh=s((()=>{pf(),_m(),jwe(),Vwe(),Fwe(),tp()}));function Lwe(e,t,n,r,i){return{[e]:Gh(Om(e),t,n,r,Wd(i))}}function Rwe(e,t,n,r,i){return e.reduce((e,a)=>({...e,...Lwe(a,t,n,r,i)}),{})}function zwe(e,t,n,r,i){return Rwe(e.keys,t,n,r,i)}function Bwe(e,t,n,r,i){return lm(zwe(e,t,n,r,i))}var Vwe=s((()=>{th(),km(),Kh(),Gd()}));function Hwe(e){return e.allOf.every(e=>qh(e))}function Uwe(e){return e.anyOf.some(e=>qh(e))}function Wwe(e){return!qh(e.not)}function qh(e){return e[xf]===`Intersect`?Hwe(e):e[xf]===`Union`?Uwe(e):e[xf]===`Not`?Wwe(e):e[xf]===`Undefined`}var Gwe=s((()=>{Cf()})),Jh=s((()=>{jwe(),Vwe(),Fwe(),Gwe(),Kh()}));function Kwe(e,t){return Yh(Rm(e),t)}var qwe=s((()=>{Xh(),zm()}));function Jwe(e,t){let n=e.filter(e=>Uh(e,t)===Wh.False);return n.length===1?n[0]:gm(n)}function Yh(e,t,n={}){return Yf(e)?ff(Kwe(e,t),n):zf(e)?ff(Zwe(e,t),n):ff($f(e)?Jwe(e.anyOf,t):Uh(e,t)===Wh.False?e:sm(),n)}var Xh=s((()=>{pf(),_m(),cm(),Jh(),Qwe(),qwe(),tp()}));function Ywe(e,t){let n={};for(let r of globalThis.Object.getOwnPropertyNames(e))n[r]=Yh(e[r],t);return n}function Xwe(e,t){return Ywe(e.properties,t)}function Zwe(e,t){return lm(Xwe(e,t))}var Qwe=s((()=>{th(),Xh()})),Zh=s((()=>{Qwe(),qwe(),Xh()}));function $we(e,t){return Qh(Rm(e),t)}var eTe=s((()=>{$h(),zm()}));function tTe(e,t){let n=e.filter(e=>Uh(e,t)!==Wh.False);return n.length===1?n[0]:gm(n)}function Qh(e,t,n){return Yf(e)?ff($we(e,t),n):zf(e)?ff(iTe(e,t),n):ff($f(e)?tTe(e.anyOf,t):Uh(e,t)===Wh.False?sm():e,n)}var $h=s((()=>{pf(),_m(),cm(),Jh(),aTe(),eTe(),tp()}));function nTe(e,t){let n={};for(let r of globalThis.Object.getOwnPropertyNames(e))n[r]=Qh(e[r],t);return n}function rTe(e,t){return nTe(e.properties,t)}function iTe(e,t){return lm(rTe(e,t))}var aTe=s((()=>{th(),$h()})),eg=s((()=>{aTe(),eTe(),$h()}));function oTe(e,t){return jf(e)?ff(e.returns,t):sm(t)}var sTe=s((()=>{pf(),cm(),tp()})),cTe=s((()=>{sTe()}));function lTe(e){return Ym(nh(e))}var uTe=s((()=>{Xm(),rh()})),tg=s((()=>{uTe()}));function ng(e,t,n){return ff({[xf]:`Record`,type:`object`,patternProperties:{[e]:t}},n)}function rg(e,t,n){let r={};for(let n of e)r[n]=t;return Km(r,{...n,[bf]:`Record`})}function dTe(e,t,n){return Qbe(e)?rg(Bm(e),t,n):ng(e.pattern,t,n)}function fTe(e,t,n){return rg(Bm(gm(e)),t,n)}function pTe(e,t,n){return rg([e.toString()],t,n)}function mTe(e,t,n){return ng(e.source,t,n)}function hTe(e,t,n){return ng(Vd(e.pattern)?Up:e.pattern,t,n)}function gTe(e,t,n){return ng(Up,t,n)}function _Te(e,t,n){return ng(obe,t,n)}function vTe(e,t,n){return Km({true:t,false:t},n)}function yTe(e,t,n){return ng(Hp,t,n)}function bTe(e,t,n){return ng(Hp,t,n)}function xTe(e,t,n={}){return $f(e)?fTe(e.anyOf,t,n):Yf(e)?dTe(e,t,n):Lf(e)?pTe(e.const,t,n):kf(e)?vTe(e,t,n):Nf(e)?yTe(e,t,n):Hf(e)?bTe(e,t,n):Oye(e)?mTe(e,t,n):qf(e)?hTe(e,t,n):Cye(e)?gTe(e,t,n):Bf(e)?_Te(e,t,n):sm(n)}function ig(e){return globalThis.Object.getOwnPropertyNames(e.patternProperties)[0]}function STe(e){let t=ig(e);return t===Up?Fm():t===Hp?Nm():Fm({pattern:t})}function CTe(e){return e.patternProperties[ig(e)]}var wTe=s((()=>{pf(),Cf(),cm(),Pm(),qm(),Im(),_m(),zm(),Wp(),Um(),Hd(),tp()})),ag=s((()=>{wTe()}));function TTe(e,t){return t.parameters=og(e,t.parameters),t.returns=sg(e,t.returns),t}function ETe(e,t){return t.parameters=og(e,t.parameters),t.returns=sg(e,t.returns),t}function DTe(e,t){return t.allOf=og(e,t.allOf),t}function OTe(e,t){return t.anyOf=og(e,t.anyOf),t}function kTe(e,t){return Vd(t.items)||(t.items=og(e,t.items)),t}function ATe(e,t){return t.items=sg(e,t.items),t}function jTe(e,t){return t.items=sg(e,t.items),t}function MTe(e,t){return t.items=sg(e,t.items),t}function NTe(e,t){return t.item=sg(e,t.item),t}function PTe(e,t){let n=RTe(e,t.properties);return{...t,...Km(n)}}function FTe(e,t){let n=xTe(sg(e,STe(t)),sg(e,CTe(t)));return{...t,...n}}function ITe(e,t){return t.index in e?e[t.index]:Sh()}function LTe(e,t){let n=wf(t),r=Tf(t),i=sg(e,t);return n&&r?lTe(i):n&&!r?Ym(i):!n&&r?nh(i):i}function RTe(e,t){return globalThis.Object.getOwnPropertyNames(t).reduce((n,r)=>({...n,[r]:LTe(e,t[r])}),{})}function og(e,t){return t.map(t=>sg(e,t))}function sg(e,t){return jf(t)?TTe(e,t):Mf(t)?ETe(e,t):Pf(t)?DTe(e,t):$f(t)?OTe(e,t):Zf(t)?kTe(e,t):Ef(t)?ATe(e,t):Df(t)?jTe(e,t):Ff(t)?MTe(e,t):Wf(t)?NTe(e,t):Uf(t)?PTe(e,t):Gf(t)?FTe(e,t):wye(t)?ITe(e,t):t}function zTe(e,t){return sg(t,Kd(e))}var BTe=s((()=>{qd(),Ch(),tg(),Xm(),rh(),qm(),ag(),Hd(),tp()})),VTe=s((()=>{BTe()}));function HTe(e){return ff({[xf]:`Integer`,type:`integer`},e)}var UTe=s((()=>{pf(),Cf()})),cg=s((()=>{UTe()}));function WTe(e,t,n){return{[e]:lg(Om(e),t,Wd(n))}}function GTe(e,t,n){return e.reduce((e,r)=>({...e,...WTe(r,t,n)}),{})}function KTe(e,t,n){return GTe(e.keys,t,n)}function qTe(e,t,n){return lm(KTe(e,t,n))}var JTe=s((()=>{th(),ug(),km(),Gd()}));function YTe(e){let[t,n]=[e.slice(0,1),e.slice(1)];return[t.toLowerCase(),n].join(``)}function XTe(e){let[t,n]=[e.slice(0,1),e.slice(1)];return[t.toUpperCase(),n].join(``)}function ZTe(e){return e.toUpperCase()}function QTe(e){return e.toLowerCase()}function $Te(e,t,n){let r=Sm(e.pattern);return Tm(r)?Cxe([gm(tEe([...Em(r)].map(e=>Om(e)),t))],n):{...e,pattern:eEe(e.pattern,t)}}function eEe(e,t){return typeof e==`string`?t===`Uncapitalize`?YTe(e):t===`Capitalize`?XTe(e):t===`Uppercase`?ZTe(e):t===`Lowercase`?QTe(e):e:e.toString()}function tEe(e,t){return e.map(e=>lg(e,t))}function lg(e,t,n={}){return Rf(e)?qTe(e,t,n):Yf(e)?$Te(e,t,n):$f(e)?gm(tEe(e.anyOf,t),n):Lf(e)?Om(eEe(e.const,t),n):ff(e,n)}var ug=s((()=>{pf(),zm(),JTe(),km(),_m(),tp()}));function nEe(e,t={}){return lg(e,`Capitalize`,t)}var rEe=s((()=>{ug()}));function iEe(e,t={}){return lg(e,`Lowercase`,t)}var aEe=s((()=>{ug()}));function oEe(e,t={}){return lg(e,`Uncapitalize`,t)}var sEe=s((()=>{ug()}));function cEe(e,t={}){return lg(e,`Uppercase`,t)}var lEe=s((()=>{ug()})),dg=s((()=>{rEe(),JTe(),ug(),aEe(),sEe(),lEe()}));function uEe(e,t,n){let r={};for(let i of globalThis.Object.getOwnPropertyNames(e))r[i]=pg(e[i],t,Wd(n));return r}function dEe(e,t,n){return uEe(e.properties,t,n)}function fEe(e,t,n){return lm(dEe(e,t,n))}var pEe=s((()=>{th(),mg(),Gd()}));function mEe(e,t){return e.map(e=>fg(e,t))}function hEe(e,t){return e.map(e=>fg(e,t))}function gEe(e,t){let{[t]:n,...r}=e;return r}function _Ee(e,t){return t.reduce((e,t)=>gEe(e,t),e)}function vEe(e,t){let n=im(e,[_f,`$id`,`required`,`properties`]);return Km(_Ee(e.properties,t),n)}function yEe(e){return gm(e.reduce((e,t)=>Eye(t)?[...e,Om(t)]:e,[]))}function fg(e,t){return Pf(e)?ah(mEe(e.allOf,t)):$f(e)?gm(hEe(e.anyOf,t)):Uf(e)?vEe(e,t):Km({})}function pg(e,t,n){let r=Pd(t)?yEe(t):t,i=ep(t)?Bm(t):t,a=Kf(e),o=Kf(t);return zf(e)?fEe(e,i,n):Rf(t)?CEe(e,t,n):a&&o||!a&&o||a&&!o?nm(`Omit`,[e,r],n):ff({...fg(e,i),...n})}var mg=s((()=>{pf(),am(),Sf(),rm(),km(),Um(),oh(),_m(),qm(),wEe(),pEe(),tp(),Hd()}));function bEe(e,t,n){return{[t]:pg(e,[t],Wd(n))}}function xEe(e,t,n){return t.reduce((t,r)=>({...t,...bEe(e,r,n)}),{})}function SEe(e,t,n){return xEe(e,t.keys,n)}function CEe(e,t,n){return lm(SEe(e,t,n))}var wEe=s((()=>{th(),mg(),Gd()})),hg=s((()=>{wEe(),pEe(),mg()}));function TEe(e,t,n){let r={};for(let i of globalThis.Object.getOwnPropertyNames(e))r[i]=_g(e[i],t,Wd(n));return r}function EEe(e,t,n){return TEe(e.properties,t,n)}function DEe(e,t,n){return lm(EEe(e,t,n))}var OEe=s((()=>{th(),vg(),Gd()}));function kEe(e,t){return e.map(e=>gg(e,t))}function AEe(e,t){return e.map(e=>gg(e,t))}function jEe(e,t){let n={};for(let r of t)r in e&&(n[r]=e[r]);return n}function MEe(e,t){let n=im(e,[_f,`$id`,`required`,`properties`]);return Km(jEe(e.properties,t),n)}function NEe(e){return gm(e.reduce((e,t)=>Eye(t)?[...e,Om(t)]:e,[]))}function gg(e,t){return Pf(e)?ah(kEe(e.allOf,t)):$f(e)?gm(AEe(e.anyOf,t)):Uf(e)?MEe(e,t):Km({})}function _g(e,t,n){let r=Pd(t)?NEe(t):t,i=ep(t)?Bm(t):t,a=Kf(e),o=Kf(t);return zf(e)?DEe(e,i,n):Rf(t)?LEe(e,t,n):a&&o||!a&&o||a&&!o?nm(`Pick`,[e,r],n):ff({...gg(e,i),...n})}var vg=s((()=>{pf(),am(),rm(),oh(),km(),qm(),_m(),Um(),Sf(),tp(),Hd(),REe(),OEe()}));function PEe(e,t,n){return{[t]:_g(e,[t],Wd(n))}}function FEe(e,t,n){return t.reduce((t,r)=>({...t,...PEe(e,r,n)}),{})}function IEe(e,t,n){return FEe(e,t.keys,n)}function LEe(e,t,n){return lm(IEe(e,t,n))}var REe=s((()=>{th(),vg(),Gd()})),yg=s((()=>{REe(),OEe(),vg()}));function zEe(e,t){return nm(`Partial`,[nm(e,t)])}function BEe(e){return nm(`Partial`,[sh(e)])}function VEe(e){let t={};for(let n of globalThis.Object.getOwnPropertyNames(e))t[n]=nh(e[n]);return t}function HEe(e){let t=im(e,[_f,`$id`,`required`,`properties`]);return Km(VEe(e.properties),t)}function UEe(e){return e.map(e=>WEe(e))}function WEe(e){return Af(e)?zEe(e.target,e.parameters):Kf(e)?BEe(e.$ref):Pf(e)?ah(UEe(e.allOf)):$f(e)?gm(UEe(e.anyOf)):Uf(e)?HEe(e):Of(e)||kf(e)||Nf(e)||Lf(e)||Vf(e)||Hf(e)||qf(e)||Jf(e)||Qf(e)?e:Km({})}function bg(e,t){return zf(e)?JEe(e,t):ff({...WEe(e),...t})}var GEe=s((()=>{pf(),rm(),rh(),qm(),oh(),_m(),ch(),om(),Cf(),YEe(),tp()}));function KEe(e,t){let n={};for(let r of globalThis.Object.getOwnPropertyNames(e))n[r]=bg(e[r],Wd(t));return n}function qEe(e,t){return KEe(e.properties,t)}function JEe(e,t){return lm(qEe(e,t))}var YEe=s((()=>{th(),GEe(),Gd()})),xg=s((()=>{YEe(),GEe()}));function XEe(e,t){return nm(`Required`,[nm(e,t)])}function ZEe(e){return nm(`Required`,[sh(e)])}function QEe(e){let t={};for(let n of globalThis.Object.getOwnPropertyNames(e))t[n]=im(e[n],[yf]);return t}function $Ee(e){let t=im(e,[_f,`$id`,`required`,`properties`]);return Km(QEe(e.properties),t)}function eDe(e){return e.map(e=>tDe(e))}function tDe(e){return Af(e)?XEe(e.target,e.parameters):Kf(e)?ZEe(e.$ref):Pf(e)?ah(eDe(e.allOf)):$f(e)?gm(eDe(e.anyOf)):Uf(e)?$Ee(e):Of(e)||kf(e)||Nf(e)||Lf(e)||Vf(e)||Hf(e)||qf(e)||Jf(e)||Qf(e)?e:Km({})}function Sg(e,t){return zf(e)?aDe(e,t):ff({...tDe(e),...t})}var nDe=s((()=>{pf(),rm(),qm(),oh(),_m(),ch(),Cf(),om(),oDe(),tp()}));function rDe(e,t){let n={};for(let r of globalThis.Object.getOwnPropertyNames(e))n[r]=Sg(e[r],t);return n}function iDe(e,t){return rDe(e.properties,t)}function aDe(e,t){return lm(iDe(e,t))}var oDe=s((()=>{th(),nDe()})),Cg=s((()=>{oDe(),nDe()}));function sDe(e,t){return t.map(t=>Kf(t)?wg(e,t.$ref):Eg(e,t))}function wg(e,t){return t in e?Kf(e[t])?wg(e,e[t].$ref):Eg(e,e[t]):sm()}function cDe(e){return lh(e[0])}function lDe(e){return Hm(e[0],e[1])}function uDe(e){return mh(e[0])}function dDe(e){return bg(e[0])}function fDe(e){return pg(e[0],e[1])}function pDe(e){return _g(e[0],e[1])}function mDe(e){return Sg(e[0])}function hDe(e,t,n){let r=sDe(e,n);return t===`Awaited`?cDe(r):t===`Index`?lDe(r):t===`KeyOf`?uDe(r):t===`Partial`?dDe(r):t===`Omit`?fDe(r):t===`Pick`?pDe(r):t===`Required`?mDe(r):sm()}function gDe(e,t){return Qp(Eg(e,t))}function _De(e,t){return em(Eg(e,t))}function vDe(e,t,n){return um(Tg(e,t),Eg(e,n))}function yDe(e,t,n){return fm(Tg(e,t),Eg(e,n))}function bDe(e,t){return ah(Tg(e,t))}function xDe(e,t){return Wm(Eg(e,t))}function SDe(e,t){return Km(globalThis.Object.keys(t).reduce((n,r)=>({...n,[r]:Eg(e,t[r])}),{}))}function CDe(e,t){let[n,r]=[Eg(e,CTe(t)),ig(t)],i=Kd(t);return i.patternProperties[r]=n,i}function wDe(e,t){return Kf(t)?{...wg(e,t.$ref),[_f]:t[_f]}:t}function TDe(e,t){return Zm(Tg(e,t))}function EDe(e,t){return gm(Tg(e,t))}function Tg(e,t){return t.map(t=>Eg(e,t))}function Eg(e,t){return Tf(t)?ff(Eg(e,im(t,[yf])),t):wf(t)?ff(Eg(e,im(t,[vf])),t):Xf(t)?ff(wDe(e,t),t):Ef(t)?ff(gDe(e,t.items),t):Df(t)?ff(_De(e,t.items),t):Af(t)?ff(hDe(e,t.target,t.parameters)):jf(t)?ff(vDe(e,t.parameters,t.returns),t):Mf(t)?ff(yDe(e,t.parameters,t.returns),t):Pf(t)?ff(bDe(e,t.allOf),t):Ff(t)?ff(xDe(e,t.items),t):Uf(t)?ff(SDe(e,t.properties),t):Gf(t)?ff(CDe(e,t)):Zf(t)?ff(TDe(e,t.items||[]),t):$f(t)?ff(EDe(e,t.anyOf),t):t}function DDe(e,t){return t in e?Eg(e,e[t]):sm()}function ODe(e){return globalThis.Object.getOwnPropertyNames(e).reduce((t,n)=>({...t,[n]:DDe(e,n)}),{})}var kDe=s((()=>{mf(),oye(),om(),$p(),uh(),tm(),dm(),Um(),pm(),oh(),Gm(),hh(),qm(),hg(),yg(),cm(),xg(),ag(),Cg(),Qm(),_m(),Cf(),tp()}));function ADe(e){return new jDe(e)}var jDe,MDe=s((()=>{mf(),Cf(),kDe(),jDe=class{constructor(e){let t=ODe(e),n=this.WithIdentifiers(t);this.$defs=n}Import(e,t){let n={...this.$defs,[e]:ff(this.$defs[e],t)};return ff({[xf]:`Import`,$defs:n,$ref:e})}WithIdentifiers(e){return globalThis.Object.getOwnPropertyNames(e).reduce((t,n)=>({...t,[n]:{...e[n],$id:n}}),{})}}})),Dg=s((()=>{MDe()}));function NDe(e,t){return ff({[xf]:`Not`,not:e},t)}var PDe=s((()=>{pf(),Cf()})),Og=s((()=>{PDe()}));function FDe(e,t){return Mf(e)?Zm(e.parameters,t):sm()}var IDe=s((()=>{Qm(),cm(),tp()})),LDe=s((()=>{IDe()}));function RDe(e,t={}){Vd(t.$id)&&(t.$id=`T${zDe++}`);let n=Kd(e({[xf]:`This`,$ref:`${t.$id}`}));return n.$id=t.$id,ff({[bf]:`Recursive`,...n},t)}var zDe,BDe=s((()=>{qd(),pf(),Hd(),Cf(),zDe=0})),kg=s((()=>{BDe()}));function VDe(e,t){let n=zd(e)?new globalThis.RegExp(e):e;return ff({[xf]:`RegExp`,type:`RegExp`,source:n.source,flags:n.flags},t)}var HDe=s((()=>{pf(),Hd(),Cf()})),UDe=s((()=>{HDe()}));function WDe(e){return Pf(e)?e.allOf:$f(e)?e.anyOf:Zf(e)?e.items??[]:[]}function GDe(e){return WDe(e)}var KDe=s((()=>{tp()})),Ag=s((()=>{KDe()}));function qDe(e,t){return Mf(e)?ff(e.returns,t):sm(t)}var JDe=s((()=>{pf(),cm(),tp()})),YDe=s((()=>{JDe()})),XDe=s((()=>{})),ZDe=s((()=>{})),QDe=s((()=>{XDe(),ZDe()})),$De=s((()=>{})),eOe=s((()=>{$De()}));function tOe(e){return new nOe(e)}var nOe,rOe,iOe=s((()=>{Cf(),tp(),nOe=class{constructor(e){this.schema=e}Decode(e){return new rOe(this.schema,e)}},rOe=class{constructor(e,t){this.schema=e,this.decode=t}EncodeTransform(e,t){let n={Encode:n=>t[_f].Encode(e(n)),Decode:e=>this.decode(t[_f].Decode(e))};return{...t,[_f]:n}}EncodeSchema(e,t){let n={Decode:this.decode,Encode:e};return{...t,[_f]:n}}Encode(e){return Xf(this.schema)?this.EncodeTransform(e,this.schema):this.EncodeSchema(e,this.schema)}}})),jg=s((()=>{iOe()}));function aOe(e={}){return ff({[xf]:e[xf]??`Unsafe`},e)}var oOe=s((()=>{pf(),Cf()})),Mg=s((()=>{oOe()}));function sOe(e){return ff({[xf]:`Void`,type:`void`},e)}var cOe=s((()=>{pf(),Cf()})),lOe=s((()=>{cOe()})),uOe=l({Any:()=>Xp,Argument:()=>Sbe,Array:()=>Qp,AsyncIterator:()=>em,Awaited:()=>lh,BigInt:()=>jm,Boolean:()=>cxe,Capitalize:()=>nEe,Composite:()=>fCe,Const:()=>DCe,Constructor:()=>um,ConstructorParameters:()=>kCe,Date:()=>mCe,Enum:()=>MCe,Exclude:()=>Yh,Extends:()=>Gh,Extract:()=>Qh,Function:()=>fm,Index:()=>Hm,InstanceType:()=>oTe,Instantiate:()=>zTe,Integer:()=>HTe,Intersect:()=>ah,Iterator:()=>Wm,KeyOf:()=>mh,Literal:()=>Om,Lowercase:()=>iEe,Mapped:()=>_Se,Module:()=>ADe,Never:()=>sm,Not:()=>NDe,Null:()=>gCe,Number:()=>Nm,Object:()=>Km,Omit:()=>pg,Optional:()=>nh,Parameters:()=>FDe,Partial:()=>bg,Pick:()=>_g,Promise:()=>$xe,Readonly:()=>Ym,ReadonlyOptional:()=>lTe,Record:()=>xTe,Recursive:()=>RDe,Ref:()=>sh,RegExp:()=>VDe,Required:()=>Sg,Rest:()=>GDe,ReturnType:()=>qDe,String:()=>Fm,Symbol:()=>vCe,TemplateLiteral:()=>Cxe,Transform:()=>tOe,Tuple:()=>Zm,Uint8Array:()=>SCe,Uncapitalize:()=>oEe,Undefined:()=>bCe,Union:()=>gm,Unknown:()=>Sh,Unsafe:()=>aOe,Uppercase:()=>cEe,Void:()=>sOe}),dOe=s((()=>{Zp(),wbe(),$p(),tm(),uh(),Mm(),Am(),gh(),Eh(),dm(),jCe(),_h(),Dh(),Zh(),Jh(),eg(),pm(),Um(),cTe(),VTe(),cg(),oh(),dg(),Gm(),hh(),km(),th(),Dg(),cm(),Og(),vh(),Pm(),qm(),hg(),rh(),LDe(),xg(),yg(),Jm(),Xm(),tg(),ag(),kg(),ch(),UDe(),Cg(),Ag(),YDe(),Im(),yh(),zm(),jg(),Qm(),xh(),bh(),_m(),Ch(),Mg(),lOe()})),q,fOe=s((()=>{Zp(),$p(),Am(),gh(),Eh(),Dh(),Zh(),Jh(),eg(),Um(),cg(),oh(),dg(),hh(),km(),th(),cm(),Og(),vh(),Dg(),Pm(),qm(),hg(),rh(),xg(),yg(),Xm(),tg(),ag(),kg(),ch(),Cg(),Ag(),Im(),zm(),jg(),Qm(),_m(),Ch(),Mg(),dOe(),q=uOe})),Ng=s((()=>{oye(),mf(),gf(),nbe(),ibe(),Wp(),Jp(),Yp(),Cf(),Zp(),$p(),wbe(),tm(),uh(),Mm(),Am(),gh(),Eh(),dm(),jCe(),_h(),Dh(),Zh(),Jh(),eg(),pm(),Um(),cTe(),VTe(),cg(),oh(),Gm(),dg(),hh(),km(),Dg(),th(),cm(),Og(),vh(),Pm(),qm(),hg(),rh(),LDe(),xg(),yg(),Jm(),Xm(),tg(),ag(),kg(),ch(),UDe(),Cg(),Ag(),YDe(),QDe(),eOe(),Im(),yh(),zm(),jg(),Qm(),xh(),bh(),_m(),Ch(),Mg(),lOe(),fOe()})),Pg,Fg=s((()=>{Ng(),Pg=(...e)=>q.Composite(e)})),pOe=s((()=>{})),mOe=s((()=>{hye(),pOe()}));function hOe(e){switch(e.errorType){case t_.ArrayContains:return`Expected array to contain at least one matching value`;case t_.ArrayMaxContains:return`Expected array to contain no more than ${e.schema.maxContains} matching values`;case t_.ArrayMinContains:return`Expected array to contain at least ${e.schema.minContains} matching values`;case t_.ArrayMaxItems:return`Expected array length to be less or equal to ${e.schema.maxItems}`;case t_.ArrayMinItems:return`Expected array length to be greater or equal to ${e.schema.minItems}`;case t_.ArrayUniqueItems:return`Expected array elements to be unique`;case t_.Array:return`Expected array`;case t_.AsyncIterator:return`Expected AsyncIterator`;case t_.BigIntExclusiveMaximum:return`Expected bigint to be less than ${e.schema.exclusiveMaximum}`;case t_.BigIntExclusiveMinimum:return`Expected bigint to be greater than ${e.schema.exclusiveMinimum}`;case t_.BigIntMaximum:return`Expected bigint to be less or equal to ${e.schema.maximum}`;case t_.BigIntMinimum:return`Expected bigint to be greater or equal to ${e.schema.minimum}`;case t_.BigIntMultipleOf:return`Expected bigint to be a multiple of ${e.schema.multipleOf}`;case t_.BigInt:return`Expected bigint`;case t_.Boolean:return`Expected boolean`;case t_.DateExclusiveMinimumTimestamp:return`Expected Date timestamp to be greater than ${e.schema.exclusiveMinimumTimestamp}`;case t_.DateExclusiveMaximumTimestamp:return`Expected Date timestamp to be less than ${e.schema.exclusiveMaximumTimestamp}`;case t_.DateMinimumTimestamp:return`Expected Date timestamp to be greater or equal to ${e.schema.minimumTimestamp}`;case t_.DateMaximumTimestamp:return`Expected Date timestamp to be less or equal to ${e.schema.maximumTimestamp}`;case t_.DateMultipleOfTimestamp:return`Expected Date timestamp to be a multiple of ${e.schema.multipleOfTimestamp}`;case t_.Date:return`Expected Date`;case t_.Function:return`Expected function`;case t_.IntegerExclusiveMaximum:return`Expected integer to be less than ${e.schema.exclusiveMaximum}`;case t_.IntegerExclusiveMinimum:return`Expected integer to be greater than ${e.schema.exclusiveMinimum}`;case t_.IntegerMaximum:return`Expected integer to be less or equal to ${e.schema.maximum}`;case t_.IntegerMinimum:return`Expected integer to be greater or equal to ${e.schema.minimum}`;case t_.IntegerMultipleOf:return`Expected integer to be a multiple of ${e.schema.multipleOf}`;case t_.Integer:return`Expected integer`;case t_.IntersectUnevaluatedProperties:return`Unexpected property`;case t_.Intersect:return`Expected all values to match`;case t_.Iterator:return`Expected Iterator`;case t_.Literal:return`Expected ${typeof e.schema.const==`string`?`'${e.schema.const}'`:e.schema.const}`;case t_.Never:return`Never`;case t_.Not:return`Value should not match`;case t_.Null:return`Expected null`;case t_.NumberExclusiveMaximum:return`Expected number to be less than ${e.schema.exclusiveMaximum}`;case t_.NumberExclusiveMinimum:return`Expected number to be greater than ${e.schema.exclusiveMinimum}`;case t_.NumberMaximum:return`Expected number to be less or equal to ${e.schema.maximum}`;case t_.NumberMinimum:return`Expected number to be greater or equal to ${e.schema.minimum}`;case t_.NumberMultipleOf:return`Expected number to be a multiple of ${e.schema.multipleOf}`;case t_.Number:return`Expected number`;case t_.Object:return`Expected object`;case t_.ObjectAdditionalProperties:return`Unexpected property`;case t_.ObjectMaxProperties:return`Expected object to have no more than ${e.schema.maxProperties} properties`;case t_.ObjectMinProperties:return`Expected object to have at least ${e.schema.minProperties} properties`;case t_.ObjectRequiredProperty:return`Expected required property`;case t_.Promise:return`Expected Promise`;case t_.RegExp:return`Expected string to match regular expression`;case t_.StringFormatUnknown:return`Unknown format '${e.schema.format}'`;case t_.StringFormat:return`Expected string to match '${e.schema.format}' format`;case t_.StringMaxLength:return`Expected string length less or equal to ${e.schema.maxLength}`;case t_.StringMinLength:return`Expected string length greater or equal to ${e.schema.minLength}`;case t_.StringPattern:return`Expected string to match '${e.schema.pattern}'`;case t_.String:return`Expected string`;case t_.Symbol:return`Expected symbol`;case t_.TupleLength:return`Expected tuple to have ${e.schema.maxItems||0} elements`;case t_.Tuple:return`Expected tuple`;case t_.Uint8ArrayMaxByteLength:return`Expected byte length less or equal to ${e.schema.maxByteLength}`;case t_.Uint8ArrayMinByteLength:return`Expected byte length greater or equal to ${e.schema.minByteLength}`;case t_.Uint8Array:return`Expected Uint8Array`;case t_.Undefined:return`Expected undefined`;case t_.Union:return`Expected union value`;case t_.Void:return`Expected void`;case t_.Kind:return`Expected kind '${e.schema[xf]}'`;default:return`Unknown error type`}}function gOe(){return _Oe}var _Oe,vOe=s((()=>{Cf(),oAe(),_Oe=hOe}));function yOe(e,t){let n=t.find(t=>t.$id===e.$ref);if(n===void 0)throw new bOe(e);return Lg(n,t)}function Ig(e,t){return!af(e.$id)||t.some(t=>t.$id===e.$id)||t.push(e),t}function Lg(e,t){return e[xf]===`This`||e[xf]===`Ref`?yOe(e,t):e}var bOe,xOe=s((()=>{gf(),Cf(),cf(),bOe=class extends hf{constructor(e){super(`Unable to dereference schema with $id '${e.$ref}'`),this.schema=e}}})),Rg=s((()=>{xOe()}));function*SOe(e){let t=e===0?1:Math.ceil(Math.floor(Math.log2(e)+1)/8);for(let n=0;n>8*(t-1-n)&255}function COe(e){Bg(Vg.Array);for(let t of e)zg(t)}function wOe(e){Bg(Vg.Boolean),Bg(+!!e)}function TOe(e){Bg(Vg.BigInt),Wg.setBigInt64(0,e);for(let e of Gg)Bg(e)}function EOe(e){Bg(Vg.Date),zg(e.getTime())}function DOe(e){Bg(Vg.Null)}function OOe(e){Bg(Vg.Number),Wg.setFloat64(0,e);for(let e of Gg)Bg(e)}function kOe(e){Bg(Vg.Object);for(let t of globalThis.Object.getOwnPropertyNames(e).sort())zg(t),zg(e[t])}function AOe(e){Bg(Vg.String);for(let t=0;t{lf(),gf(),FOe=class extends hf{constructor(e){super(`Unable to hash value`),this.value=e}},(function(e){e[e.Undefined=0]=`Undefined`,e[e.Null=1]=`Null`,e[e.Boolean=2]=`Boolean`,e[e.Number=3]=`Number`,e[e.String=4]=`String`,e[e.Object=5]=`Object`,e[e.Array=6]=`Array`,e[e.Date=7]=`Date`,e[e.Uint8Array=8]=`Uint8Array`,e[e.Symbol=9]=`Symbol`,e[e.BigInt=10]=`BigInt`})(Vg||={}),Hg=BigInt(`14695981039346656037`),[IOe,LOe]=[BigInt(`1099511628211`),BigInt(`18446744073709551616`)],ROe=Array.from({length:256}).map((e,t)=>BigInt(t)),Ug=new Float64Array(1),Wg=new DataView(Ug.buffer),Gg=new Uint8Array(Ug.buffer)})),Kg=s((()=>{zOe()}));function BOe(e,t,n){let r=e.get(t);if(r&&r.has(n))return!1;if(r)return r.add(n),!0;e.set(t,new WeakSet([n]))}function VOe(e){return e[xf]===`Any`||e[xf]===`Unknown`}function qg(e){return e!==void 0}function HOe(e,t,n){return!0}function UOe(e,t,n){return!0}function WOe(e,t,n,r){if(!Qd(n)||qg(e.minItems)&&!(n.length>=e.minItems)||qg(e.maxItems)&&!(n.length<=e.maxItems))return!1;if(BOe(r,n,e)===!1)return!0;if(!n.every(n=>Jg(e.items,t,n,r))||e.uniqueItems===!0&&!(function(){let e=new Set;for(let t of n){let n=POe(t);if(e.has(n))return!1;e.add(n)}return!0})())return!1;if(!(qg(e.contains)||nf(e.minContains)||nf(e.maxContains)))return!0;let i=qg(e.contains)?e.contains:sm(),a=n.reduce((e,n)=>Jg(i,t,n,r)?e+1:e,0);return!(a===0||nf(e.minContains)&&ae.maxContains)}function GOe(e,t,n){return sye(n)}function KOe(e,t,n){return!(!rf(n)||qg(e.exclusiveMaximum)&&!(ne.exclusiveMinimum)||qg(e.maximum)&&!(n<=e.maximum)||qg(e.minimum)&&!(n>=e.minimum)||qg(e.multipleOf)&&n%e.multipleOf!==BigInt(0))}function qOe(e,t,n){return tf(n)}function JOe(e,t,n,r){return Jg(e.returns,t,n.prototype,r)}function YOe(e,t,n){return!(!Jd(n)||qg(e.exclusiveMaximumTimestamp)&&!(n.getTime()e.exclusiveMinimumTimestamp)||qg(e.maximumTimestamp)&&!(n.getTime()<=e.maximumTimestamp)||qg(e.minimumTimestamp)&&!(n.getTime()>=e.minimumTimestamp)||qg(e.multipleOfTimestamp)&&n.getTime()%e.multipleOfTimestamp!==0)}function XOe(e,t,n){return of(n)}function ZOe(e,t,n,r){let i=globalThis.Object.values(e.$defs),a=e.$defs[e.$ref];return Jg(a,[...t,...i],n,r)}function QOe(e,t,n){return!(!pye(n)||qg(e.exclusiveMaximum)&&!(ne.exclusiveMinimum)||qg(e.maximum)&&!(n<=e.maximum)||qg(e.minimum)&&!(n>=e.minimum)||qg(e.multipleOf)&&n%e.multipleOf!==0)}function $Oe(e,t,n,r){let i=e.allOf.every(e=>Jg(e,t,n,r));if(e.unevaluatedProperties===!1){let t=new RegExp(fh(e)),r=Object.getOwnPropertyNames(n).every(e=>t.test(e));return i&&r}else if(ep(e.unevaluatedProperties)){let a=new RegExp(fh(e)),o=Object.getOwnPropertyNames(n).every(i=>a.test(i)||Jg(e.unevaluatedProperties,t,n[i],r));return i&&o}else return i}function eke(e,t,n){return cye(n)}function tke(e,t,n){return n===e.const}function nke(e,t,n){return!1}function rke(e,t,n,r){return!Jg(e.not,t,n,r)}function ike(e,t,n){return ef(n)}function ake(e,t,n){return!(!uf.IsNumberLike(n)||qg(e.exclusiveMaximum)&&!(ne.exclusiveMinimum)||qg(e.minimum)&&!(n>=e.minimum)||qg(e.maximum)&&!(n<=e.maximum)||qg(e.multipleOf)&&n%e.multipleOf!==0)}function oke(e,t,n,r){if(!uf.IsObjectLike(n)||qg(e.minProperties)&&!(Object.getOwnPropertyNames(n).length>=e.minProperties)||qg(e.maxProperties)&&!(Object.getOwnPropertyNames(n).length<=e.maxProperties))return!1;if(BOe(r,n,e)===!1)return!0;let i=Object.getOwnPropertyNames(e.properties);for(let a of i){let i=e.properties[a];if(e.required&&e.required.includes(a)){if(!Jg(i,t,n[a],r)||(qh(i)||VOe(i))&&!(a in n))return!1}else if(uf.IsExactOptionalProperty(n,a)&&!Jg(i,t,n[a],r))return!1}if(e.additionalProperties===!1){let t=Object.getOwnPropertyNames(n);return e.required&&e.required.length===i.length&&t.length===i.length?!0:t.every(e=>i.includes(e))}else if(typeof e.additionalProperties==`object`)return Object.getOwnPropertyNames(n).every(a=>i.includes(a)||Jg(e.additionalProperties,t,n[a],r));else return!0}function ske(e,t,n){return lye(n)}function cke(e,t,n,r){if(!uf.IsRecordLike(n)||qg(e.minProperties)&&!(Object.getOwnPropertyNames(n).length>=e.minProperties)||qg(e.maxProperties)&&!(Object.getOwnPropertyNames(n).length<=e.maxProperties))return!1;let[i,a]=Object.entries(e.patternProperties)[0],o=new RegExp(i),s=Object.entries(n).every(([e,n])=>!o.test(e)||Jg(a,t,n,r)),c=typeof e.additionalProperties!=`object`||Object.entries(n).every(([n,i])=>o.test(n)?!0:Jg(e.additionalProperties,t,i,r)),l=e.additionalProperties!==!1||Object.getOwnPropertyNames(n).every(e=>o.test(e));return s&&c&&l}function lke(e,t,n,r){return Jg(Lg(e,t),t,n,r)}function uke(e,t,n){let r=new RegExp(e.source,e.flags);return qg(e.minLength)&&!(n.length>=e.minLength)||qg(e.maxLength)&&!(n.length<=e.maxLength)?!1:r.test(n)}function dke(e,t,n){return!af(n)||qg(e.minLength)&&!(n.length>=e.minLength)||qg(e.maxLength)&&!(n.length<=e.maxLength)||qg(e.pattern)&&!new RegExp(e.pattern).test(n)?!1:qg(e.format)?cbe(e.format)?lbe(e.format)(n):!1:!0}function fke(e,t,n){return sf(n)}function pke(e,t,n){return af(n)&&new RegExp(e.pattern).test(n)}function mke(e,t,n,r){return Jg(Lg(e,t),t,n,r)}function hke(e,t,n,r){if(!Qd(n)||e.items===void 0&&n.length!==0||n.length!==e.maxItems)return!1;if(!e.items)return!0;for(let i=0;iJg(e,t,n,r))}function vke(e,t,n){return!(!Yd(n)||qg(e.maxByteLength)&&!(n.length<=e.maxByteLength)||qg(e.minByteLength)&&!(n.length>=e.minByteLength))}function yke(e,t,n){return!0}function bke(e,t,n){return uf.IsVoidLike(n)}function xke(e,t,n){return Kp(e[xf])?dbe(e[xf])(e,n):!1}function Jg(e,t,n,r){let i=qg(e.$id)?Ig(e,t):t,a=e;switch(a[xf]){case`Any`:return HOe(a,i,n);case`Argument`:return UOe(a,i,n);case`Array`:return WOe(a,i,n,r);case`AsyncIterator`:return GOe(a,i,n);case`BigInt`:return KOe(a,i,n);case`Boolean`:return qOe(a,i,n);case`Constructor`:return JOe(a,i,n,r);case`Date`:return YOe(a,i,n);case`Function`:return XOe(a,i,n);case`Import`:return ZOe(a,i,n,r);case`Integer`:return QOe(a,i,n);case`Intersect`:return $Oe(a,i,n,r);case`Iterator`:return eke(a,i,n);case`Literal`:return tke(a,i,n);case`Never`:return nke(a,i,n);case`Not`:return rke(a,i,n,r);case`Null`:return ike(a,i,n);case`Number`:return ake(a,i,n);case`Object`:return oke(a,i,n,r);case`Promise`:return ske(a,i,n);case`Record`:return cke(a,i,n,r);case`Ref`:return lke(a,i,n,r);case`RegExp`:return uke(a,i,n);case`String`:return dke(a,i,n);case`Symbol`:return fke(a,i,n);case`TemplateLiteral`:return pke(a,i,n);case`This`:return mke(a,i,n,r);case`Tuple`:return hke(a,i,n,r);case`Undefined`:return gke(a,i,n);case`Union`:return _ke(a,i,n,r);case`Uint8Array`:return vke(a,i,n);case`Unknown`:return yke(a,i,n);case`Void`:return bke(a,i,n);default:if(!Kp(a[xf]))throw new Ske(a);return xke(a,i,n)}}function Yg(...e){return e.length===2||e.length===3&&e[2]instanceof WeakMap?Jg(e[0],[],e[1],e[2]??new WeakMap):Jg(e[0],e[1],e[2],e[3]??new WeakMap)}var Ske,Cke=s((()=>{mOe(),Rg(),Kg(),Cf(),hh(),Jh(),Jp(),gf(),cm(),lf(),tp(),Ske=class extends hf{constructor(e){super(`Unknown type`),this.schema=e}}})),Xg=s((()=>{Cke()}));function Zg(e){return e.replace(/~/g,`~0`).replace(/\//g,`~1`)}function Qg(e){return e!==void 0}function $g(e,t,n,r,i=[]){return{type:e,schema:t,path:n,value:r,message:gOe()({errorType:e,path:n,schema:t,value:r,errors:i}),errors:i}}function*wke(e,t,n,r){}function*Tke(e,t,n,r){}function*Eke(e,t,n,r){if(!Qd(r))return yield $g(t_.Array,e,n,r);Qg(e.minItems)&&!(r.length>=e.minItems)&&(yield $g(t_.ArrayMinItems,e,n,r)),Qg(e.maxItems)&&!(r.length<=e.maxItems)&&(yield $g(t_.ArrayMaxItems,e,n,r));for(let i=0;ie_(i,t,`${n}${a}`,r).next().done===!0?e+1:e,0);a===0&&(yield $g(t_.ArrayContains,e,n,r)),nf(e.minContains)&&ae.maxContains&&(yield $g(t_.ArrayMaxContains,e,n,r))}function*Dke(e,t,n,r){sye(r)||(yield $g(t_.AsyncIterator,e,n,r))}function*Oke(e,t,n,r){if(!rf(r))return yield $g(t_.BigInt,e,n,r);Qg(e.exclusiveMaximum)&&!(re.exclusiveMinimum)&&(yield $g(t_.BigIntExclusiveMinimum,e,n,r)),Qg(e.maximum)&&!(r<=e.maximum)&&(yield $g(t_.BigIntMaximum,e,n,r)),Qg(e.minimum)&&!(r>=e.minimum)&&(yield $g(t_.BigIntMinimum,e,n,r)),Qg(e.multipleOf)&&r%e.multipleOf!==BigInt(0)&&(yield $g(t_.BigIntMultipleOf,e,n,r))}function*kke(e,t,n,r){tf(r)||(yield $g(t_.Boolean,e,n,r))}function*Ake(e,t,n,r){yield*e_(e.returns,t,n,r.prototype)}function*jke(e,t,n,r){if(!Jd(r))return yield $g(t_.Date,e,n,r);Qg(e.exclusiveMaximumTimestamp)&&!(r.getTime()e.exclusiveMinimumTimestamp)&&(yield $g(t_.DateExclusiveMinimumTimestamp,e,n,r)),Qg(e.maximumTimestamp)&&!(r.getTime()<=e.maximumTimestamp)&&(yield $g(t_.DateMaximumTimestamp,e,n,r)),Qg(e.minimumTimestamp)&&!(r.getTime()>=e.minimumTimestamp)&&(yield $g(t_.DateMinimumTimestamp,e,n,r)),Qg(e.multipleOfTimestamp)&&r.getTime()%e.multipleOfTimestamp!==0&&(yield $g(t_.DateMultipleOfTimestamp,e,n,r))}function*Mke(e,t,n,r){of(r)||(yield $g(t_.Function,e,n,r))}function*Nke(e,t,n,r){let i=globalThis.Object.values(e.$defs),a=e.$defs[e.$ref];yield*e_(a,[...t,...i],n,r)}function*Pke(e,t,n,r){if(!pye(r))return yield $g(t_.Integer,e,n,r);Qg(e.exclusiveMaximum)&&!(re.exclusiveMinimum)&&(yield $g(t_.IntegerExclusiveMinimum,e,n,r)),Qg(e.maximum)&&!(r<=e.maximum)&&(yield $g(t_.IntegerMaximum,e,n,r)),Qg(e.minimum)&&!(r>=e.minimum)&&(yield $g(t_.IntegerMinimum,e,n,r)),Qg(e.multipleOf)&&r%e.multipleOf!==0&&(yield $g(t_.IntegerMultipleOf,e,n,r))}function*Fke(e,t,n,r){let i=!1;for(let a of e.allOf)for(let e of e_(a,t,n,r))i=!0,yield e;if(i)return yield $g(t_.Intersect,e,n,r);if(e.unevaluatedProperties===!1){let t=new RegExp(fh(e));for(let i of Object.getOwnPropertyNames(r))t.test(i)||(yield $g(t_.IntersectUnevaluatedProperties,e,`${n}/${i}`,r))}if(typeof e.unevaluatedProperties==`object`){let i=new RegExp(fh(e));for(let a of Object.getOwnPropertyNames(r))if(!i.test(a)){let i=e_(e.unevaluatedProperties,t,`${n}/${a}`,r[a]).next();i.done||(yield i.value)}}}function*Ike(e,t,n,r){cye(r)||(yield $g(t_.Iterator,e,n,r))}function*Lke(e,t,n,r){r!==e.const&&(yield $g(t_.Literal,e,n,r))}function*Rke(e,t,n,r){yield $g(t_.Never,e,n,r)}function*zke(e,t,n,r){e_(e.not,t,n,r).next().done===!0&&(yield $g(t_.Not,e,n,r))}function*Bke(e,t,n,r){ef(r)||(yield $g(t_.Null,e,n,r))}function*Vke(e,t,n,r){if(!uf.IsNumberLike(r))return yield $g(t_.Number,e,n,r);Qg(e.exclusiveMaximum)&&!(re.exclusiveMinimum)&&(yield $g(t_.NumberExclusiveMinimum,e,n,r)),Qg(e.maximum)&&!(r<=e.maximum)&&(yield $g(t_.NumberMaximum,e,n,r)),Qg(e.minimum)&&!(r>=e.minimum)&&(yield $g(t_.NumberMinimum,e,n,r)),Qg(e.multipleOf)&&r%e.multipleOf!==0&&(yield $g(t_.NumberMultipleOf,e,n,r))}function*Hke(e,t,n,r){if(!uf.IsObjectLike(r))return yield $g(t_.Object,e,n,r);Qg(e.minProperties)&&!(Object.getOwnPropertyNames(r).length>=e.minProperties)&&(yield $g(t_.ObjectMinProperties,e,n,r)),Qg(e.maxProperties)&&!(Object.getOwnPropertyNames(r).length<=e.maxProperties)&&(yield $g(t_.ObjectMaxProperties,e,n,r));let i=Array.isArray(e.required)?e.required:[],a=Object.getOwnPropertyNames(e.properties),o=Object.getOwnPropertyNames(r);for(let t of i)o.includes(t)||(yield $g(t_.ObjectRequiredProperty,e.properties[t],`${n}/${Zg(t)}`,void 0));if(e.additionalProperties===!1)for(let t of o)a.includes(t)||(yield $g(t_.ObjectAdditionalProperties,e,`${n}/${Zg(t)}`,r[t]));if(typeof e.additionalProperties==`object`)for(let i of o)a.includes(i)||(yield*e_(e.additionalProperties,t,`${n}/${Zg(i)}`,r[i]));for(let i of a){let a=e.properties[i];e.required&&e.required.includes(i)?(yield*e_(a,t,`${n}/${Zg(i)}`,r[i]),qh(e)&&!(i in r)&&(yield $g(t_.ObjectRequiredProperty,a,`${n}/${Zg(i)}`,void 0))):uf.IsExactOptionalProperty(r,i)&&(yield*e_(a,t,`${n}/${Zg(i)}`,r[i]))}}function*Uke(e,t,n,r){lye(r)||(yield $g(t_.Promise,e,n,r))}function*Wke(e,t,n,r){if(!uf.IsRecordLike(r))return yield $g(t_.Object,e,n,r);Qg(e.minProperties)&&!(Object.getOwnPropertyNames(r).length>=e.minProperties)&&(yield $g(t_.ObjectMinProperties,e,n,r)),Qg(e.maxProperties)&&!(Object.getOwnPropertyNames(r).length<=e.maxProperties)&&(yield $g(t_.ObjectMaxProperties,e,n,r));let[i,a]=Object.entries(e.patternProperties)[0],o=new RegExp(i);for(let[e,i]of Object.entries(r))o.test(e)&&(yield*e_(a,t,`${n}/${Zg(e)}`,i));if(typeof e.additionalProperties==`object`)for(let[i,a]of Object.entries(r))o.test(i)||(yield*e_(e.additionalProperties,t,`${n}/${Zg(i)}`,a));if(e.additionalProperties===!1){for(let[t,i]of Object.entries(r))if(!o.test(t))return yield $g(t_.ObjectAdditionalProperties,e,`${n}/${Zg(t)}`,i)}}function*Gke(e,t,n,r){yield*e_(Lg(e,t),t,n,r)}function*Kke(e,t,n,r){if(!af(r))return yield $g(t_.String,e,n,r);if(Qg(e.minLength)&&!(r.length>=e.minLength)&&(yield $g(t_.StringMinLength,e,n,r)),Qg(e.maxLength)&&!(r.length<=e.maxLength)&&(yield $g(t_.StringMaxLength,e,n,r)),!new RegExp(e.source,e.flags).test(r))return yield $g(t_.RegExp,e,n,r)}function*qke(e,t,n,r){if(!af(r))return yield $g(t_.String,e,n,r);Qg(e.minLength)&&!(r.length>=e.minLength)&&(yield $g(t_.StringMinLength,e,n,r)),Qg(e.maxLength)&&!(r.length<=e.maxLength)&&(yield $g(t_.StringMaxLength,e,n,r)),af(e.pattern)&&(new RegExp(e.pattern).test(r)||(yield $g(t_.StringPattern,e,n,r))),af(e.format)&&(cbe(e.format)?lbe(e.format)(r)||(yield $g(t_.StringFormat,e,n,r)):yield $g(t_.StringFormatUnknown,e,n,r))}function*Jke(e,t,n,r){sf(r)||(yield $g(t_.Symbol,e,n,r))}function*Yke(e,t,n,r){if(!af(r))return yield $g(t_.String,e,n,r);new RegExp(e.pattern).test(r)||(yield $g(t_.StringPattern,e,n,r))}function*Xke(e,t,n,r){yield*e_(Lg(e,t),t,n,r)}function*Zke(e,t,n,r){if(!Qd(r))return yield $g(t_.Tuple,e,n,r);if(e.items===void 0&&r.length!==0||r.length!==e.maxItems)return yield $g(t_.TupleLength,e,n,r);if(e.items)for(let i=0;inew n_(e_(e,t,n,r)));yield $g(t_.Union,e,n,r,i)}function*eAe(e,t,n,r){if(!Yd(r))return yield $g(t_.Uint8Array,e,n,r);Qg(e.maxByteLength)&&!(r.length<=e.maxByteLength)&&(yield $g(t_.Uint8ArrayMaxByteLength,e,n,r)),Qg(e.minByteLength)&&!(r.length>=e.minByteLength)&&(yield $g(t_.Uint8ArrayMinByteLength,e,n,r))}function*tAe(e,t,n,r){}function*nAe(e,t,n,r){uf.IsVoidLike(r)||(yield $g(t_.Void,e,n,r))}function*rAe(e,t,n,r){dbe(e[xf])(e,r)||(yield $g(t_.Kind,e,n,r))}function*e_(e,t,n,r){let i=Qg(e.$id)?[...t,e]:t,a=e;switch(a[xf]){case`Any`:return yield*wke(a,i,n,r);case`Argument`:return yield*Tke(a,i,n,r);case`Array`:return yield*Eke(a,i,n,r);case`AsyncIterator`:return yield*Dke(a,i,n,r);case`BigInt`:return yield*Oke(a,i,n,r);case`Boolean`:return yield*kke(a,i,n,r);case`Constructor`:return yield*Ake(a,i,n,r);case`Date`:return yield*jke(a,i,n,r);case`Function`:return yield*Mke(a,i,n,r);case`Import`:return yield*Nke(a,i,n,r);case`Integer`:return yield*Pke(a,i,n,r);case`Intersect`:return yield*Fke(a,i,n,r);case`Iterator`:return yield*Ike(a,i,n,r);case`Literal`:return yield*Lke(a,i,n,r);case`Never`:return yield*Rke(a,i,n,r);case`Not`:return yield*zke(a,i,n,r);case`Null`:return yield*Bke(a,i,n,r);case`Number`:return yield*Vke(a,i,n,r);case`Object`:return yield*Hke(a,i,n,r);case`Promise`:return yield*Uke(a,i,n,r);case`Record`:return yield*Wke(a,i,n,r);case`Ref`:return yield*Gke(a,i,n,r);case`RegExp`:return yield*Kke(a,i,n,r);case`String`:return yield*qke(a,i,n,r);case`Symbol`:return yield*Jke(a,i,n,r);case`TemplateLiteral`:return yield*Yke(a,i,n,r);case`This`:return yield*Xke(a,i,n,r);case`Tuple`:return yield*Zke(a,i,n,r);case`Undefined`:return yield*Qke(a,i,n,r);case`Union`:return yield*$ke(a,i,n,r);case`Uint8Array`:return yield*eAe(a,i,n,r);case`Unknown`:return yield*tAe(a,i,n,r);case`Void`:return yield*nAe(a,i,n,r);default:if(!Kp(a[xf]))throw new aAe(e);return yield*rAe(a,i,n,r)}}function iAe(...e){let t=e.length===3?e_(e[0],e[1],``,e[2]):e_(e[0],[],``,e[1]);return new n_(t)}var t_,aAe,n_,oAe=s((()=>{mOe(),hh(),Jp(),Gwe(),vOe(),gf(),Rg(),Kg(),Xg(),Cf(),cm(),lf(),(function(e){e[e.ArrayContains=0]=`ArrayContains`,e[e.ArrayMaxContains=1]=`ArrayMaxContains`,e[e.ArrayMaxItems=2]=`ArrayMaxItems`,e[e.ArrayMinContains=3]=`ArrayMinContains`,e[e.ArrayMinItems=4]=`ArrayMinItems`,e[e.ArrayUniqueItems=5]=`ArrayUniqueItems`,e[e.Array=6]=`Array`,e[e.AsyncIterator=7]=`AsyncIterator`,e[e.BigIntExclusiveMaximum=8]=`BigIntExclusiveMaximum`,e[e.BigIntExclusiveMinimum=9]=`BigIntExclusiveMinimum`,e[e.BigIntMaximum=10]=`BigIntMaximum`,e[e.BigIntMinimum=11]=`BigIntMinimum`,e[e.BigIntMultipleOf=12]=`BigIntMultipleOf`,e[e.BigInt=13]=`BigInt`,e[e.Boolean=14]=`Boolean`,e[e.DateExclusiveMaximumTimestamp=15]=`DateExclusiveMaximumTimestamp`,e[e.DateExclusiveMinimumTimestamp=16]=`DateExclusiveMinimumTimestamp`,e[e.DateMaximumTimestamp=17]=`DateMaximumTimestamp`,e[e.DateMinimumTimestamp=18]=`DateMinimumTimestamp`,e[e.DateMultipleOfTimestamp=19]=`DateMultipleOfTimestamp`,e[e.Date=20]=`Date`,e[e.Function=21]=`Function`,e[e.IntegerExclusiveMaximum=22]=`IntegerExclusiveMaximum`,e[e.IntegerExclusiveMinimum=23]=`IntegerExclusiveMinimum`,e[e.IntegerMaximum=24]=`IntegerMaximum`,e[e.IntegerMinimum=25]=`IntegerMinimum`,e[e.IntegerMultipleOf=26]=`IntegerMultipleOf`,e[e.Integer=27]=`Integer`,e[e.IntersectUnevaluatedProperties=28]=`IntersectUnevaluatedProperties`,e[e.Intersect=29]=`Intersect`,e[e.Iterator=30]=`Iterator`,e[e.Kind=31]=`Kind`,e[e.Literal=32]=`Literal`,e[e.Never=33]=`Never`,e[e.Not=34]=`Not`,e[e.Null=35]=`Null`,e[e.NumberExclusiveMaximum=36]=`NumberExclusiveMaximum`,e[e.NumberExclusiveMinimum=37]=`NumberExclusiveMinimum`,e[e.NumberMaximum=38]=`NumberMaximum`,e[e.NumberMinimum=39]=`NumberMinimum`,e[e.NumberMultipleOf=40]=`NumberMultipleOf`,e[e.Number=41]=`Number`,e[e.ObjectAdditionalProperties=42]=`ObjectAdditionalProperties`,e[e.ObjectMaxProperties=43]=`ObjectMaxProperties`,e[e.ObjectMinProperties=44]=`ObjectMinProperties`,e[e.ObjectRequiredProperty=45]=`ObjectRequiredProperty`,e[e.Object=46]=`Object`,e[e.Promise=47]=`Promise`,e[e.RegExp=48]=`RegExp`,e[e.StringFormatUnknown=49]=`StringFormatUnknown`,e[e.StringFormat=50]=`StringFormat`,e[e.StringMaxLength=51]=`StringMaxLength`,e[e.StringMinLength=52]=`StringMinLength`,e[e.StringPattern=53]=`StringPattern`,e[e.String=54]=`String`,e[e.Symbol=55]=`Symbol`,e[e.TupleLength=56]=`TupleLength`,e[e.Tuple=57]=`Tuple`,e[e.Uint8ArrayMaxByteLength=58]=`Uint8ArrayMaxByteLength`,e[e.Uint8ArrayMinByteLength=59]=`Uint8ArrayMinByteLength`,e[e.Uint8Array=60]=`Uint8Array`,e[e.Undefined=61]=`Undefined`,e[e.Union=62]=`Union`,e[e.Void=63]=`Void`})(t_||={}),aAe=class extends hf{constructor(e){super(`Unknown type`),this.schema=e}},n_=class{constructor(e){this.iterator=e}[Symbol.iterator](){return this.iterator}First(){let e=this.iterator.next();return e.done?void 0:e.value}}})),sAe=s((()=>{oAe(),vOe()})),cAe=s((()=>{})),lAe=s((()=>{cAe()}));function uAe(e,t){if(t.has(e))return t.get(e);let n={};t.set(e,n);for(let r of Object.getOwnPropertyNames(e))n[r]=r_(e[r],t);for(let r of Object.getOwnPropertySymbols(e))n[r]=r_(e[r],t);return n}function dAe(e,t){if(t.has(e))return t.get(e);let n=[];t.set(e,n);for(let r=0;r{lf()})),i_=s((()=>{_Ae()}));function a_(e){return of(e)?e():r_(e)}function vAe(e,t){return Xd(e,`default`)?a_(e.default):{}}function yAe(e,t){return{}}function bAe(e,t){if(e.uniqueItems===!0&&!Xd(e,`default`))throw new c_(e,`Array with the uniqueItems constraint requires a default value`);if(`contains`in e&&!Xd(e,`default`))throw new c_(e,`Array with the contains constraint requires a default value`);return`default`in e?a_(e.default):e.minItems===void 0?[]:Array.from({length:e.minItems}).map(n=>o_(e.items,t))}function xAe(e,t){return Xd(e,`default`)?a_(e.default):(async function*(){})()}function SAe(e,t){return Xd(e,`default`)?a_(e.default):BigInt(0)}function CAe(e,t){return Xd(e,`default`)?a_(e.default):!1}function wAe(e,t){if(Xd(e,`default`))return a_(e.default);{let n=o_(e.returns,t);return typeof n==`object`&&!Array.isArray(n)?class{constructor(){for(let[e,t]of Object.entries(n)){let n=this;n[e]=t}}}:class{}}}function TAe(e,t){return Xd(e,`default`)?a_(e.default):e.minimumTimestamp===void 0?new Date:new Date(e.minimumTimestamp)}function EAe(e,t){return Xd(e,`default`)?a_(e.default):()=>o_(e.returns,t)}function DAe(e,t){let n=globalThis.Object.values(e.$defs),r=e.$defs[e.$ref];return o_(r,[...t,...n])}function OAe(e,t){return Xd(e,`default`)?a_(e.default):e.minimum===void 0?0:e.minimum}function kAe(e,t){if(Xd(e,`default`))return a_(e.default);{let n=e.allOf.reduce((e,n)=>{let r=o_(n,t);return typeof r==`object`?{...e,...r}:r},{});if(!Yg(e,t,n))throw new c_(e,`Intersect produced invalid value. Consider using a default value.`);return n}}function AAe(e,t){return Xd(e,`default`)?a_(e.default):(function*(){})()}function jAe(e,t){return Xd(e,`default`)?a_(e.default):e.const}function MAe(e,t){if(Xd(e,`default`))return a_(e.default);throw new c_(e,`Never types cannot be created. Consider using a default value.`)}function NAe(e,t){if(Xd(e,`default`))return a_(e.default);throw new c_(e,`Not types must have a default value`)}function PAe(e,t){return Xd(e,`default`)?a_(e.default):null}function FAe(e,t){return Xd(e,`default`)?a_(e.default):e.minimum===void 0?0:e.minimum}function IAe(e,t){if(Xd(e,`default`))return a_(e.default);{let n=new Set(e.required),r={};for(let[i,a]of Object.entries(e.properties))n.has(i)&&(r[i]=o_(a,t));return r}}function LAe(e,t){return Xd(e,`default`)?a_(e.default):Promise.resolve(o_(e.item,t))}function RAe(e,t){return Xd(e,`default`)?a_(e.default):{}}function zAe(e,t){return Xd(e,`default`)?a_(e.default):o_(Lg(e,t),t)}function BAe(e,t){if(Xd(e,`default`))return a_(e.default);throw new c_(e,`RegExp types cannot be created. Consider using a default value.`)}function VAe(e,t){if(e.pattern!==void 0){if(Xd(e,`default`))return a_(e.default);throw new c_(e,`String types with patterns must specify a default value`)}else if(e.format!==void 0){if(Xd(e,`default`))return a_(e.default);throw new c_(e,`String types with formats must specify a default value`)}else if(Xd(e,`default`))return a_(e.default);else if(e.minLength!==void 0)return Array.from({length:e.minLength}).map(()=>` `).join(``);else return``}function HAe(e,t){return Xd(e,`default`)?a_(e.default):`value`in e?Symbol.for(e.value):Symbol()}function UAe(e,t){if(Xd(e,`default`))return a_(e.default);if(!Qbe(e))throw new c_(e,`Can only create template literals that produce a finite variants. Consider using a default value.`);return Dm(e)[0]}function WAe(e,t){if(l_++>QAe)throw new c_(e,`Cannot create recursive type as it appears possibly infinite. Consider using a default.`);return Xd(e,`default`)?a_(e.default):o_(Lg(e,t),t)}function GAe(e,t){return Xd(e,`default`)?a_(e.default):e.items===void 0?[]:Array.from({length:e.minItems}).map((n,r)=>o_(e.items[r],t))}function KAe(e,t){if(Xd(e,`default`))return a_(e.default)}function qAe(e,t){if(Xd(e,`default`))return a_(e.default);if(e.anyOf.length===0)throw Error(`ValueCreate.Union: Cannot create Union with zero variants`);return o_(e.anyOf[0],t)}function JAe(e,t){return Xd(e,`default`)?a_(e.default):e.minByteLength===void 0?new Uint8Array:new Uint8Array(e.minByteLength)}function YAe(e,t){return Xd(e,`default`)?a_(e.default):{}}function XAe(e,t){if(Xd(e,`default`))return a_(e.default)}function ZAe(e,t){if(Xd(e,`default`))return a_(e.default);throw Error(`User defined types must specify a default value`)}function o_(e,t){let n=Ig(e,t),r=e;switch(r[xf]){case`Any`:return vAe(r,n);case`Argument`:return yAe(r,n);case`Array`:return bAe(r,n);case`AsyncIterator`:return xAe(r,n);case`BigInt`:return SAe(r,n);case`Boolean`:return CAe(r,n);case`Constructor`:return wAe(r,n);case`Date`:return TAe(r,n);case`Function`:return EAe(r,n);case`Import`:return DAe(r,n);case`Integer`:return OAe(r,n);case`Intersect`:return kAe(r,n);case`Iterator`:return AAe(r,n);case`Literal`:return jAe(r,n);case`Never`:return MAe(r,n);case`Not`:return NAe(r,n);case`Null`:return PAe(r,n);case`Number`:return FAe(r,n);case`Object`:return IAe(r,n);case`Promise`:return LAe(r,n);case`Record`:return RAe(r,n);case`Ref`:return zAe(r,n);case`RegExp`:return BAe(r,n);case`String`:return VAe(r,n);case`Symbol`:return HAe(r,n);case`TemplateLiteral`:return UAe(r,n);case`This`:return WAe(r,n);case`Tuple`:return GAe(r,n);case`Undefined`:return KAe(r,n);case`Union`:return qAe(r,n);case`Uint8Array`:return JAe(r,n);case`Unknown`:return YAe(r,n);case`Void`:return XAe(r,n);default:if(!Kp(r[xf]))throw new c_(r,`Unknown type`);return ZAe(r,n)}}function s_(...e){return l_=0,e.length===2?o_(e[0],e[1]):o_(e[0],[])}var c_,QAe,l_,$Ae=s((()=>{lf(),Xg(),i_(),Rg(),zm(),Jp(),Cf(),gf(),cf(),c_=class extends hf{constructor(e,t){super(t),this.schema=e}},QAe=512,l_=0})),u_=s((()=>{$Ae()}));function eje(e,t,n){if(e[xf]===`Object`&&typeof n==`object`&&!ef(n)){let r=e,i=Object.getOwnPropertyNames(n);return Object.entries(r.properties).reduce((e,[r,a])=>{let o=a[xf]===`Literal`&&a.const===n[r]?100:0,s=Yg(a,t,n[r])?10:0,c=+!!i.includes(r);return e+(o+s+c)},0)}else if(e[xf]===`Union`){let r=e.anyOf.map(e=>Lg(e,t)).map(e=>eje(e,t,n));return Math.max(...r)}else return+!!Yg(e,t,n)}function tje(e,t,n){let r=e.anyOf.map(e=>Lg(e,t)),[i,a]=[r[0],0];for(let e of r){let r=eje(e,t,n);r>a&&(i=e,a=r)}return i}function nje(e,t,n,r){return`default`in e?typeof n==`function`?e.default:r_(e.default):_je(tje(e,t,n),t,n,r)}function rje(e,t,n){return Yg(e,t,n)?r_(n):s_(e,t)}function ije(e,t,n){return Yg(e,t,n)?n:s_(e,t)}function aje(e,t,n,r){if(Yg(e,t,n))return r_(n);let i=Qd(n)?n:s_(e,t),a=nf(e.minItems)&&i.lengthnull)]:i,o=(nf(e.maxItems)&&a.length>e.maxItems?a.slice(0,e.maxItems):a).map(n=>d_(e.items,t,n,r));if(e.uniqueItems!==!0)return o;let s=[...new Set(o)];if(!Yg(e,t,s))throw new f_(e,`Array cast produced invalid data due to uniqueItems constraint`);return s}function oje(e,t,n,r){if(Yg(e,t,n))return s_(e,t);let i=new Set(e.returns.required||[]),a=function(){};for(let[o,s]of Object.entries(e.returns.properties))!i.has(o)&&n.prototype[o]===void 0||(a.prototype[o]=d_(s,t,n.prototype[o],r));return a}function sje(e,t,n,r){let i=globalThis.Object.values(e.$defs),a=e.$defs[e.$ref];return d_(a,[...t,...i],n,r)}function cje(e,t){return Zd(e)&&!Zd(t)||!Zd(e)&&Zd(t)?e:!Zd(e)||!Zd(t)?t:globalThis.Object.getOwnPropertyNames(e).reduce((n,r)=>{let i=r in t?cje(e[r],t[r]):e[r];return{...n,[r]:i}},{})}function lje(e,t,n){if(Yg(e,t,n))return n;let r=s_(e,t),i=cje(r,n);return Yg(e,t,i)?i:r}function uje(e,t,n){throw new f_(e,`Never types cannot be cast`)}function dje(e,t,n,r){if(r.has(n))return r.get(n);if(Yg(e,t,n))return n;if(typeof n!=`object`||!n)return s_(e,t);let i=new Set(e.required||[]),a={};r.set(n,a);for(let[o,s]of Object.entries(e.properties))!i.has(o)&&n[o]===void 0||(a[o]=d_(s,t,n[o],r));if(typeof e.additionalProperties==`object`){let i=Object.getOwnPropertyNames(e.properties);for(let o of Object.getOwnPropertyNames(n))i.includes(o)||(a[o]=d_(e.additionalProperties,t,n[o],r))}return a}function fje(e,t,n,r){if(Yg(e,t,n))return r_(n);if(typeof n!=`object`||!n||Array.isArray(n)||n instanceof Date)return s_(e,t);let i=Object.getOwnPropertyNames(e.patternProperties)[0],a=e.patternProperties[i],o={};for(let[e,i]of Object.entries(n))o[e]=d_(a,t,i,r);return o}function pje(e,t,n,r){return d_(Lg(e,t),t,n,r)}function mje(e,t,n,r){return d_(Lg(e,t),t,n,r)}function hje(e,t,n,r){return Yg(e,t,n)?r_(n):Qd(n)?e.items===void 0?[]:e.items.map((e,i)=>d_(e,t,n[i],r)):s_(e,t)}function gje(e,t,n,r){return Yg(e,t,n)?r_(n):nje(e,t,n,r)}function d_(e,t,n,r){let i=af(e.$id)?Ig(e,t):t,a=e;switch(e[xf]){case`Array`:return aje(a,i,n,r);case`Constructor`:return oje(a,i,n,r);case`Import`:return sje(a,i,n,r);case`Intersect`:return lje(a,i,n);case`Never`:return uje(a,i,n);case`Object`:return dje(a,i,n,r);case`Record`:return fje(a,i,n,r);case`Ref`:return pje(a,i,n,r);case`This`:return mje(a,i,n,r);case`Tuple`:return hje(a,i,n,r);case`Union`:return gje(a,i,n,r);case`Date`:case`Symbol`:case`Uint8Array`:return rje(e,t,n);default:return ije(a,i,n)}}function _je(...e){return e.length===2||e.length===3&&e[2]instanceof WeakMap?d_(e[0],[],e[1],e[2]??new WeakMap):d_(e[0],e[1],e[2],e[3]??new WeakMap)}var f_,vje=s((()=>{lf(),gf(),Cf(),u_(),Xg(),i_(),Rg(),f_=class extends hf{constructor(e,t){super(t),this.schema=e}}})),yje=s((()=>{vje()})),bje=s((()=>{})),xje=s((()=>{bje()})),Sje=s((()=>{})),Cje=s((()=>{Sje()})),wje=s((()=>{})),Tje=s((()=>{})),Eje=s((()=>{})),Dje=s((()=>{wje(),Tje(),Eje()})),Oje=s((()=>{})),kje=s((()=>{Oje()})),Aje=s((()=>{})),jje=s((()=>{Aje()})),Mje=s((()=>{gf()})),Nje=s((()=>{})),Pje=s((()=>{})),Fje=s((()=>{Pje()})),Ije=s((()=>{})),Lje=s((()=>{Ije()})),Rje=s((()=>{Nje()})),zje=s((()=>{})),Bje=s((()=>{zje()})),Vje=s((()=>{})),Hje=s((()=>{Vje()})),Uje=s((()=>{sAe(),lAe(),yje(),Xg(),xje(),i_(),Cje(),u_(),kje(),jje(),Fje(),Lje(),Rje(),Kg(),Bje(),Hje()})),Wje=s((()=>{Uje()})),Gje=s((()=>{sAe(),lf(),lAe(),yje(),Xg(),xje(),i_(),Cje(),u_(),kje(),jje(),Fje(),Lje(),Rje(),Kg(),Bje(),Hje(),Mje(),Dje(),Wje()})),p_,m_=s((()=>{Gje(),p_=(e,t)=>_je(e,t)})),h_,g_=s((()=>{h_={document:{navigation:`x-scalar-navigation`},workspace:{colorMode:`x-scalar-color-mode`,sidebarWidth:`x-scalar-sidebar-width`,defaultClient:`x-scalar-default-client`,defaultExample:`x-scalar-default-example`,activeDocument:`x-scalar-active-document`,theme:`x-scalar-theme`}}})),__,Kje,v_,qje,Jje,Yje,y_=s((()=>{Ng(),_e(),__=q.Object({name:q.String(),value:q.Union([q.Object({description:q.Optional(q.String()),default:q.String({default:``})}),q.String()])}),Kje=T({name:S(),value:fe([T({description:E(S()),default:S()}),S()])},{typeName:`XScalarEnvVar`}),v_=q.Object({description:q.Optional(q.String()),color:q.String({default:`#FFFFFF`}),variables:q.Array(__)}),qje=T({description:E(S()),color:S({typeComment:`Color for the environment`}),variables:de(Kje,{typeComment:`An array of variables`})},{typeName:`XScalarEnvironment`,typeComment:`A map of environments by name`}),Jje=q.Object({"x-scalar-environments":q.Optional(q.Record(q.String(),v_))}),Yje=T({"x-scalar-environments":E(w(S(),qje))},{typeName:`XScalarEnvironments`,typeComment:`A record of environments by name`})})),Xje,Zje,Qje=s((()=>{Ng(),_e(),Xje=q.Object({"x-scalar-icon":q.Optional(q.String())}),Zje=T({"x-scalar-icon":E(S())},{typeName:`XScalarIcon`,typeComment:`A custom icon representing the collection`})})),$je,eMe,tMe=s((()=>{Ng(),_e(),$je=q.Object({"x-scalar-is-dirty":q.Optional(q.Boolean())}),eMe=T({"x-scalar-is-dirty":E(C({typeComment:`Whether the document state is dirty, this is used to track if the document has been modified since it was last saved`}))},{typeName:`XScalarIsDirty`,typeComment:`Tracks whether the document has been modified since it was last saved`})})),nMe,rMe,iMe=s((()=>{Ng(),_e(),nMe=q.Object({"x-scalar-original-document-hash":q.String()}),rMe=T({"x-scalar-original-document-hash":S({typeComment:`Original input document hash`})},{typeName:`XScalarOriginalDocumentHash`,typeComment:`Original input document hash`})})),aMe,oMe,sMe=s((()=>{Ng(),_e(),aMe=q.Partial(q.Object({"x-scalar-original-source-url":q.String()})),oMe=T({"x-scalar-original-source-url":E(S({typeComment:`Original document source URL when loaded from an external source`}))},{typeName:`XScalarOriginalSourceUrl`,typeComment:`Original document source URL when loaded from an external source.`})})),cMe,lMe,uMe,dMe,fMe=s((()=>{Ng(),_e(),cMe=q.Object({namespace:q.String(),slug:q.String(),version:q.String(),commitHash:q.Optional(q.String()),conflictCheckedAgainstHash:q.Optional(q.String()),hasConflict:q.Optional(q.Boolean())}),lMe=q.Object({"x-scalar-registry-meta":q.Optional(cMe)}),uMe=T({namespace:S({typeComment:`The namespace under which this registry meta is scoped.`}),slug:S({typeComment:`A unique slug identifier for this registry meta within the namespace.`}),version:S({typeComment:`The version of the registry meta.`}),commitHash:E(S({typeComment:`Last known commit hash of this document. Is going to be used to track if the document has been modified since it was last saved.`})),conflictCheckedAgainstHash:E(S({typeComment:`Registry commit hash that the cached hasConflict flag was computed against. The cache is invalid when this no longer matches the registry hash.`})),hasConflict:E(C({typeComment:`Cached outcome of the last conflict check, valid only while conflictCheckedAgainstHash matches the registry hash.`}))},{typeName:`XScalarRegistryMetaInner`,typeComment:`Registry meta namespace and slug`}),dMe=T({"x-scalar-registry-meta":E(uMe)},{typeName:`XScalarRegistryMeta`,typeComment:`The registry meta for the document`})})),pMe,mMe,hMe=s((()=>{Ng(),_e(),pMe=q.Object({"x-scalar-watch-mode":q.Optional(q.Boolean())}),mMe=T({"x-scalar-watch-mode":E(C({typeComment:`Whether the document is in watch mode`}))},{typeName:`XScalarWatchMode`,typeComment:`Whether the document is in watch mode`})})),b_,x_,S_=s((()=>{Ng(),_e(),b_=q.Object({"x-post-response":q.Optional(q.String())}),x_=T({"x-post-response":E(S({typeComment:`Script to run after a response is received`}))},{typeName:`XPostResponse`,typeComment:`Post-response script for an operation`})})),C_,w_,T_=s((()=>{Ng(),_e(),C_=q.Object({"x-pre-request":q.Optional(q.String())}),w_=T({"x-pre-request":E(S())},{typeName:`XPreRequest`,typeComment:`Pre-request script to run before the request is sent.`})})),gMe,_Me,vMe=s((()=>{Ng(),_e(),gMe=q.Object({"x-scalar-active-environment":q.Optional(q.String())}),_Me=T({"x-scalar-active-environment":E(S({typeComment:`The currently selected environment`}))},{typeName:`XScalarActiveEnvironment`,typeComment:`The currently selected environment`})})),E_,yMe,bMe,xMe,D_=s((()=>{Ng(),_e(),E_=q.Object({name:q.String(),value:q.String(),domain:q.Optional(q.String()),path:q.Optional(q.String()),isDisabled:q.Optional(q.Boolean())}),yMe=T({name:S({typeComment:`Defines the cookie name and its value.`}),value:S({typeComment:`Defines the cookie value.`}),domain:E(S({typeComment:`Allows this domain and all subdomains.`})),path:E(S({typeComment:`Restricts this cookie to requests that contain this path.`})),isDisabled:E(C({typeComment:`Indicates if the cookie is disabled.`}))},{typeName:`XScalarCookie`,typeComment:`A persisted cookie definition for the workspace`}),bMe=q.Object({"x-scalar-cookies":q.Optional(q.Array(E_))}),xMe=T({"x-scalar-cookies":E(de(yMe,{typeComment:`Cookies persisted for the workspace`}))},{typeName:`XScalarCookies`,typeComment:`Persisted workspace cookies`})})),O_,k_,A_=s((()=>{Ng(),_e(),O_=q.Object({"x-scalar-order":q.Optional(q.Array(q.String()))}),k_=T({"x-scalar-order":E(de(S()))},{typeName:`XScalarOrder`,typeComment:`Custom order for elements in the Scalar UI`})})),j_,M_,N_=s((()=>{Ng(),_e(),j_=q.Object({"x-scalar-selected-server":q.Optional(q.String())}),M_=T({"x-scalar-selected-server":E(S({typeComment:"The currently selected server. For OpenAPI documents this is the server URL; for AsyncAPI documents this is the server name (key in `document.servers`)."}))},{typeName:`XScalarSelectedServer`,typeComment:"The currently selected server. For OpenAPI documents this is the server URL; for AsyncAPI documents this is the server name (key in `document.servers`)."})})),SMe,CMe,wMe,TMe,EMe=s((()=>{Ng(),_e(),Fg(),A_(),SMe=Pg(q.Object({name:q.String(),tags:q.Array(q.String())}),O_),CMe=pe([T({name:S({typeComment:`The group name.`}),tags:de(S(),{typeComment:`List of tags to include in this group.`})},{typeName:`XTagGroupBase`}),k_],{typeName:`XTagGroup`,typeComment:`A tag group with optional custom ordering`}),wMe=q.Object({"x-tagGroups":q.Optional(q.Array(SMe))}),TMe=T({"x-tagGroups":E(de(CMe,{typeComment:`Tag groups for organizing tags in the UI`}))},{typeName:`XTagGroups`,typeComment:`Groups of tags for the OpenAPI document`})})),P_,DMe,F_=s((()=>{P_=[`delete`,`get`,`head`,`options`,`patch`,`post`,`put`,`trace`],DMe=Object.freeze(new Set(P_))})),I_,OMe,L_,kMe,R_,z_,B_,V_,H_,AMe,U_,W_,G_,K_,jMe,MMe,NMe,q_,PMe,J_,Y_,X_,Z_,Q_,FMe,IMe,LMe,RMe,$_,zMe,ev=s((()=>{Ng(),I_={ComponentsObject:`ComponentsObject`,SecurityRequirementObject:`SecurityRequirementObject`,TagObject:`TagObject`,CallbackObject:`CallbackObject`,PathsObject:`PathsObject`,PathItemObject:`PathItemObject`,OperationObject:`OperationObject`,SchemaObject:`SchemaObject`,EncodingObject:`EncodingObject`,HeaderObject:`HeaderObject`,MediaTypeObject:`MediaTypeObject`,ServerObject:`ServerObject`,ExternalDocumentationObject:`ExternalDocumentationObject`,InfoObject:`InfoObject`,ContactObject:`ContactObject`,LicenseObject:`LicenseObject`,ResponseObject:`ResponseObject`,ResponsesObject:`ResponsesObject`,ParameterObject:`ParameterObject`,ExampleObject:`ExampleObject`,RequestBodyObject:`RequestBodyObject`,SecuritySchemeObject:`SecuritySchemeObject`,SecuritySchemes:`SecuritySchemes`,LinkObject:`LinkObject`,XMLObject:`XMLObject`,DiscriminatorObject:`DiscriminatorObject`,OAuthFlowsObject:`OAuthFlowsObject`,ServerVariableObject:`ServerVariableObject`,TraversedDescriptionObject:`TraversedDescriptionObject`,TraversedOperationObject:`TraversedOperationObject`,TraversedAsyncApiOperationObject:`TraversedAsyncApiOperationObject`,TraversedAsyncApiChannelObject:`TraversedAsyncApiChannelObject`,TraversedAsyncApiMessageObject:`TraversedAsyncApiMessageObject`,TraversedSchemaObject:`TraversedSchemaObject`,TraversedWebhookObject:`TraversedWebhookObject`,TraversedTagObject:`TraversedTagObject`,TraversedEntryObject:`TraversedEntryObject`,TraversedDocumentObject:`TraversedDocumentObject`},OMe=q.Ref(I_.ComponentsObject),L_=q.Ref(I_.SecurityRequirementObject),kMe=q.Ref(I_.TagObject),R_=q.Ref(I_.CallbackObject),z_=q.Ref(I_.PathItemObject),B_=q.Ref(I_.PathsObject),V_=q.Ref(I_.OperationObject),H_=q.Ref(I_.SchemaObject),AMe=q.Ref(I_.EncodingObject),U_=q.Ref(I_.HeaderObject),W_=q.Ref(I_.MediaTypeObject),G_=q.Ref(I_.ServerObject),K_=q.Ref(I_.ExternalDocumentationObject),jMe=q.Ref(I_.InfoObject),MMe=q.Ref(I_.ContactObject),NMe=q.Ref(I_.LicenseObject),q_=q.Ref(I_.ResponseObject),PMe=q.Ref(I_.ResponsesObject),J_=q.Ref(I_.ParameterObject),Y_=q.Ref(I_.ExampleObject),X_=q.Ref(I_.RequestBodyObject),Z_=q.Ref(I_.SecuritySchemeObject),Q_=q.Ref(I_.LinkObject),FMe=q.Ref(I_.XMLObject),IMe=q.Ref(I_.DiscriminatorObject),LMe=q.Ref(I_.OAuthFlowsObject),RMe=q.Ref(I_.ServerVariableObject),$_=q.Ref(I_.TraversedEntryObject),zMe=q.Ref(I_.TraversedDocumentObject)})),tv,nv,rv,BMe,iv,av,ov,sv,cv,lv,uv,VMe,HMe,UMe=s((()=>{F_(),Ng(),Fg(),ev(),tv=q.Object({id:q.String(),title:q.String()}),nv=Pg(tv,q.Object({type:q.Literal(`document`),name:q.String(),children:q.Optional(q.Array($_)),icon:q.Optional(q.String())})),rv=Pg(tv,q.Object({type:q.Literal(`text`),children:q.Optional(q.Array($_))})),BMe=Pg(tv,q.Object({type:q.Literal(`example`),name:q.String()})),iv=Pg(tv,q.Object({type:q.Literal(`operation`),ref:q.String(),method:q.Union(P_.map(e=>q.Literal(e))),path:q.String(),isDeprecated:q.Optional(q.Boolean()),children:q.Optional(q.Array($_))})),av=Pg(tv,q.Object({type:q.Literal(`asyncapi-operation`),operationName:q.String(),action:q.Union([q.Literal(`send`),q.Literal(`receive`)]),channelName:q.String(),channelAddress:q.String(),children:q.Optional(q.Array($_))})),ov=Pg(tv,q.Object({type:q.Literal(`asyncapi-channel`),channelName:q.String(),channelAddress:q.String(),children:q.Optional(q.Array($_))})),sv=Pg(tv,q.Object({type:q.Literal(`asyncapi-message`),messageName:q.String(),channelName:q.String()})),cv=Pg(tv,q.Object({type:q.Literal(`model`),ref:q.String(),name:q.String()})),lv=Pg(tv,q.Object({type:q.Literal(`webhook`),ref:q.String(),method:q.Union(P_.map(e=>q.Literal(e))),name:q.String(),isDeprecated:q.Optional(q.Boolean())})),uv=Pg(tv,q.Object({type:q.Literal(`tag`),name:q.String(),description:q.Optional(q.String()),children:q.Optional(q.Array($_)),isGroup:q.Boolean(),isWebhooks:q.Optional(q.Boolean()),xKeys:q.Optional(q.Record(q.String(),q.Unknown()))})),VMe=Pg(tv,q.Object({type:q.Literal(`models`),name:q.String(),children:q.Optional(q.Array($_))})),HMe=q.Union([rv,iv,av,ov,sv,cv,uv,lv,BMe,nv,VMe])})),WMe,dv,fv,pv=s((()=>{Ng(),Fg(),WMe=q.Object({$status:q.Optional(q.Union([q.Literal(`loading`),q.Literal(`error`)])),$global:q.Optional(q.Boolean())}),dv=Pg(q.Object({$ref:q.String(),summary:q.Optional(q.String()),description:q.Optional(q.String())}),WMe),fv=e=>Pg(dv,q.Object({"$ref-value":e}))})),GMe,KMe=s((()=>{Ng(),ev(),pv(),GMe=q.Record(q.String(),q.Union([z_,fv(z_)]))})),mv,qMe,JMe=s((()=>{Ng(),ev(),pv(),mv=q.Record(q.String(),q.Union([Z_,fv(Z_)])),qMe=q.Object({schemas:q.Optional(q.Record(q.String(),q.Union([H_,fv(H_)]))),responses:q.Optional(q.Record(q.String(),q.Union([q_,fv(q_)]))),parameters:q.Optional(q.Record(q.String(),q.Union([J_,fv(J_)]))),examples:q.Optional(q.Record(q.String(),q.Union([Y_,fv(Y_)]))),requestBodies:q.Optional(q.Record(q.String(),q.Union([X_,fv(X_)]))),headers:q.Optional(q.Record(q.String(),q.Union([U_,fv(U_)]))),securitySchemes:q.Optional(mv),links:q.Optional(q.Record(q.String(),q.Union([Q_,fv(Q_)]))),callbacks:q.Optional(q.Record(q.String(),q.Union([R_,fv(R_)]))),pathItems:q.Optional(q.Record(q.String(),q.Union([z_,fv(z_)])))})})),YMe,XMe=s((()=>{Ng(),YMe=q.Object({name:q.Optional(q.String()),url:q.Optional(q.String()),email:q.Optional(q.String())})})),ZMe,QMe=s((()=>{Ng(),ZMe=q.Object({propertyName:q.String(),mapping:q.Optional(q.Record(q.String(),q.String()))})})),$Me,eNe=s((()=>{Ng(),ev(),pv(),$Me=q.Object({contentType:q.Optional(q.String()),headers:q.Optional(q.Record(q.String(),q.Union([U_,fv(U_)]))),style:q.Optional(q.Union([q.Literal(`form`),q.Literal(`spaceDelimited`),q.Literal(`pipeDelimited`),q.Literal(`deepObject`)])),explode:q.Optional(q.Boolean()),allowReserved:q.Optional(q.Boolean())})})),tNe,nNe,rNe=s((()=>{Ng(),_e(),tNe=q.Object({"x-disabled":q.Optional(q.Boolean())}),nNe=T({"x-disabled":E(C())},{typeName:`XDisabled`,typeComment:`Whether a parameter example is disabled in the API client`})})),iNe,aNe=s((()=>{Ng(),Fg(),rNe(),iNe=Pg(q.Object({summary:q.Optional(q.String()),description:q.Optional(q.String()),value:q.Optional(q.Any()),externalValue:q.Optional(q.String())}),tNe)})),oNe,sNe=s((()=>{Ng(),oNe=q.Object({url:q.String(),description:q.Optional(q.String())})})),hv,cNe,lNe,uNe=s((()=>{Ng(),Fg(),ev(),pv(),hv=q.Object({description:q.Optional(q.String()),required:q.Optional(q.Boolean()),deprecated:q.Optional(q.Boolean())}),cNe=Pg(hv,q.Object({style:q.Optional(q.String()),explode:q.Optional(q.Boolean()),schema:q.Optional(q.Union([H_,fv(H_)])),example:q.Optional(q.Any()),examples:q.Optional(q.Record(q.String(),q.Union([Y_,fv(Y_)])))})),lNe=q.Union([cNe,Pg(hv,q.Object({content:q.Optional(q.Record(q.String(),W_))}))])})),dNe,fNe,pNe,mNe,hNe=s((()=>{Ng(),_e(),dNe=q.Object({name:q.String(),url:q.String()}),fNe=q.Object({"x-scalar-links":q.Optional(q.Array(dNe))}),pNe=T({name:S(),url:S()},{typeName:`XScalarLinkItem`,typeComment:`A named link to display alongside the API info`}),mNe=T({"x-scalar-links":E(de(pNe,{typeComment:`Additional named links to display alongside the API info (e.g. privacy policy, imprint)`}))},{typeName:`XScalarLinks`,typeComment:`Additional named links to display alongside the API info`})})),gNe,_Ne,vNe,yNe,bNe=s((()=>{Ng(),_e(),gNe=q.Object({lang:q.String(),description:q.Optional(q.String()),source:q.Optional(q.String())}),_Ne=q.Object({"x-scalar-sdk-installation":q.Optional(q.Array(gNe))}),vNe=T({lang:S(),description:E(S()),source:E(S())},{typeName:`XScalarSdkInstallationItem`,typeComment:`Scalar SDK installation entry`}),yNe=T({"x-scalar-sdk-installation":E(de(vNe,{typeComment:`Scalar SDK installation information`}))},{typeName:`XScalarSdkInstallation`,typeComment:`Scalar SDK installation information`})})),xNe,SNe=s((()=>{Ng(),Fg(),hNe(),bNe(),ev(),xNe=Pg(q.Object({title:q.String(),version:q.String(),summary:q.Optional(q.String()),description:q.Optional(q.String()),termsOfService:q.Optional(q.String()),contact:q.Optional(MMe),license:q.Optional(NMe)}),_Ne,fNe)})),CNe,wNe=s((()=>{Ng(),CNe=q.Object({name:q.Optional(q.String()),identifier:q.Optional(q.String()),url:q.Optional(q.String())})})),TNe,ENe=s((()=>{Ng(),ev(),TNe=q.Object({operationRef:q.Optional(q.String()),operationId:q.Optional(q.String()),parameters:q.Optional(q.Record(q.String(),q.Any())),requestBody:q.Optional(q.Any()),description:q.Optional(q.String()),server:q.Optional(G_)})})),DNe,ONe=s((()=>{Ng(),ev(),pv(),DNe=q.Object({schema:q.Optional(q.Union([H_,fv(H_)])),example:q.Optional(q.Any()),examples:q.Optional(q.Record(q.String(),q.Union([Y_,fv(Y_)]))),encoding:q.Optional(q.Record(q.String(),AMe))})})),gv,_v,vv=s((()=>{Ng(),_e(),gv=q.Object({"x-scalar-credentials-location":q.Optional(q.Union([q.Literal(`header`),q.Literal(`body`)]))}),_v=T({"x-scalar-credentials-location":E(fe([D(`header`),D(`body`)]))},{typeName:`XScalarCredentialsLocation`,typeComment:`Where OAuth2 credentials are sent`})})),kNe,ANe,jNe=s((()=>{Ng(),_e(),kNe=q.Object({"x-scalar-security-body":q.Optional(q.Record(q.String(),q.String()))}),ANe=T({"x-scalar-security-body":E(w(S(),S()))},{typeName:`XScalarSecurityBody`,typeComment:`Additional OAuth token request body parameters`})})),MNe,NNe,PNe=s((()=>{Ng(),_e(),MNe=q.Object({"x-scalar-security-query":q.Optional(q.Record(q.String(),q.String()))}),NNe=T({"x-scalar-security-query":E(w(S(),S()))},{typeName:`XScalarSecurityQuery`,typeComment:`Additional OAuth authorize query parameters`})})),yv,FNe,INe,LNe,RNe,zNe,bv,xv,BNe,Sv,VNe,HNe,UNe,Cv=s((()=>{Ng(),_e(),yv=q.Object({"x-scalar-secret-token":q.String()}),T({"x-scalar-secret-token":S()},{typeName:`XScalarSecretToken`,typeComment:`Persisted OAuth access token (sensitive)`}),FNe=q.Object({"x-scalar-secret-refresh-token":q.Optional(q.String())}),T({"x-scalar-secret-refresh-token":E(S())},{typeName:`XScalarSecretRefreshToken`,typeComment:`Persisted OAuth refresh token (sensitive)`}),INe=q.Object({"x-scalar-secret-auth-url":q.Optional(q.String())}),LNe=T({"x-scalar-secret-auth-url":E(S())},{typeName:`XScalarAuthUrl`,typeComment:`Persisted OAuth authorization URL override`}),RNe=q.Object({"x-scalar-secret-token-url":q.Optional(q.String())}),zNe=T({"x-scalar-secret-token-url":E(S())},{typeName:`XScalarTokenUrl`,typeComment:`Persisted OAuth token URL override`}),bv=q.Object({"x-scalar-secret-username":q.String(),"x-scalar-secret-password":q.String()}),T({"x-scalar-secret-username":S(),"x-scalar-secret-password":S()},{typeName:`XScalarSecretHTTP`,typeComment:`Persisted HTTP basic credentials (sensitive)`}),xv=q.Object({"x-scalar-secret-client-secret":q.String()}),T({"x-scalar-secret-client-secret":S()},{typeName:`XScalarSecretClientSecret`,typeComment:`Persisted OAuth client secret (sensitive)`}),BNe=q.Object({"x-scalar-secret-client-id":q.String()}),T({"x-scalar-secret-client-id":S()},{typeName:`XScalarSecretClientId`,typeComment:`Persisted OAuth client ID`}),Sv=q.Object({"x-scalar-secret-redirect-uri":q.String()}),T({"x-scalar-secret-redirect-uri":S()},{typeName:`XScalarSecretRedirectUri`,typeComment:`Persisted OAuth redirect URI`}),VNe=q.Object({"x-scalar-secret-client-certificate":q.String()}),HNe=q.Object({"x-scalar-secret-private-key":q.String()}),UNe=q.Object({"x-scalar-secret-service-name":q.String()})})),WNe,GNe,KNe=s((()=>{Ng(),_e(),WNe=q.Object({"x-tokenName":q.Optional(q.String())}),GNe=T({"x-tokenName":E(S())},{typeName:`XTokenName`,typeComment:`Custom OAuth2 access token field name`})})),qNe,JNe,YNe=s((()=>{Ng(),_e(),qNe=q.Object({"x-usePkce":q.Union([q.Literal(`SHA-256`),q.Literal(`plain`),q.Literal(`no`)],{default:`no`})}),JNe=T({"x-usePkce":fe([D(`SHA-256`),D(`plain`),D(`no`)],{typeComment:`PKCE mode for the OAuth2 authorization code flow`})},{typeName:`XusePkce`,typeComment:`PKCE setting for OAuth2`})})),wv,Tv,Ev,Dv,Ov,XNe=s((()=>{Ng(),Fg(),vv(),jNe(),PNe(),Cv(),KNe(),YNe(),wv=Pg(q.Object({refreshUrl:q.String(),scopes:q.Record(q.String(),q.String())}),MNe,kNe,WNe,INe,RNe),Tv=Pg(wv,q.Object({authorizationUrl:q.String()})),Ev=Pg(wv,q.Object({tokenUrl:q.String()}),gv),Dv=Pg(wv,q.Object({tokenUrl:q.String()}),gv),Ov=Pg(wv,q.Object({authorizationUrl:q.String(),tokenUrl:q.String()}),qNe,gv)})),ZNe,QNe=s((()=>{Ng(),XNe(),ZNe=q.Object({implicit:q.Optional(Tv),password:q.Optional(Ev),clientCredentials:q.Optional(Dv),authorizationCode:q.Optional(Ov)})})),kv,Av,jv=s((()=>{Ng(),_e(),kv=q.Object({"x-internal":q.Optional(q.Boolean())}),Av=T({"x-internal":E(C({typeComment:`Extension to mark an entity as internal`}))},{typeName:`XInternal`,typeComment:`Extension to mark an entity as internal`})})),Mv,Nv,Pv=s((()=>{Ng(),_e(),Mv=q.Object({"x-scalar-ignore":q.Optional(q.Boolean())}),Nv=T({"x-scalar-ignore":E(C())},{typeName:`XScalarIgnore`,typeComment:`Internal extension to mark an entity as ignored`})})),$Ne,ePe,tPe,nPe,Fv=s((()=>{Ng(),_e(),$Ne=q.Object({name:q.String({description:`The text that displays in the badge`,minLength:1}),position:q.Optional(q.Union([q.Literal(`before`),q.Literal(`after`)],{description:`The position of the badge in relation to the header`,default:`after`})),color:q.Optional(q.String({description:`The color of the badge in various formats (keywords, RGB, RGBA, HSL, HSLA, Hexadecimal)`,pattern:`^(#([0-9A-Fa-f]{3}){1,2}|rgb\\(\\s*\\d+\\s*,\\s*\\d+\\s*,\\s*\\d+\\s*\\)|rgba\\(\\s*\\d+\\s*,\\s*\\d+\\s*,\\s*\\d+\\s*,\\s*[0-9.]*\\s*\\)|hsl\\(\\s*\\d+\\s*,\\s*\\d+%\\s*,\\s*\\d+%\\s*\\)|hsla\\(\\s*\\d+\\s*,\\s*\\d+%\\s*,\\s*\\d+%\\s*,\\s*[0-9.]*\\s*\\)|[a-zA-Z]+)$`}))},{description:`Configuration for a single badge in the x-badges extension`}),ePe=T({name:S({typeComment:`The text that displays in the badge. This is required for all badges.`}),position:E(fe([D(`before`),D(`after`)],{typeComment:`The position of the badge in relation to the header`})),color:E(S({typeComment:`The color of the badge in various formats (keywords, RGB, RGBA, HSL, HSLA, Hexadecimal)`}))},{typeName:`XBadge`,typeComment:`Configuration for a single badge in the x-badges extension`}),tPe=q.Object({"x-badges":q.Optional(q.Array($Ne))}),nPe=T({"x-badges":E(de(ePe,{typeComment:`Badges displayed for this operation in documentation`}))},{typeName:`XBadges`,typeComment:`Badges for an operation in the Scalar UI`})})),Iv,rPe,iPe,Lv,aPe,oPe,Rv,sPe,zv,cPe,lPe,Bv=s((()=>{Ng(),_e(),Iv=q.Object({lang:q.Optional(q.String()),label:q.Optional(q.String()),source:q.String()}),rPe=q.Object({language:q.Optional(q.String()),code:q.String(),name:q.Optional(q.String()),install:q.Optional(q.String()),correspondingExample:q.Optional(q.String())}),iPe=q.Object({"code-samples":q.Optional(q.Array(rPe)),"samples-languages":q.Optional(q.Array(q.String()))}),Lv=q.Object({title:q.Optional(q.String()),request:q.Optional(q.Record(q.String(),q.String())),response:q.Optional(q.Unknown())}),aPe=q.Union([Lv,q.Array(Lv)]),oPe=q.Object({"x-codeSamples":q.Optional(q.Array(Iv)),"x-code-samples":q.Optional(q.Array(Iv)),"x-custom-examples":q.Optional(q.Array(Iv)),"x-readme":q.Optional(iPe),"x-stainless-snippets":q.Optional(q.Record(q.String(),q.String())),"x-stainless-examples":q.Optional(aPe),"x-scalar-examples":q.Optional(q.Array(Iv))}),Rv=T({lang:E(S()),label:E(S()),source:S()}),sPe=T({"code-samples":E(de(T({language:E(S()),code:S(),name:E(S()),install:E(S()),correspondingExample:E(S())}))),"samples-languages":E(de(S()))}),zv=T({title:E(S()),request:E(w(S(),S())),response:E(le())}),cPe=fe([zv,de(zv)]),lPe=T({"x-codeSamples":E(de(Rv)),"x-code-samples":E(de(Rv)),"x-custom-examples":E(de(Rv)),"x-readme":E(sPe),"x-stainless-snippets":E(w(S(),S())),"x-stainless-examples":E(cPe),"x-scalar-examples":E(de(Rv))})})),uPe,dPe,fPe=s((()=>{Ng(),_e(),uPe=q.Object({"x-draft-examples":q.Optional(q.Array(q.String()))}),dPe=T({"x-draft-examples":E(de(S()))},{typeName:`XDraftExamples`,typeComment:`Draft example identifiers for an operation`})})),pPe,Vv,mPe,hPe,Hv,gPe,_Pe,vPe=s((()=>{Ng(),_e(),pPe=q.Record(q.String(),q.Boolean()),Vv=q.Record(q.String(),pPe),mPe=q.Object({"x-scalar-disable-parameters":q.Optional(q.Object({"global-cookies":q.Optional(Vv),"global-headers":q.Optional(Vv),"default-headers":q.Optional(Vv)}))}),hPe=w(S(),C()),Hv=w(S(),hPe),gPe=T({"global-cookies":E(Hv),"global-headers":E(Hv),"default-headers":E(Hv)},{typeName:`DisableParametersConfig`,typeComment:`Disabled parameter state by category and example`}),_Pe=T({"x-scalar-disable-parameters":E(gPe)},{typeName:`XScalarDisableParameters`,typeComment:`Tracks which parameters are disabled across examples`})})),yPe,bPe,xPe,Uv=s((()=>{Ng(),_e(),yPe={Deprecated:`deprecated`,Experimental:`experimental`,Stable:`stable`},bPe=q.Object({"x-scalar-stability":q.Optional(q.Union([q.Literal(`deprecated`),q.Literal(`experimental`),q.Literal(`stable`)]))}),xPe=T({"x-scalar-stability":E(fe([D(`deprecated`),D(`experimental`),D(`stable`)],{typeComment:`Stability level of the operation`}))},{typeName:`XScalarStability`,typeComment:`Stability of the operation in the Scalar UI`})})),SPe,CPe=s((()=>{Ng(),Fg(),jv(),Pv(),S_(),T_(),Fv(),Bv(),fPe(),vPe(),Uv(),N_(),ev(),pv(),SPe=Pg(q.Object({tags:q.Optional(q.Array(q.String())),summary:q.Optional(q.String()),description:q.Optional(q.String()),externalDocs:q.Optional(K_),operationId:q.Optional(q.String()),parameters:q.Optional(q.Array(q.Union([J_,fv(J_)]))),requestBody:q.Optional(q.Union([X_,fv(X_)])),responses:q.Optional(PMe),deprecated:q.Optional(q.Boolean()),security:q.Optional(q.Array(L_)),servers:q.Optional(q.Array(G_)),callbacks:q.Optional(q.Record(q.String(),q.Union([R_,fv(R_)])))}),tPe,kv,Mv,oPe,bPe,mPe,b_,C_,uPe,j_)})),wPe,Wv,TPe=s((()=>{Ng(),_e(),wPe=q.Object({"x-global":q.Optional(q.Boolean())}),Wv=T({"x-global":E(C())},{typeName:`XGlobal`,typeComment:`When true, the parameter is injected into every request for the workspace`})})),Gv,EPe,DPe,OPe,kPe=s((()=>{Ng(),Fg(),jv(),Pv(),TPe(),ev(),pv(),Gv=Pg(q.Object({name:q.String(),in:q.Union([q.Literal(`query`),q.Literal(`header`),q.Literal(`path`),q.Literal(`cookie`)]),description:q.Optional(q.String()),required:q.Optional(q.Boolean()),deprecated:q.Optional(q.Boolean()),allowEmptyValue:q.Optional(q.Boolean()),allowReserved:q.Optional(q.Boolean())}),wPe,kv,Mv),EPe=Pg(Gv,q.Object({style:q.Optional(q.String()),explode:q.Optional(q.Boolean()),schema:q.Optional(q.Union([H_,fv(H_)])),example:q.Optional(q.Any()),examples:q.Optional(q.Record(q.String(),q.Union([Y_,fv(Y_)])))})),DPe=Pg(Gv,q.Object({content:q.Optional(q.Record(q.String(),W_))})),OPe=q.Union([EPe,DPe])})),APe,jPe=s((()=>{Ng(),ev(),pv(),APe=q.Object({$ref:q.Optional(q.String()),summary:q.Optional(q.String()),description:q.Optional(q.String()),get:q.Optional(q.Union([V_,fv(V_)])),put:q.Optional(q.Union([V_,fv(V_)])),post:q.Optional(q.Union([V_,fv(V_)])),delete:q.Optional(q.Union([V_,fv(V_)])),patch:q.Optional(q.Union([V_,fv(V_)])),connect:q.Optional(q.Union([V_,fv(V_)])),options:q.Optional(q.Union([V_,fv(V_)])),head:q.Optional(q.Union([V_,fv(V_)])),trace:q.Optional(q.Union([V_,fv(V_)])),servers:q.Optional(q.Array(G_)),parameters:q.Optional(q.Array(q.Union([J_,fv(J_)])))})})),MPe,NPe=s((()=>{Ng(),ev(),pv(),MPe=q.Record(q.String(),q.Union([z_,fv(z_)]))})),PPe,FPe,Kv=s((()=>{Ng(),_e(),PPe=q.Object({"x-scalar-selected-content-type":q.Optional(q.Record(q.String(),q.String()))}),FPe=T({"x-scalar-selected-content-type":E(w(S(),S(),{typeComment:`Selected content type per example name`}))},{typeName:`XScalarSelectedContentType`,typeComment:`Selected content type per example for request or response bodies`})})),IPe,LPe=s((()=>{Ng(),Fg(),Kv(),ev(),IPe=Pg(q.Object({description:q.Optional(q.String()),content:q.Record(q.String(),W_),required:q.Optional(q.Boolean())}),PPe)})),RPe,zPe=s((()=>{Ng(),ev(),pv(),RPe=q.Object({description:q.String(),headers:q.Optional(q.Record(q.String(),q.Union([U_,fv(U_)]))),content:q.Optional(q.Record(q.String(),W_)),links:q.Optional(q.Record(q.String(),q.Union([Q_,fv(Q_)])))})})),BPe,VPe=s((()=>{Ng(),ev(),pv(),BPe=q.Record(q.String(),q.Union([q_,fv(q_)]))})),HPe,UPe,WPe=s((()=>{Ng(),_e(),HPe=q.Object({"x-tags":q.Optional(q.Array(q.String()))}),UPe=T({"x-tags":E(de(S()))},{typeName:`XTags`,typeComment:`Custom tag ordering or grouping hints for schema objects`})})),GPe,KPe,qPe=s((()=>{Ng(),_e(),GPe=q.Object({"x-additionalPropertiesName":q.Optional(q.String())}),KPe=T({"x-additionalPropertiesName":E(S())},{typeName:`XAdditionalPropertiesName`,typeComment:`Display name for additional properties on a schema`})})),JPe,qv,YPe,XPe=s((()=>{Ng(),_e(),JPe=q.Object({"x-enumDescriptions":q.Optional(q.Union([q.Record(q.String(),q.String()),q.Array(q.String())])),"x-enum-descriptions":q.Optional(q.Union([q.Record(q.String(),q.String()),q.Array(q.String())]))}),qv=fe([w(S(),S()),de(S())]),YPe=T({"x-enumDescriptions":E(qv),"x-enum-descriptions":E(qv)},{typeName:`XEnumDescriptions`,typeComment:`Descriptions for enum values`})})),ZPe,QPe,$Pe=s((()=>{Ng(),_e(),ZPe=q.Object({"x-enum-varnames":q.Optional(q.Array(q.String())),"x-enumNames":q.Optional(q.Array(q.String()))}),QPe=T({"x-enum-varnames":E(de(S())),"x-enumNames":E(de(S()))},{typeName:`XEnumVarNames`,typeComment:`Display names for enum values`})})),eFe,tFe,nFe=s((()=>{Ng(),_e(),eFe=q.Object({"x-examples":q.Optional(q.Record(q.String(),q.Unknown()))}),tFe=T({"x-examples":E(w(S(),ce()))},{typeName:`XExamples`,typeComment:`Named examples attached to a schema`})})),rFe,iFe,aFe=s((()=>{Ng(),_e(),rFe=q.Object({"x-order":q.Optional(q.Number())}),iFe=T({"x-order":E(oe())},{typeName:`XOrder`,typeComment:`Display order for a schema property`})})),oFe,sFe,cFe=s((()=>{Ng(),_e(),oFe=q.Object({"x-variable":q.Optional(q.String())}),sFe=T({"x-variable":E(S())},{typeName:`XVariable`,typeComment:`Variable reference for a schema property`})})),Jv,lFe,uFe,Yv,Xv,Zv,dFe,Qv,fFe,$v,pFe,ey,mFe,hFe,gFe,_Fe=s((()=>{Ng(),Fg(),jv(),Pv(),WPe(),qPe(),XPe(),$Pe(),nFe(),aFe(),cFe(),ev(),pv(),Jv=q.Union([H_,Pg(dv,q.Object({"$ref-value":q.Optional(q.Unknown())}))]),lFe=q.Union([q.Literal(`null`),q.Literal(`boolean`),q.Literal(`string`),q.Literal(`number`),q.Literal(`integer`),q.Literal(`object`),q.Literal(`array`)]),uFe=q.Object({type:q.Union([q.Literal(`null`),q.Literal(`boolean`)])}),Yv=Pg(Mv,kv,oFe,eFe,JPe,ZPe,GPe,rFe,HPe),Xv=q.Object({$id:q.Optional(q.String()),$anchor:q.Optional(q.String()),$dynamicAnchor:q.Optional(q.String()),$dynamicRef:q.Optional(q.String()),name:q.Optional(q.String()),title:q.Optional(q.String()),description:q.Optional(q.String()),default:q.Optional(q.Unknown()),enum:q.Optional(q.Array(q.Unknown())),const:q.Optional(q.Unknown()),contentMediaType:q.Optional(q.String()),contentEncoding:q.Optional(q.String()),contentSchema:q.Optional(Jv),deprecated:q.Optional(q.Boolean()),discriminator:q.Optional(IMe),readOnly:q.Optional(q.Boolean()),writeOnly:q.Optional(q.Boolean()),xml:q.Optional(FMe),externalDocs:q.Optional(K_),example:q.Optional(q.Unknown()),examples:q.Optional(q.Array(q.Unknown())),allOf:q.Optional(q.Array(Jv)),oneOf:q.Optional(q.Array(Jv)),anyOf:q.Optional(q.Array(Jv)),not:q.Optional(Jv)}),Zv=q.Object({multipleOf:q.Optional(q.Number()),maximum:q.Optional(q.Number()),exclusiveMaximum:q.Optional(q.Number({minimum:0})),minimum:q.Optional(q.Number()),exclusiveMinimum:q.Optional(q.Number({minimum:0}))}),dFe=Pg(q.Object({type:q.Union([q.Literal(`number`),q.Literal(`integer`)]),format:q.Optional(q.String())}),Zv),Qv=q.Object({maxLength:q.Optional(q.Integer({minimum:0})),minLength:q.Optional(q.Integer({minimum:0})),pattern:q.Optional(q.String())}),fFe=Pg(q.Object({type:q.Literal(`string`),format:q.Optional(q.String())}),Qv),$v=q.Object({maxItems:q.Optional(q.Integer({minimum:0})),minItems:q.Optional(q.Integer({minimum:0})),uniqueItems:q.Optional(q.Boolean()),items:q.Optional(Jv),prefixItems:q.Optional(q.Array(Jv))}),pFe=Pg(q.Object({type:q.Literal(`array`)}),$v),ey=q.Object({maxProperties:q.Optional(q.Integer({minimum:0})),minProperties:q.Optional(q.Integer({minimum:0})),required:q.Optional(q.Array(q.String())),properties:q.Optional(q.Record(q.String(),Jv)),additionalProperties:q.Optional(q.Union([q.Boolean(),Jv])),patternProperties:q.Optional(q.Record(q.String(),Jv)),propertyNames:q.Optional(Jv)}),mFe=Pg(q.Object({type:q.Literal(`object`)}),ey),hFe=Pg(q.Object({type:q.Array(lFe),format:q.Optional(q.String())}),Zv,Qv,$v,ey),gFe=q.Union([Pg(q.Object({__scalar_:q.String()}),Xv,Yv),Pg(uFe,Xv,Yv),Pg(dFe,Xv,Yv),Pg(fFe,Xv,Yv),Pg(mFe,Xv,Yv),Pg(pFe,Xv,Yv),Pg(hFe,Xv,Yv)])})),vFe,yFe=s((()=>{Ng(),vFe=q.Partial(q.Record(q.String(),q.Array(q.String())))})),bFe,xFe,SFe=s((()=>{Ng(),_e(),bFe=q.Object({"x-default-scopes":q.Optional(q.Array(q.String()))}),xFe=T({"x-default-scopes":E(de(S()))},{typeName:`XDefaultScopes`,typeComment:`Default selected OAuth scopes`})})),ty,CFe,wFe,TFe,EFe,DFe,OFe=s((()=>{Ng(),Fg(),SFe(),ev(),ty=q.Object({description:q.Optional(q.String())}),CFe=Pg(ty,q.Object({type:q.Literal(`apiKey`),name:q.String(),in:q.Union([q.Literal(`query`),q.Literal(`header`),q.Literal(`cookie`)])})),wFe=Pg(ty,q.Object({type:q.Literal(`http`),scheme:q.Union([q.Literal(`basic`),q.Literal(`bearer`)]),bearerFormat:q.Optional(q.String())})),TFe=Pg(ty,q.Object({type:q.Literal(`oauth2`),flows:LMe}),bFe),EFe=Pg(ty,q.Object({type:q.Literal(`openIdConnect`),openIdConnectUrl:q.String()})),DFe=q.Union([CFe,wFe,TFe,EFe])})),kFe,AFe=s((()=>{Ng(),ev(),kFe=q.Object({url:q.String(),description:q.Optional(q.String()),variables:q.Optional(q.Record(q.String(),RMe))})})),jFe,MFe=s((()=>{Ng(),jFe=q.Object({enum:q.Optional(q.Array(q.String())),default:q.Optional(q.String()),description:q.Optional(q.String())})})),NFe,PFe,FFe=s((()=>{Ng(),_e(),NFe=q.Object({"x-displayName":q.Optional(q.String())}),PFe=T({"x-displayName":E(S())},{typeName:`XDisplayName`,typeComment:`Display-friendly name for a tag`})})),IFe,LFe=s((()=>{Ng(),Fg(),jv(),Pv(),A_(),FFe(),ev(),IFe=Pg(q.Object({name:q.String(),description:q.Optional(q.String()),externalDocs:q.Optional(K_)}),NFe,kv,Mv,O_)})),RFe,zFe=s((()=>{Ng(),RFe=q.Object({name:q.Optional(q.String()),namespace:q.Optional(q.String()),prefix:q.Optional(q.String()),attribute:q.Optional(q.Boolean()),wrapped:q.Optional(q.Boolean())})})),BFe,VFe,ny,ry,HFe,UFe,iy,WFe,ay=s((()=>{Ng(),Fg(),g_(),y_(),Qje(),tMe(),iMe(),sMe(),fMe(),hMe(),S_(),T_(),vMe(),D_(),A_(),N_(),EMe(),UMe(),KMe(),JMe(),XMe(),QMe(),eNe(),aNe(),sNe(),uNe(),SNe(),wNe(),ENe(),ONe(),QNe(),CPe(),kPe(),jPe(),NPe(),ev(),LPe(),zPe(),VPe(),_Fe(),yFe(),OFe(),AFe(),MFe(),LFe(),zFe(),BFe=Pg(q.Partial(q.Object({"x-original-oas-version":q.String(),[h_.document.navigation]:zMe})),aMe,wMe,Jje,j_,Xje,O_,bMe,nMe,$je,gMe,pMe,lMe,C_,b_),VFe=Pg(q.Object({openapi:q.String(),info:jMe,jsonSchemaDialect:q.Optional(q.String()),servers:q.Optional(q.Array(G_)),paths:q.Optional(B_),webhooks:q.Optional(B_),components:q.Optional(OMe),security:q.Optional(q.Array(L_)),tags:q.Optional(q.Array(kMe)),externalDocs:q.Optional(K_)}),BFe),ny=q.Module({[I_.ComponentsObject]:qMe,[I_.SecurityRequirementObject]:vFe,[I_.TagObject]:IFe,[I_.CallbackObject]:GMe,[I_.PathItemObject]:APe,[I_.PathsObject]:MPe,[I_.OperationObject]:SPe,[I_.SchemaObject]:gFe,[I_.EncodingObject]:$Me,[I_.MediaTypeObject]:DNe,[I_.HeaderObject]:lNe,[I_.ServerObject]:kFe,[I_.ExternalDocumentationObject]:oNe,[I_.InfoObject]:xNe,[I_.ContactObject]:YMe,[I_.LicenseObject]:CNe,[I_.ResponseObject]:RPe,[I_.ResponsesObject]:BPe,[I_.ParameterObject]:OPe,[I_.ExampleObject]:iNe,[I_.RequestBodyObject]:IPe,[I_.SecuritySchemes]:mv,[I_.SecuritySchemeObject]:DFe,[I_.LinkObject]:TNe,[I_.XMLObject]:RFe,[I_.DiscriminatorObject]:ZMe,[I_.OAuthFlowsObject]:ZNe,[I_.ServerVariableObject]:jFe,OpenApiDocument:VFe,[I_.TraversedDescriptionObject]:rv,[I_.TraversedOperationObject]:iv,[I_.TraversedAsyncApiOperationObject]:av,[I_.TraversedAsyncApiChannelObject]:ov,[I_.TraversedAsyncApiMessageObject]:sv,[I_.TraversedSchemaObject]:cv,[I_.TraversedWebhookObject]:lv,[I_.TraversedTagObject]:uv,[I_.TraversedEntryObject]:HMe,[I_.TraversedDocumentObject]:nv}),ry=ny.Import(`OpenApiDocument`),ny.Import(`ComponentsObject`),HFe=ny.Import(`SecurityRequirementObject`),ny.Import(`TagObject`),ny.Import(`CallbackObject`),ny.Import(`PathItemObject`),ny.Import(`PathsObject`),ny.Import(`OperationObject`),UFe=ny.Import(`SchemaObject`),ny.Import(`EncodingObject`),ny.Import(`MediaTypeObject`),ny.Import(`HeaderObject`),iy=ny.Import(`ServerObject`),ny.Import(`ExternalDocumentationObject`),ny.Import(`InfoObject`),ny.Import(`ContactObject`),ny.Import(`LicenseObject`),ny.Import(`ResponseObject`),ny.Import(`ResponsesObject`),ny.Import(`ParameterObject`),ny.Import(`ExampleObject`),ny.Import(`RequestBodyObject`),ny.Import(`SecuritySchemes`),WFe=ny.Import(`SecuritySchemeObject`),ny.Import(`LinkObject`),ny.Import(`XMLObject`),ny.Import(`DiscriminatorObject`),ny.Import(`OAuthFlowsObject`),ny.Import(`ServerVariableObject`),ny.Import(`TraversedDescriptionObject`),ny.Import(`TraversedEntryObject`),ny.Import(`TraversedTagObject`),ny.Import(`TraversedOperationObject`),ny.Import(`TraversedSchemaObject`),ny.Import(`TraversedWebhookObject`)})),oy,sy=s((()=>{Ng(),Zu(),Fg(),m_(),ay(),oy={schema:e=>{if(e===void 0)return;let t=K(e,Xu);return p_(Pg(UFe,q.Object({$ref:q.Optional(q.String())})),t)}}})),cy,GFe,ly,KFe,qFe,uy,dy,fy,py,JFe,my,YFe,XFe,hy,ZFe,gy,_y,vy,yy,by,QFe,$Fe,xy,Sy,eIe,tIe,nIe,rIe,iIe,aIe,Cy,oIe=s((()=>{qu(),Nd(),Cd(),sy(),cy=10,GFe=`additionalProperty`,ly=new Date().toISOString(),KFe={"date-time":ly,date:ly.split(`T`)[0],email:`hello@example.com`,hostname:`example.com`,"idn-email":`jane.doe@example.com`,"idn-hostname":`example.com`,ipv4:`127.0.0.1`,ipv6:`51d4:7fab:bfbf:b7d7:b2cb:d4b4:3dad:d998`,"iri-reference":`/entitiy/1`,iri:`https://example.com/entity/123`,"json-pointer":`/nested/objects`,password:`super-secret`,regex:`/[a-z]/`,"relative-json-pointer":`1/nested/objects`,time:ly.split(`T`)[1].split(`.`)[0],"uri-reference":`../folder`,"uri-template":`https://example.com/{id}`,uri:`https://example.com`,uuid:`123e4567-e89b-12d3-a456-426614174000`,"object-id":`6592008029c8c3e4dc76256c`},qFe=e=>{if(!(`propertyNames`in e)||!e.propertyNames)return;let t=oy.schema(e.propertyNames);if(t&&`enum`in t&&Array.isArray(t.enum)&&t.enum.length>0)return t.enum},uy=(e,t=!1,n=``)=>`type`in e&&e.type===`string`&&`format`in e&&e.format===`binary`?`@filename`:t&&`format`in e&&e.format?KFe[e.format]??n:n,dy=new WeakMap,fy=new WeakMap,py=e=>Sd(e,{depth:1}),JFe=e=>{if(!e)return;let t=fy.get(e);if(t)return t;if(`required`in e){let t=e.required;if(Array.isArray(t)&&t.length>0){let n=new Set(t);return fy.set(e,n),n}}},my=(e,t,n,r=!1)=>{if(r||typeof t!=`object`||!t)return t;let i=py(e),a=dy.get(i)??new Map;return a&&a.set(n,t),dy.set(i,a),t},YFe=e=>!!(e.allOf||e.oneOf||e.anyOf),XFe=(e,t,n,r)=>{if(e.deprecated||r?.mode===`write`&&e.readOnly||r?.mode===`read`&&e.writeOnly)return!0;if(r?.omitEmptyAndOptionalProperties!==!0||`type`in e&&(e.type===`object`||e.type===`array`)||YFe(e)||`examples`in e&&Array.isArray(e.examples)&&e.examples.length>0||`example`in e&&e.example!==void 0||`default`in e&&e.default!==void 0||`const`in e&&e.const!==void 0||`enum`in e&&Array.isArray(e.enum)&&e.enum.length>0)return!1;let i=n??e.title??``,a=JFe(t);return!(a&&a.has(i))},hy=(e,t)=>t==null?e:e==null?t:Array.isArray(e)&&Array.isArray(t)?[...e,...t]:e&&typeof e==`object`&&t&&typeof t==`object`?{...e,...t}:t,ZFe=cy*5,gy=new WeakMap,_y=(e,t)=>{switch(t){case`string`:return typeof e==`string`;case`number`:return typeof e==`number`&&!Number.isNaN(e);case`integer`:return typeof e==`number`&&Number.isInteger(e);case`boolean`:return typeof e==`boolean`;case`object`:return typeof e==`object`&&!!e&&!Array.isArray(e);case`array`:return Array.isArray(e);case`null`:return e===null;default:return!1}},vy=e=>{let t=py(e);if(gy.has(t))return gy.get(t);let n=`$ref`in e?oy.schema(e):e;return gy.set(t,n),n},yy=(e,t,n=new Set,r=0)=>{if(r>ZFe)return!0;let i=py(e);if(n.has(i))return!0;if(n.add(i),`type`in e&&e.type&&!(Array.isArray(e.type)?e.type:[e.type]).some(e=>e===`number`&&_y(t,`integer`)?!0:_y(t,e)))return n.delete(i),!1;let a=e.anyOf;if(Array.isArray(a)&&a.length>0&&!a.some(e=>{let i=vy(e);return!!i&&yy(i,t,n,r+1)}))return n.delete(i),!1;let o=e.oneOf;if(Array.isArray(o)&&o.length>0&&!o.some(e=>{let i=vy(e);return!!i&&yy(i,t,n,r+1)}))return n.delete(i),!1;let s=e.allOf;return Array.isArray(s)&&s.length>0&&!s.every(e=>{let i=vy(e);return!i||yy(i,t,n,r+1)})?(n.delete(i),!1):(n.delete(i),!0)},by=Symbol(`INVALID_DEFAULT`),QFe=e=>{let t=e.default;return yy(e,t)?t:by},$Fe=(e,t)=>[...e,t].join(`.`),xy=(e,t,n,r)=>{let i=n?.compositionSelection?.[$Fe(e,t)];if(!(typeof i!=`number`||Number.isNaN(i)))return Math.max(0,Math.min(i,r-1))},Sy=e=>{if(e&&typeof e==`object`&&`x-order`in e){let t=Number(e[`x-order`]);return Number.isNaN(t)?void 0:t}},eIe=e=>Object.keys(e).sort((t,n)=>{let r=Sy(e[t]),i=Sy(e[n]);return r!==void 0&&i!==void 0?r-i:r===void 0?i===void 0?0:1:-1}),tIe=(e,t,n,r,i,a,o)=>{let s={},c=jd(o,e),l=o.length>0;if(`properties`in e&&e.properties){let i=e.properties,o=eIe(i),l=o.length;for(let u=0;u0,u=l?void 0:qFe(e),d=l?i[`x-additionalPropertiesName`].trim():GFe,f=o?`anything`:typeof i==`object`?Cy(i,t,{level:n+1,schemaPath:[...a,d],seen:r,dynamicScope:c}):`anything`;u&&u.length>0?s[String(u[0])]=f:s[d]=f}let u=e.oneOf?`oneOf`:e.anyOf?`anyOf`:void 0,d=u?e[u]:void 0;if(u&&d?.length){let e=xy(a,u,t,d.length)??0,i=oy.schema(d[e]);i&&Object.assign(s,Cy(i,t,{level:n+1,schemaPath:a,seen:r,dynamicScope:c}))}else if(Array.isArray(e.allOf)&&e.allOf.length>0){let i=s,o=0;for(let s of e.allOf){let l=oy.schema(s),u=l&&(Array.isArray(l.oneOf)||Array.isArray(l.anyOf))?[...a,String(o++)]:a,d=Cy(l,t,{level:n+1,parentSchema:e,seen:r,dynamicScope:c,schemaPath:u});i=hy(i,d)}i&&typeof i==`object`&&Object.assign(s,i)}if(t?.xml&&`xml`in e&&e.xml?.name&&n===0){let t={};return t[e.xml.name]=s,my(e,t,i,l)}return my(e,s,i,l)},nIe=(e,t,n,r,i,a,o)=>{let s=jd(o,e),c=o.length>0,l=`items`in e?oy.schema(e.items):void 0,u=r;if(l&&kd(l)){let e=Md(l.$dynamicRef,s);e&&(l=e,u=new WeakSet)}let d=[...a,`items`],f=l&&typeof l==`object`&&`xml`in l?l.xml?.name:void 0,p=!!(t?.xml&&`xml`in e&&e.xml?.wrapped&&f);if(e.example!==void 0)return my(e,p?{[f]:e.example}:e.example,i,c);if(l&&typeof l==`object`){if(Array.isArray(l.allOf)&&l.allOf.length>0){let r=l.allOf.filter(Ku),a=oy.schema(r[0]);if(a&&typeof a==`object`&&`type`in a&&a.type===`object`){let a=Cy({type:`object`,allOf:r},t,{level:n+1,parentSchema:e,schemaPath:d,seen:u,dynamicScope:s});return my(e,p?[{[f]:a}]:[a],i,c)}let o=r.map(r=>Cy(oy.schema(r),t,{level:n+1,parentSchema:e,schemaPath:d,seen:u,dynamicScope:s})).filter(Ku);return my(e,p?o.map(e=>({[f]:e})):o,i,c)}let r=l.oneOf?`oneOf`:l.anyOf?`anyOf`:void 0,a=r?l[r]:void 0;if(r&&a&&a.length>0){let o=a[xy(d,r,t,a.length)??0],l=Cy(oy.schema(o),t,{level:n+1,parentSchema:e,schemaPath:d,seen:u,dynamicScope:s});return my(e,p?[{[f]:l}]:[l],i,c)}}let m=l&&typeof l==`object`&&(`type`in l&&l.type===`object`||`properties`in l),h=l&&typeof l==`object`&&(`type`in l&&l.type===`array`||`items`in l);if(l&&typeof l==`object`&&(`type`in l&&l.type||m||h)){let r=Cy(l,t,{level:n+1,schemaPath:d,seen:u,dynamicScope:s});return my(e,p?[{[f]:r}]:[r],i,c)}return my(e,[],i,c)},rIe=(e,t,n)=>{if(`type`in e&&e.type&&!Array.isArray(e.type))switch(e.type){case`string`:return uy(e,t,n??``);case`boolean`:return!0;case`integer`:return`minimum`in e&&typeof e.minimum==`number`?e.minimum:1;case`number`:return`minimum`in e&&typeof e.minimum==`number`?e.minimum:1;case`array`:return[];default:return}},iIe=(e,t,n)=>{if(`type`in e&&Array.isArray(e.type)){if(e.type.includes(`null`))return null;let r=e.type[0];if(r)switch(r){case`string`:return uy(e,t,n??``);case`boolean`:return!0;case`integer`:return`minimum`in e&&typeof e.minimum==`number`?e.minimum:1;case`number`:return`minimum`in e&&typeof e.minimum==`number`?e.minimum:1;case`null`:return null;default:return}}},aIe=e=>JSON.stringify({emptyString:e?.emptyString,xml:e?.xml,mode:e?.mode,variables:e?.variables,omitEmptyAndOptionalProperties:e?.omitEmptyAndOptionalProperties,compositionSelection:e?.compositionSelection?Object.entries(e.compositionSelection).sort(([e],[t])=>e.localeCompare(t)):void 0}),Cy=(e,t,{level:n=0,parentSchema:r,name:i,seen:a=new WeakSet,schemaPath:o=[],dynamicScope:s=[]}={})=>{let c=oy.schema(e);if(!Ku(c))return;if(kd(c)){let e=Md(c.$dynamicRef,s);if(e)return Cy(e,t,{level:n+1,parentSchema:r,name:i,seen:new WeakSet,schemaPath:o,dynamicScope:s})}let l=jd(s,c),u=s.length>0,d=py(c);if(a.has(d))return;a.add(d);let f=aIe(t)+(o.length>0?`:path:${o.join(`.`)}`:``);if(!u){let e=dy.get(d)?.get(f);if(e!==void 0)return a.delete(d),e}if(n>cy)return a.delete(d),`[Max Depth Exceeded]`;let p=!!t?.emptyString;if(XFe(c,r,i,t)){a.delete(d);return}if(`x-variable`in c&&c[`x-variable`]){let e=t?.variables?.[c[`x-variable`]];if(e!==void 0)return`type`in c&&(c.type===`number`||c.type===`integer`)?(a.delete(d),my(c,Number(e),f,u)):(a.delete(d),my(c,e,f,u))}if(Array.isArray(c.examples)&&c.examples.length>0)return a.delete(d),my(c,c.examples[0],f,u);if(c.example!==void 0)return a.delete(d),my(c,c.example,f,u);if(c.default!==void 0){let e=QFe(c);if(e!==by)return a.delete(d),my(c,e,f,u)}if(c.const!==void 0)return a.delete(d),my(c,c.const,f,u);if(Array.isArray(c.enum)&&c.enum.length>0)return a.delete(d),my(c,c.enum[0],f,u);if(`properties`in c||`type`in c&&c.type===`object`){let e=tIe(c,t,n,a,f,o,s);return a.delete(d),e}if(`type`in c&&c.type===`array`||`items`in c){let e=nIe(c,t,n,a,f,o,s);return a.delete(d),e}let m=rIe(c,p,t?.emptyString);if(m!==void 0)return a.delete(d),my(c,m,f,u);let h=c.oneOf?`oneOf`:c.anyOf?`anyOf`:void 0,g=h?c[h]:void 0;if(h&&Array.isArray(g)&&g.length>0){let e=xy(o,h,t,g.length),r=e===void 0?g.find(e=>{let t=oy.schema(e);return t&&(!(`type`in t)||t.type!==`null`)}):g[e];if(r){let e=oy.schema(r);if(e)return a.delete(d),my(c,Cy(e,t,{level:n+1,schemaPath:o,seen:a,dynamicScope:l}),f,u)}return a.delete(d),my(c,null,f,u)}if(Array.isArray(c.allOf)&&c.allOf.length>0){let e,r=c.allOf,i=0;for(let s of r){let r=oy.schema(s),u=r&&(Array.isArray(r.oneOf)||Array.isArray(r.anyOf))?[...o,String(i++)]:o,d=Cy(s,t,{level:n+1,parentSchema:c,schemaPath:u,seen:a,dynamicScope:l});e===void 0?e=d:e&&typeof e==`object`&&d&&typeof d==`object`?e=hy(e,d):d!=null&&(e=d)}return a.delete(d),my(c,e??null,f,u)}let _=iIe(c,p,t?.emptyString);return _===void 0?(a.delete(d),my(c,null,f,u)):(a.delete(d),my(c,_,f,u))}})),wy,sIe=s((()=>{Zu(),Td(),Od(),oIe(),wy=(e,t,n,r)=>{let i=e.content?.[t],a=Dd(e,n,t);if(a&&a.value!==void 0)return a;let o=K(i?.schema);if(!o)return null;let s=Cy(wd(o),{mode:`write`,compositionSelection:r},{schemaPath:[`requestBody`]});return s?{value:s}:null}})),Ty,cIe=s((()=>{Ty=(e,t=`default`)=>e?.[`x-scalar-selected-content-type`]?.[t]??Object.keys(e?.content??{})[0]??null})),Ey,Dy,Oy,ky,lIe,Ay,jy=s((()=>{Ey=e=>`type`in e&&(e.type===`object`||Array.isArray(e.type)&&e.type.includes(`object`)),Dy=e=>`type`in e&&(e.type===`array`||Array.isArray(e.type)&&e.type.includes(`array`)),Oy=e=>`type`in e&&(e.type===`string`||Array.isArray(e.type)&&e.type.includes(`string`)),ky=e=>`type`in e&&(e.type===`number`||e.type===`integer`||Array.isArray(e.type)&&e.type.includes(`number`)||Array.isArray(e.type)&&e.type.includes(`integer`)),lIe=e=>e!==void 0&&`type`in e,Ay=e=>`content`in e&&e.content!==void 0})),uIe,My,dIe,Ny,fIe,Py,pIe=s((()=>{Zu(),jy(),uIe=e=>{let t=`type`in e?e.type:void 0;return Array.isArray(t)?[...t]:t==null?[]:[t]},My=(e,t)=>{let n=e;for(let e of t){if(!n||!Ey(n)||!n.properties)return;n=K(n.properties[e],Xu)}return n},dIe=(e,t)=>e===null?t.includes(`null`):Array.isArray(e)?t.includes(`array`):typeof e==`object`?t.includes(`object`):typeof e==`boolean`?t.includes(`boolean`):typeof e==`number`?t.includes(`number`)||t.includes(`integer`)&&Number.isInteger(e):typeof e==`string`&&t.includes(`string`),Ny=(e,t)=>{if(typeof e!=`string`||!t)return e;let n=uIe(t);if(n.length===0||n.includes(`string`))return e;try{let t=JSON.parse(e);return dIe(t,n)?t:e}catch{return e}},fIe=e=>{if(typeof e!=`string`)return e;try{let t=JSON.parse(e);return typeof t==`string`?e:t}catch{return e}},Py=e=>{let t=e?K(e,Xu):void 0;if(!t||!Ey(t)||!t.properties)return(e,t)=>!1;let n=new Set;for(let[e,r]of Object.entries(t.properties)){let t=r?K(r,Xu):void 0;t&&Ey(t)&&t.properties&&n.add(e)}return(e,t)=>{if(t instanceof File||!e.includes(`.`))return!1;let r=e.split(`.`,1)[0];return!!r&&n.has(r)}}})),Fy,Iy,Ly,Ry,zy,By,Vy,Hy=s((()=>{Fy=(e,t)=>typeof e==`string`?e:t.includes(`json`)||typeof e==`object`&&e&&!Array.isArray(e)?JSON.stringify(e):String(e),Iy=(e,t)=>{if(Array.isArray(e))return e.join(`,`);if(typeof e==`object`&&e){let n=Object.entries(e);return t?n.map(([e,t])=>`${e}=${t}`).join(`,`):n.map(([e,t])=>`${e},${t}`).join(`,`)}return e},Ly=(e,t)=>Array.isArray(e)&&t?e.map(e=>({key:``,value:e})):Array.isArray(e)?e.join(`,`):typeof e==`object`&&e&&t?Object.entries(e).map(([e,t])=>({key:e,value:t})):typeof e==`object`&&e?Object.entries(e).map(([e,t])=>`${e},${t}`).join(`,`):e,Ry=(e,t)=>{if(Array.isArray(e)&&t)return e.map(e=>({key:``,value:e}));if(Array.isArray(e))return e.map(e=>e===null?`null`:String(e)).join(`,`);if(typeof e==`object`&&e&&t)return Object.entries(e).map(([e,t])=>({key:e,value:t}));if(typeof e==`object`&&e){let t=e=>{let n=[];for(let[r,i]of Object.entries(e))typeof i==`object`&&i&&!Array.isArray(i)?n.push(r,...t(i)):n.push(r,i===null?`null`:String(i));return n};return t(e).join(`,`)}return e},zy=e=>Array.isArray(e)?e.join(` `):typeof e==`object`&&e?Object.entries(e).map(([e,t])=>`${e} ${t}`).join(` `):String(e),By=e=>Array.isArray(e)?e.join(`|`):typeof e==`object`&&e?Object.entries(e).flat().join(`|`):String(e),Vy=(e,t)=>{let n=[],r=(e,t)=>{if(Array.isArray(t))for(let n of t)r(`${e}[]`,n);else typeof t==`object`&&t?i(t,e):n.push({key:e,value:String(t)})},i=(e,t)=>{for(let[n,i]of Object.entries(e))r(`${t}[${n}]`,i)};return typeof t==`object`&&t&&!Array.isArray(t)&&i(t,e),n}})),Uy,Wy,mIe=s((()=>{Cd(),Hy(),Uy=e=>typeof e==`object`&&e?JSON.stringify(e):String(e),Wy=(e,t,n)=>{if(!(n&&(n.style!==void 0||n.explode!==void 0||n.allowReserved!==void 0))||typeof t!=`object`||!t||t instanceof File||Array.isArray(t)&&t.some(e=>e instanceof File))return null;let r=Sd(t),i=n?.style??`form`,a=n?.explode??i===`form`,o=[];if(i===`deepObject`)if(Array.isArray(r)){let t=Ly(r,!0);if(Array.isArray(t))for(let n of t)o.push({key:n.key||e,value:Uy(n.value)});else o.push({key:e,value:String(t)})}else for(let t of Vy(e,r))o.push({key:t.key,value:String(t.value)});else if(i===`spaceDelimited`)o.push({key:e,value:String(zy(r))});else if(i===`pipeDelimited`)o.push({key:e,value:String(By(r))});else{let t=Ly(r,a);if(Array.isArray(t))for(let n of t)o.push({key:n.key||e,value:Uy(n.value)});else o.push({key:e,value:String(t)})}return o}}));function hIe(e,t){let n=/{{\s*([\w.-]+)\s*}}/g,r=/{\s*([\w.-]+)\s*}/g,i=(e,n)=>typeof t==`function`?t(n):t[n]?.toString()||`{${n}}`;return e.replace(n,i).replace(r,i)}var Gy,Ky,qy=s((()=>{fl(),Gy=(e,t={})=>e.replace(dl.PATH,(e,n)=>t[n]??e),Ky=(e,t={})=>e.replace(dl.VARIABLES,(e,n)=>typeof t==`function`?t(n)??e:t[n]??e)})),Jy,Yy,Xy=s((()=>{Jy=e=>({ok:!0,data:e}),Yy=(e,t)=>({ok:!1,error:e,message:t})}));function Zy(e){try{let t=e();return t instanceof Promise?t.then(e=>Jy(e),e=>(console.error(e),Yy(Qy(e)))):Jy(t)}catch(e){return console.error(e),Yy(Qy(e))}}var Qy,$y=s((()=>{Xy(),Qy=e=>e instanceof Error?e.message:String(e)}));function eb(e){try{let{hostname:t}=new URL(e);if(gIe.includes(t))return!0;let n=t.split(`.`).pop();return!!(n&&_Ie.includes(n))}catch{return!0}}var gIe,_Ie,tb=s((()=>{gIe=[`localhost`,`127.0.0.1`,`[::1]`,`0.0.0.0`],_Ie=[`test`,`example`,`invalid`,`localhost`]})),nb,rb,ib=s((()=>{tb(),ml(),nb=(e,t)=>{try{if(!rb(e,t))return t??``;let n=new URL(t);return n.href=pl(e)?`http://localhost${e}`:e,n.searchParams.append(`scalar_url`,t),pl(e)?n.toString().replace(/^http:\/\/localhost/,``):n.toString()}catch{return t??``}},rb=(e,t)=>{try{return!e||!t||pl(t)?!1:pl(e)||eb(e)?!0:!eb(t)}catch{return!1}}})),ab,ob,sb,cb,lb,vIe,ub,db,fb,yIe,bIe,xIe,pb,mb,hb=s((()=>{ab=typeof Buffer==`function`,typeof TextDecoder==`function`&&new TextDecoder,ob=typeof TextEncoder==`function`?new TextEncoder:void 0,sb=Array.prototype.slice.call(`ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=`),(e=>{let t={};return e.forEach((e,n)=>t[e]=n),t})(sb),cb=String.fromCharCode.bind(String),typeof Uint8Array.from==`function`&&Uint8Array.from.bind(Uint8Array),lb=e=>e.replace(/=/g,``).replace(/[+\/]/g,e=>e==`+`?`-`:`_`),vIe=e=>{let t,n,r,i,a=``,o=e.length%3;for(let o=0;o255||(r=e.charCodeAt(o++))>255||(i=e.charCodeAt(o++))>255)throw TypeError(`invalid character found`);t=n<<16|r<<8|i,a+=sb[t>>18&63]+sb[t>>12&63]+sb[t>>6&63]+sb[t&63]}return o?a.slice(0,o-3)+`===`.substring(o):a},ub=typeof btoa==`function`?e=>btoa(e):ab?e=>Buffer.from(e,`binary`).toString(`base64`):vIe,db=ab?e=>Buffer.from(e).toString(`base64`):e=>{let t=4096,n=[];for(let r=0,i=e.length;rt?lb(db(e)):db(e),yIe=e=>{if(e.length<2){var t=e.charCodeAt(0);return t<128?e:t<2048?cb(192|t>>>6)+cb(128|t&63):cb(224|t>>>12&15)+cb(128|t>>>6&63)+cb(128|t&63)}else{var t=65536+(e.charCodeAt(0)-55296)*1024+(e.charCodeAt(1)-56320);return cb(240|t>>>18&7)+cb(128|t>>>12&63)+cb(128|t>>>6&63)+cb(128|t&63)}},bIe=/[\uD800-\uDBFF][\uDC00-\uDFFFF]|[^\x00-\x7F]/g,xIe=e=>e.replace(bIe,yIe),pb=ab?e=>Buffer.from(e,`utf8`).toString(`base64`):ob?e=>db(ob.encode(e)):e=>ub(xIe(e)),mb=(e,t=!1)=>t?lb(pb(e)):pb(e)})),SIe,CIe=s((()=>{SIe=(e,t)=>{if(!e||!t)return!0;try{let n=e.startsWith(`http`)?e:`http://${e}`,r=new URL(n).hostname,i=!t,a=t===r,o=t.startsWith(`.`)&&t===`.${r}`,s=t.startsWith(`.`)&&r?.endsWith(t);return i||a||s||o}catch{return!1}}})),gb,wIe=s((()=>{CIe(),gb=({cookie:e,url:t,disabledGlobalCookies:n})=>{if(e.isDisabled||n[e.name.toLowerCase()]===!0||!e.name)return!1;let r=new URL(t,`https://example.com`);return!(e.domain&&!SIe(t,e.domain)||e.path&&!r.pathname.startsWith(e.path))}})),TIe,EIe,DIe,OIe,kIe=s((()=>{Vl(),wIe(),TIe="We're using a `X-Scalar-Cookie` custom header to the request. The proxy will forward this as a `Cookie` header. We do this to avoid the browser omitting the `Cookie` header for cross-origin requests for security reasons.",EIe=`We're trying to add a Cookie header, but browsers often omit them for cross-origin requests for various security reasons. If it's not working, that's probably why. Here are the requirements for it to work: + + - The browser URL must be on the same domain as the server URL. + - The connection must be made over HTTPS. + `,DIe=(e,t)=>{let n=e.map(e=>`${e.name}=${e.value}`).join(`; `);return t&&n?`${t}; ${n}`:t||n||``},OIe=({cookies:e,originalCookieHeader:t,url:n,useCustomCookieHeader:r})=>{let i=DIe(e.filter(e=>gb({url:n,cookie:e,disabledGlobalCookies:{}})),t??void 0);return i?r?(console.warn(TIe),{name:Rge,value:i}):(console.warn(EIe),{name:`Cookie`,value:i}):null}})),AIe,jIe,MIe,_b,NIe=s((()=>{AIe={21:`!`,24:`$`,27:`'`,28:`(`,29:`)`,"2A":`*`,"2C":`,`,"2F":`/`,"3A":`:`,"3B":`;`,40:`@`},jIe=e=>e.replace(/%([0-9A-Fa-f]{2})/g,(e,t)=>AIe[t.toUpperCase()]??e),MIe=e=>{try{return decodeURIComponent(e.replaceAll(`+`,`%20`))}catch{return e}},_b=(e,t)=>{if(t.size===0)return e;let n=e.indexOf(`?`);if(n===-1)return e;let r=e.indexOf(`#`,n),i=e.slice(0,n+1),a=r===-1?e.slice(n+1):e.slice(n+1,r),o=r===-1?``:e.slice(r);return a?`${i}${a.split(`&`).map(e=>{if(!e)return e;let n=e.indexOf(`=`),r=n===-1?e:e.slice(0,n),i=MIe(r);if(!t.has(i)||n===-1)return e;let a=e.slice(n+1);return`${r}=${jIe(a)}`}).join(`&`)}${o}`:e}})),PIe,vb,FIe,yb,IIe=s((()=>{qy(),Xy(),$y(),ml(),vl(),PIe=`MISSING_REQUEST_SERVER_BASE`,vb=`INVALID_REQUEST_FACTORY_URL`,FIe=`No server URL is configured for this request. Add a servers entry to your OpenAPI document (or set a server in the client) before sending.`,yb=(e,t)=>{let n=t.envVariables,r=Zy(()=>Object.fromEntries(Object.entries(e.path.variables).map(([e,t])=>[e,encodeURIComponent(Ky(t,n))])));if(!r.ok)return Yy(vb,`The request URL contains invalid characters in path parameters.`);let i=r.data,a=_l(Ky(e.baseUrl,n),Gy(Ky(e.path.raw,n),i));if(!t.allowMissingRequestServerBase&&pl(a))return Yy(PIe,FIe);let o=globalThis.window?.location?.origin,s=o&&o!==`null`?o:`http://localhost:3000`,c=Zy(()=>new URL(a,s));if(!c.ok)return Yy(vb,`The request URL could not be parsed. Check the server URL and path for invalid characters.`);let l=c.data,u=new URLSearchParams;for(let[t,r]of e.query.entries())u.append(Ky(t,n),Ky(r,n));let d=new URLSearchParams;for(let[e,n]of t.securityQueryParams.entries())d.append(e,n);return l.search=hl(l.searchParams,u,d).toString(),Jy(l.toString())}})),bb,xb,Sb,LIe,RIe,zIe,BIe,VIe,HIe,UIe,WIe,Cb,wb,GIe,KIe,qIe,JIe,YIe,XIe,Tb,ZIe,QIe,$Ie,eLe,tLe,nLe,rLe,iLe,aLe,Eb,oLe,sLe,cLe,lLe,uLe,dLe,fLe,pLe,mLe,hLe,gLe,_Le,vLe,yLe,bLe,xLe,SLe,CLe,wLe,TLe,ELe,DLe,OLe,kLe,Db,ALe,jLe,MLe,NLe,PLe,FLe,ILe,LLe,RLe,zLe,BLe,VLe,HLe,ULe,WLe,GLe,KLe,qLe,JLe,YLe,XLe,ZLe,QLe,$Le,eRe,tRe,nRe,rRe,iRe,aRe,oRe,sRe,cRe,lRe,uRe,dRe,fRe,pRe,Ob,kb,Ab,jb,mRe,hRe=s((()=>{bb=[`9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d`,`f47ac10b-58cc-4372-a567-0e02b2c3d479`,`1b9d6bcd-bbfd-4b2d-9b5d-ab8dfbbd4bed`,`6ba7b810-9dad-11d1-80b4-00c04fd430c8`,`a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11`,`3fa85f64-5717-4562-b3fc-2c963f66afa6`,`550e8400-e29b-41d4-a716-446655440000`,`c56a4180-65aa-42ec-a945-5fd21dec0538`,`7c9e6679-7425-40de-944b-e07fc1f90ae7`,`e4eaaaf2-d142-11e1-b3e4-080027620cdd`,`aab5d5fd-70c1-11e5-a4fb-b026b977eb28`,`2c5ea4c0-4067-11e9-8bad-9b1deb4d3b7d`,`d9428888-122b-11e1-b85c-61cd3cbed5a2`,`fb1a38e6-4be3-4e38-b8ec-c0c2c2d9e2a7`,`01234567-89ab-cdef-0123-456789abcdef`],xb=`abcdefghijklmnopqrstuvwxyz0123456789`,Sb=[`#e34f26`,`#3498db`,`#2ecc71`,`#9b59b6`,`#f1c40f`,`#1abc9c`,`#e74c3c`,`#2c3e50`,`#d35400`,`#8e44ad`,`#27ae60`,`#c0392b`,`#16a085`,`#f39c12`,`#7f8c8d`],LIe=[`HTTP`,`SQL`,`TCP`,`JSON`,`XML`,`API`,`SSL`,`CSS`,`HTML`,`RAM`,`FTP`,`SSH`,`DNS`,`URL`,`USB`],RIe=[`192.168.1.42`,`10.0.0.134`,`172.16.254.1`,`203.0.113.50`,`198.51.100.23`,`100.24.56.78`,`54.239.28.85`,`13.107.42.14`,`151.101.1.140`,`216.58.214.206`,`93.184.216.34`,`104.16.249.249`,`172.217.14.206`,`185.199.108.153`,`140.82.121.4`],zIe=[`2001:0db8:85a3:0000:0000:8a2e:0370:7334`,`fe80:0000:0000:0000:0202:b3ff:fe1e:8329`,`2607:f8b0:4004:0800:0000:0000:0000:200e`,`2001:4860:4860:0000:0000:0000:0000:8888`,`2a03:2880:f10c:0083:face:b00c:0000:25de`,`fd12:3456:789a:1000:0000:0000:0000:0001`,`2600:1f18:2489:8200:a953:2c7b:e7e0:d12f`,`2001:0db8:0000:0042:0000:8a2e:0370:7334`,`fe80:0000:0000:0000:4c5a:e8ff:fe7c:3d92`,`2001:0db8:aaaa:bbbb:cccc:dddd:eeee:0001`],BIe=[`00:1A:2B:3C:4D:5E`,`A4:83:E7:2D:6B:9F`,`48:2C:6A:1E:59:3D`,`00:50:56:C0:00:08`,`D4:BE:D9:19:6F:F2`,`3C:22:FB:4A:88:C1`,`08:00:27:5B:8E:A4`,`F0:18:98:43:65:DA`,`5C:CF:7F:2B:1D:E3`,`00:0C:29:3E:71:BC`,`1C:6F:65:A2:8D:49`,`B8:27:EB:63:4F:78`],VIe=[`en`,`es`,`fr`,`de`,`it`,`pt`,`ja`,`zh`,`ko`,`ar`,`ru`,`nl`,`sv`,`pl`,`da`,`fi`,`nb`,`tr`,`hi`,`th`],HIe=[`Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36`,`Mozilla/5.0 (Macintosh; Intel Mac OS X 14_2) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Safari/605.1.15`,`Mozilla/5.0 (X11; Linux x86_64; rv:121.0) Gecko/20100101 Firefox/121.0`,`Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0`,`Mozilla/5.0 (iPhone; CPU iPhone OS 17_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1`,`Mozilla/5.0 (Linux; Android 14; Pixel 8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.43 Mobile Safari/537.36`,`Mozilla/5.0 (iPad; CPU OS 17_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1`,`Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:121.0) Gecko/20100101 Firefox/121.0`,`Mozilla/5.0 (Macintosh; Intel Mac OS X 14_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36`,`Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:121.0) Gecko/20100101 Firefox/121.0`],UIe=[`http`,`https`],WIe=[`1.0.0`,`2.3.1`,`0.9.4`,`3.12.0`,`1.5.7`,`4.0.0-beta.1`,`0.1.0`,`2.0.3`,`1.2.0`,`5.4.2`,`3.1.0`,`0.8.12`,`2.7.5`,`1.14.0`,`6.0.0`],Cb=[`Emma`,`Liam`,`Olivia`,`Noah`,`Ava`,`James`,`Sophia`,`Oliver`,`Isabella`,`Lucas`,`Mia`,`Ethan`,`Charlotte`,`Mason`,`Amelia`],wb=[`Smith`,`Johnson`,`Williams`,`Brown`,`Jones`,`Garcia`,`Miller`,`Davis`,`Rodriguez`,`Martinez`,`Hernandez`,`Lopez`,`Gonzalez`,`Wilson`,`Anderson`],GIe=[`Mr.`,`Mrs.`,`Ms.`,`Dr.`,`Prof.`,`Rev.`,`Sir`,`Mx.`],KIe=[`Jr.`,`Sr.`,`II`,`III`,`IV`,`PhD`,`MD`,`DDS`,`Esq.`],qIe=[`Marketing`,`Engineering`,`Finance`,`Operations`,`Human Resources`,`Sales`,`Research`,`Design`,`Legal`,`Product`,`Data`,`Support`,`Quality`,`Security`,`Communications`],JIe=[`Senior`,`Lead`,`Junior`,`Principal`,`Chief`,`Associate`,`Global`,`Regional`,`Internal`,`Dynamic`,`Staff`,`Executive`,`National`,`Strategic`,`Corporate`],YIe=[`Software Engineer`,`Product Manager`,`Data Analyst`,`UX Designer`,`DevOps Engineer`,`Marketing Director`,`Sales Representative`,`Financial Analyst`,`Project Manager`,`QA Engineer`,`Technical Writer`,`System Administrator`,`Business Analyst`,`Account Executive`,`Operations Manager`],XIe=[`Full-time`,`Part-time`,`Contract`,`Freelance`,`Internship`,`Temporary`,`Remote`,`Hybrid`,`Consultant`,`Seasonal`],Tb=[`(555) 123-4567`,`(555) 987-6543`,`(555) 246-8135`,`(555) 369-2580`,`(555) 741-8520`,`(555) 852-9631`,`(555) 147-2583`,`(555) 963-8520`,`(555) 321-6540`,`(555) 654-9870`,`(555) 789-0123`,`(555) 234-5678`,`(555) 876-5432`,`(555) 468-1357`,`(555) 531-2468`],ZIe=[`New York`,`London`,`Tokyo`,`Paris`,`Sydney`,`Toronto`,`Berlin`,`Singapore`,`Mumbai`,`São Paulo`,`Amsterdam`,`Seoul`,`Dublin`,`Barcelona`,`Melbourne`],QIe=[`Main Street`,`Oak Avenue`,`Park Boulevard`,`Cedar Lane`,`Elm Drive`,`Maple Court`,`Pine Road`,`Walnut Street`,`Birch Avenue`,`Cherry Lane`,`Willow Way`,`Spruce Circle`,`Aspen Drive`,`Hickory Place`,`Chestnut Road`],$Ie=[`123 Main Street`,`456 Oak Avenue`,`789 Park Boulevard`,`321 Cedar Lane`,`654 Elm Drive`,`987 Maple Court`,`147 Pine Road`,`258 Walnut Street`,`369 Birch Avenue`,`741 Cherry Lane`,`852 Willow Way`,`963 Spruce Circle`,`159 Aspen Drive`,`357 Hickory Place`,`486 Chestnut Road`],eLe=[`United States`,`United Kingdom`,`Canada`,`Australia`,`Germany`,`France`,`Japan`,`Brazil`,`India`,`Netherlands`,`South Korea`,`Singapore`,`Ireland`,`Spain`,`Sweden`],tLe=[`US`,`GB`,`CA`,`AU`,`DE`,`FR`,`JP`,`BR`,`IN`,`NL`,`KR`,`SG`,`IE`,`ES`,`SE`,`IT`,`NO`,`DK`,`FI`,`CH`],nLe=[`40.7128`,`-33.8688`,`51.5074`,`35.6762`,`48.8566`,`-23.5505`,`19.4326`,`55.7558`,`1.3521`,`37.7749`,`52.3676`,`34.0522`,`41.9028`,`39.9042`,`25.2048`],rLe=[`-74.0060`,`151.2093`,`-0.1278`,`139.6503`,`2.3522`,`-46.6333`,`-99.1332`,`37.6173`,`103.8198`,`-122.4194`,`4.9041`,`-118.2437`,`12.4964`,`116.4074`,`55.2708`],iLe=[`https://avatars.githubusercontent.com/u/12345678`,`https://avatars.githubusercontent.com/u/23456789`,`https://avatars.githubusercontent.com/u/34567890`,`https://avatars.githubusercontent.com/u/45678901`,`https://avatars.githubusercontent.com/u/56789012`,`https://avatars.githubusercontent.com/u/67890123`,`https://avatars.githubusercontent.com/u/78901234`,`https://avatars.githubusercontent.com/u/89012345`,`https://avatars.githubusercontent.com/u/90123456`,`https://avatars.githubusercontent.com/u/10234567`],aLe=[`https://picsum.photos/seed/scalar1/640/480`,`https://picsum.photos/seed/scalar2/640/480`,`https://picsum.photos/seed/scalar3/640/480`,`https://picsum.photos/seed/scalar4/640/480`,`https://picsum.photos/seed/scalar5/640/480`,`https://picsum.photos/seed/scalar6/640/480`,`https://picsum.photos/seed/scalar7/640/480`,`https://picsum.photos/seed/scalar8/640/480`,`https://picsum.photos/seed/scalar9/640/480`,`https://picsum.photos/seed/scalar10/640/480`],Eb=`https://loremflickr.com/640/480`,oLe=Array.from({length:10},(e,t)=>`${Eb}/abstract?lock=${t+1}`),sLe=Array.from({length:10},(e,t)=>`${Eb}/animals?lock=${t+1}`),cLe=Array.from({length:10},(e,t)=>`${Eb}/business?lock=${t+1}`),lLe=Array.from({length:10},(e,t)=>`${Eb}/cat?lock=${t+1}`),uLe=Array.from({length:10},(e,t)=>`${Eb}/city?lock=${t+1}`),dLe=Array.from({length:10},(e,t)=>`${Eb}/food?lock=${t+1}`),fLe=Array.from({length:10},(e,t)=>`${Eb}/nightlife?lock=${t+1}`),pLe=Array.from({length:10},(e,t)=>`${Eb}/fashion?lock=${t+1}`),mLe=Array.from({length:10},(e,t)=>`${Eb}/people?lock=${t+1}`),hLe=Array.from({length:10},(e,t)=>`${Eb}/nature?lock=${t+1}`),gLe=Array.from({length:10},(e,t)=>`${Eb}/sports?lock=${t+1}`),_Le=Array.from({length:10},(e,t)=>`${Eb}/transport?lock=${t+1}`),vLe=[`data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2264%22%20height%3D%2264%22%3E%3Crect%20fill%3D%22%233498db%22%20width%3D%2264%22%20height%3D%2264%22%2F%3E%3C%2Fsvg%3E`,`data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2264%22%20height%3D%2264%22%3E%3Crect%20fill%3D%22%23e74c3c%22%20width%3D%2264%22%20height%3D%2264%22%2F%3E%3C%2Fsvg%3E`,`data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2264%22%20height%3D%2264%22%3E%3Crect%20fill%3D%22%232ecc71%22%20width%3D%2264%22%20height%3D%2264%22%2F%3E%3C%2Fsvg%3E`,`data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2264%22%20height%3D%2264%22%3E%3Crect%20fill%3D%22%239b59b6%22%20width%3D%2264%22%20height%3D%2264%22%2F%3E%3C%2Fsvg%3E`,`data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2264%22%20height%3D%2264%22%3E%3Crect%20fill%3D%22%23f1c40f%22%20width%3D%2264%22%20height%3D%2264%22%2F%3E%3C%2Fsvg%3E`],yLe=[`34042448`,`34102758`,`02997566`,`52631809`,`75412296`,`37762776`,`44117882`,`13865687`,`44377086`,`74440091`],bLe=[`Personal Checking`,`Savings Account`,`Money Market`,`Home Loan`,`Auto Loan`,`Investment Account`,`Business Checking`,`Credit Card`,`Retirement Fund`,`College Savings`],xLe=[`DEUTDEFF`,`BNPAFRPP`,`CHASUS33`,`HSBCGB2L`,`COBADEFF`,`SCBLSGSG`,`ANZBAU3M`,`CITIUS33`,`BOFAUS3N`,`NWBKGB2L`],SLe=[`GB29NWBK60161331926819`,`DE89370400440532013000`,`FR7630006000011234567890189`,`ES9121000418450200051332`,`IT60X0542811101000000123456`,`NL91ABNA0417164300`,`CH9300762011623852957`,`BE68539007547034`,`AT611904300234573201`,`FI2112345600000785`],CLe=[`deposit`,`withdrawal`,`payment`,`invoice`,`transfer`],wLe=[`USD`,`EUR`,`GBP`,`JPY`,`AUD`,`CAD`,`CHF`,`CNY`,`INR`,`BRL`,`SEK`,`NOK`,`DKK`,`SGD`,`HKD`],TLe=[`US Dollar`,`Euro`,`British Pound`,`Japanese Yen`,`Australian Dollar`,`Canadian Dollar`,`Swiss Franc`,`Chinese Yuan`,`Indian Rupee`,`Brazilian Real`,`Swedish Krona`,`Norwegian Krone`,`Danish Krone`,`Singapore Dollar`,`Hong Kong Dollar`],ELe=[`$`,`€`,`£`,`¥`,`A$`,`C$`,`CHF`,`¥`,`₹`,`R$`],DLe=[`1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa`,`3J98t1WpEZ73CNmQviecrnyiWrnqRhWNLy`,`bc1qw508d6qejxtdg4y5r3zarvary0c5xw7kv8f3t4`,`1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2`,`3Kzh9qAqVWQhEsfQz7zEQL1EuSx5tyNLNS`,`1FeexV6bAHb8ybZjqQMjJrcCrHGW9sb6uF`,`bc1qxy2kgdygjrsqtzq2n0yrf2493p83kkfjhx0wlh`,`3FZbgi29cpjq2GjdwV8eyHuJJnkLtktZc5`,`1P5ZEDWTKTFGxQjZphgWPQUpe554WKDfHQ`,`bc1q42lja79elem0anu8q860g3milve2ycq5t8g3ux`],OLe=[`Acme Corp`,`Globex`,`Initech`,`Umbrella Industries`,`Stark Enterprises`,`Wayne Corp`,`Cyberdyne Systems`,`Tyrell Corp`,`Soylent Corp`,`Aperture Science`,`Massive Dynamic`,`Oscorp`,`Abstergo`,`Weyland-Yutani`,`Hooli`],kLe=[`Inc`,`LLC`,`Group`,`Ltd`,`PLC`,`Corp`],Db=[`leverage agile frameworks`,`iterate revolutionary convergence`,`drive seamless solutions`,`enable viral e-services`,`synergize scalable supply-chains`,`harness real-time channels`,`orchestrate integrated experiences`,`deliver frictionless partnerships`,`transform dynamic mindshare`,`cultivate open-source communities`],ALe=[`innovative`,`scalable`,`seamless`,`cutting-edge`,`robust`,`synergistic`,`dynamic`,`holistic`,`strategic`,`disruptive`,`frictionless`,`proactive`,`world-class`,`collaborative`,`granular`],jLe=[`leverage`,`iterate`,`synergize`,`monetize`,`orchestrate`,`disintermediate`,`harness`,`incentivize`,`optimize`,`streamline`,`revolutionize`,`cultivate`,`empower`,`facilitate`,`aggregate`],MLe=[`frameworks`,`paradigms`,`synergies`,`platforms`,`infrastructures`,`bandwidth`,`channels`,`communities`,`convergence`,`deliverables`,`e-markets`,`experiences`,`initiatives`,`interfaces`,`methodologies`],NLe=[`Adaptive zero defect data-warehouse`,`Automated scalable protocol`,`Business-focused zero defect hub`,`Cloned responsive flexibility`,`Cross-group background collaboration`,`De-engineered stable conglomeration`,`Distributed actuating throughput`,`Enhanced client-server capability`,`Face to face explicit superstructure`,`Front-line multimedia interface`],PLe=[`Adaptive`,`Advanced`,`Automated`,`Balanced`,`Business-focused`,`Centralized`,`Cloned`,`Configurable`,`Cross-group`,`Customizable`,`De-engineered`,`Decentralized`,`Digitized`,`Distributed`,`Enhanced`],FLe=[`24 hour`,`actuating`,`analyzing`,`asymmetric`,`asynchronous`,`background`,`bandwidth-monitored`,`bi-directional`,`bifurcated`,`bottom-line`,`clear-thinking`,`client-driven`,`client-server`,`coherent`,`cohesive`],ILe=[`ability`,`access`,`algorithm`,`alliance`,`analyzer`,`application`,`approach`,`architecture`,`array`,`attitude`,`benchmark`,`budgetary management`,`capability`,`capacity`,`challenge`],LLe=[`id`,`name`,`email`,`status`,`created_at`,`updated_at`,`description`,`amount`,`category`,`token`,`avatar`,`phone`,`address`,`comment`,`title`],RLe=[`int`,`varchar`,`text`,`boolean`,`date`,`timestamp`,`float`,`bigint`,`json`,`uuid`,`decimal`,`enum`,`blob`,`char`,`smallint`],zLe=[`utf8_general_ci`,`utf8mb4_unicode_ci`,`ascii_general_ci`,`latin1_swedish_ci`,`utf8_unicode_ci`,`utf8mb4_general_ci`,`utf8_bin`,`latin1_general_ci`,`utf8mb4_bin`,`ascii_bin`],BLe=[`InnoDB`,`MyISAM`,`MEMORY`,`CSV`,`ARCHIVE`,`FEDERATED`,`NDB`,`MERGE`,`BLACKHOLE`,`EXAMPLE`],VLe=[`Monday`,`Tuesday`,`Wednesday`,`Thursday`,`Friday`,`Saturday`,`Sunday`],HLe=[`January`,`February`,`March`,`April`,`May`,`June`,`July`,`August`,`September`,`October`,`November`,`December`],ULe=[`example.com`,`test-site.org`,`my-app.io`,`dev-portal.net`,`api-hub.com`,`code-base.dev`,`data-flow.co`,`web-pulse.io`,`cloud-nest.org`,`tech-wave.net`,`open-source.dev`,`byte-craft.io`,`pixel-lab.co`,`node-spark.com`,`vue-forge.dev`],WLe=[`com`,`org`,`net`,`io`,`dev`,`co`,`info`,`app`,`me`,`xyz`],GLe=[`example`,`test-site`,`my-app`,`dev-portal`,`api-hub`,`code-base`,`data-flow`,`web-pulse`,`cloud-nest`,`tech-wave`,`open-source`,`byte-craft`,`pixel-lab`,`node-spark`,`vue-forge`],KLe=[`emma.smith@example.com`,`liam.johnson@test.org`,`olivia.williams@demo.io`,`noah.brown@sample.net`,`ava.jones@mail.com`,`james.garcia@inbox.dev`,`sophia.miller@webmail.co`,`oliver.davis@post.io`,`isabella.rodriguez@email.org`,`lucas.martinez@connect.net`,`mia.hernandez@hub.com`,`ethan.lopez@office.dev`,`charlotte.gonzalez@corp.io`,`mason.wilson@biz.co`,`amelia.anderson@pro.net`],qLe=[`emma@example.com`,`liam@example.org`,`olivia@example.net`,`noah@example.com`,`ava@example.org`,`james@example.net`,`sophia@example.com`,`oliver@example.org`,`isabella@example.net`,`lucas@example.com`,`mia@example.org`,`ethan@example.net`],JLe=[`emma_dev42`,`liam.codes`,`olivia_tech`,`noah_builds`,`ava.hacks`,`james_ops`,`sophia_data`,`oliver.api`,`isa_design`,`lucas_vue`,`mia_cloud`,`ethan.stack`,`char_pixel`,`mason_byte`,`amelia_net`],YLe=[`https://example.com`,`https://test-site.org`,`https://my-app.io`,`https://dev-portal.net`,`https://api-hub.com`,`https://code-base.dev`,`https://data-flow.co`,`https://web-pulse.io`,`https://cloud-nest.org`,`https://tech-wave.net`,`https://open-source.dev`,`https://byte-craft.io`],XLe=[`report.pdf`,`data.csv`,`image.png`,`backup.tar.gz`,`readme.md`,`config.yml`,`schema.json`,`styles.css`,`app.tsx`,`index.html`,`notes.txt`,`archive.zip`,`log.xml`,`script.sh`,`database.sql`],ZLe=[`application`,`text`,`image`,`audio`,`video`,`font`,`model`,`multipart`,`message`,`chemical`],QLe=[`pdf`,`csv`,`png`,`json`,`md`,`yml`,`html`,`txt`,`xml`,`sql`,`tar`,`gz`,`wasm`,`webp`],$Le=[`report.pdf`,`photo.jpg`,`document.docx`,`spreadsheet.xlsx`,`presentation.pptx`,`image.png`,`video.mp4`,`audio.mp3`,`archive.zip`,`readme.txt`],eRe=[`text`,`application`,`image`,`audio`,`video`],tRe=[`pdf`,`jpg`,`png`,`gif`,`mp3`,`mp4`,`doc`,`xls`,`ppt`,`txt`,`zip`,`html`,`css`,`js`,`json`],nRe=[`/home/user/documents/report.pdf`,`/var/log/app/server.log`,`/tmp/upload/image.png`,`/opt/data/backup.tar.gz`,`/home/user/projects/app/src/index.ts`,`/etc/config/settings.yml`,`/usr/local/bin/script.sh`,`/home/user/downloads/archive.zip`,`/var/www/html/index.html`,`/home/user/.config/app.json`],rRe=[`/home/user/documents`,`/var/log/app`,`/tmp/uploads`,`/opt/data`,`/home/user/projects/app/src`,`/etc/config`,`/usr/local/bin`,`/home/user/downloads`,`/var/www/html`,`/home/user/.config`],iRe=[`application/json`,`text/html`,`image/png`,`application/pdf`,`text/plain`,`image/jpeg`,`application/xml`,`text/css`,`application/javascript`,`image/svg+xml`,`application/zip`,`audio/mpeg`,`video/mp4`,`font/woff2`,`application/octet-stream`],aRe=[`Chair`,`Computer`,`Keyboard`,`Mouse`,`Table`,`Phone`,`Shoes`,`Shirt`,`Pants`,`Hat`,`Bike`,`Towels`,`Gloves`,`Soap`,`Tuna`],oRe=[`Refined`,`Elegant`,`Rustic`,`Gorgeous`,`Practical`,`Fantastic`,`Handcrafted`,`Incredible`,`Licensed`,`Sleek`,`Intelligent`,`Recycled`,`Modern`,`Bespoke`,`Ergonomic`],sRe=[`Cotton`,`Steel`,`Wooden`,`Concrete`,`Rubber`,`Granite`,`Plastic`,`Frozen`,`Soft`,`Metal`,`Bronze`,`Silk`,`Leather`,`Ceramic`,`Bamboo`],cRe=[`Refined Cotton Chair`,`Sleek Steel Computer`,`Elegant Wooden Table`,`Practical Rubber Keyboard`,`Gorgeous Granite Mouse`,`Rustic Metal Bike`,`Handcrafted Silk Shirt`,`Incredible Bamboo Towels`,`Modern Leather Shoes`,`Ergonomic Plastic Phone`,`Fantastic Ceramic Soap`,`Licensed Bronze Hat`,`Intelligent Soft Gloves`,`Bespoke Cotton Pants`,`Recycled Steel Tuna`],lRe=[`Electronics`,`Clothing`,`Books`,`Home`,`Garden`,`Sports`,`Toys`,`Automotive`,`Grocery`,`Health`,`Beauty`,`Music`,`Movies`,`Games`,`Outdoors`],uRe=[`server`,`database`,`network`,`protocol`,`system`,`algorithm`,`interface`,`module`,`component`,`function`,`framework`,`library`,`instance`,`variable`,`endpoint`],dRe=[`run`,`build`,`deploy`,`parse`,`fetch`,`render`,`compile`,`stream`,`cache`,`merge`,`sync`,`push`,`pull`,`test`,`debug`],fRe=[`running`,`building`,`deploying`,`parsing`,`fetching`,`rendering`,`compiling`,`streaming`,`caching`,`merging`,`syncing`,`pushing`,`pulling`,`testing`,`debugging`],pRe=[`fast`,`secure`,`scalable`,`robust`,`dynamic`,`modular`,`stable`,`lightweight`,`portable`,`resilient`,`efficient`,`responsive`,`concurrent`,`stateless`,`distributed`],Ob=[`pixel`,`quantum`,`cipher`,`matrix`,`vector`,`nexus`,`pulse`,`flux`,`forge`,`prism`,`vortex`,`helix`,`orbit`,`spark`,`nebula`],kb=[`lorem`,`ipsum`,`dolor`,`sit`,`amet`,`consectetur`,`adipiscing`,`elit`,`sed`,`do`,`eiusmod`,`tempor`,`incididunt`,`ut`,`labore`,`et`,`dolore`,`magna`,`aliqua`,`enim`],Ab=[`Lorem ipsum dolor sit amet, consectetur adipiscing elit.`,`Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.`,`Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris.`,`Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore.`,`Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia.`,`Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.`,`Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet.`,`Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit.`,`Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse.`,`At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis.`],jb=[`Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.`,`Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.`,`Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.`,`Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.`,`Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.`],mRe=[`lorem-ipsum-dolor`,`sed-tempor-incididunt`,`amet-consectetur-adipiscing`,`eiusmod-labore-dolore`,`veniam-nostrud-exercitation`,`voluptate-velit-cillum`,`occaecat-cupidatat-proident`,`perspiciatis-omnis-natus`,`aspernatur-odit-fugit`,`dolorem-ipsum-amet`]})),Mb,Nb,gRe,_Re,vRe,yRe,bRe,Pb,Fb,xRe,Ib,Lb,SRe,Rb,zb,CRe=s((()=>{hRe(),Mb=e=>e[Math.floor(Math.random()*e.length)],Nb=(e,t)=>Math.floor(Math.random()*(t-e+1))+e,gRe=e=>Array.from({length:e},()=>Math.floor(Math.random()*10)).join(``),_Re=e=>Array.from({length:e},()=>xb[Math.floor(Math.random()*xb.length)]).join(``),vRe=()=>{let e=Date.now()+Nb(1,365)*864e5;return new Date(e).toISOString()},yRe=()=>{let e=Date.now()-Nb(1,365)*864e5;return new Date(e).toISOString()},bRe=()=>{let e=Date.now()-Nb(1,3)*864e5;return new Date(e).toISOString()},Pb=(e,t,n)=>{let r=Nb(t,n);return Array.from({length:r},()=>Mb(e)).join(` `)},Fb=(e,t,n)=>{let r=Nb(t,n);return Array.from({length:r},()=>Mb(e)).join(` `)},xRe=(e,t,n)=>{let r=Nb(t,n);return Array.from({length:r},()=>Mb(e)).join(` +`)},Ib={$guid:{fn:()=>Mb(bb),comment:`A uuid-v4 style guid`},$timestamp:{fn:()=>Math.floor(Date.now()/1e3).toString(),comment:`The current UNIX timestamp in seconds`},$isoTimestamp:{fn:()=>new Date().toISOString(),comment:`The current ISO timestamp at zero UTC`},$randomUUID:{fn:()=>Mb(bb),comment:`A random 36-character UUID`},$randomAlphaNumeric:{fn:()=>`abcdefghijklmnopqrstuvwxyz0123456789`[Math.floor(Math.random()*36)]??`a`,comment:`A random alpha-numeric character`},$randomBoolean:{fn:()=>Math.random()<.5?`true`:`false`,comment:`A random boolean value`},$randomInt:{fn:()=>Nb(0,1e3).toString(),comment:`A random integer between 0 and 1000`},$randomColor:{fn:()=>Mb(Sb),comment:`A random color in hex format`},$randomHexColor:{fn:()=>Mb(Sb),comment:`A random hex value`},$randomAbbreviation:{fn:()=>Mb(LIe),comment:`A random abbreviation`},$randomIP:{fn:()=>Mb(RIe),comment:`A random IPv4 address`},$randomIPV6:{fn:()=>Mb(zIe),comment:`A random IPv6 address`},$randomMACAddress:{fn:()=>Mb(BIe),comment:`A random MAC address`},$randomPassword:{fn:()=>_Re(15),comment:`A random 15-character alpha-numeric password`},$randomLocale:{fn:()=>Mb(VIe),comment:`A random two-letter language code (ISO 639-1)`},$randomUserAgent:{fn:()=>Mb(HIe),comment:`A random user agent`},$randomProtocol:{fn:()=>Mb(UIe),comment:`A random internet protocol`},$randomSemver:{fn:()=>Mb(WIe),comment:`A random semantic version number`},$randomFirstName:{fn:()=>Mb(Cb),comment:`A random first name`},$randomLastName:{fn:()=>Mb(wb),comment:`A random last name`},$randomFullName:{fn:()=>`${Mb(Cb)} ${Mb(wb)}`,comment:`A random first and last name`},$randomNamePrefix:{fn:()=>Mb(GIe),comment:`A random name prefix`},$randomNameSuffix:{fn:()=>Mb(KIe),comment:`A random name suffix`},$randomJobArea:{fn:()=>Mb(qIe),comment:`A random job area`},$randomJobDescriptor:{fn:()=>Mb(JIe),comment:`A random job descriptor`},$randomJobTitle:{fn:()=>Mb(YIe),comment:`A random job title`},$randomJobType:{fn:()=>Mb(XIe),comment:`A random job type`},$randomPhoneNumber:{fn:()=>Mb(Tb),comment:`A random ten-digit phone number`},$randomPhoneNumberExt:{fn:()=>`${Nb(10,99)}-${Mb(Tb)}`,comment:`A random phone number prefixed with a two-digit extension (10–99)`},$randomCity:{fn:()=>Mb(ZIe),comment:`A random city name`},$randomStreetName:{fn:()=>Mb(QIe),comment:`A random street name`},$randomStreetAddress:{fn:()=>Mb($Ie),comment:`A random street address`},$randomCountry:{fn:()=>Mb(eLe),comment:`A random country`},$randomCountryCode:{fn:()=>Mb(tLe),comment:`A random two-letter country code (ISO 3166-1 alpha-2)`},$randomLatitude:{fn:()=>Mb(nLe),comment:`A random latitude coordinate`},$randomLongitude:{fn:()=>Mb(rLe),comment:`A random longitude coordinate`},$randomAvatarImage:{fn:()=>Mb(iLe),comment:`A random avatar image`},$randomImageUrl:{fn:()=>Mb(aLe),comment:`A URL of a random image`},$randomAbstractImage:{fn:()=>Mb(oLe),comment:`A URL of a random abstract image`},$randomAnimalsImage:{fn:()=>Mb(sLe),comment:`A URL of a random animal image`},$randomBusinessImage:{fn:()=>Mb(cLe),comment:`A URL of a random stock business image`},$randomCatsImage:{fn:()=>Mb(lLe),comment:`A URL of a random cat image`},$randomCityImage:{fn:()=>Mb(uLe),comment:`A URL of a random city image`},$randomFoodImage:{fn:()=>Mb(dLe),comment:`A URL of a random food image`},$randomNightlifeImage:{fn:()=>Mb(fLe),comment:`A URL of a random nightlife image`},$randomFashionImage:{fn:()=>Mb(pLe),comment:`A URL of a random fashion image`},$randomPeopleImage:{fn:()=>Mb(mLe),comment:`A URL of a random image of a person`},$randomNatureImage:{fn:()=>Mb(hLe),comment:`A URL of a random nature image`},$randomSportsImage:{fn:()=>Mb(gLe),comment:`A URL of a random sports image`},$randomTransportImage:{fn:()=>Mb(_Le),comment:`A URL of a random transportation image`},$randomImageDataUri:{fn:()=>Mb(vLe),comment:`A random image data URI`},$randomBankAccount:{fn:()=>Mb(yLe),comment:`A random 8-digit bank account number`},$randomBankAccountName:{fn:()=>Mb(bLe),comment:`A random bank account name`},$randomCreditCardMask:{fn:()=>`**** **** **** ${gRe(4)}`,comment:`A random masked credit card number`},$randomBankAccountBic:{fn:()=>Mb(xLe),comment:`A random BIC (Bank Identifier Code)`},$randomBankAccountIban:{fn:()=>Mb(SLe),comment:`A random 15-31 character IBAN (International Bank Account Number)`},$randomTransactionType:{fn:()=>Mb(CLe),comment:`A random transaction type`},$randomCurrencyCode:{fn:()=>Mb(wLe),comment:`A random 3-letter currency code (ISO-4217)`},$randomCurrencyName:{fn:()=>Mb(TLe),comment:`A random currency name`},$randomCurrencySymbol:{fn:()=>Mb(ELe),comment:`A random currency symbol`},$randomBitcoin:{fn:()=>Mb(DLe),comment:`A random bitcoin address`},$randomCompanyName:{fn:()=>Mb(OLe),comment:`A random company name`},$randomCompanySuffix:{fn:()=>Mb(kLe),comment:`A random company suffix`},$randomBs:{fn:()=>Mb(Db),comment:`A random phrase of business-speak`},$randomBsAdjective:{fn:()=>Mb(ALe),comment:`A random business-speak adjective`},$randomBsBuzz:{fn:()=>Mb(jLe),comment:`A random business-speak buzzword`},$randomBsNoun:{fn:()=>Mb(MLe),comment:`A random business-speak noun`},$randomCatchPhrase:{fn:()=>Mb(NLe),comment:`A random catchphrase`},$randomCatchPhraseAdjective:{fn:()=>Mb(PLe),comment:`A random catchphrase adjective`},$randomCatchPhraseDescriptor:{fn:()=>Mb(FLe),comment:`A random catchphrase descriptor`},$randomCatchPhraseNoun:{fn:()=>Mb(ILe),comment:`Randomly generates a catchphrase noun`},$randomDatabaseColumn:{fn:()=>Mb(LLe),comment:`A random database column name`},$randomDatabaseType:{fn:()=>Mb(RLe),comment:`A random database type`},$randomDatabaseCollation:{fn:()=>Mb(zLe),comment:`A random database collation`},$randomDatabaseEngine:{fn:()=>Mb(BLe),comment:`A random database engine`},$randomDateFuture:{fn:vRe,comment:`A random future datetime`},$randomDatePast:{fn:yRe,comment:`A random past datetime`},$randomDateRecent:{fn:bRe,comment:`A random recent datetime`},$randomWeekday:{fn:()=>Mb(VLe),comment:`A random weekday`},$randomMonth:{fn:()=>Mb(HLe),comment:`A random month`},$randomDomainName:{fn:()=>Mb(ULe),comment:`A random domain name`},$randomDomainSuffix:{fn:()=>Mb(WLe),comment:`A random domain suffix`},$randomDomainWord:{fn:()=>Mb(GLe),comment:`A random unqualified domain name`},$randomEmail:{fn:()=>Mb(KLe),comment:`A random email address`},$randomExampleEmail:{fn:()=>Mb(qLe),comment:`A random email address from an example domain`},$randomUserName:{fn:()=>Mb(JLe),comment:`A random username`},$randomUrl:{fn:()=>Mb(YLe),comment:`A random URL`},$randomFileName:{fn:()=>Mb(XLe),comment:`A random file name (includes uncommon extensions)`},$randomFileType:{fn:()=>Mb(ZLe),comment:`A random file type (includes uncommon file types)`},$randomFileExt:{fn:()=>Mb(QLe),comment:`A random file extension (includes uncommon extensions)`},$randomCommonFileName:{fn:()=>Mb($Le),comment:`A random file name`},$randomCommonFileType:{fn:()=>Mb(eRe),comment:`A random, common file type`},$randomCommonFileExt:{fn:()=>Mb(tRe),comment:`A random, common file extension`},$randomFilePath:{fn:()=>Mb(nRe),comment:`A random file path`},$randomDirectoryPath:{fn:()=>Mb(rRe),comment:`A random directory path`},$randomMimeType:{fn:()=>Mb(iRe),comment:`A random MIME type`},$randomPrice:{fn:()=>(Math.random()*1e3).toFixed(2),comment:`A random price between 0.00 and 1000.00`},$randomProduct:{fn:()=>Mb(aRe),comment:`A random product`},$randomProductAdjective:{fn:()=>Mb(oRe),comment:`A random product adjective`},$randomProductMaterial:{fn:()=>Mb(sRe),comment:`A random product material`},$randomProductName:{fn:()=>Mb(cRe),comment:`A random product name`},$randomDepartment:{fn:()=>Mb(lRe),comment:`A random commerce department`},$randomNoun:{fn:()=>Mb(uRe),comment:`A random noun`},$randomVerb:{fn:()=>Mb(dRe),comment:`A random verb`},$randomIngverb:{fn:()=>Mb(fRe),comment:"A random verb ending in `-ing`"},$randomAdjective:{fn:()=>Mb(pRe),comment:`A random adjective`},$randomWord:{fn:()=>Mb(Ob),comment:`A random word`},$randomWords:{fn:()=>Pb(Ob,2,5),comment:`Some random words`},$randomPhrase:{fn:()=>Mb(Db),comment:`A random phrase`},$randomLoremWord:{fn:()=>Mb(kb),comment:`A random word of lorem ipsum text`},$randomLoremWords:{fn:()=>Pb(kb,3,3),comment:`Some random words of lorem ipsum text`},$randomLoremSentence:{fn:()=>Mb(Ab),comment:`A random sentence of lorem ipsum text`},$randomLoremSentences:{fn:()=>Fb(Ab,2,6),comment:`A random 2 to 6 sentences of lorem ipsum text`},$randomLoremParagraph:{fn:()=>Mb(jb),comment:`A random paragraph of lorem ipsum text`},$randomLoremParagraphs:{fn:()=>Fb(jb,3,3),comment:`3 random paragraphs of lorem ipsum text`},$randomLoremText:{fn:()=>Fb(jb,1,3),comment:`A random amount of lorem ipsum text`},$randomLoremSlug:{fn:()=>Mb(mRe),comment:`A random lorem ipsum URL slug`},$randomLoremLines:{fn:()=>xRe(Ab,1,5),comment:`1 to 5 random lines of lorem ipsum`}},Lb=e=>Ib[e].comment,SRe=[`$guid`,`$timestamp`,`$isoTimestamp`,`$randomUUID`,`$randomEmail`,`$randomInt`,`$randomFirstName`,`$randomLastName`],Rb=Object.keys(Ib),zb=e=>Object.hasOwn(Ib,e)})),wRe,Bb,Vb,TRe,ERe,Hb,DRe,ORe=s((()=>{Vl(),qy(),Xy(),$y(),ib(),hb(),kIe(),NIe(),IIe(),CRe(),wRe=[{header:`date`,scalarHeader:Vge},{header:`dnt`,scalarHeader:Hge},{header:`referer`,scalarHeader:Uge},{header:`user-agent`,scalarHeader:Bge}],Bb=(e,t)=>{let n=Ky(e.value,t);return e.format===`basic`?`Basic ${mb(n)}`:e.format===`bearer`?`Bearer ${n}`:n},Vb=e=>t=>zb(t)?Ib[t].fn()??null:e[t]??null,TRe=(e,t,n)=>{let r=Vb(t),i=new URLSearchParams;e.options?.disableSecurity||e.security.forEach(e=>{if(e.in!==`query`)return;let t=Ky(e.name,r);i.append(t,Bb(e,r))});let a=yb(e,{envVariables:r,securityQueryParams:i,allowMissingRequestServerBase:n?.allowMissingRequestServerBase??!0});if(!a.ok)throw Error(a.message??a.error);return _b(a.data,e.allowedReservedQueryParameters??new Set)},ERe=`BUILD_REQUEST_FAILED`,Hb=(e,t)=>{let n=Zy(()=>DRe(e,t));return n.ok?n.data:Yy(ERe,n.error)},DRe=(e,t)=>{let n=Vb(t.envVariables),r=new AbortController,i=(()=>{let t=new Headers;return e.headers.forEach((e,r)=>{t.set(Ky(r,n),Ky(e,n))}),t})(),a=(()=>{if(e.body?.mode===`raw`)return typeof e.body.value==`string`?Ky(e.body.value,n):e.body.value;if(e.body?.mode===`formdata`){let t=new FormData;return e.body.value.forEach(e=>{if(e.type===`text`){t.append(Ky(e.key,n),Ky(e.value,n));return}t.append(Ky(e.key,n),e.value)}),t}return e.body?.mode===`urlencoded`?new URLSearchParams(e.body.value.map(e=>[Ky(e.key,n),Ky(e.value,n)])):null})(),o=new URLSearchParams,s=[];e.options?.disableSecurity||e.security.forEach(e=>{let t=Ky(e.name,n),r=Bb(e,n);if(e.in===`header`){i.append(t,r);return}if(e.in===`query`){o.append(t,r);return}e.in===`cookie`&&s.push({name:t,value:r,isDisabled:!1})});let c=yb(e,{envVariables:n,securityQueryParams:o,allowMissingRequestServerBase:t.allowMissingRequestServerBase});if(!c.ok)return Yy(c.error,c.message);let l=c.data,u=rb(e.proxyUrl,l),d=OIe({cookies:[...e.cookies,...s].map(e=>({...e,name:Ky(e.name,n),value:Ky(e.value,n)})),originalCookieHeader:i.get(`cookie`),url:l,useCustomCookieHeader:(u||e.options?.isElectron)??!1});d&&i.set(d.name,d.value),(u||e.options?.isElectron)&&wRe.forEach(({header:e,scalarHeader:t})=>{let n=i.get(e);n&&(i.set(t,n),i.delete(e))});let f=_b(l,e.allowedReservedQueryParameters??new Set);return Jy({requestPayload:[u?nb(e.proxyUrl,f):f,{method:e.method.toUpperCase(),headers:i,body:a,cache:e.cache,signal:r.signal}],controller:r,isUsingProxy:u})}})),Ub,kRe,ARe,Wb,Gb,jRe=s((()=>{Zu(),Ub=(e,t)=>`content`in t?kRe(e,Object.keys(t.content??{})[0]??``):`schema`in t?Gb(e,t.schema):e,kRe=(e,t)=>{if(typeof e==`string`&&t.includes(`json`))try{return JSON.parse(e)}catch{return e}return e},ARe=new Set([`array`,`object`]),Wb=e=>{let t=K(e);if(!(!t||typeof t!=`object`)){if(`type`in t&&t.type){let e=Array.isArray(t.type)?t.type.find(e=>ARe.has(e)):t.type;if(e===`array`||e===`object`)return e}for(let e of[`anyOf`,`oneOf`,`allOf`]){let n=t[e];if(Array.isArray(n))for(let e of n){let t=Wb(e);if(t)return t}}}},Gb=(e,t)=>{if(typeof e==`string`){let n=Wb(t);if(n)try{return JSON.parse(e)}catch{if(n===`array`)return e.split(/,\s?/).filter(e=>e!==``)}}return e}})),Kb,qb=s((()=>{Kb=(e,t,n=!0)=>{let r=t?.[`x-disabled`];return typeof r==`boolean`?r:n?!e.required&&e.in!==`path`:!1}})),Jb,MRe=s((()=>{Jb=e=>e.variables.reduce((e,t)=>(e[t.name]=typeof t.value==`string`?t.value:t.value.default,e),{})})),Yb,Xb=s((()=>{Yb=e=>Object.entries(e)})),Zb,Qb=s((()=>{Xb(),Zb=e=>e?Yb(e?.variables??{}).reduce((e,[t,n])=>(n.default&&(e[t]=n.default),e),{}):{}})),$b,NRe=s((()=>{qy(),vl(),Qb(),$b=({server:e,path:t,urlParams:n})=>{let r=Zb(e);return _l(hIe(e?.url??``,r),t,n)}})),ex,PRe=s((()=>{qu(),ex=(e,t=``)=>{let n=[];return e.forEach(e=>{if(e.type===`apiKey`){let r=e.name,i=e[`x-scalar-secret-token`]||t;if(e.in===`header`)return n.push({in:e.in,name:r,value:i});if(e.in===`query`)return n.push({in:`query`,name:r,value:i});if(e.in===`cookie`)return n.push({in:`cookie`,name:r,value:i})}if(e.type===`http`){if(e.scheme===`basic`){let t=e[`x-scalar-secret-username`]||``,r=e[`x-scalar-secret-password`]||``;return t===``&&r===``?null:n.push({in:`header`,name:`Authorization`,value:`${t}:${r}`,format:`basic`})}let r=e[`x-scalar-secret-token`];return n.push({in:`header`,name:`Authorization`,value:r||t,format:`bearer`})}if(e.type===`oauth2`){let r=Object.values(e?.flows??{}).filter(Ku).find(e=>e[`x-scalar-secret-token`])?.[`x-scalar-secret-token`]??``;return n.push({in:`header`,name:`Authorization`,value:r||t,format:`bearer`})}if(e.type===`openIdConnect`){let r=Object.values(e?.flows??{}).filter(Ku).find(e=>e[`x-scalar-secret-token`])?.[`x-scalar-secret-token`]??``;return n.push({in:`header`,name:`Authorization`,value:r||t,format:`bearer`})}return null}),n}})),FRe,IRe,LRe,RRe,zRe,tx,BRe,nx,rx=s((()=>{Rl(),Zu(),qb(),FRe=`*/*`,IRe={accept:`Accept`,"content-type":`Content-Type`,"user-agent":`User-Agent`},LRe=e=>IRe[e.toLowerCase()]??e,RRe=e=>Object.fromEntries(Object.entries(e).map(([e,t])=>[LRe(e),t])),zRe=(e,t)=>{let n=new Set;for(let r of e.parameters??[]){let e=K(r);if(e.in!==`header`)continue;let i=`examples`in e&&e.examples?.[t]?e.examples[t]:void 0;Kb(e,i?K(i):void 0)||n.add(e.name.toLowerCase())}return n},tx=(e,t,n,r)=>{let i=r.hideOverriddenHeaders?zRe(e,t):null,a=r.hideDisabledHeaders?e[`x-scalar-disable-parameters`]?.[`default-headers`]?.[t]??{}:null;return Object.fromEntries(Object.entries(n).filter(([e])=>{let t=e.toLowerCase();return!(i?.has(t)||a&&a[t]===!0)}))},BRe=(e,t,n)=>tx(e,t,n,{hideOverriddenHeaders:!1,hideDisabledHeaders:!0}),nx=({method:e,operation:t,exampleName:n,hideDisabledHeaders:r=!1,hideOverriddenHeaders:i=!1,options:a={isElectron:!1,appVersion:`0.0.0`}})=>{let o=new Headers,s=K(t.requestBody);if(Il(e)&&s){let e=s[`x-scalar-selected-content-type`]?.[n]??Object.keys(s.content??{})[0];e&&e!==`none`&&e!==`other`&&o.set(`Content-Type`,e)}let c=Object.keys(t.responses??{}).find(e=>e.startsWith(`2`)),l=c?K(t.responses[c]):null,u=Object.keys(l?.content??{}).join(`, `)||FRe;o.set(`Accept`,u),a.isElectron&&a.appVersion&&o.set(`User-Agent`,`Scalar/${a.appVersion}`);let d=Object.fromEntries(o.entries());return i||r?tx(t,n,d,{hideOverriddenHeaders:i,hideDisabledHeaders:r}):d}})),VRe,ix,ax=s((()=>{VRe=new Set([`__proto__`,`prototype`,`constructor`]),ix=(e,t)=>{if(VRe.has(e)){let n=t?`Prototype pollution key detected: "${e}" in ${t}`:`Prototype pollution key detected: "${e}"`;throw Error(n)}}})),ox,sx=s((()=>{ed(),ax(),ox=(e,t,n)=>{let[r,...i]=t;if(!r)return;if(ix(r),!i.length){e[r]=n;return}let a=Qu(e[r])?e[r]:{};e[r]=a,ox(a,i,n)}})),HRe,URe,WRe=s((()=>{ed(),sx(),Zu(),Cd(),sIe(),cIe(),pIe(),mIe(),HRe=(e,t,n)=>e.content[t]?.encoding?.[n]?.contentType,URe=(e,t=`default`,n)=>{if(!e)return null;let r=Ty(e,t);if(!r)return null;let i=wy(e,r,t,n);if(!i)return null;if((r===`multipart/form-data`||r===`application/x-www-form-urlencoded`)&&Array.isArray(i.value)){let t=(Array.isArray(i.value)?i.value:[]).filter(e=>!e.isDisabled),n=r===`multipart/form-data`?{mode:`formdata`,value:[]}:{mode:`urlencoded`,value:[]},a=n.mode===`formdata`?K(e.content[r]?.schema,Xu):void 0,o=n.mode===`formdata`?Py(a):()=>!1,s=[],c=new Map;for(let e of t){if(!o(e.name,e.value)){s.push(e);continue}let t=e.name.split(`.`),n=t[0];if(!n)continue;let r=c.get(n);r||(r={},c.set(n,r),s.push({name:n,value:r})),ox(r,t.slice(1),Ny(e.value,My(a,t)))}return s.forEach(({name:t,value:i})=>{if(!t)return;let a=e.content[r]?.encoding?.[t],o=Wy(t,i,a);if(o){for(let e of o)n.value.push({type:`text`,key:e.key,value:e.value});return}let s=n.mode===`formdata`?a?.contentType:void 0;if(i instanceof File&&n.mode===`formdata`){let e=Sd(i),r=s&&s!==e.type?new File([e],e.name,{type:s,lastModified:e.lastModified}):e;return n.value.push({type:`file`,key:t,value:r,contentType:s})}if(i!=null){let e=typeof i==`object`&&i?JSON.stringify(Sd(i)):String(i);return n.mode===`formdata`&&s?n.value.push({type:`blob`,key:t,value:new Blob([e],{type:s}),contentType:s}):n.value.push({type:`text`,key:t,value:e})}}),n}if(r===`application/x-www-form-urlencoded`&&Qu(i.value)){let t={mode:`urlencoded`,value:[]};for(let[n,a]of Object.entries(i.value))if(n&&a!=null){let i=e.content[r]?.encoding?.[n],o=Wy(n,a,i);if(o){for(let e of o)t.value.push({key:e.key,value:e.value});continue}let s=typeof a==`object`&&a?JSON.stringify(Sd(a)):String(a);t.value.push({key:n,value:s})}return t}if(r===`multipart/form-data`&&Qu(i.value)){let t={mode:`formdata`,value:[]};for(let[n,a]of Object.entries(i.value)){if(!n||a==null)continue;let i=e.content[r]?.encoding?.[n],o=Wy(n,a,i);if(o){for(let e of o)t.value.push({type:`text`,key:e.key,value:e.value});continue}let s=HRe(e,r,n);if(a instanceof File){let e=Sd(a),r=s&&s!==e.type?new File([e],e.name,{type:s,lastModified:e.lastModified}):e;t.value.push({type:`file`,key:n,value:r,contentType:s});continue}let c=typeof a==`object`&&a?JSON.stringify(Sd(a)):String(a);if(s){t.value.push({type:`blob`,key:n,value:new Blob([c],{type:s}),contentType:s});continue}t.value.push({type:`text`,key:n,value:c})}return t}let a=i.value!==null&&typeof i.value==`object`?Sd(i.value):i.value;return a instanceof File?{mode:`raw`,value:a,contentType:a.type}:typeof a==`object`?{mode:`raw`,value:JSON.stringify(a),contentType:`application/json`}:{mode:`raw`,value:a}}})),cx,lx,ux,dx,fx,px,mx,GRe=s((()=>{qu(),ed(),Zu(),D_(),m_(),jRe(),Od(),qb(),Hy(),cx=(e,t)=>`explode`in e&&e.explode!==void 0?e.explode:t,lx=(e=[],t=`default`)=>{let n={cookies:[],headers:{},pathVariables:{},allowReservedQueryParameters:new Set,urlParams:new URLSearchParams};if(e.length===0)return n;for(let r of e){let e=K(r),i=Dd(e,t,void 0);if(!i||Kb(e,i))continue;let a=i.value,o=Ub(a,e),s=e.name;switch(e.in){case`header`:{if(s.toLowerCase()===`content-type`&&o===`multipart/form-data`)break;let t=Iy(o,cx(e,!1));if(!Ku(t))break;let r=String(t);n.headers[s]?n.headers[s]=`${n.headers[s]},${r}`:n.headers[s]=r;break}case`path`:{let t=Iy(o,cx(e,!1));n.pathVariables[s]=String(t);break}case`query`:px(e,s,o,n.urlParams,n.allowReservedQueryParameters);break;case`cookie`:mx(s,o,cx(e,!0),n.cookies);break}}return n},ux=(e,t)=>!(`style`in e)||!e.style?`form`:e.style===`deepObject`?Qu(t)?`deepObject`:`form`:e.style,dx=e=>`allowReserved`in e&&e.allowReserved!==void 0?e.allowReserved:`schema`in e&&e.schema&&typeof e.schema==`object`&&`allowReserved`in e.schema?e.schema.allowReserved===!0:!1,fx=(e,t,...n)=>{if(t)for(let t of n)e.add(t)},px=(e,t,n,r,i)=>{let a=`explode`in e&&e.explode!==void 0?e.explode:!0,o=dx(e),s=ux(e,n);if(`content`in e&&e.content){let a=Fy(n,Object.keys(e.content)[0]??`application/json`);r.set(t,a),fx(i,o,t);return}if(s===`deepObject`&&a){let e=Vy(t,n);for(let n of e)r.append(n.key,n.value),fx(i,o,t);return}if(s===`spaceDelimited`){let e=zy(n),a=r.get(t);r.set(t,a?`${a} ${e}`:e),fx(i,o,t);return}if(s===`pipeDelimited`){let e=By(n),a=r.get(t);r.set(t,a?`${a}|${e}`:e),fx(i,o,t);return}let c=Ly(n,a);if(Array.isArray(c))for(let e of c){let n=e.key||t;r.append(n,String(e.value)),fx(i,o,t)}else r.append(t,String(c)),fx(i,o,t)},mx=(e,t,n,r)=>{let i=Ry(t,n);if(Array.isArray(i))for(let t of i){let n=t.key||e;r.push(p_(E_,{name:n,value:String(t.value),path:`/`}))}else r.push(p_(E_,{name:e,value:String(i),path:`/`}))}})),hx,KRe=s((()=>{Rl(),qy(),Zu(),Qb(),PRe(),rx(),WRe(),GRe(),hx=({exampleName:e,globalCookies:t,method:n,operation:r,path:i,proxyUrl:a,server:o,defaultHeaders:s,isElectron:c,selectedSecuritySchemes:l,requestBodyCompositionSelection:u})=>{let d=K(r.requestBody),f=lx(r.parameters??[],e),p=ex(l),m=new Headers({...BRe(r,e,s),...f.headers}),h=Il(n)?URe(d,e,u):null;(h?.mode===`formdata`||h?.mode===`urlencoded`)&&m.delete(`Content-Type`);let g=Zb(o),_=Gy(o?.url??``,g),v=r[`x-scalar-disable-parameters`]?.[`global-cookies`]?.[e]??{},y=[...t.map(e=>({...e,isDisabled:(e.isDisabled||v[e.name.toLowerCase()])??!1})),...f.cookies],b=m.get(`Accept`)?.toLowerCase().includes(`text/event-stream`)??!1,ee=b?`no-store`:`default`;return b&&(m.set(`Cache-Control`,`no-cache`),m.set(`Pragma`,`no-cache`)),{request:{baseUrl:_,proxyUrl:a,path:{variables:f.pathVariables,raw:i},query:f.urlParams,method:n.toUpperCase(),headers:m,body:h,cookies:y,cache:ee,security:p,options:{isElectron:c},allowedReservedQueryParameters:f.allowReservedQueryParameters}}}})),gx,_x,vx,yx,bx=s((()=>{gx=[`userPassword`,`plain`,`scramSha256`,`scramSha512`],_x=e=>!!e&&gx.includes(e),vx=[`symmetricEncryption`,`asymmetricEncryption`],yx=e=>!!e&&vx.includes(e)})),qRe=s((()=>{sIe(),cIe(),pIe(),mIe(),ORe(),jRe(),wIe(),qb(),Hy(),MRe(),Od(),oIe(),NRe(),Qb(),KRe(),IIe(),bx(),PRe()})),xx,Sx,Cx,wx,Tx=s((()=>{ed(),xx=e=>Qu(e)&&`openapi`in e&&typeof e.openapi==`string`,Sx=e=>Qu(e)&&`asyncapi`in e&&typeof e.asyncapi==`string`,Cx=e=>{if(xx(e))return`openapi`;if(Sx(e))return`asyncapi`},wx=e=>e===`asyncapi`?`AsyncAPI`:`OpenAPI`})),Ex,Dx=s((()=>{y_(),Tx(),m_(),Ex=(e,t)=>{if(e===null)return{name:null,environment:p_(v_,{})};let n=e.workspace[`x-scalar-active-environment`];if(!n)return{name:null,environment:p_(v_,{})};let r=e.workspace[`x-scalar-environments`]?.[n]??{variables:[]},i=(xx(t)?t[`x-scalar-environments`]?.[n]:void 0)??{variables:[]};return{name:n,environment:p_(v_,{...r,...i,variables:[...r.variables,...i.variables]})}}})),Ox,kx=s((()=>{F_(),Ox=e=>e&&typeof e==`string`?DMe.has(e.toLowerCase()):!1})),Ax,jx,Mx,Nx,Px,Fx,Ix=s((()=>{kx(),Zu(),Ax=e=>{if(!(!e||typeof e!=`object`))return K(e,Xu)},jx=(e,t)=>{let n=Ax(e);if(n)return n[t]},Mx=(e,t,n)=>{if(!(!e||typeof e!=`object`)){if(`$ref`in e&&`$ref-value`in e){let r=e[`$ref-value`];if(r){r[t]=n;return}}e[t]=n}},Nx=(e,t)=>{if(!(!e||typeof e!=`object`)){if(`$ref`in e&&`$ref-value`in e){let n=e[`$ref-value`];n&&delete n[t]}delete e[t]}},Px=(e,t)=>{let n=Ax(e);if(n)for(let[e,r]of Object.entries(n))!Ox(e)||r===void 0||t(e,r)},Fx=e=>{let t=Ax(e);return!t||Object.keys(t).length===0}})),Lx,Rx=s((()=>{Zu(),Lx=(e=[],t=[])=>{let n=t.flatMap(e=>{let t=K(e);return t?`${t.in}:${t.name}`:[]}),r=new Set(n);return[...e.filter(e=>{let t=K(e);return t?!r.has(`${t.in}:${t.name}`):!1}),...t]}})),zx,Bx,Vx=s((()=>{zx=e=>e===`web`?`https://proxy.scalar.com`:null,Bx=(e,t)=>e===void 0?zx(t):e})),Hx,Ux=s((()=>{Hx=(e,t)=>JSON.stringify(t)===`[{}]`&&e?.length?e.find(e=>JSON.stringify(e)===`{}`)?e:[...e,{}]:t??e??[]})),Wx,Gx=s((()=>{Wx=e=>Object.keys(e)})),Kx,qx=s((()=>{Gx(),Zu(),Kx=(e,t)=>Wx(t).flatMap(t=>K(e?.[t])||[])})),Jx,Yx=s((()=>{Jx=e=>{let t=e.some(e=>Object.keys(e).length>1);return e.some(e=>Object.keys(e).length===0)&&!t}})),Xx,Zx,Qx,$x,eS=s((()=>{Zu(),Yx(),Xx=e=>!e||e.type!==`oauth2`?[]:e[`x-default-scopes`]??[],Zx=(e,t)=>Object.fromEntries(Object.entries(e).map(([e,n])=>{if(Array.isArray(n)&&n.length>0)return[e,[...n]];let r=K(t[e]),i=r?.type===`oauth2`?r[`x-default-scopes`]:void 0;return Array.isArray(i)&&i.length>0?[e,[...i]]:[e,Array.isArray(n)?[...n]:n]})),Qx=(e,t)=>{if(!Array.isArray(e)){let n=K(t[e]);return{[e]:Xx(n)}}let n={};for(let r of e)if(Array.isArray(r))for(let e of r){let r=K(t[e]);n[e]=Xx(r)}else{let e=K(t[r]);n[r]=Xx(e)}return n},$x=(e,t,n=[],r={},i)=>{if(t)return t;if(e)return e;if(Jx(n)&&!i)return{selectedIndex:-1,selectedSchemes:[]};if(i)return{selectedIndex:0,selectedSchemes:[Qx(i,r)]};let a=n[0];return a?{selectedIndex:0,selectedSchemes:[Zx(a,r)]}:{selectedIndex:-1,selectedSchemes:[]}}})),tS,nS=s((()=>{tS=(e,t=new WeakMap)=>{if(typeof e!=`object`||!e)return e;if(t.has(e))return t.get(e);let n=Array.isArray(e)?[]:{};return t.set(e,n),Object.keys(e).forEach(r=>{n[r]=tS(e[r],t)}),n}})),rS,iS=s((()=>{hd(),rS=(e,t,n=!1,r=new Set)=>{for(let i in t)if(!(i in e))e[i]=t[i];else{let a=e[i],o=t[i];if(typeof a==`object`&&a&&typeof o==`object`&&o&&!(n&&(Array.isArray(a)||Array.isArray(o)))){let e=cd(a),t=cd(o);if(r.has(e)||r.has(t))continue;r.add(e),r.add(t),rS(a,o,n,r)}else try{e[i]=o}catch(e){console.warn(`Issue setting ${i} on object`),console.warn(e)}}return e}})),aS,oS,sS,cS,lS,uS,dS,JRe=s((()=>{ed(),Xb(),bx(),aS={"x-scalar-secret-client-id":`x-scalar-client-id`,"x-scalar-secret-client-secret":`clientSecret`,"x-scalar-secret-password":`password`,"x-scalar-secret-redirect-uri":`x-scalar-redirect-uri`,"x-scalar-secret-token":`token`,"x-scalar-secret-username":`username`,"x-scalar-secret-auth-url":`authorizationUrl`,"x-scalar-secret-token-url":`tokenUrl`},oS=(e,t,n={},r)=>Object.fromEntries(e.map(e=>{let i=typeof n[e]==`string`?n[e]:void 0,a=typeof t[e]==`string`?t[e]:void 0,o=typeof t[aS[e]]==`string`?t[aS[e]]:void 0;return[e,e===`x-scalar-secret-redirect-uri`?i??a??o??r??``:i||a||o||``]})),sS=(e,t)=>{let n=e[t];return typeof n==`string`?n:``},cS=(e={})=>{let t=e[`x-scalar-secret-refresh-token`];return typeof t==`string`?{"x-scalar-secret-refresh-token":t}:{}},lS=(e,t={})=>{let n=t[`x-scalar-credentials-location`]??e[`x-scalar-credentials-location`];return n?{"x-scalar-credentials-location":n}:{}},uS=(e,t,n)=>{let r=new Set;return{flows:Yb(e??{}).reduce((e,[i,a])=>{if(!Qu(a))return e;let o=a.selectedScopes;return Array.isArray(o)&&o.forEach(e=>typeof e==`string`&&r.add(e)),i===`implicit`&&(e.implicit={...a,...oS([`x-scalar-secret-client-id`,`x-scalar-secret-redirect-uri`,`x-scalar-secret-token`,`x-scalar-secret-auth-url`],a,t?.implicit,n),...cS(t?.implicit)}),i===`password`&&(e[i]={...a,...oS([`x-scalar-secret-client-id`,`x-scalar-secret-client-secret`,`x-scalar-secret-username`,`x-scalar-secret-password`,`x-scalar-secret-token`,`x-scalar-secret-token-url`],a,t?.password),...lS(a,t?.password),...cS(t?.password)}),i===`clientCredentials`&&(e[i]={...a,...oS([`x-scalar-secret-client-id`,`x-scalar-secret-client-secret`,`x-scalar-secret-token`,`x-scalar-secret-token-url`],a,t?.clientCredentials),...lS(a,t?.clientCredentials),...cS(t?.clientCredentials)}),i===`authorizationCode`&&(e[i]={...a,...oS([`x-scalar-secret-client-id`,`x-scalar-secret-client-secret`,`x-scalar-secret-redirect-uri`,`x-scalar-secret-token`,`x-scalar-secret-auth-url`,`x-scalar-secret-token-url`],a,t?.authorizationCode,n),...lS(a,t?.authorizationCode),...cS(t?.authorizationCode)}),e},{}),selectedScopes:Array.from(r)}},dS=(e,t,n,r,i)=>{let a=t.getAuthSecrets(r,n),o=e;if(e.type===`apiKey`){let t=a?.type===`apiKey`?a:void 0;return{...e,"x-scalar-secret-token":t?.[`x-scalar-secret-token`]||sS(e,`x-scalar-secret-token`)||e.value||``}}if(e.type===`http`){let t=a?.type===`http`?a:void 0;return{...e,"x-scalar-secret-token":t?.[`x-scalar-secret-token`]||sS(e,`x-scalar-secret-token`)||e.token||``,"x-scalar-secret-username":t?.[`x-scalar-secret-username`]||sS(e,`x-scalar-secret-username`)||e.username||``,"x-scalar-secret-password":t?.[`x-scalar-secret-password`]||sS(e,`x-scalar-secret-password`)||e.password||``}}if(e.type===`oauth2`){let t=a?.type===`oauth2`?a:void 0,n=uS(e.flows,t,i),r=Array.isArray(e[`x-default-scopes`])?e[`x-default-scopes`].filter(e=>typeof e==`string`):[],o=Array.from(new Set([...r,...n.selectedScopes]));return{...e,flows:n.flows,"x-default-scopes":o}}if(e.type===`openIdConnect`){let t=a?.type===`openIdConnect`?a:void 0,n=uS({implicit:t?.implicit,password:t?.password,clientCredentials:t?.clientCredentials,authorizationCode:t?.authorizationCode},t,i);return{...e,...Yb(n.flows).length?{flows:n.flows}:{}}}if(_x(o.type)){let e=a?.type===o.type?a:void 0;return{...o,"x-scalar-secret-username":e?.[`x-scalar-secret-username`]||o.username||``,"x-scalar-secret-password":e?.[`x-scalar-secret-password`]||o.password||``}}if(o.type===`X509`){let e=a?.type===`X509`?a:void 0;return{...o,"x-scalar-secret-client-certificate":e?.[`x-scalar-secret-client-certificate`]||``,"x-scalar-secret-private-key":e?.[`x-scalar-secret-private-key`]||``}}if(yx(o.type)){let e=a?.type===o.type?a:void 0;return{...o,"x-scalar-secret-token":e?.[`x-scalar-secret-token`]||o.token||``}}if(o.type===`gssapi`){let e=a?.type===`gssapi`?a:void 0;return{...o,"x-scalar-secret-service-name":e?.[`x-scalar-secret-service-name`]||``}}return e}})),fS,pS,mS,hS,gS=s((()=>{Xb(),nS(),Zu(),iS(),m_(),ay(),JRe(),fS=e=>{let t=K(e);return!!t&&typeof t==`object`&&`availableScopes`in t},pS=e=>{let t=K(e);if(!t||typeof t!=`object`)return e;let n=Object.entries(t);return n.some(([,e])=>fS(e))?Object.fromEntries(n.map(([e,t])=>{if(!fS(t))return[e,t];let{availableScopes:n,scopes:r,...i}=K(t);return[e,{...i,scopes:r??n??{}}]})):e},mS=e=>{if(!(e&&typeof e==`object`&&`type`in e))return e;if(e.type===`httpApiKey`)return{...e,type:`apiKey`};if(e.type===`oauth2`&&`flows`in e&&e.flows){let t=pS(e.flows);if(t!==e.flows)return{...e,flows:t}}return e},hS=(e={},t={},n,r,i)=>Yb(rS(Yb(e).reduce((e,[t,n])=>{let r=tS(K(n));return r&&(e[t]=r),e},{}),t)??{}).reduce((e,[t,a])=>{let o=mS(a);return e[t]=dS({...p_(WFe,o),...o},n,t,r,i),e},{})}));function _S(e,t={}){return Array.isArray(e)?e.map(e=>QRe(e,t)):[]}function YRe(e){try{let t=new URL(e),n=t.port?`:${t.port}`:``;return`${t.protocol}//${t.hostname}${n}`}catch{return}}function XRe(){if(!(typeof window>`u`||typeof window?.location?.origin!=`string`))return window.location.origin}function ZRe(e,t){let{baseServerUrl:n,documentUrl:r}=t;if(n)return gl(n,e);if(r){let t=YRe(r);if(t)return gl(t,e)}let i=XRe();return i?gl(i,e):e}function QRe(e,t){return e.url?.startsWith(`/`)&&(e.url=ZRe(e.url,t)),e}var vS,yS=s((()=>{vl(),Tx(),vS=(e,t,n,r)=>{let i=xx(e)?e[`x-scalar-selected-server`]:void 0,a=n==null?t?.[`x-scalar-selected-server`]??i:i;return a==null?r[0]??null:r.find(({url:e})=>e===a)??null}})),bS,$Re=s((()=>{Ix(),Zu(),Dx(),rx(),Rx(),Vx(),Ux(),qx(),eS(),gS(),yS(),Tx(),bS=(e,t,n,r={})=>{let{path:i,method:a,exampleName:o}=n,s=e.workspace.documents[t]??r.fallbackDocument??void 0;if(!s)return{ok:!1,error:`Document ${t} not found`};if(!xx(s))return{ok:!1,error:`Document ${t} is not an OpenAPI document`};let c=Ax(s.paths?.[i]);if(!c)return{ok:!1,error:`Path ${i} not found`};let l=K(jx(s.paths?.[i],a));if(!l)return{ok:!1,error:`Method ${a} not found on path ${i}`};let u={...l,parameters:Lx(c.parameters,l.parameters??[])},d=Ex(e,s),f=_S(r.servers??u.servers??s.servers,{baseServerUrl:r.baseServerUrl,documentUrl:s[`x-scalar-original-source-url`]}),p=vS(s,u,r.servers??null,f),m=e.auth.getAuthSelectedSchemas({type:`document`,documentName:t}),h=e.auth.getAuthSelectedSchemas({type:`operation`,documentName:t,path:i??``,method:a??`get`}),g=hS(s.components?.securitySchemes??{},r.authentication?.securitySchemes??{},e.auth,t),_=Hx(s.security,u.security),v=$x(m,h,_,g,r.authentication?.preferredSecurityScheme),y=Kx(g,v.selectedSchemes[v.selectedIndex]??{}),b=u.servers==null?{type:`document`}:{type:`operation`,path:i??``,method:a??`get`},ee=h===void 0?{type:`document`}:{type:`operation`,path:i??``,method:a??`get`},te=Bx(e.workspace[`x-scalar-active-proxy`],r.layout??`other`),ne=nx({method:a,operation:u,exampleName:o,options:{appVersion:r.appVersion??`0.0.0`,isElectron:r.isElectron??!1}});return{ok:!0,data:{operation:u,environment:d,cookies:{workspace:e.workspace[`x-scalar-cookies`]??[],document:s[`x-scalar-cookies`]??[]},headers:{default:ne},servers:{list:f,selected:p,meta:b},proxy:{url:te},security:{schemes:g,requirements:_,selected:v,selectedSchemes:y,meta:ee}}}}})),eze=s((()=>{Dx(),$Re(),rx(),Rx(),Vx(),Ux(),qx(),eS(),Yx(),gS(),yS()}));function tze(){let e=[],t=[],n=[],r=[];return{getEnvironment:()=>e,getGlobals:()=>n,getCollectionVariables:()=>t,getData:()=>({}),getLocalVariables:()=>r,setLocalVariables:e=>{r.length=0,r.push(...e)},setCollectionVariables:e=>{t.length=0,t.push(...e)},setEnvironment:t=>{e.length=0,e.push(...t)},setGlobals:e=>{n.length=0,n.push(...e)},getVariables:()=>Object.fromEntries([...n,...t,...e,...r].map(e=>[e.key,e.value]))}}var nze=s((()=>{})),xS=s((()=>{qRe(),eze(),CRe(),nze()})),SS,CS,rze=s((()=>{xS(),Zu(),SS=e=>e==null||typeof e==`string`&&e.trim()===``,CS=(e=[],t=`default`)=>{let n=[];for(let r of e){let e=K(r);if(e.in!==`path`)continue;let i=Dd(e,t,void 0);Kb(e,i)||SS(i?.value)&&n.push(e.name)}return n.length>0?{ok:!1,invalidParams:n}:{ok:!0}}})),wS,TS,ize=s((()=>{G(),Wu(),wS={key:0,class:`request-response-header bg-b-1 -mb-1/2 sticky top-0 z-1 flex min-h-11 items-center border-b px-2.5 text-base font-medium xl:rounded-none`},TS=N({inheritAttrs:!1,__name:`ViewLayoutSection`,setup(e){let{cx:t}=Uu();return(e,n)=>(F(),I(`section`,nt(ei(j(t)(`xl:custom-scroll bg-b-1 flex flex-1 flex-col xl:h-full xl:min-w-0`))),[e.$slots.title?(F(),I(`div`,wS,[P(e.$slots,`title`)])):B(``,!0),P(e.$slots,`default`)],16))}})})),ES,DS=s((()=>{ize(),ES=TS})),OS,kS,aze=s((()=>{G(),OS=[`aria-controls`,`aria-selected`,`tabindex`],kS=N({__name:`SectionFilterButton`,props:{selected:{type:Boolean},controls:{}},setup(e){return(t,n)=>(F(),I(`button`,{"aria-controls":e.controls??``,"aria-selected":!!e.selected,class:O([`hover:bg-b-2 flex w-fit cursor-pointer items-center rounded p-1 px-2 text-center font-medium whitespace-nowrap has-[:focus-visible]:outline`,{"text-c-1 pointer-events-none":e.selected}]),role:`tab`,tabindex:e.selected?0:-1,type:`button`},[P(t.$slots,`default`)],10,OS))}})})),AS,oze=s((()=>{aze(),AS=kS})),jS,MS=s((()=>{jS=(e,t)=>{let n=e.__vccOpts||e;for(let[e,r]of t)n[e]=r;return n}})),NS,PS,FS=s((()=>{NS=Object.defineProperty,PS=(e,t)=>{let n={};for(var r in e)NS(n,r,{get:e[r],enumerable:!0});return t||NS(n,Symbol.toStringTag,{value:`Module`}),n}}));function IS(e,t){return F(),I(`svg`,RS,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M5 11.988h14M12.006 5v14`},null,-1)]])}var LS,RS,zS,sze=s((()=>{FS(),G(),LS=PS({default:()=>zS,render:()=>IS}),RS={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},zS={render:IS}}));function BS(e,t){return F(),I(`svg`,HS,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M8.143 12h7.714M12 8.143v7.714M5.571 3H18.43A2.57 2.57 0 0 1 21 5.571V18.43A2.57 2.57 0 0 1 18.429 21H5.57A2.57 2.57 0 0 1 3 18.429V5.57A2.57 2.57 0 0 1 5.571 3`},null,-1)]])}var VS,HS,US,cze=s((()=>{FS(),G(),VS=PS({default:()=>US,render:()=>BS}),HS={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},US={render:BS}}));function WS(e,t){return F(),I(`svg`,KS,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M12 8v4m0 4h.01M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10`},null,-1)]])}var GS,KS,qS,lze=s((()=>{FS(),G(),GS=PS({default:()=>qS,render:()=>WS}),KS={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},qS={render:WS}}));function JS(e,t){return F(),I(`svg`,XS,[...t[0]||=[R(`path`,{fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M22 12H2m9.3-9.3L2 12l9.3 9.3`},null,-1)]])}var YS,XS,ZS,uze=s((()=>{FS(),G(),YS=PS({default:()=>ZS,render:()=>JS}),XS={xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 24 24`},ZS={render:JS}}));function QS(e,t){return F(),I(`svg`,eC,[...t[0]||=[R(`path`,{fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M2 12h20m-9.3 9.3L22 12l-9.3-9.3`},null,-1)]])}var $S,eC,tC,dze=s((()=>{FS(),G(),$S=PS({default:()=>tC,render:()=>QS}),eC={xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 24 24`},tC={render:QS}}));function nC(e,t){return F(),I(`svg`,iC,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M8 3H7a2 2 0 0 0-2 2v5a2 2 0 0 1-2 2 2 2 0 0 1 2 2v5c0 1.1.9 2 2 2h1m8 0h1a2 2 0 0 0 2-2v-5c0-1.1.9-2 2-2a2 2 0 0 1-2-2V5a2 2 0 0 0-2-2h-1`},null,-1)]])}var rC,iC,aC,fze=s((()=>{FS(),G(),rC=PS({default:()=>aC,render:()=>nC}),iC={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},aC={render:nC}}));function oC(e,t){return F(),I(`svg`,cC,[...t[0]||=[R(`path`,{d:`M16.4 6.8v5.6H7.6m0-5.6v10.4`},null,-1),R(`circle`,{cx:`7.6`,cy:`4.4`,r:`2.4`},null,-1),R(`circle`,{cx:`7.6`,cy:`19.6`,r:`2.4`},null,-1),R(`circle`,{cx:`16.4`,cy:`4.4`,r:`2.4`},null,-1)]])}var sC,cC,lC,pze=s((()=>{FS(),G(),sC=PS({default:()=>lC,render:()=>oC}),cC={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,viewBox:`0 0 24 24`},lC={render:oC}}));function uC(e,t){return F(),I(`svg`,fC,[...t[0]||=[R(`path`,{d:`M12 22.125V4.712S9.545 1.985 1.268 1.875a.5.5 0 0 0-.366.15.52.52 0 0 0-.152.369v16.375a.515.515 0 0 0 .5.519C9.543 19.4 12 22.125 12 22.125`},null,-1),R(`path`,{d:`M9 11.18a21.3 21.3 0 0 0-5.26-1.055M9 15.375a21.3 21.3 0 0 0-5.26-1.055M15 11.18a21.3 21.3 0 0 1 5.26-1.055M15 15.375a21.3 21.3 0 0 1 5.26-1.055`},null,-1),R(`path`,{d:`M12 22.125V4.712s2.455-2.727 10.732-2.837a.5.5 0 0 1 .366.15.52.52 0 0 1 .152.369v16.375a.515.515 0 0 1-.5.519C14.457 19.4 12 22.125 12 22.125`},null,-1)]])}var dC,fC,pC,mze=s((()=>{FS(),G(),dC=PS({default:()=>pC,render:()=>uC}),fC={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,viewBox:`0 0 24 24`},pC={render:uC}}));function mC(e,t){return F(),I(`svg`,gC,[...t[0]||=[R(`path`,{fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M21.4 4.6 10.6 19.4l-8-6.4`},null,-1)]])}var hC,gC,_C,hze=s((()=>{FS(),G(),hC=PS({default:()=>_C,render:()=>mC}),gC={xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 24 24`},_C={render:mC}}));function vC(e,t){return F(),I(`svg`,bC,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`m18 10-6 6-6-6`},null,-1)]])}var yC,bC,xC,gze=s((()=>{FS(),G(),yC=PS({default:()=>xC,render:()=>vC}),bC={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},xC={render:vC}}));function SC(e,t){return F(),I(`svg`,wC,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`m14 18-6-6 6-6`},null,-1)]])}var CC,wC,TC,_ze=s((()=>{FS(),G(),CC=PS({default:()=>TC,render:()=>SC}),wC={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},TC={render:SC}}));function EC(e,t){return F(),I(`svg`,OC,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`m9 18 6-6-6-6`},null,-1)]])}var DC,OC,kC,vze=s((()=>{FS(),G(),DC=PS({default:()=>kC,render:()=>EC}),OC={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},kC={render:EC}}));function AC(e,t){return F(),I(`svg`,MC,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`m18 15-6-6-6 6`},null,-1)]])}var jC,MC,NC,yze=s((()=>{FS(),G(),jC=PS({default:()=>NC,render:()=>AC}),MC={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},NC={render:AC}}));function PC(e,t){return F(),I(`svg`,IC,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2m-6 4h10a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H10a2 2 0 0 1-2-2V10a2 2 0 0 1 2-2`},null,-1)]])}var FC,IC,LC,bze=s((()=>{FS(),G(),FC=PS({default:()=>LC,render:()=>PC}),IC={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},LC={render:PC}}));function RC(e,t){return F(),I(`svg`,BC,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M18 6 6 18M6 6l12 12`},null,-1)]])}var zC,BC,VC,xze=s((()=>{FS(),G(),zC=PS({default:()=>VC,render:()=>RC}),BC={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},VC={render:RC}}));function HC(e,t){return F(),I(`svg`,WC,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`m9.273 9.273 5.454 5.454m0-5.454-5.454 5.454M5.57 3h12.86A2.57 2.57 0 0 1 21 5.571V18.43A2.57 2.57 0 0 1 18.429 21H5.57A2.57 2.57 0 0 1 3 18.429V5.57A2.57 2.57 0 0 1 5.571 3Z`},null,-1)]])}var UC,WC,GC,Sze=s((()=>{FS(),G(),UC=PS({default:()=>GC,render:()=>HC}),WC={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},GC={render:HC}}));function KC(e,t){return F(),I(`svg`,JC,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2m-3.121 8.879 4.242 4.242m0-4.242L12.88 17.12M10 8h10a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H10a2 2 0 0 1-2-2V10a2 2 0 0 1 2-2`},null,-1)]])}var qC,JC,YC,Cze=s((()=>{FS(),G(),qC=PS({default:()=>YC,render:()=>KC}),JC={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},YC={render:KC}}));function XC(e,t){return F(),I(`svg`,QC,[...t[0]||=[R(`path`,{d:`M18.375 19.5a4.875 4.875 0 1 0-2.764-8.885A7.5 7.5 0 1 0 8.25 19.5z`},null,-1)]])}var ZC,QC,$C,wze=s((()=>{FS(),G(),ZC=PS({default:()=>$C,render:()=>XC}),QC={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,viewBox:`0 0 24 24`},$C={render:XC}}));function ew(e,t){return F(),I(`svg`,nw,[...t[0]||=[R(`path`,{fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M21.75 9V6a1.5 1.5 0 0 0-1.5-1.5h-12V3a1.5 1.5 0 0 0-1.5-1.5h-4.5A1.5 1.5 0 0 0 .75 3v17.8a1.7 1.7 0 0 0 3.336.438l2.352-11.154A1.5 1.5 0 0 1 7.879 9za1.5 1.5 0 0 1 1.45 1.886l-2.2 10.5a1.5 1.5 0 0 1-1.45 1.114H2.447`},null,-1),R(`path`,{fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`m12 13.5-2.25 2.25L12 18m4.5-4.5 2.25 2.25L16.5 18`},null,-1)]])}var tw,nw,rw,Tze=s((()=>{FS(),G(),tw=PS({default:()=>rw,render:()=>ew}),nw={xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 24 24`},rw={render:ew}}));function iw(e,t){return F(),I(`svg`,ow,[...t[0]||=[R(`path`,{d:`M10.546 2.438a1.957 1.957 0 0 0 2.908 0L14.4 1.4a1.959 1.959 0 0 1 3.41 1.413l-.071 1.4a1.96 1.96 0 0 0 2.051 2.054l1.4-.071a1.959 1.959 0 0 1 1.41 3.41l-1.042.94a1.96 1.96 0 0 0 0 2.909l1.042.94a1.959 1.959 0 0 1-1.413 3.41l-1.4-.071a1.96 1.96 0 0 0-2.056 2.056l.071 1.4A1.959 1.959 0 0 1 14.4 22.6l-.941-1.041a1.96 1.96 0 0 0-2.908 0L9.606 22.6A1.959 1.959 0 0 1 6.2 21.192l.072-1.4a1.96 1.96 0 0 0-2.056-2.056l-1.4.071A1.958 1.958 0 0 1 1.4 14.4l1.041-.94a1.96 1.96 0 0 0 0-2.909L1.4 9.606A1.958 1.958 0 0 1 2.809 6.2l1.4.071a1.96 1.96 0 0 0 2.058-2.06L6.2 2.81A1.959 1.959 0 0 1 9.606 1.4z`},null,-1),R(`path`,{d:`M7.5 12.001a4.5 4.5 0 1 0 9 0 4.5 4.5 0 1 0-9 0`},null,-1)]])}var aw,ow,sw,Eze=s((()=>{FS(),G(),aw=PS({default:()=>sw,render:()=>iw}),ow={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,viewBox:`0 0 24 24`},sw={render:iw}}));function cw(e,t){return F(),I(`svg`,uw,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M20.86 16.6c0 .32-.16.64-.47.72l-6.3 2.83a.93.93 0 0 1-.8-.08c-.23-.16-.38-.4-.38-.63V4.56c0-.24.15-.55.39-.63.24-.16.47-.16.79-.08l6.3 2.83c.31.16.47.4.47.71v9.22zM10.7 19.52a.77.77 0 0 1-.7-.08.72.72 0 0 1-.32-.63V5.35c0-.24.15-.56.4-.63.23-.16.46-.16.78-.08M7.43 18.73a.77.77 0 0 1-.7-.08.72.72 0 0 1-.32-.63V6.05c0-.23.16-.55.4-.63.23-.15.47-.15.78-.07m-3.43 12.6a.77.77 0 0 1-.7-.08.72.72 0 0 1-.32-.63V6.84c0-.23.16-.55.4-.63.23-.16.47-.16.78-.08`},null,-1)]])}var lw,uw,dw,Dze=s((()=>{FS(),G(),lw=PS({default:()=>dw,render:()=>cw}),uw={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},dw={render:cw}}));function fw(e,t){return F(),I(`svg`,mw,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M15.739 8.061c-2.02.404-4.041-1.01-4.445-3.03-.202-1.01 0-2.223.606-3.031C6.445 2 2 6.445 2 11.9s4.445 9.9 9.9 9.9 9.9-4.445 9.9-9.9v-.808c-1.616 1.212-4.04.808-5.253-.808-.606-.606-.808-1.415-.808-2.223`},null,-1),R(`path`,{fill:`currentColor`,d:`M8.667 15.133a1.212 1.212 0 1 0 0-2.425 1.212 1.212 0 0 0 0 2.425m4.243 1.212a1.212 1.212 0 1 0 0-2.424 1.212 1.212 0 0 0 0 2.424M9.88 9.88a1.212 1.212 0 1 0 0-2.425 1.212 1.212 0 0 0 0 2.425`},null,-1)]])}var pw,mw,hw,Oze=s((()=>{FS(),G(),pw=PS({default:()=>hw,render:()=>fw}),mw={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},hw={render:fw}}));function gw(e,t){return F(),I(`svg`,vw,[...t[0]||=[R(`path`,{d:`M17.673 16.462C10.59 16.46 5.52 9.612 7.59 2.837.22 6.233-.71 16.333 5.917 21.016c5.864 4.144 14.064 1.34 16.163-5.526-1.38.64-2.884.972-4.407.972M11.996 3.484h4.866m-2.433-2.433v4.867m4.867 2.433h3.244m-1.622-1.622v3.244`},null,-1)]])}var _w,vw,yw,kze=s((()=>{FS(),G(),_w=PS({default:()=>yw,render:()=>gw}),vw={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,viewBox:`0 0 24 24`},yw={render:gw}}));function bw(e,t){return F(),I(`svg`,Sw,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M3 6h18m-2 0v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6m3 0V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2m-6 5v6m4-6v6`},null,-1)]])}var xw,Sw,Cw,Aze=s((()=>{FS(),G(),xw=PS({default:()=>Cw,render:()=>bw}),Sw={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},Cw={render:bw}}));function ww(e,t){return F(),I(`svg`,Ew,[...t[0]||=[R(`path`,{d:`M10.145 5.108a.584.584 0 0 1-.657-.37l-.24-.705a.51.51 0 0 0-.496-.35c-1.835.065-3.434.577-4.13.834a1.2 1.2 0 0 0-.6.474c-.75 1.142-3.085 5.242-3.02 11.944.003.4.169.78.485 1.025.716.556 2.259 1.576 4.702 2.314.358.108.75.004.962-.304.316-.462.597-1.04.796-1.494a.56.56 0 0 1 .669-.31c.87.248 1.993.439 3.39.439 1.393 0 2.512-.19 3.379-.437a.56.56 0 0 1 .669.31c.199.454.48 1.03.795 1.492.211.308.604.412.962.304 2.443-.738 3.986-1.758 4.703-2.314.315-.245.48-.626.485-1.025.063-6.652-2.236-10.74-3.003-11.917a1.25 1.25 0 0 0-.654-.5c-.75-.256-2.428-.763-4.094-.833a.505.505 0 0 0-.496.348l-.239.703a.586.586 0 0 1-.66.37 10.5 10.5 0 0 0-1.846-.15c-.827 0-1.461.08-1.862.152`},null,-1),R(`path`,{d:`M10 12.553c0 1.38-1.008 2.5-2.25 2.5-1.243 0-2.25-1.12-2.25-2.5 0-1.381 1.007-2.5 2.25-2.5 1.242 0 2.25 1.119 2.25 2.5m4 0c0 1.38 1.007 2.5 2.25 2.5 1.242 0 2.25-1.12 2.25-2.5 0-1.381-1.008-2.5-2.25-2.5-1.243 0-2.25 1.119-2.25 2.5`},null,-1)]])}var Tw,Ew,Dw,jze=s((()=>{FS(),G(),Tw=PS({default:()=>Dw,render:()=>ww}),Ew={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,viewBox:`0 0 24 24`},Dw={render:ww}}));function Ow(e,t){return F(),I(`svg`,Aw,[...t[0]||=[R(`path`,{fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M5.4 22.2h13c1.1 0 2-.9 2-2V3.6c0-1.1-.9-2-2-2h-9l-6 6v12.6c0 1.1.9 2 2 2`},null,-1),R(`path`,{fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M3.6 7.6h4c1.1 0 2-.9 2-2v-4zm9.4 0h4m-10 5h10M7 17.4h10`},null,-1)]])}var kw,Aw,jw,Mze=s((()=>{FS(),G(),kw=PS({default:()=>jw,render:()=>Ow}),Aw={xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 24 24`},jw={render:Ow}}));function Mw(e,t){return F(),I(`svg`,Pw,[...t[0]||=[R(`path`,{d:`M12.001 3.75v12m-4.5-4.5 4.5 4.5 4.5-4.5m6.75 4.5v1.5a3 3 0 0 1-3 3h-16.5a3 3 0 0 1-3-3v-1.5`},null,-1)]])}var Nw,Pw,Fw,Nze=s((()=>{FS(),G(),Nw=PS({default:()=>Fw,render:()=>Mw}),Pw={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,viewBox:`0 0 24 24`},Fw={render:Mw}}));function Iw(e,t){return F(),I(`svg`,Rw,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M7.42 16.58H3.25a.83.83 0 0 1-.83-.83V3.25a.83.83 0 0 1 .83-.83h12.5a.83.83 0 0 1 .83.83v4.17`},null,-1),R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M8.25 7.42h12.5s.83 0 .83.83v12.5s0 .83-.83.83H8.25s-.83 0-.83-.83V8.25s0-.83.83-.83`},null,-1)]])}var Lw,Rw,zw,Pze=s((()=>{FS(),G(),Lw=PS({default:()=>zw,render:()=>Iw}),Rw={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},zw={render:Iw}}));function Bw(e,t){return F(),I(`svg`,Hw,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M14 3H5.571A2.57 2.57 0 0 0 3 5.571V18.43A2.57 2.57 0 0 0 5.571 21H18.43A2.57 2.57 0 0 0 21 18.429V10m.96-5.35a1.845 1.845 0 0 0-2.61-2.61l-6.644 6.647a1.3 1.3 0 0 0-.328.543l-.864 2.849a.327.327 0 0 0 .408.407l2.849-.864c.205-.062.391-.174.543-.325l6.645-6.647Z`},null,-1)]])}var Vw,Hw,Uw,Fze=s((()=>{FS(),G(),Vw=PS({default:()=>Uw,render:()=>Bw}),Hw={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},Uw={render:Bw}}));function Ww(e,t){return F(),I(`svg`,Kw,[...t[0]||=[R(`path`,{d:`M6 11c-.5 0-1 .4-1 1s.5 1 1 1 1-.4 1-1-.5-1-1-1m12 0c-.6 0-1 .4-1 1s.4 1 1 1 1-.4 1-1-.4-1-1-1m-6 0c-.6 0-1 .4-1 1s.4 1 1 1 1-.4 1-1-.4-1-1-1`},null,-1)]])}var Gw,Kw,qw,Ize=s((()=>{FS(),G(),Gw=PS({default:()=>qw,render:()=>Ww}),Kw={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,viewBox:`0 0 24 24`},qw={render:Ww}}));function Jw(e,t){return F(),I(`svg`,Xw,[...t[0]||=[R(`path`,{d:`M2.25 4.5h19.5s1.5 0 1.5 1.5v12s0 1.5-1.5 1.5H2.25s-1.5 0-1.5-1.5V6s0-1.5 1.5-1.5m13.437 5.475L19.5 13.5M8.313 9.975 4.5 13.5`},null,-1),R(`path`,{d:`m22.88 5.014-9.513 6.56a2.41 2.41 0 0 1-2.734 0L1.12 5.014`},null,-1)]])}var Yw,Xw,Zw,Lze=s((()=>{FS(),G(),Yw=PS({default:()=>Zw,render:()=>Jw}),Xw={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,viewBox:`0 0 24 24`},Zw={render:Jw}}));function Qw(e,t){return F(),I(`svg`,eT,[...t[0]||=[R(`path`,{d:`M12 17.6c-.2 0-.4-.2-.4-.4s.2-.4.4-.4m0 .8c.2 0 .4-.2.4-.4s-.2-.4-.4-.4m0-3V5.6`},null,-1),R(`path`,{d:`M12 22c5.5 0 10-4.5 10-10S17.5 2 12 2 2 6.5 2 12s4.5 10 10 10`},null,-1)]])}var $w,eT,tT,Rze=s((()=>{FS(),G(),$w=PS({default:()=>tT,render:()=>Qw}),eT={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,viewBox:`0 0 24 24`},tT={render:Qw}}));function nT(e,t){return F(),I(`svg`,iT,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`m18.59 15.3 2.9-2.91a1.32 1.32 0 0 0 0-1.87l-1.85-1.85a3.3 3.3 0 1 1-4.31-4.31L13.48 2.5a1.32 1.32 0 0 0-1.87 0l-2.9 2.91a3.3 3.3 0 1 0-3.3 3.3l-2.9 2.9a1.32 1.32 0 0 0 0 1.87l1.85 1.85a3.3 3.3 0 1 1 4.31 4.31l1.85 1.85a1.32 1.32 0 0 0 1.87 0l2.9-2.9a3.3 3.3 0 1 0 3.3-3.3Z`},null,-1)]])}var rT,iT,aT,zze=s((()=>{FS(),G(),rT=PS({default:()=>aT,render:()=>nT}),iT={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},aT={render:nT}}));function oT(e,t){return F(),I(`svg`,cT,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M6.4 4H20v13.59M4 20 20 4`},null,-1)]])}var sT,cT,lT,Bze=s((()=>{FS(),G(),sT=PS({default:()=>lT,render:()=>oT}),cT={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},lT={render:oT}}));function uT(e,t){return F(),I(`svg`,fT,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M4 6h16M7.556 12h8.888m-6.222 6h3.556`},null,-1)]])}var dT,fT,pT,Vze=s((()=>{FS(),G(),dT=PS({default:()=>pT,render:()=>uT}),fT={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},pT={render:uT}}));function mT(e,t){return F(),I(`svg`,gT,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2z`},null,-1)]])}var hT,gT,_T,Hze=s((()=>{FS(),G(),hT=PS({default:()=>_T,render:()=>mT}),gT={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},_T={render:mT}}));function vT(e,t){return F(),I(`svg`,bT,[...t[0]||=[R(`path`,{d:`M512 0a512 512 0 0 0-162 998c26 4 35-11 35-25l-1-95c-128 23-161-32-172-60-6-15-31-61-52-73-18-10-44-33-1-33 40-1 69 37 78 52 46 78 120 56 149 43 5-33 18-56 33-69-114-13-234-56-234-253 0-56 20-101 53-137-5-13-23-65 5-136 0 0 43-13 141 53a487 487 0 0 1 256 0c98-66 141-53 141-53 28 71 10 123 5 136 33 36 53 81 53 137 0 197-120 240-234 253 18 16 35 47 35 95l-1 140c0 14 9 30 35 25A512 512 0 0 0 512 0`},null,-1)]])}var yT,bT,xT,Uze=s((()=>{FS(),G(),yT=PS({default:()=>xT,render:()=>vT}),bT={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 1024 1024`},xT={render:vT}}));function ST(e,t){return F(),I(`svg`,wT,[...t[0]||=[R(`path`,{d:`M16.643 22.94v-3.135a3.68 3.68 0 0 0-1.026-2.852c3.43-.382 7.036-1.682 7.036-7.648a5.94 5.94 0 0 0-1.64-4.097 5.54 5.54 0 0 0-.097-4.12s-1.29-.382-4.272 1.618a14.6 14.6 0 0 0-7.649 0c-2.982-2-4.272-1.617-4.272-1.617a5.54 5.54 0 0 0-.098 4.119 5.94 5.94 0 0 0-1.639 4.13c0 5.922 3.606 7.222 7.036 7.648a3.68 3.68 0 0 0-1.027 2.819v3.136m0-2.186c-3.277 1.064-6.009 0-7.648-3.278`},null,-1)]])}var CT,wT,TT,Wze=s((()=>{FS(),G(),CT=PS({default:()=>TT,render:()=>ST}),wT={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,viewBox:`0 0 24 24`},TT={render:ST}}));function ET(e,t){return F(),I(`svg`,Kze,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M22 12c0 5.523-4.477 10-10 10m10-10c0-5.523-4.477-10-10-10m10 10H2m10 10C6.477 22 2 17.523 2 12m10 10a14.5 14.5 0 0 1 0-20m0 20a14.5 14.5 0 0 0 0-20M2 12C2 6.477 6.477 2 12 2`},null,-1)]])}var Gze,Kze,qze,Jze=s((()=>{FS(),G(),Gze=PS({default:()=>qze,render:()=>ET}),Kze={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},qze={render:ET}}));function Yze(e,t){return F(),I(`svg`,Zze,[...t[0]||=[R(`path`,{d:`M23.93 10.67a.76.76 0 0 0-.75-.67H12.75a.76.76 0 0 0-.75.75v3.5a.76.76 0 0 0 .75.75h5.58A7 7 0 1 1 12 5a7 7 0 0 1 4.23 1.42.74.74 0 0 0 1-.07l2.47-2.49a.75.75 0 0 0 .22-.57.77.77 0 0 0-.27-.54A12 12 0 1 0 24 12a12 12 0 0 0-.07-1.33`},null,-1)]])}var Xze,Zze,Qze,$ze=s((()=>{FS(),G(),Xze=PS({default:()=>Qze,render:()=>Yze}),Zze={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 24 24`},Qze={render:Yze}}));function eBe(e,t){return F(),I(`svg`,nBe,[...t[0]||=[R(`path`,{d:`M9.2 9.2c0-.5.1-1 .4-1.5s.6-.8 1.1-1q.75-.3 1.5-.3c.75 0 1 .2 1.4.5s.7.7 1 1.2c.2.5.3 1 .2 1.5s-.3 1-.6 1.4-.8.7-1.2.9c-.255.128-.5.3-.7.5s-.3.5-.3.8v.9m0 3.5c-.2 0-.4-.2-.4-.4s.2-.4.4-.4.4.2.4.4-.2.4-.4.4`},null,-1),R(`path`,{d:`M12 22c5.524 0 10-4.476 10-10S17.524 2 12 2 2 6.476 2 12s4.476 10 10 10`},null,-1)]])}var tBe,nBe,rBe,iBe=s((()=>{FS(),G(),tBe=PS({default:()=>rBe,render:()=>eBe}),nBe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,viewBox:`0 0 24 24`},rBe={render:eBe}}));function aBe(e,t){return F(),I(`svg`,sBe,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M9.88 14.12a3 3 0 1 1 4.24-4.24m-3.39 9.04q.632.079 1.27.08c7 0 10-7 10-7a13.2 13.2 0 0 0-1.67-2.68M6.61 17.39A13.5 13.5 0 0 1 2 12s3-7 10-7a9.74 9.74 0 0 1 5.39 1.61M2 22 22 2`},null,-1)]])}var oBe,sBe,cBe,lBe=s((()=>{FS(),G(),oBe=PS({default:()=>cBe,render:()=>aBe}),sBe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},cBe={render:aBe}}));function uBe(e,t){return F(),I(`svg`,fBe,[...t[0]||=[R(`path`,{d:`M12.9 6.8v6.1h4.7`},null,-1),R(`path`,{d:`M6.1 17.2c1.6 2.2 4.2 3.6 7.1 3.6 4.8 0 8.8-3.9 8.8-8.8s-3.9-8.8-8.8-8.8-8.8 4-8.8 8.8v1.7M2 11.3l2.4 2.4 2.4-2.4`},null,-1)]])}var dBe,fBe,pBe,mBe=s((()=>{FS(),G(),dBe=PS({default:()=>pBe,render:()=>uBe}),fBe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,viewBox:`0 0 24 24`},pBe={render:uBe}}));function hBe(e,t){return F(),I(`svg`,_Be,[...t[0]||=[R(`path`,{d:`M22.1 9.2 12 1.5 1.8 9.2c-.2.2-.3.5-.4.7v11.7c0 .5.4.9.9.9h6.1v-4.9c0-1.9 1.6-3.5 3.5-3.5s3.5 1.6 3.5 3.5v4.9h6.1c.5 0 .9-.4.9-.9V9.9c0-.3-.1-.6-.4-.7z`},null,-1)]])}var gBe,_Be,vBe,yBe=s((()=>{FS(),G(),gBe=PS({default:()=>vBe,render:()=>hBe}),_Be={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,viewBox:`0 0 24 24`},vBe={render:hBe}}));function bBe(e,t){return F(),I(`svg`,SBe,[...t[0]||=[R(`path`,{d:`M12 10.67v7.98M14.66 16 12 18.64 9.34 16`},null,-1),R(`path`,{d:`M3.35 7.34h17.3s1.33 0 1.33 1.33v11.98s0 1.33-1.33 1.33H3.35s-1.33 0-1.33-1.33V8.67s0-1.33 1.33-1.33`},null,-1),R(`path`,{d:`m2.2 8 2.13-5.19a1.33 1.33 0 0 1 1.22-.79h12.9a1.33 1.33 0 0 1 1.22.8l2.08 5.1M12 7.34V2.02`},null,-1)]])}var xBe,SBe,CBe,wBe=s((()=>{FS(),G(),xBe=PS({default:()=>CBe,render:()=>bBe}),SBe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,viewBox:`0 0 24 24`},CBe={render:bBe}}));function TBe(e,t){return F(),I(`svg`,DBe,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10`},null,-1),R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M12 17v-6 0a.5.5 0 0 0-.5-.5l-.5.001h-1M12 17h-2m2 0h2`},null,-1),R(`path`,{fill:`currentColor`,"fill-rule":`evenodd`,d:`M10.75 7.5a1 1 0 1 1 2 0 1 1 0 0 1-2 0`,"clip-rule":`evenodd`},null,-1)]])}var EBe,DBe,OBe,kBe=s((()=>{FS(),G(),EBe=PS({default:()=>OBe,render:()=>TBe}),DBe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},OBe={render:TBe}}));function ABe(e,t){return F(),I(`svg`,MBe,[...t[0]||=[R(`path`,{d:`M12.82 14.51 15.36 12l1.76.47a1.56 1.56 0 0 0 1.51-.47 1.58 1.58 0 0 0 .37-1.49l-.47-1.75.82-.76 1.76.47A1.56 1.56 0 0 0 22.62 8 1.58 1.58 0 0 0 23 6.52l-.47-1.75a2.35 2.35 0 0 0-3.33-3.33l-9.71 9.74a6.29 6.29 0 1 0 3.33 3.33`},null,-1),R(`path`,{d:`M4.26 17.84a1.9 1.9 0 1 0 3.8 0 1.9 1.9 0 1 0-3.8 0`},null,-1)]])}var jBe,MBe,NBe,PBe=s((()=>{FS(),G(),jBe=PS({default:()=>NBe,render:()=>ABe}),MBe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,viewBox:`0 0 24 24`},NBe={render:ABe}}));function FBe(e,t){return F(),I(`svg`,LBe,[...t[0]||=[R(`path`,{d:`M16.35 16.5v1c0 1.1-.9 2-2 2H2.75c-1.1 0-2-.9-2-2v-11c0-1.1.9-2 2-2h11.6c1.1 0 2 .9 2 2v1M5.25 12h18m0 0-3 3.1m3-3.1-3-2.9`},null,-1)]])}var IBe,LBe,RBe,zBe=s((()=>{FS(),G(),IBe=PS({default:()=>RBe,render:()=>FBe}),LBe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,viewBox:`0 0 24 24`},RBe={render:FBe}}));function BBe(e,t){return F(),I(`svg`,HBe,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M6.55 12a5.46 5.46 0 1 0 10.91.481A5.46 5.46 0 0 0 6.55 12m0 0H2m4.55 0H4.73m12.31 2.1a5.46 5.46 0 0 1-6.614-6.887M12 2v4.55m7.08-1.62-3.22 3.22M22 12h-4.54m1.62 7.08L16 16.01M12 22v-4m-7.07 1.08L8 16.01M4.93 4.93l3.22 3.22`},null,-1)]])}var VBe,HBe,UBe,WBe=s((()=>{FS(),G(),VBe=PS({default:()=>UBe,render:()=>BBe}),HBe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},UBe={render:BBe}}));function GBe(e,t){return F(),I(`svg`,qBe,[...t[0]||=[R(`path`,{fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M7.501 12a4.5 4.5 0 1 0 9 0 4.5 4.5 0 1 0-9 0m4.5-10.5v3m0 15v3m10.5-10.5h-3m-15 0h-3m17.924-7.424-2.121 2.121M6.697 17.304l-2.121 2.121m14.849 0-2.121-2.121M6.697 6.697 4.576 4.576`},null,-1)]])}var KBe,qBe,JBe,YBe=s((()=>{FS(),G(),KBe=PS({default:()=>JBe,render:()=>GBe}),qBe={xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 24 24`},JBe={render:GBe}}));function XBe(e,t){return F(),I(`svg`,QBe,[...t[0]||=[R(`path`,{d:`M13.5 18 12 19.5c-1 1-2.3 1.5-3.7 1.5s-2.7-.6-3.7-1.5c-1-1-1.5-2.3-1.5-3.7s.6-2.7 1.5-3.7l1.5-1.5M10.5 6 12 4.5c1-1 2.3-1.5 3.7-1.5s2.7.6 3.7 1.5c1 1 1.5 2.3 1.5 3.7s-.6 2.7-1.5 3.7l-1.5 1.5M9 15l6-6`},null,-1)]])}var ZBe,QBe,$Be,eVe=s((()=>{FS(),G(),ZBe=PS({default:()=>$Be,render:()=>XBe}),QBe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,viewBox:`0 0 24 24`},$Be={render:XBe}}));function tVe(e,t){return F(),I(`svg`,rVe,[...t[0]||=[R(`path`,{d:`M12 17a1 1 0 1 0 0-2 1 1 0 0 0 0 2`},null,-1),R(`path`,{d:`M5.778 10h12.444c.982 0 1.778.895 1.778 2v8c0 1.105-.796 2-1.778 2H5.778C4.796 22 4 21.105 4 20v-8c0-1.105.796-2 1.778-2M7 10V7a5 5 0 1 1 10 0v3`},null,-1)]])}var nVe,rVe,iVe,aVe=s((()=>{FS(),G(),nVe=PS({default:()=>iVe,render:()=>tVe}),rVe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,viewBox:`0 0 24 24`},iVe={render:tVe}}));function oVe(e,t){return F(),I(`svg`,cVe,[...t[0]||=[R(`path`,{"fill-rule":`evenodd`,d:`M347 0c6 0 12 5 12 12v134l94-95c5-5 13-5 17 0l72 72c4 4 5 12 0 16v1l-95 94h134c7 0 12 5 12 12v101c0 7-5 12-12 12H447l95 94c4 5 5 13 0 17l-72 72c-4 4-12 5-16 0h-1l-94-95v134c0 7-5 12-12 12H246c-7 0-12-5-12-12v-70c0-22 9-43 24-59l130-130c14-14 14-37 0-51L259 142a84 84 0 0 1-25-59V12c0-7 5-12 12-12zM138 52h1l219 219c14 14 14 37 0 51L139 542c-4 5-12 5-17 0l-71-70c-4-5-5-12 0-17l95-96H12c-7 0-12-5-12-12V246c0-7 5-12 12-12h134l-95-94c-4-5-4-12 0-17l71-71c4-5 12-5 16 0`},null,-1)]])}var sVe,cVe,lVe,uVe=s((()=>{FS(),G(),sVe=PS({default:()=>lVe,render:()=>oVe}),cVe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 593 593`},lVe={render:oVe}}));function dVe(e,t){return F(),I(`svg`,pVe,[...t[0]||=[R(`path`,{fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`m.75 23.25 15-15m-5.25 0H8.25m15 0H21M21 3l-1.591 1.591M15.75 3V.75m0 15V13.5m-3.659-8.909L10.5 3M21 13.5l-1.591-1.591`},null,-1)]])}var fVe,pVe,mVe,hVe=s((()=>{FS(),G(),fVe=PS({default:()=>mVe,render:()=>dVe}),pVe={xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 24 24`},mVe={render:dVe}}));function gVe(e,t){return F(),I(`svg`,vVe,[...t[0]||=[R(`path`,{fill:`currentColor`,d:`M3 16.142V8.245h2.323l2.322 2.903 2.323-2.903h2.322v7.897H9.968v-4.53l-2.323 2.904-2.322-2.903v4.529zm14.516 0-3.484-3.832h2.323V8.245h2.322v4.065H21z`},null,-1)]])}var _Ve,vVe,yVe,bVe=s((()=>{FS(),G(),_Ve=PS({default:()=>yVe,render:()=>gVe}),vVe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},yVe={render:gVe}}));function xVe(e,t){return F(),I(`svg`,CVe,[...t[0]||=[R(`path`,{fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M22 6.8H2m20 10.4H2`},null,-1)]])}var SVe,CVe,wVe,TVe=s((()=>{FS(),G(),SVe=PS({default:()=>wVe,render:()=>xVe}),CVe={xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 24 24`},wVe={render:xVe}}));function EVe(e,t){return F(),I(`svg`,OVe,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`m4.9 4.9 14.2 14.2M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10`},null,-1)]])}var DVe,OVe,kVe,AVe=s((()=>{FS(),G(),DVe=PS({default:()=>kVe,render:()=>EVe}),OVe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},kVe={render:EVe}}));function jVe(e,t){return F(),I(`svg`,NVe,[...t[0]||=[R(`path`,{d:`M17.333 5.34c1.39-.22 2.796-.334 4.205-.34.121 0 .238.043.329.122a.44.44 0 0 1 .133.314v13.73a.44.44 0 0 1-.133.306.46.46 0 0 1-.311.13C14.186 19.708 12 22 12 22m0 0V7.38S9.822 5.096 2.462 5a.5.5 0 0 0-.329.122.44.44 0 0 0-.133.314v13.73a.44.44 0 0 0 .133.306.46.46 0 0 0 .311.13C9.814 19.708 12 22 12 22`},null,-1),R(`path`,{d:`M12 22a5.67 5.67 0 0 1 1.367-3.135c.967-1.141 2.237-1.923 3.633-2.236V2.443a.45.45 0 0 0-.051-.21.4.4 0 0 0-.14-.154.47.47 0 0 0-.409-.054 6.44 6.44 0 0 0-3.033 2.063A5.86 5.86 0 0 0 12 7.205`},null,-1)]])}var MVe,NVe,PVe,FVe=s((()=>{FS(),G(),MVe=PS({default:()=>PVe,render:()=>jVe}),NVe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,viewBox:`0 0 24 24`},PVe={render:jVe}}));function IVe(e,t){return F(),I(`svg`,RVe,[...t[0]||=[R(`path`,{d:`M17 3a2.85 2.85 0 0 1 2.064-1.007 2.87 2.87 0 0 1 2.14.834 2.83 2.83 0 0 1 .825 2.131A2.8 2.8 0 0 1 21 7L7.5 20.5 2 22l1.5-5.5z`},null,-1)]])}var LVe,RVe,zVe,BVe=s((()=>{FS(),G(),LVe=PS({default:()=>zVe,render:()=>IVe}),RVe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,viewBox:`0 0 24 24`},zVe={render:IVe}}));function VVe(e,t){return F(),I(`svg`,UVe,[...t[0]||=[R(`path`,{d:`M6 6.663c0-1.582 1.75-2.538 3.082-1.682l8.301 5.337a2 2 0 0 1 0 3.364L9.082 19.02C7.75 19.875 6 18.919 6 17.337z`},null,-1)]])}var HVe,UVe,WVe,GVe=s((()=>{FS(),G(),HVe=PS({default:()=>WVe,render:()=>VVe}),UVe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,viewBox:`0 0 24 24`},WVe={render:VVe}}));function KVe(e,t){return F(),I(`svg`,JVe,[...t[0]||=[R(`path`,{fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M5.25 14.248v4.5H.75m18-9v-4.5h4.5m-4.218-.003A9.752 9.752 0 0 1 8.246 21m-3.279-2.249A9.753 9.753 0 0 1 15.754 3`},null,-1)]])}var qVe,JVe,YVe,XVe=s((()=>{FS(),G(),qVe=PS({default:()=>YVe,render:()=>KVe}),JVe={xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 24 24`},YVe={render:KVe}}));function ZVe(e,t){return F(),I(`svg`,$Ve,[...t[0]||=[R(`path`,{d:`M16.22 2.663a1.47 1.47 0 0 0-1.09 0L8.87 5.167c-.35.14-.74.14-1.09 0L1.982 2.848a.735.735 0 0 0-1.008.686V17.62c0 .601.366 1.142.924 1.365l5.88 2.352c.35.14.742.14 1.092 0l6.258-2.504c.35-.14.741-.14 1.092 0l5.796 2.315a.735.735 0 0 0 1.008-.686V6.38a1.47 1.47 0 0 0-.924-1.365ZM8.325 5.272v16.17m7.35-18.884v16.17`},null,-1)]])}var QVe,$Ve,eHe,tHe=s((()=>{FS(),G(),QVe=PS({default:()=>eHe,render:()=>ZVe}),$Ve={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,viewBox:`0 0 24 24`},eHe={render:ZVe}}));function nHe(e,t){return F(),I(`svg`,iHe,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M3 15c1.895 3 3.79 4 6.632 4s6.631-3 6.631-7-2.842-7-5.684-7-4.737 1.5-4.737 4 1.895 5 5.684 5S19.492 11.547 21 9`},null,-1)]])}var rHe,iHe,aHe,oHe=s((()=>{FS(),G(),rHe=PS({default:()=>aHe,render:()=>nHe}),iHe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},aHe={render:nHe}}));function sHe(e,t){return F(),I(`svg`,lHe,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M11 19a8 8 0 1 0 0-16 8 8 0 0 0 0 16m10 2-4.35-4.35`},null,-1)]])}var cHe,lHe,uHe,dHe=s((()=>{FS(),G(),cHe=PS({default:()=>uHe,render:()=>sHe}),lHe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},uHe={render:sHe}}));function fHe(e,t){return F(),I(`svg`,mHe,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M20 12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2m16 0H4m16 0a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2`},null,-1),R(`path`,{fill:`currentColor`,d:`M18 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2m0 8a1 1 0 1 0 0-2 1 1 0 0 0 0 2`},null,-1),R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M6 8h4m-4 8h4`},null,-1)]])}var pHe,mHe,hHe,gHe=s((()=>{FS(),G(),pHe=PS({default:()=>hHe,render:()=>fHe}),mHe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},hHe={render:fHe}}));function _He(e,t){return F(),I(`svg`,yHe,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M20 7H9m0 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0m7 10H5m11 0a2 2 0 1 0 4 0 2 2 0 0 0-4 0`},null,-1)]])}var vHe,yHe,bHe,xHe=s((()=>{FS(),G(),vHe=PS({default:()=>bHe,render:()=>_He}),yHe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},bHe={render:_He}}));function SHe(e,t){return F(),I(`svg`,wHe,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7`},null,-1),R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6`},null,-1)]])}var CHe,wHe,THe,EHe=s((()=>{FS(),G(),CHe=PS({default:()=>THe,render:()=>SHe}),wHe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},THe={render:SHe}}));function DHe(e,t){return F(),I(`svg`,kHe,[...t[0]||=[R(`path`,{fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M2 5.4h20M2 12h20M2 18.6h13.3`},null,-1)]])}var OHe,kHe,AHe,jHe=s((()=>{FS(),G(),OHe=PS({default:()=>AHe,render:()=>DHe}),kHe={xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 24 24`},AHe={render:DHe}}));function MHe(e,t){return F(),I(`svg`,PHe,[...t[0]||=[R(`path`,{fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M13 15h5M6 9l4 3-4 3`},null,-1),R(`path`,{fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M21 2.8H3.1c-.7 0-1.4.6-1.4 1.4v15.6c0 .7.6 1.4 1.4 1.4H21c.7 0 1.4-.6 1.4-1.4V4.2c0-.8-.5-1.4-1.3-1.4z`},null,-1)]])}var NHe,PHe,FHe,IHe=s((()=>{FS(),G(),NHe=PS({default:()=>FHe,render:()=>MHe}),PHe={xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 24 24`},FHe={render:MHe}}));function LHe(e,t){return F(),I(`svg`,zHe,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`m19.5 5.75-1.51 14.34a1.67 1.67 0 0 1-1.66 1.5H7.67A1.67 1.67 0 0 1 6 20.08L4.5 5.75m-2.08 0h19.16m-13.33 0v-2.5a.83.83 0 0 1 .83-.83h5.84a.83.83 0 0 1 .83.83v2.5M12 9.5v8.75m3.75-8.75-.42 8.75M8.25 9.5l.42 8.75`},null,-1)]])}var RHe,zHe,BHe,VHe=s((()=>{FS(),G(),RHe=PS({default:()=>BHe,render:()=>LHe}),zHe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},BHe={render:LHe}}));function HHe(e,t){return F(),I(`svg`,WHe,[...t[0]||=[R(`path`,{d:`M12 17a1 1 0 1 0 0-2 1 1 0 0 0 0 2`},null,-1),R(`path`,{d:`M5.778 10h12.444c.982 0 1.778.895 1.778 2v8c0 1.105-.796 2-1.778 2H5.778C4.796 22 4 21.105 4 20v-8c0-1.105.796-2 1.778-2M17 10V7a5 5 0 0 0-9.33-2.5`},null,-1)]])}var UHe,WHe,GHe,KHe=s((()=>{FS(),G(),UHe=PS({default:()=>GHe,render:()=>HHe}),WHe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,viewBox:`0 0 24 24`},GHe={render:HHe}}));function qHe(e,t){return F(),I(`svg`,YHe,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M4.9 19.1c-3.038-3.038-3.71-7.592-2.015-11.3M7.8 16.2c-1.397-1.397-1.945-3.346-1.646-5.2M16.2 7.8c2.3 2.3 2.3 6.1 0 8.5m2.9-11.4C23 8.8 23 15.1 19.1 19m-8.423-8.5a2 2 0 0 1 2.75 2.901M22 22 2 2`},null,-1)]])}var JHe,YHe,XHe,ZHe=s((()=>{FS(),G(),JHe=PS({default:()=>XHe,render:()=>qHe}),YHe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},XHe={render:qHe}}));function QHe(e,t){return F(),I(`svg`,eUe,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M12 4.33v15.32m5.37-9.95L12 4.33 6.63 9.7`},null,-1)]])}var $He,eUe,tUe,nUe=s((()=>{FS(),G(),$He=PS({default:()=>tUe,render:()=>QHe}),eUe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},tUe={render:QHe}}));function rUe(e,t){return F(),I(`svg`,aUe,[...t[0]||=[R(`path`,{d:`M3.5 22.2c.3-4.5 4-8 8.5-8s8.2 3.5 8.5 8z`},null,-1),R(`circle`,{cx:`12`,cy:`6.2`,r:`4.5`},null,-1)]])}var iUe,aUe,oUe,sUe=s((()=>{FS(),G(),iUe=PS({default:()=>oUe,render:()=>rUe}),aUe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,viewBox:`0 0 24 24`},oUe={render:rUe}}));function cUe(e,t){return F(),I(`svg`,uUe,[...t[0]||=[R(`path`,{d:`M11.101 1.488H4.83a1 1 0 0 0-1 1v6.614m9.069 13.41h6.272a1 1 0 0 0 1-1v-6.614`},null,-1),R(`path`,{d:`m1.23 6.5 2.6 2.6 2.601-2.6m16.339 11-2.6-2.6-2.601 2.6M5.505 18.546a2.551 2.551 0 1 0 0-5.103 2.551 2.551 0 0 0 0 5.103m4.277 3.965c-.559-1.83-2.29-3.202-4.276-3.202-1.988 0-3.718 1.372-4.277 3.202m17.264-15.92a2.551 2.551 0 1 0 0-5.103 2.551 2.551 0 0 0 0 5.103m4.277 3.965c-.559-1.83-2.289-3.202-4.276-3.202s-3.718 1.372-4.276 3.202`},null,-1)]])}var lUe,uUe,dUe,fUe=s((()=>{FS(),G(),lUe=PS({default:()=>dUe,render:()=>cUe}),uUe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,viewBox:`0 0 24 24`},dUe={render:cUe}}));function pUe(e,t){return F(),I(`svg`,hUe,[...t[0]||=[R(`path`,{d:`M3.375 7.875a4.125 4.125 0 1 0 8.25 0 4.125 4.125 0 1 0-8.25 0M.75 20.25a6.75 6.75 0 0 1 13.5 0m.001-15.834a4.125 4.125 0 1 1-.006 6.914M15 13.667a6.757 6.757 0 0 1 8.25 6.583`},null,-1)]])}var mUe,hUe,gUe,_Ue=s((()=>{FS(),G(),mUe=PS({default:()=>gUe,render:()=>pUe}),hUe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,viewBox:`0 0 24 24`},gUe={render:pUe}}));function vUe(e,t){return F(),I(`svg`,bUe,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`m5.246 12.069-2.74 1.569a1 1 0 0 0 .001 1.74l8.5 4.87a2 2 0 0 0 2 0l8.5-4.87a.999.999 0 0 0 0-1.74l-2.702-1.548m-5.798 3.158a2 2 0 0 1-2 0l-8.5-4.87a1 1 0 0 1 0-1.74l8.5-4.87a2 2 0 0 1 2 0l8.5 4.87a1 1 0 0 1 0 1.74z`},null,-1)]])}var yUe,bUe,xUe,SUe=s((()=>{FS(),G(),yUe=PS({default:()=>xUe,render:()=>vUe}),bUe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},xUe={render:vUe}}));function CUe(e,t){return F(),I(`svg`,TUe,[...t[0]||=[R(`path`,{d:`M2.97 2.771 13.908 5.88a3.77 3.77 0 0 1 2.592 3.5v10.51a2.052 2.052 0 0 1-2.6 2.167l-9.048-2.46a3.7 3.7 0 0 1-2.6-3.457V4.688a2.75 2.75 0 0 1 2.67-2.813H18.75a3 3 0 0 1 3 3v8.953a3.073 3.073 0 0 1-3.11 3.047H16.5`},null,-1),R(`path`,{d:`M12.375 13.875a.375.375 0 0 1 0-.75m0 .75a.375.375 0 0 0 0-.75m9.375-3.75H16.5`},null,-1)]])}var wUe,TUe,EUe,DUe=s((()=>{FS(),G(),wUe=PS({default:()=>EUe,render:()=>CUe}),TUe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,viewBox:`0 0 24 24`},EUe={render:CUe}}));function OUe(e,t){return F(),I(`svg`,AUe,[...t[0]||=[R(`path`,{stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M4.9 19.1C1 15.2 1 8.8 4.9 4.9m2.9 11.3c-2.3-2.3-2.3-6.1 0-8.5m8.4.1c2.3 2.3 2.3 6.1 0 8.5m2.9-11.4C23 8.8 23 15.1 19.1 19M14 12a2 2 0 1 1-4 0 2 2 0 0 1 4 0`},null,-1)]])}var kUe,AUe,jUe,MUe=s((()=>{FS(),G(),kUe=PS({default:()=>jUe,render:()=>OUe}),AUe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},jUe={render:OUe}}));function NUe(e,t){return F(),I(`svg`,FUe,[...t[0]||=[R(`path`,{d:`M20.25 3.75v19.5M3.75 3.75h16.5m-16.5 19.5V3.75m16.5 19.5H3.75m16.5-19.5H3.75l1.5-3h13.5zM.75 23.25h22.5m-9-2.25a2.25 2.25 0 0 0-4.5 0v2.25h4.5zM7.5 7.13a.37.37 0 1 1 0-.75m0 .75a.37.37 0 1 0 0-.75m4.5.75a.38.38 0 0 1 0-.75m0 .75a.38.38 0 0 0 0-.75m4.5.75a.38.38 0 0 1 0-.75m0 .75a.38.38 0 0 0 0-.75m-9 5.25a.38.38 0 0 1 0-.76m0 .76a.38.38 0 0 0 0-.76m4.5.76a.38.38 0 0 1 0-.76m0 .76a.38.38 0 0 0 0-.76m4.5.76a.38.38 0 0 1 0-.76m0 .76a.38.38 0 0 0 0-.76m-9 5.26a.38.38 0 0 1 0-.75m0 .75a.38.38 0 0 0 0-.75m4.5.75a.38.38 0 0 1 0-.75m0 .75a.38.38 0 0 0 0-.75m4.5.75a.38.38 0 0 1 0-.75m0 .75a.38.38 0 0 0 0-.75`},null,-1)]])}var PUe,FUe,IUe,LUe=s((()=>{FS(),G(),PUe=PS({default:()=>IUe,render:()=>NUe}),FUe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,viewBox:`0 0 24 24`},IUe={render:NUe}}));function RUe(e,t){return F(),I(`svg`,BUe,[...t[0]||=[R(`path`,{d:`M9.931 12.645h4.138l-2.07-4.908m0-7.737L.68 3.982l1.726 14.771L12 24l9.596-5.242L23.32 3.984zm7.064 18.31h-2.638l-1.422-3.503H8.996l-1.422 3.504h-2.64L12 2.65z`},null,-1)]])}var zUe,BUe,VUe,HUe=s((()=>{FS(),G(),zUe=PS({default:()=>VUe,render:()=>RUe}),BUe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 24 24`},VUe={render:RUe}}));function UUe(e,t){return F(),I(`svg`,GUe,[...t[0]||=[R(`path`,{d:`M16.074 16.86c-.72.616-2.157 1.035-3.812 1.035-2.032 0-3.735-.632-4.187-1.483-.161.488-.198 1.046-.198 1.402 0 0-.106 1.75 1.111 2.968 0-.632.513-1.145 1.145-1.145 1.083 0 1.082.945 1.081 1.712v.069c0 1.164.711 2.161 1.723 2.582a2.35 2.35 0 0 1-.236-1.029c0-1.11.652-1.523 1.41-2.003.602-.383 1.272-.807 1.733-1.66a3.1 3.1 0 0 0 .378-1.494 3.1 3.1 0 0 0-.148-.954M15.551.6c.196.244.296.572.496 1.229l4.368 14.347a18.2 18.2 0 0 0-5.222-1.768L12.35 4.8a.37.37 0 0 0-.71.002l-2.81 9.603a18.2 18.2 0 0 0-5.245 1.771L7.974 1.827c.2-.656.3-.984.497-1.227a1.6 1.6 0 0 1 .654-.484C9.415 0 9.757 0 10.443 0h3.135c.686 0 1.03 0 1.32.117A1.6 1.6 0 0 1 15.55.6z`},null,-1)]])}var WUe,GUe,KUe,qUe=s((()=>{FS(),G(),WUe=PS({default:()=>KUe,render:()=>UUe}),GUe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 24 24`},KUe={render:UUe}}));function JUe(e,t){return F(),I(`svg`,XUe,[...t[0]||=[R(`path`,{fill:`currentColor`,"fill-rule":`evenodd`,d:`M6.335.83a.75.75 0 0 0-.67 0L1.667 2.827a.75.75 0 0 0-.417.672V18c0 .271.146.52.382.654l7.989 4.493a.75.75 0 0 0 .747.007l8-4.5A.75.75 0 0 0 18.75 18v-4.537l3.585-1.792A.75.75 0 0 0 22.75 11V6a.75.75 0 0 0-.417-.672l-3.998-1.999a.75.75 0 0 0-.67 0l-3.997 1.999a.7.7 0 0 0-.246.194.75.75 0 0 0-.172.478v4.561l-2.5 1.407V3.5a.75.75 0 0 0-.43-.678L6.336.829Zm7.686 11.019 2.38 1.19-6.422 3.612-2.38-1.19zm3.229-.063-2.5-1.25V7.215l2.5 1.25zm1.5 0 2.5-1.25V7.215l-2.5 1.25zm-9.5 1.025V4.714l-2.5 1.25v8.254zm-1.005 4.65.743.372c.17.091.262.153.262.183v3.202l-6.5-3.657V4.714l2.5 1.25V15.5a.75.75 0 0 0 .415.67s1.122.591 2.108 1.064zm2.505.478 6.5-3.657v3.28l-6.5 3.656v-3.28ZM6 4.66 3.677 3.5 6 2.339 8.323 3.5zM20.323 6 18 4.839 15.677 6 18 7.161z`,"clip-rule":`evenodd`},null,-1)]])}var YUe,XUe,ZUe,QUe=s((()=>{FS(),G(),YUe=PS({default:()=>ZUe,render:()=>JUe}),XUe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},ZUe={render:JUe}}));function $Ue(e,t){return F(),I(`svg`,tWe,[...t[0]||=[R(`path`,{d:`M11.573 0a5 5 0 0 0-.359.007L10.85.04c-3.407.307-6.6 2.146-8.622 4.972a11.9 11.9 0 0 0-2.119 5.243c-.096.659-.108.854-.108 1.747s.012 1.089.108 1.748c.652 4.506 3.86 8.292 8.209 9.695.779.25 1.6.422 2.534.525.363.04 1.935.04 2.299 0 1.611-.178 2.977-.577 4.323-1.264.207-.106.247-.134.219-.158-.02-.013-.9-1.193-1.955-2.62l-1.919-2.592-2.404-3.558a339 339 0 0 0-2.422-3.556c-.009-.002-.018 1.579-.023 3.51-.007 3.38-.01 3.515-.052 3.595a.43.43 0 0 1-.206.214c-.075.037-.14.044-.495.044H7.81l-.108-.068a.44.44 0 0 1-.157-.171l-.05-.106.006-4.703.007-4.705.072-.092a.7.7 0 0 1 .174-.143c.096-.047.134-.051.54-.051.478 0 .558.018.682.154a467 467 0 0 1 2.895 4.361l4.735 7.17 1.9 2.879.096-.063a12.3 12.3 0 0 0 2.466-2.163 11.94 11.94 0 0 0 2.824-6.134c.096-.66.108-.854.108-1.748 0-.893-.012-1.088-.108-1.747-.652-4.506-3.859-8.292-8.208-9.695a12.6 12.6 0 0 0-2.499-.523A33 33 0 0 0 11.573 0m4.068 7.217c.347 0 .408.005.486.047a.47.47 0 0 1 .237.277c.018.06.023 1.365.018 4.304l-.006 4.218-.744-1.14-.746-1.14v-3.066c0-1.982.01-3.097.023-3.15a.48.48 0 0 1 .233-.296c.096-.05.13-.054.5-.054z`},null,-1)]])}var eWe,tWe,nWe,rWe=s((()=>{FS(),G(),eWe=PS({default:()=>nWe,render:()=>$Ue}),tWe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 24 24`},nWe={render:$Ue}}));function iWe(e,t){return F(),I(`svg`,oWe,[...t[0]||=[R(`path`,{d:`M14.23 12.004a2.236 2.236 0 0 1-2.235 2.236 2.236 2.236 0 0 1-2.236-2.236 2.236 2.236 0 0 1 2.235-2.236 2.236 2.236 0 0 1 2.236 2.236m2.648-10.69c-1.346 0-3.107.96-4.888 2.622-1.78-1.653-3.542-2.602-4.887-2.602-.41 0-.783.093-1.106.278-1.375.793-1.683 3.264-.973 6.365C1.98 8.917 0 10.42 0 12.004c0 1.59 1.99 3.097 5.043 4.03-.704 3.113-.39 5.588.988 6.38.32.187.69.275 1.102.275 1.345 0 3.107-.96 4.888-2.624 1.78 1.654 3.542 2.603 4.887 2.603.41 0 .783-.09 1.106-.275 1.374-.792 1.683-3.263.973-6.365C22.02 15.096 24 13.59 24 12.004c0-1.59-1.99-3.097-5.043-4.032.704-3.11.39-5.587-.988-6.38a2.17 2.17 0 0 0-1.092-.278zm-.005 1.09v.006c.225 0 .406.044.558.127.666.382.955 1.835.73 3.704-.054.46-.142.945-.25 1.44a23.5 23.5 0 0 0-3.107-.534A24 24 0 0 0 12.769 4.7c1.592-1.48 3.087-2.292 4.105-2.295zm-9.77.02c1.012 0 2.514.808 4.11 2.28-.686.72-1.37 1.537-2.02 2.442a23 23 0 0 0-3.113.538 15 15 0 0 1-.254-1.42c-.23-1.868.054-3.32.714-3.707.19-.09.4-.127.563-.132zm4.882 3.05q.684.704 1.36 1.564c-.44-.02-.89-.034-1.345-.034q-.691-.001-1.36.034c.44-.572.895-1.096 1.345-1.565zM12 8.1c.74 0 1.477.034 2.202.093q.61.874 1.183 1.86.557.961 1.018 1.946c-.308.655-.646 1.31-1.013 1.95-.38.66-.773 1.288-1.18 1.87a25.6 25.6 0 0 1-4.412.005 27 27 0 0 1-1.183-1.86q-.557-.961-1.018-1.946a25 25 0 0 1 1.013-1.954c.38-.66.773-1.286 1.18-1.868A25 25 0 0 1 12 8.098zm-3.635.254c-.24.377-.48.763-.704 1.16q-.336.585-.635 1.174c-.265-.656-.49-1.31-.676-1.947.64-.15 1.315-.283 2.015-.386zm7.26 0q1.044.153 2.006.387c-.18.632-.405 1.282-.66 1.933a26 26 0 0 0-1.345-2.32zm3.063.675q.727.226 1.375.498c1.732.74 2.852 1.708 2.852 2.476-.005.768-1.125 1.74-2.857 2.475-.42.18-.88.342-1.355.493a24 24 0 0 0-1.1-2.98c.45-1.017.81-2.01 1.085-2.964zm-13.395.004c.278.96.645 1.957 1.1 2.98a23 23 0 0 0-1.086 2.964c-.484-.15-.944-.318-1.37-.5-1.732-.737-2.852-1.706-2.852-2.474s1.12-1.742 2.852-2.476c.42-.18.88-.342 1.356-.494m11.678 4.28c.265.657.49 1.312.676 1.948-.64.157-1.316.29-2.016.39a26 26 0 0 0 1.341-2.338zm-9.945.02c.2.392.41.783.64 1.175q.345.586.705 1.143a22 22 0 0 1-2.006-.386c.18-.63.406-1.282.66-1.933zM17.92 16.32c.112.493.2.968.254 1.423.23 1.868-.054 3.32-.714 3.708-.147.09-.338.128-.563.128-1.012 0-2.514-.807-4.11-2.28.686-.72 1.37-1.536 2.02-2.44 1.107-.118 2.154-.3 3.113-.54zm-11.83.01c.96.234 2.006.415 3.107.532.66.905 1.345 1.727 2.035 2.446-1.595 1.483-3.092 2.295-4.11 2.295a1.2 1.2 0 0 1-.553-.132c-.666-.38-.955-1.834-.73-3.703.054-.46.142-.944.25-1.438zm4.56.64q.661.032 1.345.034.691.001 1.36-.034c-.44.572-.895 1.095-1.345 1.565q-.684-.706-1.36-1.565`},null,-1)]])}var aWe,oWe,sWe,cWe=s((()=>{FS(),G(),aWe=PS({default:()=>sWe,render:()=>iWe}),oWe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 24 24`},sWe={render:iWe}}));function lWe(e,t){return F(),I(`svg`,dWe,[...t[0]||=[R(`path`,{d:`M23.94 3a.5.5 0 0 0-.44-.25h-2.31l-8.55 13.91a.75.75 0 0 1-1.28 0L2.81 2.77H.5A.5.5 0 0 0 .06 3a.54.54 0 0 0 0 .51l11.5 19a.51.51 0 0 0 .86 0l11.5-19a.54.54 0 0 0 .02-.51`},null,-1),R(`path`,{d:`m12 14.84 7.43-12.07H16a.47.47 0 0 0-.43.25L12 9.26 8.43 3A.47.47 0 0 0 8 2.77H4.57Z`},null,-1)]])}var uWe,dWe,fWe,pWe=s((()=>{FS(),G(),uWe=PS({default:()=>fWe,render:()=>lWe}),dWe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 24 24`},fWe={render:lWe}}));function mWe(e,t){return F(),I(`svg`,gWe,[...t[0]||=[R(`path`,{d:`m117.5 33.5.3-.2c-.6-1.1-1.5-2.1-2.4-2.6L67.1 2.9c-.8-.5-1.9-.7-3.1-.7s-2.3.3-3.1.7l-48 27.9c-1.7 1-2.9 3.5-2.9 5.4v55.7c0 1.1.2 2.3.9 3.4l-.2.1c.5.8 1.2 1.5 1.9 1.9l48.2 27.9c.8.5 1.9.7 3.1.7s2.3-.3 3.1-.7l48-27.9c1.7-1 2.9-3.5 2.9-5.4V36.1c.1-.8 0-1.7-.4-2.6M64 88.5c9.1 0 17.1-5 21.3-12.4l12.9 7.6c-6.8 11.8-19.6 19.8-34.2 19.8-21.8 0-39.5-17.7-39.5-39.5S42.2 24.5 64 24.5c14.7 0 27.5 8.1 34.3 20l-13 7.5C81.1 44.5 73.1 39.5 64 39.5c-13.5 0-24.5 11-24.5 24.5s11 24.5 24.5 24.5`},null,-1)]])}var hWe,gWe,_We,vWe=s((()=>{FS(),G(),hWe=PS({default:()=>_We,render:()=>mWe}),gWe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 128 128`},_We={render:mWe}}));function yWe(e,t){return F(),I(`svg`,xWe,[...t[0]||=[R(`path`,{d:`M60.952.266C27.377.266.065 28.77.065 63.806s27.318 63.54 60.887 63.54c33.576 0 60.893-28.505 60.893-63.54S94.528.266 60.952.266m0 6.117c30.39 0 55.025 25.712 55.025 57.423 0 2.482-.167 4.924-.46 7.321-1.495 6.214-4.194 10.358-7.412 13.19-4.941 4.336-11.524 5.738-17.62 5.733a41 41 0 0 1-4.973-.289C97.506 77.4 99.336 57.866 89.864 43.315 80.39 28.763 62.315 23.338 46.882 30.416a24 24 0 0 0-1.68-1.114c-2.41-1.413-7.439-3.482-13.837-3.505-5.361-.022-10.615 1.568-15.133 4.58C26.554 15.317 43.21 6.386 60.952 6.394zM51.341 84.6c.894-4.07 3.343-10.431 5.548-15.655.623-1.481 1.23-2.872 1.777-4.104 3.451 12.822 5.635 20.449 9.546 25.65a18 18 0 0 0 1.913 2.114 28 28 0 0 1-9.173 1.56 28.2 28.2 0 0 1-10.023-1.86q-.098-1.227-.103-2.459a24.5 24.5 0 0 1 .515-5.24zm-7.444 3.77c-7.555-5.703-12.031-14.84-12.04-24.57.008-9.88 4.625-19.138 12.375-24.813 1.637.984 3.121 2.143 4.34 3.477 2.395 2.56 5.077 8.214 6.94 13.082.51 1.312.965 2.567 1.36 3.709C50.16 73.502 45.685 80.608 43.898 88.37zm21.802-18.226c-1.501-4.037-2.374-7.079-2.379-7.084l-.005-.012c-2.747-10.984-5.592-21.025-11.497-28.052a28 28 0 0 1 9.134-1.55c16.06.022 29.074 13.602 29.095 30.36-.007 9.673-4.432 18.764-11.914 24.474a15 15 0 0 1-2.184-.78c-1.137-.514-2.812-2.267-4.329-4.698-2.313-3.635-4.437-8.622-5.927-12.653zm-4.747 51.08c-30.39 0-55.025-25.707-55.025-57.424 0-2.086.114-4.144.32-6.173 4.508-16 15.338-21.92 25.595-22.02 2.08-.007 4.117.282 6.068.774-13.182 12.081-15.74 32.487-5.979 47.7 9.762 15.213 28.817 20.518 44.544 12.403 2.78 1.023 5.96 1.633 9.812 2.137 1.447.186 3.007.277 4.665.277a61.6 61.6 0 0 0 14.997-2.087c-10.29 15.308-27.088 24.417-45.007 24.407z`},null,-1)]])}var bWe,xWe,SWe,CWe=s((()=>{FS(),G(),bWe=PS({default:()=>SWe,render:()=>yWe}),xWe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 128 128`},SWe={render:yWe}}));function wWe(e,t){return F(),I(`svg`,EWe,[...t[0]||=[R(`path`,{d:`m117.5 33.5.3-.2c-.6-1.1-1.5-2.1-2.4-2.6L67.1 2.9c-.8-.5-1.9-.7-3.1-.7s-2.3.3-3.1.7l-48 27.9c-1.7 1-2.9 3.5-2.9 5.4v55.7c0 1.1.2 2.3.9 3.4l-.2.1c.5.8 1.2 1.5 1.9 1.9l48.2 27.9c.8.5 1.9.7 3.1.7s2.3-.3 3.1-.7l48-27.9c1.7-1 2.9-3.5 2.9-5.4V36.1c.1-.8 0-1.7-.4-2.6m-53.5 70c-21.8 0-39.5-17.7-39.5-39.5S42.2 24.5 64 24.5c14.7 0 27.5 8.1 34.3 20l-13 7.5C81.1 44.5 73.1 39.5 64 39.5c-13.5 0-24.5 11-24.5 24.5s11 24.5 24.5 24.5c9.1 0 17.1-5 21.3-12.4l12.9 7.6c-6.8 11.8-19.6 19.8-34.2 19.8M115 62h-3.2l-.9 4h4.1v5h-5l-1.2 6h-4.9l1.2-6h-3.8l-1.2 6h-4.8l1.2-6H94v-5h3.5l.9-4H94v-5h5.3l1.2-6h4.9l-1.2 6h3.8l1.2-6h4.8l-1.2 6h2.2zm-12.7 4h3.8l.9-4h-3.8z`},null,-1)]])}var TWe,EWe,DWe,OWe=s((()=>{FS(),G(),TWe=PS({default:()=>DWe,render:()=>wWe}),EWe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 128 128`},DWe={render:wWe}}));function kWe(e,t){return F(),I(`svg`,jWe,[...t[0]||=[R(`path`,{d:`M1.5 0h21l-1.91 21.563L11.977 24l-8.565-2.438zm17.09 4.413L5.41 4.41l.213 2.622 10.125.002-.255 2.716h-6.64l.24 2.573h6.182l-.366 3.523-2.91.804-2.956-.81-.188-2.11h-2.61l.29 3.855L12 19.288l5.373-1.53z`},null,-1)]])}var AWe,jWe,MWe,NWe=s((()=>{FS(),G(),AWe=PS({default:()=>MWe,render:()=>kWe}),jWe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 24 24`},MWe={render:kWe}}));function PWe(e,t){return F(),I(`svg`,IWe,[...t[0]||=[R(`path`,{d:`m7.91 9.32.09.09V35.3l-5.09-5.09a6.22 6.22 0 0 1-1.27-6.92zM35.3 8H9.41l-.09-.09 13.97-6.27a6.22 6.22 0 0 1 6.92 1.27zm2.29 31H11.71l-.54-.54A4 4 0 0 1 10 35.63V11.41zm-23.88 2H39v6c0 .55-.45 1-1 1H21.1c-.27 0-.52-.11-.71-.29l-4.7-4.7.02-.02zM48 21.1V38c0 .55-.45 1-1 1h-6.58L11.41 10h24.22c1.07 0 2.07.42 2.83 1.17l4.53 4.54.02-.02 4.7 4.7c.18.19.29.44.29.71`},null,-1)]])}var FWe,IWe,LWe,RWe=s((()=>{FS(),G(),FWe=PS({default:()=>LWe,render:()=>PWe}),IWe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 50 50`},LWe={render:PWe}}));function zWe(e,t){return F(),I(`svg`,VWe,[...t[0]||=[R(`path`,{d:`M0 64.5 60.7 3.8v30.4L30.4 64.5l30.4 30.4v30.4zm39.1 0 21.7-21.7v43.4zm88.9 0L65.1 3.8v30.4l30.4 30.4-30.4 30.3v30.4z`},null,-1)]])}var BWe,VWe,HWe,UWe=s((()=>{FS(),G(),BWe=PS({default:()=>HWe,render:()=>zWe}),VWe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 128 128`},HWe={render:zWe}}));function WWe(e,t){return F(),I(`svg`,KWe,[...t[0]||=[R(`path`,{d:`M108.2 64.8c-.1-.1-.2-.2-.4-.2l-.1-.1c-.1-.1-.2-.1-.2-.2l-.1-.1c-.1 0-.2-.1-.2-.1l-.2-.1c-.1 0-.2-.1-.2-.1l-.2-.1c-.1 0-.2-.1-.2-.1-.1 0-.1 0-.2-.1l-.3-.1c-.1 0-.1 0-.2-.1l-.3-.1h-.1l-.4-.1h-.2c-.1 0-.2 0-.3-.1h-2.3c-.6-13.3.6-26.8-2.8-39.6 12.9-4.6 2.8-22.3-8.4-14.4-7.4-6.4-17.6-7.8-28.3-7.8-10.5.7-20.4 2.9-27.4 8.4-2.8-1.4-5.5-1.8-7.9-1.1v.1c-.1 0-.3.1-.4.2-.1 0-.3.1-.4.2h-.1c-.1 0-.2.1-.4.2h-.1l-.3.2h-.1l-.3.2h-.1l-.3.2s-.1 0-.1.1l-.3.2s-.1 0-.1.1l-.3.2s-.1 0-.1.1l-.3.2-.1.1c-.1.1-.2.1-.2.2l-.1.1-.2.2-.1.1c-.1.1-.1.2-.2.2l-.1.1c-.1.1-.1.2-.2.2l-.1.1c-.1.1-.1.2-.2.2l-.1.1c-.1.1-.1.2-.2.2l-.1.1c-.1.1-.1.2-.2.2l-.1.1-.1.3s0 .1-.1.1l-.1.3s0 .1-.1.1l-.1.3s0 .1-.1.1l-.1.3s0 .1-.1.1c.4.3.4.4.4.4v.1l-.1.3v.1c0 .1 0 .2-.1.3v3.1c0 .1 0 .2.1.3v.1l.1.3v.1l.1.3s0 .1.1.1l.1.3s0 .1.1.1l.1.3s0 .1.1.1l.2.3s0 .1.1.1l.2.3s0 .1.1.1l.2.3.1.1.3.3.3.3h.1c1 .9 2 1.6 4 2.2v-.2C23 37.3 26.5 50 26.7 63c-.6 0-.7.4-1.7.5h-.5c-.1 0-.3 0-.5.1-.1 0-.3 0-.4.1l-.4.1h-.1l-.4.1h-.1l-.3.1h-.1l-.3.1s-.1 0-.1.1l-.3.1-.2.1c-.1 0-.2.1-.2.1l-.2.1-.2.1c-.1 0-.2.1-.2.1l-.2.1-.4.3c-.1.1-.2.2-.3.2l-.4.4-.1.1c-.1.2-.3.4-.4.5l-.2.3-.3.6-.1.3v.3c0 .5.2.9.9 1.2.2 3.7 3.9 2 5.6.8l.1-.1c.2-.2.5-.3.6-.3h.1l.2-.1c.1 0 .1 0 .2-.1.2-.1.4-.1.5-.2.1 0 .1-.1.1-.2l.1-.1c.1-.2.2-.6.2-1.2l.1-1.3v1.8c-.5 13.1-4 30.7 3.3 42.5 1.3 2.1 2.9 3.9 4.7 5.4h-.5c-.2.2-.5.4-.8.6l-.9.6-.3.2-.6.4-.9.7-1.1 1c-.2.2-.3.4-.4.5l-.4.6-.2.3c-.1.2-.2.4-.2.6l-.1.3q-.3 1.2.6 2.7l.4.4h.2c.1 0 .2 0 .4.1.2.4 1.2 2.5 3.9.9 2.8-1.5 4.7-4.6 8.1-5.1l-.5-.6c5.9 2.8 12.8 4 19 4.2 8.7.3 18.6-.9 26.5-5.2 2.2.7 3.9 3.9 5.8 5.4l.1.1.1.1.1.1.1.1s.1 0 .1.1c0 0 .1 0 .1.1 0 0 .1 0 .1.1h2.1s.1 0 .1-.1h.1s.1 0 .1-.1h.1s.1 0 .1-.1c0 0 .1 0 .1-.1l.1-.1s.1 0 .1-.1l.1-.1h.1l.2-.2.2-.1h.1l.1-.1h.1l.1-.1.1-.1.1-.1.1-.1.1-.1.1-.1.1-.1v-.1s0-.1.1-.1v-.1s0-.1.1-.1v-.1s0-.1.1-.1v-1.4s-.3 0-.3-.1l-.3-.1v-.1l.3-.1s.2 0 .2-.1l.1-.1v-2.1s0-.1-.1-.1v-.1s0-.1-.1-.1v-.1s0-.1-.1-.1c0 0 0-.1-.1-.1 0 0 0-.1-.1-.1 0 0 0-.1-.1-.1 0 0 0-.1-.1-.1 0 0 0-.1-.1-.1 0 0 0-.1-.1-.1 0 0 0-.1-.1-.1 0 0 0-.1-.1-.1 0 0 0-.1-.1-.1 0 0 0-.1-.1-.1 0 0 0-.1-.1-.1 0 0 0-.1-.1-.1 0 0 0-.1-.1-.1l-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1v-.1l-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1c2-1.9 3.8-4.2 5.1-6.9 5.9-11.8 4.9-26.2 4.1-39.2h.1c.1 0 .2.1.2.1h.3s.1 0 .1.1h.1s.1 0 .1.1l.2.1c1.7 1.2 5.4 2.9 5.6-.8 1.6.6-.3-1.8-1.3-2.5M36 23C32.8 7 58.4 4 59.3 19.6c.8 13-20 16.3-23.3 3.4m36.1 15c-1.3 1.4-2.7 1.2-4.1.7 0 1.9.4 3.9.1 5.9-.5.9-1.5 1-2.3 1.4-1.2-.2-2.1-.9-2.6-2l-.2-.1c-3.9 5.2-6.3-1.1-5.2-5-1.2.1-2.2-.2-3-1.5-1.4-2.6.7-5.8 3.4-6.3.7 3 8.7 2.6 10.1-.2 3.1 1.5 6.5 4.3 3.8 7.1m-7-17.5c-.9-13.8 20.3-17.5 23.4-4 3.5 15-20.8 18.9-23.4 4M41.7 17c-1.9 0-3.5 1.7-3.5 3.8s1.6 3.8 3.5 3.8 3.5-1.7 3.5-3.8-1.5-3.8-3.5-3.8m1.6 5.7c-.5 0-.8-.4-.8-1 0-.5.4-1 .8-1 .5 0 .8.4.8 1 0 .5-.3 1-.8 1m27.8-6.6c-1.9 0-3.4 1.7-3.4 3.8s1.5 3.8 3.4 3.8 3.4-1.7 3.4-3.8-1.5-3.8-3.4-3.8m1.6 5.6c-.4 0-.8-.4-.8-1 0-.5.4-1 .8-1s.8.4.8 1-.4 1-.8 1`},null,-1)]])}var GWe,KWe,qWe,JWe=s((()=>{FS(),G(),GWe=PS({default:()=>qWe,render:()=>WWe}),KWe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 128 128`},qWe={render:WWe}}));function YWe(e,t){return F(),I(`svg`,ZWe,[...t[0]||=[R(`path`,{d:`M1.5 0h21l-1.91 21.563L11.977 24l-8.564-2.438zm7.031 9.75-.232-2.718 10.059.003.23-2.622L5.412 4.41l.698 8.01h9.126l-.326 3.426-2.91.804-2.955-.81-.188-2.11H6.248l.33 4.171L12 19.351l5.379-1.443.744-8.157z`},null,-1)]])}var XWe,ZWe,QWe,$We=s((()=>{FS(),G(),XWe=PS({default:()=>QWe,render:()=>YWe}),ZWe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 24 24`},QWe={render:YWe}}));function eGe(e,t){return F(),I(`svg`,nGe,[...t[0]||=[R(`path`,{d:`M111.7 29.7 128 64l-16.3 34.3H16.3L0 64l16.3-34.3zm-5.5 5.7H20L6.3 64l13.6 28.6h86.3L119.8 64zm-76.3 19v8h9.2v-8.1h4.8v20.4h-4.7v-8.4H30v8.4h-4.8V54.4zm34.3 0v3.8h-6.5v16.5H53V58.2h-6.5v-3.8zm18.3 0v3.8H76v16.5h-4.7V58.2h-6.5v-3.8zm16.1.9c1.2.5 2.3 1.4 3.1 2.6.7 1.2 1.1 2.5 1 3.9.1 1.4-.3 2.7-1 3.9-.7 1.1-1.8 2-3.1 2.6-1.5.6-3.1.9-4.7.9h-4.1v5.6H85V54.4h8.9c1.6 0 3.2.3 4.7.9m-5.1 2.9h-3.8v7.1h3.8q2.1 0 3.3-.9c.8-.6 1.2-1.6 1.1-2.6 0-1.1-.3-2.1-1.1-2.6-.8-.7-1.9-1-3.3-1`},null,-1)]])}var tGe,nGe,rGe,iGe=s((()=>{FS(),G(),tGe=PS({default:()=>rGe,render:()=>eGe}),nGe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 128 128`},rGe={render:eGe}}));function aGe(e,t){return F(),I(`svg`,sGe,[...t[0]||=[R(`path`,{d:`M11.26 15.27c3.37-.15 7.15-1.09 7-2.21a26 26 0 0 1-4.76.59c-3.62.16-6.58-.24-6.61-.9 0-.2.24-.4.69-.58-2.39-.64-3.67.53-3.69 1.22-.1 1.45 3.22 2.06 7.37 1.88m5.91 1.64a23 23 0 0 1-4.07.5c-3.09.14-5.61-.21-5.64-.77 0-.17.21-.34.59-.49-2-.55-3.13.45-3.15 1-.05 1.24 2.78 1.77 6.33 1.61 2.87-.1 6.25-1 5.94-1.85M3.61 20.8a.93.93 0 0 1 .29-.65c-2.09.1-2.54 1.13-2.51 1.76.07 1.39 4.67 2.31 10 2.05 4.44-.22 9.16-1 9.16-2.34a26.3 26.3 0 0 1-7.2 1.23c-5.35.26-9.67-.66-9.74-2.05`},null,-1),R(`path`,{d:`M22.4 12.65c-.55-1.48-2.67-2.34-4.74-1.57a2.47 2.47 0 0 0-1 .81c1.94-.56 3.83 0 4.34 1.41.45 1.21-.3 2.64-1.72 3.54a1.37 1.37 0 0 0 .92-.13c2.25-1.05 2.8-2.58 2.2-4.06m-9.88-1.38s-3.1-2.19-1.92-4.35S14.37 2.43 13.38 0c0 0 .12 1-3.12 3.91s-2.14 6.33 2.26 7.36`},null,-1),R(`path`,{d:`M15.17 4.83s-4.24 1.51-2.83 3.53c1 1.43 2.13 2 1.42 4 0 0 2.83-1.51.71-3.53s.7-4 .7-4M8.69 19.26c-1.6-.43-2.46.35-2.47.81 0 1 2.18 1.39 5 1.27 2.26-.11 4.73-.95 4.67-1.49a16.6 16.6 0 0 1-3.2.4c-2.43.11-4.41-.16-4.43-.61-.04-.13.13-.26.43-.38`},null,-1)]])}var oGe,sGe,cGe,lGe=s((()=>{FS(),G(),oGe=PS({default:()=>cGe,render:()=>aGe}),sGe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 24 24`},cGe={render:aGe}}));function uGe(e,t){return F(),I(`svg`,fGe,[...t[0]||=[R(`path`,{d:`M0 0h24v24H0zm22.034 18.276c-.175-1.095-.888-2.015-3.003-2.873-.736-.345-1.554-.585-1.797-1.14-.091-.33-.105-.51-.046-.705.15-.646.915-.84 1.515-.66.39.12.75.42.976.9 1.034-.676 1.034-.676 1.755-1.125-.27-.42-.404-.601-.586-.78-.63-.705-1.469-1.065-2.834-1.034l-.705.089c-.676.165-1.32.525-1.71 1.005-1.14 1.291-.811 3.541.569 4.471 1.365 1.02 3.361 1.244 3.616 2.205.24 1.17-.87 1.545-1.966 1.41-.811-.18-1.26-.586-1.755-1.336l-1.83 1.051c.21.48.45.689.81 1.109 1.74 1.756 6.09 1.666 6.871-1.004.029-.09.24-.705.074-1.65zm-8.983-7.245h-2.248c0 1.938-.009 3.864-.009 5.805 0 1.232.063 2.363-.138 2.711-.33.689-1.18.601-1.566.48-.396-.196-.597-.466-.83-.855-.063-.105-.11-.196-.127-.196l-1.825 1.125c.305.63.75 1.172 1.324 1.517.855.51 2.004.675 3.207.405.783-.226 1.458-.691 1.811-1.411.51-.93.402-2.07.397-3.346.012-2.054 0-4.109 0-6.179z`},null,-1)]])}var dGe,fGe,pGe,mGe=s((()=>{FS(),G(),dGe=PS({default:()=>pGe,render:()=>uGe}),fGe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 24 24`},pGe={render:uGe}}));function hGe(e,t){return F(),I(`svg`,_Ge,[...t[0]||=[R(`path`,{d:`M4.56 18.71c-1.41-4-.65-8.94 1.77-11.48A5.47 5.47 0 0 1 12 5.71h.15a.8.8 0 0 1 .22.12c4 1.65 4.28 8.57 1.28 11.41a4.15 4.15 0 0 0 3.08-1.35c2.12-2.23 2.76-6.62 1.49-10.22A7.75 7.75 0 0 0 12.81.54H12a11.5 11.5 0 0 0-5.42 21.6 10 10 0 0 1-2.02-3.43`},null,-1),R(`path`,{d:`M23.5 12a11.49 11.49 0 0 0-6.09-10.14 9.9 9.9 0 0 1 2 3.43c1.41 4 .65 9-1.77 11.5a5.42 5.42 0 0 1-4 1.75A6.5 6.5 0 0 1 12 18.3h-.15a.8.8 0 0 1-.22-.12c-4-1.65-4.29-8.57-1.29-11.41a4.14 4.14 0 0 0-3.11 1.32c-2.12 2.22-2.76 6.61-1.49 10.2a7.77 7.77 0 0 0 5.45 5.17H12A11.5 11.5 0 0 0 23.5 12`},null,-1)]])}var gGe,_Ge,vGe,yGe=s((()=>{FS(),G(),gGe=PS({default:()=>vGe,render:()=>hGe}),_Ge={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 24 24`},vGe={render:hGe}}));function bGe(e,t){return F(),I(`svg`,SGe,[...t[0]||=[R(`path`,{d:`M0 0h61.4L0 60.4zm0 128L128 0H64.6L0 63.7zm128 0L64.6 66.6 3.3 128z`},null,-1)]])}var xGe,SGe,CGe,wGe=s((()=>{FS(),G(),xGe=PS({default:()=>CGe,render:()=>bGe}),SGe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 128 128`},CGe={render:bGe}}));function TGe(e,t){return F(),I(`svg`,DGe,[...t[0]||=[R(`path`,{d:`M21.75 5.52 13 .28a2 2 0 0 0-2 0L2.25 5.52a2 2 0 0 0-1 1.69v9.58a2 2 0 0 0 1 1.69l2.62 1.57a3.12 3.12 0 0 0 4.73-2.68V8.12a1 1 0 0 0-2 0v9.25a1.13 1.13 0 0 1-.57 1 1.14 1.14 0 0 1-1.13 0l-2.61-1.58V7.24L12 2l8.73 5.21v9.55L12 22l-1.7-1a1 1 0 1 0-1 1.71l1.72 1a2 2 0 0 0 2 0l8.74-5.24a2 2 0 0 0 1-1.69V7.21a2 2 0 0 0-1.01-1.69`},null,-1),R(`path`,{d:`M15.51 14.76a9.3 9.3 0 0 1-2.24 0 .85.85 0 0 1-.75-.85 1 1 0 0 0-2 0A2.87 2.87 0 0 0 13 16.75a12 12 0 0 0 1.36.08 12 12 0 0 0 1.37-.08 2.87 2.87 0 0 0 2.5-2.84A2.68 2.68 0 0 0 16 11.26l-2.91-.49a.69.69 0 0 1-.58-.68.85.85 0 0 1 .75-.85 9.3 9.3 0 0 1 2.24 0 .85.85 0 0 1 .75.85 1 1 0 0 0 2 0 2.87 2.87 0 0 0-2.5-2.84 12.5 12.5 0 0 0-2.73 0 2.87 2.87 0 0 0-2.51 2.84 2.68 2.68 0 0 0 2.25 2.65l2.91.49a.68.68 0 0 1 .58.68.85.85 0 0 1-.74.85`},null,-1)]])}var EGe,DGe,OGe,kGe=s((()=>{FS(),G(),EGe=PS({default:()=>OGe,render:()=>TGe}),DGe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 24 24`},OGe={render:TGe}}));function AGe(e,t){return F(),I(`svg`,MGe,[...t[0]||=[R(`path`,{d:`M63.877 125.392c-32.671 0-60.37-27.594-60.627-60.469a59.94 59.94 0 0 1 17.506-42.759 60.94 60.94 0 0 1 43.279-18.36 60.08 60.08 0 0 1 42.647 17.71 60.15 60.15 0 0 1 18.157 42.522c.151 33.604-26.864 61.021-60.469 61.363h-.493zm.19-118.406a57.77 57.77 0 0 0-41.01 17.427 56.78 56.78 0 0 0-16.63 40.484c.236 31.159 26.495 57.286 57.43 57.286h.414c31.863-.29 57.504-26.266 57.385-58.128a56.97 56.97 0 0 0-17.217-40.273A56.7 56.7 0 0 0 64.068 6.986z`},null,-1),R(`path`,{d:`M16.89 82.383V46.865h8.64v3.183h-4.583v29.218h4.584v3.183zm29.323-18.111c0 6.478-3.933 10.167-9.26 10.167s-8.877-4.156-8.877-9.831c0-5.939 3.722-10.121 9.167-10.121s8.97 4.36 8.97 9.785m-14.415.29c0 3.932 1.973 7.05 5.36 7.05s5.333-3.183 5.333-7.195c0-3.643-1.796-7.083-5.334-7.083s-5.392 3.328-5.392 7.307zm17.407-9.404c1.69-.29 3.407-.434 5.123-.428a9.17 9.17 0 0 1 5.537 1.223 4.06 4.06 0 0 1 2.006 3.61 4.48 4.48 0 0 1-3.183 4.183c2.269.46 3.9 2.46 3.9 4.775a5.02 5.02 0 0 1-1.861 3.978c-1.368 1.21-3.643 1.796-7.162 1.796a34 34 0 0 1-4.327-.257zm3.499 7.622h1.795c2.433 0 3.801-1.145 3.801-2.782s-1.368-2.644-3.61-2.644a9.8 9.8 0 0 0-2.006.145zm0 8.878c.618.065 1.243.092 1.86.078 2.263 0 4.262-.861 4.262-3.182s-1.94-3.183-4.373-3.183h-1.75zM69.54 54.901h3.517v12.554c0 5.334-2.577 7.116-6.365 7.116a9.3 9.3 0 0 1-2.973-.507l.428-2.834c.703.224 1.44.335 2.183.349 2.006 0 3.183-.921 3.183-4.262l.026-12.416zm13.527 10.456v2.434h-7.32v-2.434zm17.091 8.273a12.3 12.3 0 0 1-4.978.862c-6.129 0-9.851-3.834-9.851-9.707-.283-5.353 3.827-9.923 9.18-10.206.375-.02.757-.02 1.131.006a11.1 11.1 0 0 1 4.775.862l-.783 2.801a9.5 9.5 0 0 0-3.788-.75c-3.932 0-6.76 2.467-6.76 7.116 0 4.235 2.499 6.971 6.734 6.971a9.8 9.8 0 0 0 3.834-.717zM111.2 46.766v35.61h-8.641v-3.182h4.583V49.949h-4.583v-3.183h8.64z`},null,-1)]])}var jGe,MGe,NGe,PGe=s((()=>{FS(),G(),jGe=PS({default:()=>NGe,render:()=>AGe}),MGe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 128 128`},NGe={render:AGe}}));function FGe(e,t){return F(),I(`svg`,LGe,[...t[0]||=[R(`path`,{d:`M65.004 115.355c-.461-.894-1.004-2.796-1.356-3.601-.378-.711-1.46-2.692-1.984-3.332-1.164-1.332-1.437-1.438-1.809-3.23-.628-3.067-2.148-8.462-4.042-12.227-1.004-2-2.626-3.606-4.067-5.07-1.246-1.247-4.121-3.31-4.668-3.227-4.766.894-6.226 5.586-8.457 9.27-1.27 2.062-2.516 3.769-3.52 5.937-.898 1.98-.812 4.23-2.331 5.938a15.4 15.4 0 0 0-3.333 5.855c-.195.453-.546 4.957-1.003 6.016l7.02-.438c6.585.461 4.687 2.961 14.858 2.438l16.098-.54a25 25 0 0 0-1.433-3.792zM111.793 8.254H16.207C7.312 8.23.086 15.457.086 24.352v35.105c2.352-.812 5.578-5.75 6.668-6.934 1.789-2.062 2.16-4.77 3.059-6.378 2.062-3.793 2.433-6.477 7.101-6.477 2.164 0 3.063.516 4.5 2.516.996 1.332 2.79 3.957 3.602 5.668 1.004 1.98 2.523 4.582 3.254 5.125.515.351.972.722 1.433.894.707.27 1.356-.27 1.902-.629.622-.539.895-1.52 1.52-2.953.895-2.086 1.813-4.418 2.332-5.312.914-1.461 1.273-3.254 2.25-4.067 1.461-1.246 3.441-1.355 3.957-1.437 2.98-.625 4.336 1.437 5.777 2.707.973.894 2.243 2.605 3.246 4.851.708 1.793 1.606 3.52 2.067 4.5.351.98 1.266 2.606 1.789 4.582.543 1.711 1.809 3.067 2.352 3.961 0 0 .812 2.164 5.476 4.145a35 35 0 0 0 4.336 1.52c2.066.734 4.047.644 6.563.374 1.789 0 2.793-2.625 3.601-4.683.438-1.254.98-4.774 1.25-5.758.27-.996-.437-1.707.192-2.625.722-.977 1.164-1.082 1.519-2.332.914-2.793 5.957-2.875 8.832-2.875 2.414 0 2.063 2.332 6.125 1.52 2.336-.434 4.586.273 7.023.995 2.063.543 4.043 1.168 5.204 2.524.73.898 2.629 5.312.73 5.476.164.188.36.645.625.817-.46 1.707-2.25.46-3.332.27-1.355-.27-2.332 0-3.684.624-2.335.996-5.668.918-7.726 2.625-1.715 1.438-1.715 4.582-2.543 6.371 0 0-2.254 5.696-6.996 9.192-1.278.914-3.715 3.058-8.918 3.871-2.356.355-4.586.355-7.024.27-1.164-.079-2.332-.079-3.52-.079-.706 0-3.062-.109-2.96.164l-.27.645c.024.29.063.602.164.895.102.515.102.976.192 1.437 0 .98-.086 2.063 0 3.066.082 2.063.894 3.957 1.004 6.102.078 2.355 1.246 4.875 2.414 6.77.46.707 1.086.789 1.355 1.71.352.98 0 2.141.188 3.227.625 4.227 1.875 8.73 3.773 12.61v.078c2.332-.352 4.77-1.247 7.836-1.684 5.664-.832 13.5-.461 18.54-.914 12.796-1.168 19.706 5.226 31.148 2.601V24.336c-.063-8.895-7.293-16.102-16.207-16.102zM64.086 83.855q0-.28 0 0m-34.457 14.75c.894-1.98 1.433-4.125 2.144-6.101.73-1.899 1.813-4.61 3.684-5.582-.246-.274-3.957-.375-4.934-.461-1.082-.086-2.171-.273-3.25-.438a135 135 0 0 1-6.125-1.265c-1.168-.274-5.21-1.715-6.02-2.067-2.085-.894-3.421-3.52-4.96-3.246-.977.188-1.98.54-2.605 1.54-.543.812-.731 2.242-1.083 3.226-.437 1.086-1.168 2.164-1.707 3.25-1.277 1.875-3.332 3.582-4.23 5.484-.191.457-.27.895-.457 1.356v21.683c1.082.188 2.16.371 3.328.73 8.996 2.438 11.164 2.606 19.98 1.63l.813-.11c.625-1.437 1.188-6.207 1.629-7.644.352-1.164.812-2.063.996-3.14.164-1.09 0-2.173-.102-3.15-.171-2.628 1.895-3.519 2.899-5.69zm0 0`},null,-1)]])}var IGe,LGe,RGe,zGe=s((()=>{FS(),G(),IGe=PS({default:()=>RGe,render:()=>FGe}),LGe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 128 128`},RGe={render:FGe}}));function BGe(e,t){return F(),I(`svg`,HGe,[...t[0]||=[R(`path`,{d:`M7.01 10.207h-.944l-.515 2.648h.838q.834 0 1.242-.314.408-.315.55-1.049.137-.705-.124-.995-.262-.29-1.047-.29M12 5.688C5.373 5.688 0 8.514 0 12s5.373 6.313 12 6.313S24 15.486 24 12s-5.373-6.312-12-6.312m-3.26 7.451c-.261.25-.575.438-.917.551q-.505.163-1.285.164H5.357l-.327 1.681H3.652l1.23-6.326h2.65q1.195 0 1.744.628.549.627.33 1.752a2.8 2.8 0 0 1-.305.847q-.215.383-.561.703m4.024.715.543-2.799q.094-.478-.068-.651-.16-.174-.687-.174H11.46l-.704 3.625H9.388l1.23-6.327h1.367l-.327 1.682h1.218q1.15 0 1.586.401c.436.401.378.7.263 1.299l-.572 2.944zm7.597-2.265a2.8 2.8 0 0 1-.305.847q-.214.383-.561.703a2.44 2.44 0 0 1-.917.551q-.504.163-1.286.164h-1.18l-.327 1.682h-1.378l1.23-6.326h2.649q1.195 0 1.744.628.55.626.331 1.751m-2.595-1.382h-.943l-.516 2.648h.838q.835 0 1.242-.314.407-.315.551-1.049.137-.705-.125-.995c-.262-.29-.524-.29-1.047-.29`},null,-1)]])}var VGe,HGe,UGe,WGe=s((()=>{FS(),G(),VGe=PS({default:()=>UGe,render:()=>BGe}),HGe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 24 24`},UGe={render:BGe}}));function GGe(e,t){return F(),I(`svg`,qGe,[...t[0]||=[R(`path`,{"fill-rule":`evenodd`,d:`M73.7 58.9c-1.5-1.8-3.2-3.9-5-5.9C58.5 41.7 48.4 30.3 38 19.2c-4.7-5.1-6.2-10-.6-15.1C43-.9 48.5-.4 53.7 5.3 68.1 21.2 82.4 37.2 97 52.9c5.5 5.9 4.2 9.9-1.8 14.2-23 16.7-46 33.5-68.9 50.4-5.1 3.8-10.1 4.8-14.2-.9-4.6-6.2-.3-9.9 4.4-13.3 17-12.4 34-24.8 50.9-37.4 2.5-1.7 5.9-2.8 6.3-7m7.3 59.8c-6.2 0-12.4.2-18.6-.1-4.9-.2-7.9-3-7.8-8.2.1-4.9 2.5-8.6 7.5-8.7 13.5-.4 27.1-.3 40.7 0 4.3.1 7.5 2.9 7.5 7.4 0 5.1-2.7 9.1-8.2 9.5-7.2.4-14.2.1-21.1.1`,"clip-rule":`evenodd`},null,-1)]])}var KGe,qGe,JGe,YGe=s((()=>{FS(),G(),KGe=PS({default:()=>JGe,render:()=>GGe}),qGe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 121 121`},JGe={render:GGe}}));function XGe(e,t){return F(),I(`svg`,QGe,[...t[0]||=[R(`path`,{d:`m14.25.18.9.2.73.26.59.3.45.32.34.34.25.34.16.33.1.3.04.26.02.2-.01.13V8.5l-.05.63-.13.55-.21.46-.26.38-.3.31-.33.25-.35.19-.35.14-.33.1-.3.07-.26.04-.21.02H8.77l-.69.05-.59.14-.5.22-.41.27-.33.32-.27.35-.2.36-.15.37-.1.35-.07.32-.04.27-.02.21v3.06H3.17l-.21-.03-.28-.07-.32-.12-.35-.18-.36-.26-.36-.36-.35-.46-.32-.59-.28-.73-.21-.88-.14-1.05-.05-1.23.06-1.22.16-1.04.24-.87.32-.71.36-.57.4-.44.42-.33.42-.24.4-.16.36-.1.32-.05.24-.01h.16l.06.01h8.16v-.83H6.18l-.01-2.75-.02-.37.05-.34.11-.31.17-.28.25-.26.31-.23.38-.2.44-.18.51-.15.58-.12.64-.1.71-.06.77-.04.84-.02 1.27.05zm-6.3 1.98-.23.33-.08.41.08.41.23.34.33.22.41.09.41-.09.33-.22.23-.34.08-.41-.08-.41-.23-.33-.33-.22-.41-.09-.41.09zm13.09 3.95.28.06.32.12.35.18.36.27.36.35.35.47.32.59.28.73.21.88.14 1.04.05 1.23-.06 1.23-.16 1.04-.24.86-.32.71-.36.57-.4.45-.42.33-.42.24-.4.16-.36.09-.32.05-.24.02-.16-.01h-8.22v.82h5.84l.01 2.76.02.36-.05.34-.11.31-.17.29-.25.25-.31.24-.38.2-.44.17-.51.15-.58.13-.64.09-.71.07-.77.04-.84.01-1.27-.04-1.07-.14-.9-.2-.73-.25-.59-.3-.45-.33-.34-.34-.25-.34-.16-.33-.1-.3-.04-.25-.02-.2.01-.13v-5.34l.05-.64.13-.54.21-.46.26-.38.3-.32.33-.24.35-.2.35-.14.33-.1.3-.06.26-.04.21-.02.13-.01h5.84l.69-.05.59-.14.5-.21.41-.28.33-.32.27-.35.2-.36.15-.36.1-.35.07-.32.04-.28.02-.21V6.07h2.09l.14.01zm-6.47 14.25-.23.33-.08.41.08.41.23.33.33.23.41.08.41-.08.33-.23.23-.33.08-.41-.08-.41-.23-.33-.33-.23-.41-.08-.41.08z`},null,-1)]])}var ZGe,QGe,$Ge,eKe=s((()=>{FS(),G(),ZGe=PS({default:()=>$Ge,render:()=>XGe}),QGe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 24 24`},$Ge={render:XGe}}));function tKe(e,t){return F(),I(`svg`,rKe,[...t[0]||=[R(`path`,{d:`M64 14.648c-35.346 0-64 19.19-64 42.863C0 78.275 22.046 95.589 51.316 99.53V86.699c-15.55-4.89-26.166-14.693-26.166-25.991 0-16.183 21.779-29.303 48.646-29.303 26.866 0 46.693 8.975 46.693 29.303 0 10.486-5.273 17.95-14.066 22.72 1.204.908 2.22 2.072 2.904 3.419l.388.655C121.025 79.772 128 69.189 128 57.51c0-23.672-28.654-42.863-64-42.863zm20.1 74.88c-2.612.257-5.322.41-8.114.462l.002 9.63a88 88 0 0 0 12.474-2.492l-.501-.941c-.68-1.268-1.347-2.543-2.033-3.807a41 41 0 0 0-1.828-2.851z`},null,-1),R(`path`,{"fill-rule":`evenodd`,d:`M97.469 81.036s3.874 1.169 6.124 2.307c.78.396 2.132 1.184 3.106 2.22a8.4 8.4 0 0 1 1.42 2.04l15.266 25.74-24.674.01-11.537-21.666s-2.363-4.06-3.817-5.237c-1.213-.982-1.73-1.331-2.929-1.331h-5.862l.004 28.219-21.834.009V41.263h43.845s19.97.36 19.97 19.359S97.47 81.035 97.47 81.035zm-9.497-24.137-13.218-.009-.006 12.257 13.224-.004s6.124-.019 6.124-6.235c0-6.34-6.124-6.01-6.124-6.01z`},null,-1)]])}var nKe,rKe,iKe,aKe=s((()=>{FS(),G(),nKe=PS({default:()=>iKe,render:()=>tKe}),rKe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 128 128`},iKe={render:tKe}}));function oKe(e,t){return F(),I(`svg`,cKe,[...t[0]||=[R(`path`,{d:`M20.156.083c3.033.525 3.893 2.598 3.829 4.77L24 4.822 22.635 22.71 4.89 23.926h.016C3.433 23.864.15 23.729 0 19.139l1.645-3 2.819 6.586.503 1.172 2.805-9.144-.03.007.016-.03 9.255 2.956-1.396-5.431-.99-3.9 8.82-.569-.615-.51L16.5 2.114 20.159.073zM5.13 5.073c3.561-3.533 8.157-5.621 9.922-3.84 1.762 1.777-.105 6.105-3.673 9.636-3.563 3.532-8.103 5.734-9.864 3.957-1.766-1.777.045-6.217 3.612-9.75z`},null,-1)]])}var sKe,cKe,lKe,uKe=s((()=>{FS(),G(),sKe=PS({default:()=>lKe,render:()=>oKe}),cKe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 24 24`},lKe={render:oKe}}));function dKe(e,t){return F(),I(`svg`,pKe,[...t[0]||=[R(`path`,{fill:`currentColor`,d:`m21.863 11.755-.839-.52-.024-.244.722-.673a.288.288 0 0 0-.096-.482l-.923-.345-.072-.239.575-.799a.288.288 0 0 0-.187-.455l-.973-.158-.117-.218.409-.897a.286.286 0 0 0-.273-.409l-.987.034-.157-.188.228-.962a.287.287 0 0 0-.348-.348l-.96.227-.19-.157.034-.986a.287.287 0 0 0-.409-.273l-.897.409-.218-.118-.158-.972a.288.288 0 0 0-.454-.189l-.8.575-.238-.071-.345-.923a.288.288 0 0 0-.482-.096L13.01 3l-.245-.023-.52-.84a.29.29 0 0 0-.49 0l-.52.84q-.123.01-.245.023l-.673-.722a.29.29 0 0 0-.482.096l-.345.923q-.12.034-.237.072l-.8-.576a.288.288 0 0 0-.455.188l-.158.973q-.11.057-.22.118l-.895-.41a.287.287 0 0 0-.409.273l.034.988-.19.156-.96-.227a.29.29 0 0 0-.348.348l.227.962-.157.188-.987-.034a.288.288 0 0 0-.273.409l.409.897a7 7 0 0 0-.117.22l-.972.156a.288.288 0 0 0-.189.455l.575.8-.071.237-.923.346a.29.29 0 0 0-.096.482L3 10.99l-.024.244-.84.52a.29.29 0 0 0 0 .492l.84.519q.01.123.025.245l-.723.673a.29.29 0 0 0 .096.482l.922.345q.035.12.073.237l-.576.8a.29.29 0 0 0 .188.454l.973.158q.056.11.117.22l-.41.896a.288.288 0 0 0 .274.409l.987-.035q.076.096.156.19l-.227.961a.287.287 0 0 0 .348.347l.961-.226.19.156-.035.987a.288.288 0 0 0 .41.273l.896-.41q.108.06.219.119l.158.971a.288.288 0 0 0 .455.19l.799-.577q.118.038.237.072l.345.923a.287.287 0 0 0 .482.096L10.99 21q.121.014.244.025l.52.839a.29.29 0 0 0 .492 0l.519-.84q.123-.01.245-.024l.674.722a.287.287 0 0 0 .48-.096l.346-.923q.12-.034.238-.072l.8.576a.29.29 0 0 0 .454-.189l.158-.972.219-.117.896.409a.288.288 0 0 0 .41-.273l-.035-.988a7 7 0 0 0 .19-.155l.96.226a.287.287 0 0 0 .348-.347l-.226-.961.155-.19.988.035a.29.29 0 0 0 .272-.41l-.409-.896q.06-.108.117-.219l.973-.158a.287.287 0 0 0 .188-.454l-.575-.8.072-.237.922-.345a.286.286 0 0 0 .096-.482L21 13.011l.025-.245.839-.52a.29.29 0 0 0 0-.49Zm-5.619 6.965a.595.595 0 0 1 .25-1.163.595.595 0 0 1-.25 1.163m-.286-1.93a.54.54 0 0 0-.642.417l-.299 1.391a7.3 7.3 0 0 1-3.017.65c-1.1 0-2.144-.243-3.08-.679l-.299-1.39a.54.54 0 0 0-.643-.417l-1.228.263a7 7 0 0 1-.635-.748h5.976c.068 0 .113-.012.113-.074V14.09c0-.062-.046-.074-.113-.074h-1.747v-1.34h1.89c.172 0 .922.049 1.162 1.007.075.295.24 1.254.352 1.561.113.344.57 1.032 1.059 1.032h2.977a1 1 0 0 0 .108-.01q-.31.421-.677.794l-1.256-.27Zm-8.265 1.9a.594.594 0 1 1-.014-1.17.594.594 0 0 1 .014 1.171ZM5.427 9.5a.594.594 0 1 1-1.086.481.594.594 0 0 1 1.086-.481m-.697 1.65 1.28-.569a.543.543 0 0 0 .274-.715l-.263-.597h1.036v4.672h-2.09a7.3 7.3 0 0 1-.237-2.792Zm5.614-.454V9.32h2.468c.128 0 .9.148.9.725 0 .48-.592.652-1.08.652zm8.969 1.24q0 .273-.02.542h-.75c-.076 0-.106.05-.106.123v.345c0 .81-.457.987-.858 1.032-.381.043-.805-.16-.857-.394-.225-1.265-.6-1.536-1.192-2.003.735-.467 1.5-1.155 1.5-2.077 0-.996-.683-1.623-1.148-1.93-.652-.43-1.375-.517-1.57-.517h-7.76a7.3 7.3 0 0 1 4.091-2.308l.915.959a.54.54 0 0 0 .765.018l1.024-.98a7.32 7.32 0 0 1 5.006 3.566l-.7 1.583a.543.543 0 0 0 .275.715l1.35.6q.034.357.035.726m-7.754-8.004a.595.595 0 1 1 .82.86.595.595 0 0 1-.82-.86m6.951 5.595a.594.594 0 1 1 1.086.481.594.594 0 0 1-1.086-.481`},null,-1)]])}var fKe,pKe,mKe,hKe=s((()=>{FS(),G(),fKe=PS({default:()=>mKe,render:()=>dKe}),pKe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},mKe={render:dKe}}));function gKe(e,t){return F(),I(`svg`,vKe,[...t[0]||=[R(`path`,{d:`M4.589 24c4.537 0 13.81-1.516 14.821-3v-5.729c-.957 1.408-10.284 2.912-14.821 2.912zm0-7.635c4.537 0 13.81-1.516 14.821-3V7.636c-.957 1.408-10.284 2.912-14.821 2.912zm0-7.636c4.537 0 13.81-1.516 14.821-3V0C18.453 1.408 9.126 2.912 4.589 2.912z`},null,-1)]])}var _Ke,vKe,yKe,bKe=s((()=>{FS(),G(),_Ke=PS({default:()=>yKe,render:()=>gKe}),vKe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 24 24`},yKe={render:gKe}}));function xKe(e,t){return F(),I(`svg`,CKe,[...t[0]||=[R(`path`,{d:`m2.4 11.4 5.1-4.6-5.1-4.7L.7 3.7l3.4 3v.1l-3.4 3zm14.2 3.3v-2.2h-8v2.2z`},null,-1)]])}var SKe,CKe,wKe,TKe=s((()=>{FS(),G(),SKe=PS({default:()=>wKe,render:()=>xKe}),CKe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 17 17`},wKe={render:xKe}}));function EKe(e,t){return F(),I(`svg`,OKe,[...t[0]||=[R(`path`,{d:`M117.3 87.3c.2-.6.4-1.3.5-1.9 7-28-10.1-61.2-39.2-78.6C91.4 24 97 44.9 92 63.2c-.4 1.6-1 3.2-1.6 4.7-.6-.4-1.5-.9-2.5-1.5 0 0-28.9-17.9-60.2-49.4-.9-.8 16.7 25 36.6 46.1-9.4-5.3-35.5-24.3-52-39.4 2 3.4 4.4 6.7 7.1 9.8C33.1 51 51.2 72.6 72.7 89.2c-15.2 9.3-36.6 10-57.9 0C9.5 86.7 4.6 83.7 0 80.3c9 14.4 22.9 26.9 39.9 34.2 20.2 8.7 40.3 8.1 55.2.1.1 0 .1-.1.2-.1.7-.4 1.3-.7 2-1.1 7.2-3.7 21.3-7.4 28.9 7.4 1.7 3.6 5.7-15.6-8.9-33.5`},null,-1)]])}var DKe,OKe,kKe,AKe=s((()=>{FS(),G(),DKe=PS({default:()=>kKe,render:()=>EKe}),OKe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 128 128`},kKe={render:EKe}}));function jKe(e,t){return F(),I(`svg`,NKe,[...t[0]||=[R(`path`,{d:`M1.125 0C.502 0 0 .502 0 1.125v21.75C0 23.498.502 24 1.125 24h21.75c.623 0 1.125-.502 1.125-1.125V1.125C24 .502 23.498 0 22.875 0zm17.363 9.75q.918 0 1.627.111a6.4 6.4 0 0 1 1.306.34v2.458a4 4 0 0 0-.643-.361 5 5 0 0 0-.717-.26 5.5 5.5 0 0 0-1.426-.2q-.45 0-.819.086a2.1 2.1 0 0 0-.623.242q-.254.156-.393.374a.9.9 0 0 0-.14.49q0 .294.156.529.156.234.443.444c.287.21.423.276.696.41q.41.203.926.416.705.296 1.266.628.561.333.963.753.402.418.614.957.213.538.214 1.253 0 .986-.373 1.656a3 3 0 0 1-1.012 1.085 4.4 4.4 0 0 1-1.487.596q-.85.18-1.79.18a10 10 0 0 1-1.84-.164 5.5 5.5 0 0 1-1.512-.493v-2.63a5.03 5.03 0 0 0 3.237 1.2q.5 0 .872-.09.373-.09.623-.25.249-.162.373-.38a1.02 1.02 0 0 0-.074-1.089 2.1 2.1 0 0 0-.537-.5 5.6 5.6 0 0 0-.807-.444 28 28 0 0 0-1.007-.436q-1.377-.575-2.053-1.405t-.676-2.005q0-.92.369-1.582.368-.662 1.004-1.089a4.5 4.5 0 0 1 1.47-.629 7.5 7.5 0 0 1 1.77-.201m-15.113.188h9.563v2.166H9.506v9.646H6.789v-9.646H3.375z`},null,-1)]])}var MKe,NKe,PKe,FKe=s((()=>{FS(),G(),MKe=PS({default:()=>PKe,render:()=>jKe}),NKe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 24 24`},PKe={render:jKe}}));function IKe(e,t){return F(),I(`svg`,RKe,[...t[0]||=[R(`path`,{fill:`none`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M7.8 4.6 1.4 11c-.6.6-.6 1.6 0 2l6.2 6.2m8.6-14.6 6.2 6.2c.6.6.6 1.6 0 2l-6.2 6.6`},null,-1)]])}var LKe,RKe,zKe,BKe=s((()=>{FS(),G(),LKe=PS({default:()=>zKe,render:()=>IKe}),RKe={xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 24 24`},zKe={render:IKe}}));function VKe(e,t){return F(),I(`svg`,UKe,[...t[0]||=[R(`path`,{d:`M23.55 10.91 13.09.45a1.55 1.55 0 0 0-2.18 0L8.46 2.9 11 5.48a2.06 2.06 0 0 1 1-.23 2.25 2.25 0 0 1 2.25 2.25 2.2 2.2 0 0 1-.22 1l2.19 2.2a2 2 0 1 1-1.06 1.06L13 9.52a1 1 0 0 1-.21.09v5.54a2 2 0 1 1-1.5 0V9.61A2.24 2.24 0 0 1 9.75 7.5a2.2 2.2 0 0 1 .22-1L7.4 4 .45 11a1.55 1.55 0 0 0 0 2.18l10.46 10.37a1.55 1.55 0 0 0 2.18 0l10.46-10.46a1.55 1.55 0 0 0 0-2.18`},null,-1)]])}var HKe,UKe,WKe,GKe=s((()=>{FS(),G(),HKe=PS({default:()=>WKe,render:()=>VKe}),UKe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 24 24`},WKe={render:VKe}}));function KKe(e,t){return F(),I(`svg`,JKe,[...t[0]||=[R(`path`,{d:`M12.001 4.8q-4.8 0-6 4.8 1.8-2.4 4.2-1.8c.913.228 1.565.89 2.288 1.624C13.666 10.618 15.027 12 18.001 12q4.8 0 6-4.8-1.8 2.4-4.2 1.8c-.913-.228-1.565-.89-2.288-1.624C16.337 6.182 14.976 4.8 12.001 4.8m-6 7.2q-4.8 0-6 4.8 1.8-2.4 4.2-1.8c.913.228 1.565.89 2.288 1.624 1.177 1.194 2.538 2.576 5.512 2.576q4.8 0 6-4.8-1.8 2.4-4.2 1.8c-.913-.228-1.565-.89-2.288-1.624C10.337 13.382 8.976 12 6.001 12`},null,-1)]])}var qKe,JKe,YKe,XKe=s((()=>{FS(),G(),qKe=PS({default:()=>YKe,render:()=>KKe}),JKe={xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,viewBox:`0 0 24 24`},YKe={render:KKe}}));function ZKe(e,t){return F(),I(`svg`,$Ke,[...t[0]||=[R(`path`,{fill:`currentColor`,"fill-rule":`evenodd`,d:`M2 11.997C2 20.066 3.934 22 11.997 22 20.066 22 22 20.066 22 11.997 22 3.934 20.06 2 11.997 2S2 3.934 2 11.997m4.034 2.081 3.129-7.132a2.96 2.96 0 0 1 2.828-1.848c1.285 0 2.302.649 2.834 1.848l3.135 7.132c.14.343.263.796.263 1.182 0 1.77-1.243 3.012-3.012 3.012-.606 0-1.084-.153-1.567-.306a5.1 5.1 0 0 0-1.653-.325c-.643 0-1.157.16-1.665.325-.49.153-.968.306-1.55.306A2.89 2.89 0 0 1 5.76 15.26c0-.392.122-.839.27-1.182zm5.963-5.889L8.905 15.2c.919-.429 1.972-.637 3.092-.637 1.084 0 2.18.208 3.06.637z`,"clip-rule":`evenodd`},null,-1)]])}var QKe,$Ke,eqe,tqe=s((()=>{FS(),G(),QKe=PS({default:()=>eqe,render:()=>ZKe}),$Ke={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},eqe={render:ZKe}}));function nqe(e,t){return F(),I(`svg`,iqe)}var rqe,iqe,aqe,oqe=s((()=>{FS(),G(),rqe=PS({default:()=>aqe,render:()=>nqe}),iqe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},aqe={render:nqe}}));function sqe(e,t){return F(),I(`svg`,lqe,[...t[0]||=[ni(``,29)]])}var cqe,lqe,uqe,dqe=s((()=>{FS(),G(),cqe=PS({default:()=>uqe,render:()=>sqe}),lqe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},uqe={render:sqe}}));function fqe(e,t){return F(),I(`svg`,mqe,[...t[0]||=[R(`path`,{fill:`#512BD4`,d:`M22 2H2v20h20z`},null,-1),R(`path`,{fill:`#fff`,d:`M5.565 14.778a.5.5 0 0 1-.361-.142.47.47 0 0 1-.148-.344.47.47 0 0 1 .148-.348.5.5 0 0 1 .36-.145q.216 0 .365.145a.46.46 0 0 1 .152.348.46.46 0 0 1-.152.344.5.5 0 0 1-.364.142m5.653-.08h-.92l-2.421-3.82a1.7 1.7 0 0 1-.152-.301h-.021q.028.166.028.714v3.407h-.813V9.5h.98l2.34 3.73q.148.232.19.319h.015a5 5 0 0 1-.036-.7V9.5h.81zm3.96 0h-2.846V9.5h2.732v.732h-1.89v1.472h1.742v.728h-1.743v1.537h2.005zm4.044-4.466h-1.456v4.466h-.842v-4.466h-1.453V9.5h3.751z`},null,-1)]])}var pqe,mqe,hqe,gqe=s((()=>{FS(),G(),pqe=PS({default:()=>hqe,render:()=>fqe}),mqe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},hqe={render:fqe}}));function _qe(e,t){return F(),I(`svg`,yqe,[...t[0]||=[ni(``,9)]])}var vqe,yqe,bqe,xqe=s((()=>{FS(),G(),vqe=PS({default:()=>bqe,render:()=>_qe}),yqe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},bqe={render:_qe}}));function Sqe(e,t){return F(),I(`svg`,wqe,[...t[0]||=[R(`path`,{fill:`currentColor`,d:`m16.378 12.034-4.148-5.53h.507c.369 0 .738.185.968.461l3.272 4.286 3.226-4.24c.322-.322.691-.507 1.06-.507h.553l-4.194 5.53L22 17.841h-.553c-.369 0-.737-.185-.968-.507l-3.456-4.516-3.456 4.516c-.23.322-.6.46-.968.46h-.553zm-13.456.461v.369c0 1.935 1.29 3.686 3.18 4.147a4.15 4.15 0 0 0 4.654-2.258c.138-.23.368-.415.645-.415h.46a5.07 5.07 0 0 1-4.792 3.687C4.212 18.025 2 15.583 2 12.541v-1.29c0-2.489 1.751-4.747 4.24-5.207a5.07 5.07 0 0 1 5.898 5.069v1.382zm0-.921h8.295v-.461a4.148 4.148 0 0 0-5.07-4.056c-1.935.461-3.225 2.212-3.225 4.378z`},null,-1)]])}var Cqe,wqe,Tqe,Eqe=s((()=>{FS(),G(),Cqe=PS({default:()=>Tqe,render:()=>Sqe}),wqe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},Tqe={render:Sqe}}));function Dqe(e,t){return F(),I(`svg`,kqe,[...t[0]||=[R(`path`,{fill:`currentColor`,d:`M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20m-.7 4.5h6.3L11.3 11h4.3l-9.2 6.4 2-4.4 1-2 2-4.5z`},null,-1)]])}var Oqe,kqe,Aqe,jqe=s((()=>{FS(),G(),Oqe=PS({default:()=>Aqe,render:()=>Dqe}),kqe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},Aqe={render:Dqe}}));function Mqe(e,t){return F(),I(`svg`,Pqe,[...t[0]||=[R(`path`,{fill:`currentColor`,d:`M23.241 7.492 24 5.536l-.031-.125-7.479 1.971c.798-1.158.524-2.08.524-2.08s-2.386 1.525-4.193 1.486c-1.807-.04-2.386-.525-5.155.36-2.769.883-3.551 3.59-4.357 4.177-.798.579-3.309 2.51-3.309 2.51l2.269-.727s-.642.61-1.964 2.386v.008c.211.297 1.142 1.525 2.065 1.26.102-.032.22-.087.352-.15.415.236.97.462 1.573.525 0 0-.407-.47-.751-1.017l.281-.18-.047.031.869.313-.094-.813h.008l.844.313-.101-.744.32-.156.884-3.348 3.661-2.503-.289.735c-.743 1.823-2.136 2.253-2.136 2.253l-.578.227c-.438.508-.618.634-.767 2.354.352-.093.68-.11.986-.03 1.564.422 2.104 2.307 1.681 2.831-.101.125-.352.352-.672.61H7.76l-.008.516-.062.055h-.65l-.007.5-.173.126c-.602.016-1.376-.516-1.376-.516.008.485.406 1.228.406 1.228l.07-.04-.062.048s1.627 1.08 2.652.68c.908-.36 3.262-2.214 5.296-3.09l6.149-1.627.813-2.096-4.685 1.236V13.14l5.499-1.448.814-2.104-6.313 1.666V9.37zm-11.163 3.997 1.463-.383.016.07-.454 1.181-1.51.4zm.5 2.527-1.509.399.493-1.268 1.455-.383.023.07zm1.972-.423-1.51.4.493-1.268 1.455-.383.024.07z`},null,-1)]])}var Nqe,Pqe,Fqe,Iqe=s((()=>{FS(),G(),Nqe=PS({default:()=>Fqe,render:()=>Mqe}),Pqe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},Fqe={render:Mqe}}));function Lqe(e,t){return F(),I(`svg`,zqe,[...t[0]||=[R(`path`,{fill:`currentColor`,d:`M1.81 10.714c-.046 0-.058-.023-.034-.058l.245-.316c.023-.035.082-.058.128-.058h4.17c.047 0 .059.035.035.07l-.198.304c-.024.035-.082.07-.117.07zM.048 11.789c-.047 0-.059-.024-.035-.059l.245-.315c.023-.035.082-.059.128-.059h5.327c.047 0 .07.036.058.07l-.093.28c-.012.048-.058.07-.105.07zm2.826 1.074c-.046 0-.058-.035-.035-.07l.164-.292c.023-.035.07-.07.117-.07h2.336c.047 0 .07.035.07.082l-.023.28c0 .047-.047.082-.082.082l-2.546-.012Zm12.125-2.36-1.962.515c-.175.046-.187.058-.339-.117a1.6 1.6 0 0 0-.549-.444 2.03 2.03 0 0 0-2.114.175 2.49 2.49 0 0 0-1.192 2.22c.012.934.655 1.705 1.577 1.833.795.106 1.46-.175 1.986-.77l.316-.433h-2.255c-.245 0-.304-.151-.222-.35.152-.362.432-.97.596-1.273a.32.32 0 0 1 .292-.187h4.252c-.024.315-.024.63-.07.946a5 5 0 0 1-.958 2.29 4.87 4.87 0 0 1-3.33 1.985 4.14 4.14 0 0 1-3.141-.77A3.67 3.67 0 0 1 6.4 13.528a4.58 4.58 0 0 1 .993-3.422 5.2 5.2 0 0 1 3.27-2.021c1.099-.199 2.15-.07 3.096.572.62.409 1.063.97 1.355 1.647.07.105.024.164-.117.199Z`},null,-1),R(`path`,{fill:`currentColor`,d:`M18.865 16.963a4.38 4.38 0 0 1-2.85-1.028 3.67 3.67 0 0 1-1.262-2.254 4.46 4.46 0 0 1 .946-3.528 4.9 4.9 0 0 1 3.27-1.95 4.32 4.32 0 0 1 3.33.595 3.63 3.63 0 0 1 1.647 2.605 4.51 4.51 0 0 1-1.343 3.96 5.35 5.35 0 0 1-2.804 1.495c-.315.058-.63.07-.934.105m2.78-4.719c-.012-.152-.012-.268-.035-.385a1.93 1.93 0 0 0-2.383-1.554c-1.087.245-1.787.935-2.044 2.033-.21.91.233 1.834 1.074 2.207.643.28 1.285.246 1.904-.07a2.56 2.56 0 0 0 1.484-2.23Z`},null,-1)]])}var Rqe,zqe,Bqe,Vqe=s((()=>{FS(),G(),Rqe=PS({default:()=>Bqe,render:()=>Lqe}),zqe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},Bqe={render:Lqe}}));function Hqe(e,t){return F(),I(`svg`,Wqe,[...t[0]||=[R(`path`,{fill:`#FF5B11`,d:`M12.371 1.736q.08-.01.141.04a76 76 0 0 1 4.217 5.662 28 28 0 0 1 2.49 4.659q1.64 4.374-1.707 7.61-2.928 2.475-6.747 1.928-4.564-.93-6.205-5.281a7.4 7.4 0 0 1-.28-2.891 17.3 17.3 0 0 1 1.204-4.9 7.3 7.3 0 0 1 1.044-1.767q.525.625 1.004 1.285.222.232.462.442a38 38 0 0 1 4.377-6.787`,opacity:`.993`},null,-1),R(`path`,{fill:`#FF9758`,d:`M12.09 5.962a42.5 42.5 0 0 1 3.996 5.462q.56.959.924 2.008.758 2.982-1.627 4.92-2.306 1.622-5.06.963-2.97-.921-3.433-3.996a4.25 4.25 0 0 1 .2-1.887c.297-.754.66-1.48 1.085-2.168L9.38 9.495q1.367-1.758 2.71-3.534Z`},null,-1)]])}var Uqe,Wqe,Gqe,Kqe=s((()=>{FS(),G(),Uqe=PS({default:()=>Gqe,render:()=>Hqe}),Wqe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},Gqe={render:Hqe}}));function qqe(e,t){return F(),I(`svg`,Yqe,[...t[0]||=[R(`path`,{fill:`#FF2D20`,d:`M21.217 6.8a.3.3 0 0 1 .012.076v4.078a.3.3 0 0 1-.15.26l-3.424 1.969v3.907a.3.3 0 0 1-.147.259l-7.15 4.111q-.023.014-.05.024l-.021.007a.3.3 0 0 1-.152 0l-.024-.01c-.017-.007-.033-.011-.048-.02l-7.142-4.112a.3.3 0 0 1-.15-.26V4.857q0-.043.012-.079c0-.01.007-.016.01-.023a.2.2 0 0 1 .019-.048l.021-.026.024-.036.03-.024.034-.023L6.492 2.54a.29.29 0 0 1 .298 0l3.573 2.053.033.024.029.024.026.036.022.023.019.048c0 .01.007.017.01.024a.4.4 0 0 1 .009.08v7.643l2.978-1.713v-3.91c0-.023.003-.052.01-.076l.01-.026.018-.047.022-.024.026-.036.029-.024.033-.023L17.21 4.56a.3.3 0 0 1 .298 0l3.57 2.058.034.024c.01.01.022.014.029.024q.017.015.026.035l.021.024c.01.017.015.03.02.048l.009.023zm-.58 3.98V7.392l-1.252.719-1.727.994v3.393l2.978-1.713zm-3.576 6.138v-3.395l-1.7.971-4.85 2.77v3.425l6.55-3.77ZM3.366 5.37v11.548l6.55 3.769V17.26l-3.421-1.934h-.003l-.03-.024c-.01-.01-.022-.014-.03-.024-.011-.01-.018-.024-.025-.03l-.024-.032-.014-.038q-.009-.015-.015-.033l-.007-.043-.002-.033V7.08l-1.728-.994-1.253-.716zm3.276-2.23L3.666 4.857 6.64 6.569l2.976-1.713-2.974-1.713zM8.19 13.833l1.727-.992V5.37l-1.247.718-1.727.995v7.47l1.249-.72zm9.169-8.667-2.974 1.713 2.974 1.713 2.974-1.713zm-.297 3.943-1.728-.995-1.249-.718v3.385l1.727.995 1.25.72v-3.39zm-6.845 7.639 4.365-2.491 2.182-1.244L13.79 11.3l-3.426 1.972-3.117 1.796z`},null,-1)]])}var Jqe,Yqe,Xqe,Zqe=s((()=>{FS(),G(),Jqe=PS({default:()=>Xqe,render:()=>qqe}),Yqe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},Xqe={render:qqe}}));function Qqe(e,t){return F(),I(`svg`,eJe,[...t[0]||=[ni(``,2)]])}var $qe,eJe,tJe,nJe=s((()=>{FS(),G(),$qe=PS({default:()=>tJe,render:()=>Qqe}),eJe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},tJe={render:Qqe}}));function rJe(e,t){return F(),I(`svg`,aJe,[...t[0]||=[R(`path`,{fill:`#E0234E`,"fill-rule":`evenodd`,d:`M13.776 2.04c-.144 0-.279.03-.403.071.264.176.409.409.48.672.006.036.016.062.021.098q.009.046.01.093c.021.455-.118.511-.216.78-.15.346-.109.718.072 1.017a.6.6 0 0 0 .062.114c-.196-1.307.894-1.503 1.095-1.91.016-.357-.279-.595-.511-.76a1.14 1.14 0 0 0-.61-.176Zm1.643.294c-.021.118-.005.087-.01.15-.006.04-.006.092-.01.134q-.016.063-.037.124a1 1 0 0 1-.042.124c-.02.041-.035.077-.056.118-.016.021-.026.042-.042.062l-.03.047a2 2 0 0 1-.078.103c-.03.031-.057.067-.093.093v.005c-.031.026-.062.057-.098.083-.108.082-.233.145-.346.222-.036.026-.073.046-.103.078a1 1 0 0 0-.099.082c-.036.031-.062.062-.093.098-.025.031-.056.067-.077.104q-.039.052-.072.108c-.021.041-.036.077-.057.119-.016.041-.031.077-.042.119a2 2 0 0 0-.036.129c-.005.02-.005.046-.01.067-.005.02-.005.041-.01.062 0 .041-.005.088-.005.129q-.001.046.005.093 0 .06.015.13.01.06.026.123l.041.124c.01.026.026.052.037.072l-1.188-.46a13 13 0 0 0-.6-.154l-.325-.078a10 10 0 0 0-.94-.14c-.01 0-.016-.004-.026-.004a9 9 0 0 0-1.601-.021c-.315.02-.63.062-.945.114q-.116.017-.233.04-.232.048-.465.104l-.232.062c-.077.031-.15.067-.222.098l-.17.078c-.01.005-.021.005-.026.01-.052.026-.098.047-.145.073a2 2 0 0 0-.196.098c-.036.015-.072.036-.104.051a3 3 0 0 0-.305.18c-.035.027-.071.048-.103.073-.005.005-.01.005-.015.01a1 1 0 0 0-.098.073l-.01.01-.078.062c-.01.005-.02.016-.03.02l-.078.068c-.006.01-.016.016-.021.02-.031.032-.062.058-.093.088-.005 0-.005.006-.01.011a2 2 0 0 0-.094.088c-.005.005-.005.01-.01.01a1 1 0 0 0-.077.083c-.01.01-.026.02-.036.03q-.04.047-.088.094c-.005.01-.016.015-.02.025-.042.042-.078.083-.12.124l-.015.016q-.123.134-.264.253-.14.125-.289.227a3.2 3.2 0 0 1-.635.351 4 4 0 0 1-.336.124c-.217.047-.439.135-.63.15-.041 0-.088.01-.129.016l-.129.03-.124.047a1 1 0 0 0-.124.057c-.036.026-.077.046-.114.072a1 1 0 0 0-.103.088 1 1 0 0 0-.103.093c-.031.036-.062.067-.088.103-.026.042-.057.078-.078.12a1 1 0 0 0-.072.118q-.032.067-.057.134l-.046.134a1 1 0 0 0-.026.124c0 .006-.005.011-.005.016-.01.047-.01.108-.016.14q-.009.05-.01.103a.5.5 0 0 0 .026.165q.014.046.036.093v.005a1 1 0 0 0 .057.093 1 1 0 0 0 .067.093q.042.044.088.083.045.045.098.082c.124.109.155.145.315.228q.038.02.083.041c.005 0 .01.005.015.005q-.001.013.005.026.01.062.026.124a1 1 0 0 0 .041.124c.016.03.026.062.042.093q.007.016.015.026l.062.113.078.109q.042.051.088.098.045.043.098.088s.005.005.01.005a1 1 0 0 0 .207.14 1 1 0 0 0 .118.056.6.6 0 0 0 .104.036c.005.005.01.005.02.01.021.006.047.011.068.016-.016.279-.021.543.02.635.047.104.274-.211.501-.573-.03.357-.051.775 0 .899.057.129.367-.274.636-.718 3.662-.847 7.003 1.684 7.354 5.258-.067-.558-.754-.868-1.069-.79-.155.382-.418.873-.841 1.177.037-.345.02-.693-.052-1.033a3.3 3.3 0 0 1-.64 1.302c-.491.036-.982-.202-1.24-.558-.02-.015-.026-.046-.042-.067a1 1 0 0 1-.04-.108.4.4 0 0 1-.032-.109q-.006-.052-.005-.114v-.077a1 1 0 0 1 .026-.109 1 1 0 0 1 .036-.108c.02-.036.036-.072.062-.108.088-.248.088-.45-.072-.569a.6.6 0 0 0-.099-.051c-.02-.006-.046-.016-.067-.021l-.041-.015a1 1 0 0 0-.109-.026.4.4 0 0 0-.108-.016 1 1 0 0 0-.114-.01c-.025 0-.051.005-.077.005a.4.4 0 0 0-.114.015q-.054.007-.108.021a1 1 0 0 0-.109.036l-.103.047c-.03.015-.062.036-.098.052-1.203.784-.486 2.623.336 3.155-.31.057-.625.124-.713.191l-.01.01q.334.202.697.347.415.134.837.248v.005a5 5 0 0 0 1.301.093c2.288-.16 4.163-1.9 4.504-4.194l.031.134c.015.093.036.191.046.29v.005q.014.07.021.134v.02q.009.072.01.135.01.085.01.17v.083c0 .026.006.057.006.083 0 .03-.005.062-.005.093v.072c0 .036-.005.067-.005.103q.001.029-.006.067c0 .036-.005.073-.005.114q-.006.022-.005.046l-.015.12q.001.022-.005.046c-.006.051-.016.098-.021.15v.01c-.01.046-.02.098-.031.144v.016l-.031.14c0 .005-.005.015-.005.02a1 1 0 0 1-.036.14v.015q-.025.076-.042.145-.006.009-.005.01l-.046.155c-.021.052-.037.098-.057.15s-.036.103-.057.15l-.062.15h-.005c-.021.046-.041.097-.067.144l-.016.036c-.005.005-.005.01-.01.015a4.9 4.9 0 0 1-1.451 1.736q-.063.04-.125.088c-.01.01-.026.015-.036.026q-.053.038-.113.077l.015.031h.005l.217-.03h.005q.202-.033.403-.073a1 1 0 0 0 .114-.026l.072-.015c.036-.006.072-.016.109-.021.03-.01.062-.016.093-.026a10 10 0 0 0 1.497-.496 8.3 8.3 0 0 1-3.207 2.619 8.5 8.5 0 0 0 1.761-.305 8.25 8.25 0 0 0 4.881-3.9 8.2 8.2 0 0 1-1.39 3.321c.501-.33.964-.714 1.38-1.146a8.2 8.2 0 0 0 2.174-4.39c.177.817.227 1.657.15 2.49 3.73-5.202.31-10.594-1.12-12.015-.006-.01-.01-.015-.01-.026-.006.006-.006.006-.006.011 0-.005 0-.005-.005-.01q-.002.092-.01.186a7 7 0 0 1-.052.345 8 8 0 0 1-.088.341 4 4 0 0 1-.124.33q-.072.162-.155.316a4 4 0 0 1-.398.573c-.077.093-.16.176-.242.259a3 3 0 0 1-.15.129l-.12.103c-.092.072-.185.14-.288.201a4 4 0 0 1-.305.176 9 9 0 0 1-.325.145 3.6 3.6 0 0 1-.682.186c-.12.02-.238.03-.351.04a4 4 0 0 1-.248.011c-.12 0-.238-.01-.351-.02a3 3 0 0 1-.352-.052 3 3 0 0 1-.346-.088h-.005c.114-.01.227-.02.341-.041a3.7 3.7 0 0 0 1.317-.501q.148-.099.29-.207.138-.108.263-.232c.087-.078.165-.165.242-.253q.117-.14.217-.28c.01-.015.02-.035.031-.05q.08-.125.15-.249a3.6 3.6 0 0 0 .367-.981c.02-.119.041-.233.052-.346.01-.119.02-.238.02-.351q-.001-.125-.01-.248-.017-.178-.041-.346a4 4 0 0 0-.078-.346c-.036-.109-.072-.222-.114-.331a3.5 3.5 0 0 0-.527-.91 11 11 0 0 0-.237-.262 3 3 0 0 0-.134-.13 9 9 0 0 0-.718-.506 1 1 0 0 0-.104-.051 2 2 0 0 0-.49-.217`,"clip-rule":`evenodd`},null,-1)]])}var iJe,aJe,oJe,sJe=s((()=>{FS(),G(),iJe=PS({default:()=>oJe,render:()=>rJe}),aJe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},oJe={render:rJe}}));function cJe(e,t){return F(),I(`svg`,uJe,[...t[0]||=[R(`path`,{fill:`currentColor`,d:`M11.345 2.005c-.043.004-.18.018-.303.028-2.84.256-5.501 1.788-7.187 4.144a9.9 9.9 0 0 0-1.765 4.369c-.08.549-.09.711-.09 1.456s.01.907.09 1.456c.543 3.755 3.216 6.91 6.84 8.08.65.208 1.334.351 2.112.437.303.033 1.613.033 1.916 0 1.343-.149 2.48-.48 3.603-1.053.172-.088.205-.112.182-.131a191 191 0 0 1-1.629-2.184l-1.599-2.16-2.004-2.965a284 284 0 0 0-2.017-2.964 161 161 0 0 0-.02 2.925c-.006 2.816-.008 2.93-.043 2.996a.36.36 0 0 1-.172.178c-.063.031-.117.037-.412.037h-.339l-.09-.056a.4.4 0 0 1-.13-.143l-.042-.088.004-3.92.006-3.92.06-.077a.5.5 0 0 1 .145-.12c.08-.038.112-.042.45-.042.399 0 .465.016.569.129.03.031 1.114 1.665 2.412 3.634l3.946 5.975 1.583 2.399.08-.053a10.3 10.3 0 0 0 2.055-1.802 9.95 9.95 0 0 0 2.354-5.112c.08-.549.09-.711.09-1.456s-.01-.907-.09-1.456c-.543-3.755-3.216-6.91-6.84-8.08a10.5 10.5 0 0 0-2.083-.435c-.187-.02-1.48-.041-1.642-.026m4.094 6.048c.094.047.17.137.197.231.016.05.02 1.138.016 3.587l-.006 3.515-.62-.95-.621-.95V10.93c0-1.652.008-2.58.02-2.625a.4.4 0 0 1 .193-.247c.08-.04.11-.045.416-.045.29 0 .34.004.405.04`},null,-1)]])}var lJe,uJe,dJe,fJe=s((()=>{FS(),G(),lJe=PS({default:()=>dJe,render:()=>cJe}),uJe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},dJe={render:cJe}}));function pJe(e,t){return F(),I(`svg`,hJe,[...t[0]||=[ni(``,2)]])}var mJe,hJe,gJe,_Je=s((()=>{FS(),G(),mJe=PS({default:()=>gJe,render:()=>pJe}),hJe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},gJe={render:pJe}}));function vJe(e,t){return F(),I(`svg`,bJe,[...t[0]||=[R(`path`,{fill:`#00DC82`,d:`M13.32 19.333h8.14c.26 0 .508-.09.733-.22.226-.129.457-.29.587-.513s.22-.476.22-.733c0-.258-.09-.51-.22-.734l-5.5-9.46a1.34 1.34 0 0 0-.513-.513 1.8 1.8 0 0 0-.807-.22c-.26 0-.508.09-.733.22-.216.12-.393.298-.514.513l-1.393 2.42L10.533 5.4c-.13-.223-.288-.458-.513-.587s-.474-.146-.733-.146c-.26 0-.509.018-.734.146-.24.146-.441.347-.586.587l-6.82 11.733c-.13.223-.147.476-.147.734 0 .257.017.51.147.733s.361.384.586.513c.225.13.474.22.734.22H7.6c2.034 0 3.515-.912 4.547-2.64l2.493-4.326 1.32-2.274 4.033 6.894H14.64zm-5.793-2.346H3.933l5.354-9.24L12 12.367l-1.797 3.132c-.687 1.122-1.468 1.488-2.676 1.488`},null,-1)]])}var yJe,bJe,xJe,SJe=s((()=>{FS(),G(),yJe=PS({default:()=>xJe,render:()=>vJe}),bJe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},xJe={render:vJe}}));function CJe(e,t){return F(),I(`svg`,TJe,[...t[0]||=[ni(``,10)]])}var wJe,TJe,EJe,DJe=s((()=>{FS(),G(),wJe=PS({default:()=>EJe,render:()=>CJe}),TJe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},EJe={render:CJe}}));function OJe(e,t){return F(),I(`svg`,AJe,[...t[0]||=[R(`path`,{stroke:`#21FA90`,"stroke-linecap":`round`,"stroke-linejoin":`round`,d:`M5.038 13.757v3.814m1.496-4.566 3.04 1.761 4.534-2.627V6.885L9.574 4.258 5.038 6.885v4.56m1.496 1.56v1.668m0-1.668 1.49-.91`},null,-1),R(`path`,{stroke:`#00050B`,"stroke-linecap":`round`,"stroke-linejoin":`round`,"stroke-width":`.885`,d:`m21.719 10.719 1.839 1.09v1.09l-1.84 1.091M2.834 8.13.774 9.322v5.326l2.016 1.167m3.744 1.07v1.183l3.021 1.674 2.32-1.358-.02-2.471m2.282-1.387v1.3L16.31 17.1l3.175-1.9v-5.186L16.36 8.217`},null,-1)]])}var kJe,AJe,jJe,MJe=s((()=>{FS(),G(),kJe=PS({default:()=>jJe,render:()=>OJe}),AJe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},jJe={render:OJe}}));function NJe(e,t){return F(),I(`svg`,FJe,[...t[0]||=[R(`path`,{fill:`#61DAFB`,d:`M12.5 14.014a1.783 1.783 0 1 0 0-3.565 1.783 1.783 0 0 0 0 3.565`},null,-1),R(`path`,{stroke:`#61DAFB`,"stroke-width":`.87`,d:`M12.5 15.884c5.283 0 9.565-1.635 9.565-3.652S17.783 8.58 12.5 8.58s-9.565 1.635-9.565 3.652 4.282 3.652 9.565 3.652Z`},null,-1),R(`path`,{stroke:`#61DAFB`,"stroke-width":`.87`,d:`M9.337 14.058c2.642 4.575 6.199 7.466 7.946 6.457 1.746-1.008 1.021-5.534-1.62-10.11C13.02 5.832 9.464 2.94 7.717 3.949s-1.021 5.535 1.62 10.11Z`},null,-1),R(`path`,{stroke:`#61DAFB`,"stroke-width":`.87`,d:`M9.337 10.406c-2.641 4.575-3.366 9.1-1.62 10.11 1.747 1.008 5.304-1.883 7.946-6.458s3.366-9.101 1.62-10.11c-1.747-1.009-5.305 1.883-7.946 6.458Z`},null,-1)]])}var PJe,FJe,IJe,LJe=s((()=>{FS(),G(),PJe=PS({default:()=>IJe,render:()=>NJe}),FJe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},IJe={render:NJe}}));function RJe(e,t){return F(),I(`svg`,BJe,[...t[0]||=[R(`path`,{fill:`currentColor`,d:`m21.863 11.755-.839-.52-.024-.244.722-.673a.288.288 0 0 0-.096-.482l-.923-.345-.072-.239.575-.799a.288.288 0 0 0-.187-.455l-.973-.158-.117-.218.409-.897a.286.286 0 0 0-.273-.409l-.987.034-.157-.188.228-.962a.287.287 0 0 0-.348-.348l-.96.227-.19-.157.034-.986a.287.287 0 0 0-.409-.273l-.897.409-.218-.118-.158-.972a.288.288 0 0 0-.454-.189l-.8.575-.238-.071-.345-.923a.288.288 0 0 0-.482-.096L13.01 3l-.245-.023-.52-.84a.29.29 0 0 0-.49 0l-.52.84q-.123.01-.245.023l-.673-.722a.29.29 0 0 0-.482.096l-.345.923q-.12.034-.237.072l-.8-.576a.288.288 0 0 0-.455.188l-.158.973q-.11.057-.22.118l-.895-.41a.287.287 0 0 0-.409.273l.034.988-.19.156-.96-.227a.29.29 0 0 0-.348.348l.227.962-.157.188-.987-.034a.288.288 0 0 0-.273.409l.409.897a7 7 0 0 0-.117.22l-.972.156a.288.288 0 0 0-.189.455l.575.8-.071.237-.923.346a.29.29 0 0 0-.096.482L3 10.99l-.024.244-.84.52a.29.29 0 0 0 0 .492l.84.519q.01.123.025.245l-.723.673a.29.29 0 0 0 .096.482l.922.345q.035.12.073.237l-.576.8a.29.29 0 0 0 .188.454l.973.158q.056.11.117.22l-.41.896a.288.288 0 0 0 .274.409l.987-.035q.076.096.156.19l-.227.961a.287.287 0 0 0 .348.347l.961-.226.19.156-.035.987a.288.288 0 0 0 .41.273l.896-.41q.108.06.219.119l.158.971a.288.288 0 0 0 .455.19l.799-.577q.118.038.237.072l.345.923a.287.287 0 0 0 .482.096L10.99 21q.121.014.244.025l.52.839a.29.29 0 0 0 .492 0l.519-.84q.123-.01.245-.024l.674.722a.287.287 0 0 0 .48-.096l.346-.923q.12-.034.238-.072l.8.576a.29.29 0 0 0 .454-.189l.158-.972.219-.117.896.409a.288.288 0 0 0 .41-.273l-.035-.988a7 7 0 0 0 .19-.155l.96.226a.287.287 0 0 0 .348-.347l-.226-.961.155-.19.988.035a.29.29 0 0 0 .272-.41l-.409-.896q.06-.108.117-.219l.973-.158a.287.287 0 0 0 .188-.454l-.575-.8.072-.237.922-.345a.286.286 0 0 0 .096-.482L21 13.011l.025-.245.839-.52a.29.29 0 0 0 0-.49Zm-5.619 6.965a.595.595 0 0 1 .25-1.163.595.595 0 0 1-.25 1.163m-.286-1.93a.54.54 0 0 0-.642.417l-.299 1.391a7.3 7.3 0 0 1-3.017.65c-1.1 0-2.144-.243-3.08-.679l-.299-1.39a.54.54 0 0 0-.643-.417l-1.228.263a7 7 0 0 1-.635-.748h5.976c.068 0 .113-.012.113-.074V14.09c0-.062-.046-.074-.113-.074h-1.747v-1.34h1.89c.172 0 .922.049 1.162 1.007.075.295.24 1.254.352 1.561.113.344.57 1.032 1.059 1.032h2.977a1 1 0 0 0 .108-.01q-.31.421-.677.794l-1.256-.27Zm-8.265 1.9a.594.594 0 1 1-.014-1.17.594.594 0 0 1 .014 1.171ZM5.427 9.5a.594.594 0 1 1-1.086.481.594.594 0 0 1 1.086-.481m-.697 1.65 1.28-.569a.543.543 0 0 0 .274-.715l-.263-.597h1.036v4.672h-2.09a7.3 7.3 0 0 1-.237-2.792Zm5.614-.454V9.32h2.468c.128 0 .9.148.9.725 0 .48-.592.652-1.08.652zm8.969 1.24q0 .273-.02.542h-.75c-.076 0-.106.05-.106.123v.345c0 .81-.457.987-.858 1.032-.381.043-.805-.16-.857-.394-.225-1.265-.6-1.536-1.192-2.003.735-.467 1.5-1.155 1.5-2.077 0-.996-.683-1.623-1.148-1.93-.652-.43-1.375-.517-1.57-.517h-7.76a7.3 7.3 0 0 1 4.091-2.308l.915.959a.54.54 0 0 0 .765.018l1.024-.98a7.32 7.32 0 0 1 5.006 3.566l-.7 1.583a.543.543 0 0 0 .275.715l1.35.6q.034.357.035.726m-7.754-8.004a.595.595 0 1 1 .82.86.595.595 0 0 1-.82-.86m6.951 5.595a.594.594 0 1 1 1.086.481.594.594 0 0 1-1.086-.481`},null,-1)]])}var zJe,BJe,VJe,HJe=s((()=>{FS(),G(),zJe=PS({default:()=>VJe,render:()=>RJe}),BJe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},VJe={render:RJe}}));function UJe(e,t){return F(),I(`svg`,GJe,[...t[0]||=[R(`path`,{fill:`#FF3E00`,d:`M18.664 3.171c-2.219-3.185-6.61-4.13-9.788-2.104L3.29 4.625A6.42 6.42 0 0 0 .398 8.917a6.74 6.74 0 0 0 .666 4.332 6.4 6.4 0 0 0-.959 2.369 6.85 6.85 0 0 0 1.166 5.175c2.219 3.194 6.61 4.137 9.782 2.11l5.586-3.557a6.42 6.42 0 0 0 2.892-4.292 6.74 6.74 0 0 0-.666-4.332 6.4 6.4 0 0 0 .959-2.369 6.94 6.94 0 0 0-1.16-5.182`},null,-1),R(`path`,{fill:`#fff`,d:`M8.327 21.099a4.435 4.435 0 0 1-4.76-1.75 4.16 4.16 0 0 1-.7-3.122q.05-.261.133-.517l.105-.318.286.182a7.1 7.1 0 0 0 2.186 1.095l.208.063-.02.201c-.025.293.055.585.223.83a1.305 1.305 0 0 0 1.779.379l5.581-3.521a1.18 1.18 0 0 0 .524-.783 1.23 1.23 0 0 0-.211-.923 1.305 1.305 0 0 0-1.78-.379l-2.12 1.35q-.53.321-1.135.488a4.435 4.435 0 0 1-4.76-1.75 4.16 4.16 0 0 1-.7-3.122 3.84 3.84 0 0 1 1.736-2.573l5.581-3.559a4.3 4.3 0 0 1 1.134-.485 4.435 4.435 0 0 1 4.76 1.751c.641.908.893 2.03.7 3.122a4 4 0 0 1-.132.517l-.105.318-.287-.182a7.1 7.1 0 0 0-2.186-1.095l-.207-.063.019-.202a1.27 1.27 0 0 0-.223-.83 1.305 1.305 0 0 0-1.779-.378L6.6 9.363a1.18 1.18 0 0 0-.523.783c-.056.323.019.655.21.923a1.305 1.305 0 0 0 1.78.38l2.121-1.35c.352-.214.732-.38 1.134-.485a4.435 4.435 0 0 1 4.76 1.75 4.16 4.16 0 0 1 .7 3.122 3.8 3.8 0 0 1-1.736 2.563l-5.58 3.559c-.353.214-.732.38-1.135.489`},null,-1)]])}var WJe,GJe,KJe,qJe=s((()=>{FS(),G(),WJe=PS({default:()=>KJe,render:()=>UJe}),GJe={xmlns:`http://www.w3.org/2000/svg`,fill:`green`,viewBox:`-2 0 24 24`},KJe={render:UJe}}));function JJe(e,t){return F(),I(`svg`,XJe,[...t[0]||=[R(`path`,{fill:`#41B883`,d:`m14.31 4.34-2.31 4-2.31-4H2l10 17.32L22 4.34z`},null,-1),R(`path`,{fill:`#34495E`,d:`m14.31 4.34-2.31 4-2.31-4H6l6 10.392L18 4.34z`},null,-1)]])}var YJe,XJe,ZJe,QJe=s((()=>{FS(),G(),YJe=PS({default:()=>ZJe,render:()=>JJe}),XJe={xmlns:`http://www.w3.org/2000/svg`,fill:`none`,viewBox:`0 0 24 24`},ZJe={render:JJe}})),DT,OT,$Je,eYe,tYe=s((()=>{sze(),cze(),lze(),uze(),dze(),fze(),pze(),mze(),hze(),gze(),_ze(),vze(),yze(),bze(),xze(),Sze(),Cze(),wze(),Tze(),Eze(),Dze(),Oze(),kze(),Aze(),jze(),Mze(),Nze(),Pze(),Fze(),Ize(),Lze(),Rze(),zze(),Bze(),Vze(),Hze(),Uze(),Wze(),Jze(),$ze(),iBe(),lBe(),mBe(),yBe(),wBe(),kBe(),PBe(),zBe(),WBe(),YBe(),eVe(),aVe(),uVe(),hVe(),bVe(),TVe(),AVe(),FVe(),BVe(),GVe(),XVe(),tHe(),oHe(),dHe(),gHe(),xHe(),EHe(),jHe(),IHe(),VHe(),KHe(),ZHe(),nUe(),sUe(),fUe(),_Ue(),SUe(),DUe(),MUe(),LUe(),HUe(),qUe(),QUe(),rWe(),cWe(),pWe(),vWe(),CWe(),OWe(),NWe(),RWe(),UWe(),JWe(),$We(),iGe(),lGe(),mGe(),yGe(),wGe(),kGe(),PGe(),zGe(),WGe(),YGe(),eKe(),aKe(),uKe(),hKe(),bKe(),TKe(),AKe(),FKe(),BKe(),GKe(),XKe(),tqe(),oqe(),dqe(),gqe(),xqe(),Eqe(),jqe(),Iqe(),Vqe(),Kqe(),Zqe(),nJe(),sJe(),fJe(),_Je(),SJe(),DJe(),MJe(),LJe(),HJe(),qJe(),QJe(),DT=Object.assign({"../icons/Add.svg":LS,"../icons/AddTab.svg":VS,"../icons/Alert.svg":GS,"../icons/ArrowLeft.svg":YS,"../icons/ArrowRight.svg":$S,"../icons/Brackets.svg":rC,"../icons/Branch.svg":sC,"../icons/Changelog.svg":dC,"../icons/Checkmark.svg":hC,"../icons/ChevronDown.svg":yC,"../icons/ChevronLeft.svg":CC,"../icons/ChevronRight.svg":DC,"../icons/ChevronUp.svg":jC,"../icons/Clipboard.svg":FC,"../icons/Close.svg":zC,"../icons/CloseTab.svg":UC,"../icons/CloseTabs.svg":qC,"../icons/Cloud.svg":ZC,"../icons/CodeFolder.svg":tw,"../icons/Cog.svg":aw,"../icons/Collection.svg":lw,"../icons/Cookie.svg":pw,"../icons/DarkMode.svg":_w,"../icons/Delete.svg":xw,"../icons/Discord.svg":Tw,"../icons/DocsPage.svg":kw,"../icons/Download.svg":Nw,"../icons/Duplicate.svg":Lw,"../icons/Edit.svg":Vw,"../icons/Ellipses.svg":Gw,"../icons/Email.svg":Yw,"../icons/Error.svg":$w,"../icons/Example.svg":rT,"../icons/ExternalLink.svg":sT,"../icons/FilterList.svg":dT,"../icons/Folder.svg":hT,"../icons/GitHub.svg":yT,"../icons/GitHubLine.svg":CT,"../icons/Globe.svg":Gze,"../icons/Google.svg":Xze,"../icons/Help.svg":tBe,"../icons/Hide.svg":oBe,"../icons/History.svg":dBe,"../icons/House.svg":gBe,"../icons/Import.svg":xBe,"../icons/Info.svg":EBe,"../icons/Key.svg":jBe,"../icons/Leave.svg":IBe,"../icons/LightDarkModeToggle.svg":VBe,"../icons/LightMode.svg":KBe,"../icons/Link.svg":ZBe,"../icons/Lock.svg":nVe,"../icons/Logo.svg":sVe,"../icons/Magic.svg":fVe,"../icons/Markdown.svg":_Ve,"../icons/Menu.svg":SVe,"../icons/NotAllowed.svg":DVe,"../icons/Page.svg":MVe,"../icons/Pencil.svg":LVe,"../icons/Play.svg":HVe,"../icons/Refresh.svg":qVe,"../icons/Roadmap.svg":QVe,"../icons/Scribble.svg":rHe,"../icons/Search.svg":cHe,"../icons/Server.svg":pHe,"../icons/Settings.svg":vHe,"../icons/Show.svg":CHe,"../icons/Sort.svg":OHe,"../icons/Terminal.svg":NHe,"../icons/Trash.svg":RHe,"../icons/Unlock.svg":UHe,"../icons/Unwatch.svg":JHe,"../icons/Upload.svg":$He,"../icons/User.svg":iUe,"../icons/UserSwitch.svg":lUe,"../icons/Users.svg":mUe,"../icons/Versions.svg":yUe,"../icons/Wallet.svg":wUe,"../icons/Watch.svg":kUe,"../icons/Workspace.svg":PUe,"../icons/programming-framework-angular.svg":zUe,"../icons/programming-framework-astro.svg":WUe,"../icons/programming-framework-laravel.svg":YUe,"../icons/programming-framework-nextdotjs.svg":eWe,"../icons/programming-framework-react.svg":aWe,"../icons/programming-framework-vuedotjs.svg":uWe,"../icons/programming-language-c.svg":hWe,"../icons/programming-language-clojure.svg":bWe,"../icons/programming-language-csharp.svg":TWe,"../icons/programming-language-css3.svg":AWe,"../icons/programming-language-dart.svg":FWe,"../icons/programming-language-fsharp.svg":BWe,"../icons/programming-language-go.svg":GWe,"../icons/programming-language-html5.svg":XWe,"../icons/programming-language-http.svg":tGe,"../icons/programming-language-java.svg":oGe,"../icons/programming-language-javascript.svg":dGe,"../icons/programming-language-json.svg":gGe,"../icons/programming-language-kotlin.svg":xGe,"../icons/programming-language-node.svg":EGe,"../icons/programming-language-objc.svg":jGe,"../icons/programming-language-ocaml.svg":IGe,"../icons/programming-language-php.svg":VGe,"../icons/programming-language-powershell.svg":KGe,"../icons/programming-language-python.svg":ZGe,"../icons/programming-language-r.svg":nKe,"../icons/programming-language-ruby.svg":sKe,"../icons/programming-language-rust.svg":fKe,"../icons/programming-language-scala.svg":_Ke,"../icons/programming-language-shell.svg":SKe,"../icons/programming-language-swift.svg":DKe,"../icons/programming-language-typescript.svg":MKe,"../icons/programming-script-code.svg":LKe,"../icons/programming-tool-git.svg":HKe,"../icons/programming-tool-tailwindcss.svg":qKe}),OT=Object.assign({"../logos/Adonisjs.svg":QKe,"../logos/Astro.svg":rqe,"../logos/Docusaurus.svg":cqe,"../logos/Dotnet.svg":pqe,"../logos/Elysiajs.svg":vqe,"../logos/Express.svg":Cqe,"../logos/Fastapi.svg":Oqe,"../logos/Fastify.svg":Nqe,"../logos/Go.svg":Rqe,"../logos/Hono.svg":Uqe,"../logos/Laravel.svg":Jqe,"../logos/Litestar.svg":$qe,"../logos/Nestjs.svg":iJe,"../logos/Nextjs.svg":lJe,"../logos/Nitro.svg":mJe,"../logos/Nuxt.svg":yJe,"../logos/Openapi.svg":wJe,"../logos/Platformatic.svg":kJe,"../logos/React.svg":PJe,"../logos/Rust.svg":zJe,"../logos/Svelte.svg":WJe,"../logos/Vue.svg":YJe}),$Je=e=>{let t=`../icons/${e}.svg`;return DT[t]?DT[t]:(console.warn(`Could not find icon: ${e}`),null)},eYe=e=>{let t=`../logos/${e}.svg`;return OT[t]?OT[t]:(console.warn(`Could not find icon: ${e}`),null)}})),kT,nYe=s((()=>{Wu(),kT=Vu({variants:{size:{xs:`size-3`,sm:`size-3.5`,md:`size-4`,lg:`size-5`,xl:`size-6`,"2xl":`size-8`,"3xl":`size-10`,full:`size-full`}},defaultVariants:{size:`full`}})})),rYe,iYe=s((()=>{tYe(),nYe(),Wu(),G(),rYe=N({inheritAttrs:!1,__name:`ScalarIcon`,props:{icon:{},logo:{},size:{},thickness:{},label:{}},setup(e){Rre(e=>({c07589c2:r.value}));let t=e,{cx:n}=Uu(),r=W(()=>t.thickness??`2`),i=W(()=>t.label?{"aria-label":t.label}:{"aria-hidden":!0,role:`presentation`}),a=W(()=>{if(t.icon)return $Je(t.icon);if(t.logo)return eYe(t.logo)});return(t,r)=>(F(),L(Ar(a.value),nt(ei({...j(n)(`scalar-icon`,j(kT)({size:e.size})),...i.value})),null,16))}})})),AT,jT=s((()=>{MS(),iYe(),AT=jS(rYe,[[`__scopeId`,`data-v-b651bb23`]])})),aYe,oYe=s((()=>{nYe(),jT(),Wu(),G(),aYe=N({inheritAttrs:!1,__name:`ScalarIconLegacyAdapter`,props:{icon:{type:[Object,Function]},label:{},weight:{},logo:{},size:{},thickness:{}},setup(e){let{cx:t}=Uu();return(n,r)=>typeof e.icon==`string`?(F(),L(AT,V({key:0},{...n.$props,...n.$attrs},{icon:e.icon}),null,16,[`icon`])):(F(),L(Ar(e.icon),V({key:1,label:e.label,weight:e.weight},j(t)(j(kT)({size:e.size}))),null,16,[`label`,`weight`]))}})})),MT,NT=s((()=>{oYe(),MT=aYe})),PT=s((()=>{jT()})),sYe,cYe,lYe,uYe,dYe=s((()=>{oze(),G(),PT(),sYe={class:`request-section-content request-section-content-filter fade-request-section-content text-c-3 pointer-events-auto relative hidden w-full justify-end gap-[1.5px] rounded py-1.75 text-xs xl:flex`},cYe={class:`filter-button context-bar-group-hover:text-c-1 absolute -right-[30px] flex items-center`},lYe={class:`context-bar-group-hover:hidden mr-1.5`},uYe=N({__name:`SectionFilter`,props:Lr({filters:{default:()=>[]},filterIds:{}},{modelValue:{},modelModifiers:{}}),emits:[`update:modelValue`],setup(e){let t=Ur(e,`modelValue`),n=A(),r=r=>{let i=r===`prev`?-1:1,a=t.value?e.filters.indexOf(t.value):0,o=e.filters.length,s=(a+i+o)%o;t.value=e.filters[s],ir(()=>{if(n.value){let e=n.value.querySelector(`button[aria-selected="true"]`);e&&e.focus()}})};return(i,a)=>(F(),I(`div`,{ref_key:`tablist`,ref:n,class:`filter-hover context-bar-group ml-auto hidden lg:flex`,role:`tablist`,onKeydown:[a[0]||=fo(e=>r(`prev`),[`left`]),a[1]||=fo(e=>r(`next`),[`right`])]},[R(`div`,sYe,[(F(!0),I(H,null,jr(e.filters,n=>(F(),L(AS,{key:n,class:`filter-hover-item`,controls:e.filterIds?.[n],role:`tab`,selected:t.value===n,onClick:e=>t.value=n},{default:M(()=>[z(k(n),1)]),_:2},1032,[`controls`,`selected`,`onClick`]))),128)),R(`div`,cYe,[R(`span`,lYe,k(t.value),1),U(j(AT),{icon:`FilterList`,size:`md`,thickness:`2`})])])],544))}})})),FT,fYe=s((()=>{ec(),dYe(),FT=$s(uYe,[[`__scopeId`,`data-v-07ff8fc3`]])}));function pYe({multiple:e,accept:t,onChange:n,onError:r}={}){let i=A(null),a;return typeof document<`u`&&(a=document.createElement(`input`),a.type=`file`,a.onchange=e=>{let t=e.target;i.value=t.files,n?.(i.value)},a.onerror=()=>r?.(),a.multiple=e,a.accept=t),{files:dn(i),open:()=>{if(!a)return r?.();a.click()}}}var mYe=s((()=>{G()})),hYe,gYe,_Ye=s((()=>{Wu(),G(),hYe={class:`circular-loader`},gYe=N({inheritAttrs:!1,__name:`ScalarLoading`,props:{loader:{},size:{}},setup(e){let{cx:t}=Uu(),n=Vu({variants:{size:{xs:`size-3`,sm:`size-3.5`,md:`size-4`,lg:`size-5`,xl:`size-6`,"2xl":`size-8`,"3xl":`size-10`,full:`size-full`}},defaultVariants:{size:`full`}});return(r,i)=>e.loader?(F(),I(`div`,nt(V({key:0},j(t)(`loader-wrapper`,j(n)({size:e.size})))),[(F(),I(`svg`,{class:O([`svg-loader`,{"icon-is-valid":e.loader.isValid,"icon-is-invalid":e.loader.isInvalid}]),viewBox:`0 0 100 100`,xmlns:`http://www.w3.org/2000/svg`,"xmlns:xlink":`http://www.w3.org/1999/xlink`},[i[0]||=ni(``,5),R(`g`,hYe,[R(`circle`,{class:O([`loader-path`,{"loader-path-off":!e.loader.isLoading}]),cx:`50`,cy:`50`,fill:`none`,r:`20`,"stroke-width":`3`},null,2)])],2))],16)):B(``,!0)}})})),IT,LT=s((()=>{_Ye(),MS(),IT=jS(gYe,[[`__scopeId`,`data-v-27df5cd8`]])})),RT,vYe=s((()=>{RT={solid:[`scalar-button-solid`,`bg-b-btn text-c-btn focus-visible:border-c-btn active:bg-b-btn hover:bg-h-btn outline-offset-1`],outlined:[`scalar-button-outlined`,`active:bg-btn-1 shadow-border bg-b-1 text-c-1 hover:bg-b-2`],ghost:[`scalar-button-ghost`,`bg-transparent text-c-2 active:text-c-1 hover:text-c-1`],gradient:[`scalar-button-gradient`,`shadow-border bg-b-1.5 bg-linear-to-b from-b-1 to-b-2 hover:bg-linear-to-t`,`dark:bg-linear-to-t dark:hover:bg-linear-to-b`],danger:[`scalar-button-danger`,`bg-c-danger text-white active:brightness-90 hover:brightness-90`]}})),yYe,bYe,xYe=s((()=>{LT(),vYe(),Wu(),G(),yYe={key:3,class:`centered`},bYe=N({inheritAttrs:!1,__name:`ScalarButton`,props:{is:{default:`button`},variant:{default:`solid`},size:{default:`md`},disabled:{type:Boolean},icon:{type:[Object,Function]},loader:{}},setup(e){let t=Vu({base:`scalar-button flex cursor-pointer items-center justify-center rounded font-medium -outline-offset-1`,variants:{disabled:{true:`bg-b-2 text-color-3 shadow-none`},size:{xs:`px-2 py-1 text-xs/4`,sm:`px-3.5 py-2 text-sm/4`,md:`px-5 py-3 text-sm/4`},variant:RT},compoundVariants:[{disabled:!0,variant:[`solid`,`outlined`,`ghost`,`gradient`,`danger`],class:`bg-b-2 text-c-3 shadow-none hover:bg-b-[_] cursor-not-allowed active:bg-b-[_] hover:text-c-[_] active:text-c-[_]`},{disabled:!0,variant:[`gradient`],class:`to-b-1.5 bg-linear-to-b hover:bg-linear-to-b dark:hover:bg-linear-to-t`}]}),n=Vu({base:`shrink-0`,variants:{size:{xs:`size-2.75 -ml-0.25 mr-1`,sm:`size-3.5 -ml-0.25 mr-1`,md:`size-3.5 -ml-0.5 mr-1.5`}}}),r=Vu({variants:{size:{xs:`size-4`,sm:`size-5`,md:`size-6`}}}),{cx:i}=Uu();return(a,o)=>(F(),L(Ar(e.is),V({"aria-disabled":e.disabled||void 0,type:e.is===`button`?`button`:void 0},j(i)(j(t)({disabled:e.disabled,size:e.size,variant:e.variant}),{relative:e.loader?.isActive})),{default:M(()=>[a.$slots.icon||e.icon?(F(),I(`div`,{key:0,class:O([j(n)({size:e.size}),{invisible:e.loader?.isActive}])},[P(a.$slots,`icon`,{},()=>[(F(),L(Ar(e.icon),{class:`size-full`}))])],2)):B(``,!0),e.loader?(F(),I(`span`,{key:1,class:O({invisible:e.loader?.isActive})},[P(a.$slots,`default`)],2)):P(a.$slots,`default`,{},void 0,void 0,2),e.loader?.isActive?(F(),I(`div`,yYe,[U(j(IT),{class:O(j(r)({size:e.size})),loader:e.loader},null,8,[`class`,`loader`])])):B(``,!0)]),_:3},16,[`aria-disabled`,`type`]))}})})),zT,SYe=s((()=>{xYe(),zT=bYe})),BT=s((()=>{SYe()}));function CYe(e){return e?.options!==void 0}function wYe(e){return e[0]?CYe(e[0]):!1}var TYe=s((()=>{})),EYe,DYe=s((()=>{EYe=((e,t)=>e===``?t:t.filter(t=>t.label.toLowerCase().includes(e.toLowerCase())))})),OYe,kYe=s((()=>{G(),ul(),OYe=N({__name:`ScalarListboxCheckbox`,props:{selected:{type:Boolean},multiselect:{type:Boolean}},setup(e){return(t,n)=>(F(),I(`div`,{class:O([`flex size-4 items-center justify-center p-0.75`,[e.selected?`bg-c-accent text-b-1`:`text-transparent shadow-border`,e.multiselect?`rounded`:`rounded-full`]])},[e.selected?(F(),L(j(lc),{key:0,class:`size-3`,weight:`bold`})):B(``,!0)],2))}})})),VT,HT=s((()=>{kYe(),VT=OYe})),AYe,jYe,MYe=s((()=>{Wu(),G(),AYe=[`aria-selected`],jYe=N({__name:`ScalarComboboxOption`,props:{active:{type:Boolean},selected:{type:Boolean}},setup(e){let t=Vu({base:[`group/item`,`flex min-w-0 items-center gap-1.5 rounded px-2 py-1.5 text-left`,`truncate bg-transparent text-c-1`,`cursor-pointer hover:bg-b-2`],variants:{selected:{true:`text-c-1`},active:{true:`bg-b-2`}}});return(n,r)=>(F(),I(`li`,{"aria-selected":e.selected,class:O(j(Hu)(j(t)({active:e.active,selected:e.selected}))),role:`option`,tabindex:`-1`},[P(n.$slots,`default`,{active:e.active,selected:e.selected})],10,AYe))}})})),UT,NYe=s((()=>{MYe(),UT=jYe})),PYe,FYe,IYe,LYe=s((()=>{G(),PYe=[`id`,`aria-labelledby`,`role`],FYe=[`id`],IYe=N({__name:`ScalarComboboxOptionGroup`,props:{id:{default:()=>xr()},hidden:{type:Boolean,default:!1}},setup(e){return(t,n)=>(F(),I(`div`,{id:e.id,"aria-labelledby":e.id?`${e.id}-label`:void 0,class:`contents`,role:e.hidden?void 0:`group`},[e.hidden?B(``,!0):(F(),I(`div`,{key:0,id:`${e.id}-label`,class:`min-w-0 truncate px-2.5 py-1.5 text-c-2`},[P(t.$slots,`label`)],8,FYe)),P(t.$slots,`default`)],8,PYe))}})})),RYe,zYe=s((()=>{LYe(),RYe=IYe})),BYe,VYe,HYe,UYe,WYe,GYe=s((()=>{DYe(),HT(),NYe(),zYe(),TYe(),G(),ul(),BYe={class:`relative flex`},VYe=[`aria-activedescendant`,`placeholder`],HYe=[`aria-multiselectable`],UYe={class:`inline-block min-w-0 flex-1 truncate text-c-1`},WYe=N({inheritAttrs:!1,__name:`ScalarComboboxOptions`,props:Lr({options:{},placeholder:{},filterFn:{type:Function,default:EYe},multiselect:{type:Boolean}},{modelValue:{default:()=>[]},modelModifiers:{}}),emits:Lr([`add`],[`update:modelValue`]),setup(e,{emit:t}){let n=t,r=Ur(e,`modelValue`),i=Pr(),a=`scalar-combobox-items-${xr()}`,o={id:`${xr()}-add`,label:`Add a new option`};function s(e){return`${a}-${e.id}`}let c=W(()=>wYe(e.options)?e.options.flatMap(e=>e.options):e.options),l=W(()=>wYe(e.options)?e.options:[{label:``,options:e.options}]),u=A(``),d=A(r.value?.[0]??c.value[0]);Vi(()=>{u.value=``,d.value=r.value?.[0]??c.value[0],r.value[0]&&setTimeout(()=>{let e=r.value[0];e&&document?.getElementById(s(e))?.scrollIntoView({block:`nearest`})},10)}),pr(()=>u.value,()=>d.value=p.value[0]);let f=W(()=>e.filterFn(u.value,c.value,l.value)),p=W(()=>i.add?[...f.value,o]:f.value);function m(t){if(t){if(t.id===o.id){g();return}e.multiselect?r.value.some(e=>e.id===t.id)?r.value=r.value.filter(e=>e.id!==t.id):r.value=[...r.value,c.value.find(e=>e.id===t.id)]:r.value=[c.value.find(e=>e.id===t.id)]}}function h(e){let t=p.value,n=t.findIndex(e=>e.id===d.value?.id)+e;n<0||n>t.length-1||(d.value=t[n],d.value&&document?.getElementById(s(d.value))?.scrollIntoView({behavior:`smooth`,block:`nearest`}))}function g(){n(`add`),u.value=``}let _=A(null);return Vi(()=>setTimeout(()=>_.value?.focus(),0)),(t,n)=>(F(),I(H,null,[R(`div`,BYe,[U(j(tl),{class:`pointer-events-none absolute left-2.5 top-1/2 -translate-y-1/2 text-c-3 size-4`}),cr(R(`input`,{ref_key:`input`,ref:_,"onUpdate:modelValue":n[0]||=e=>u.value=e,"aria-activedescendant":d.value?s(d.value):void 0,"aria-autocomplete":`list`,"aria-controls":a,class:`min-w-0 flex-1 rounded border-0 py-2.5 pl-8 pr-3 leading-none text-c-1 -outline-offset-1`,"data-1p-ignore":``,placeholder:e.placeholder,role:`combobox`,tabindex:`0`,type:`text`,onKeydown:[n[1]||=fo(uo(e=>h(1),[`prevent`]),[`down`]),n[2]||=fo(uo(e=>d.value&&m(d.value),[`prevent`]),[`enter`]),n[3]||=fo(uo(e=>h(-1),[`prevent`]),[`up`])]},null,40,VYe),[[so,u.value]])]),cr(R(`ul`,{id:a,"aria-multiselectable":e.multiselect,class:`border-t p-0.75 custom-scroll overscroll-contain flex-1 min-h-0`,role:`listbox`,tabindex:`-1`},[(F(!0),I(H,null,jr(l.value,(i,o)=>(F(),L(RYe,{id:`${a}-group-${o}`,key:o,hidden:!i.options.some(e=>f.value.some(t=>t.id===e.id))||!i.label},{label:M(()=>[t.$slots.group?P(t.$slots,`group`,{group:i},void 0,void 0,0):(F(),I(H,{key:1},[z(k(i.label),1)],64))]),default:M(()=>[(F(!0),I(H,null,jr(f.value,a=>(F(),I(H,{key:a.id},[i.options.some(e=>e.id===a.id)?(F(),L(UT,{key:0,id:s(a),active:d.value?.id===a.id,selected:r.value.some(e=>e.id===a.id),onClick:e=>m(a),onMousedown:n[4]||=uo(()=>{},[`prevent`]),onMouseenter:e=>d.value=a},{default:M(({active:n,selected:i})=>[t.$slots.option?P(t.$slots,`option`,{active:n,option:a,selected:i},void 0,void 0,0):(F(),I(H,{key:1},[U(j(VT),{multiselect:e.multiselect,selected:r.value.some(e=>e.id===a.id)},null,8,[`multiselect`,`selected`]),R(`span`,UYe,k(a.label),1)],64))]),_:2},1032,[`id`,`active`,`selected`,`onClick`,`onMouseenter`])):B(``,!0)],64))),128))]),_:2},1032,[`id`,`hidden`]))),128)),i.add?(F(),L(UT,{key:0,id:s(o),active:d.value?.id===o.id,onClick:g,onMousedown:n[5]||=uo(()=>{},[`prevent`]),onMouseenter:n[6]||=e=>d.value=o},{default:M(({active:e})=>[U(j(il),{class:`size-4 p-px`}),P(t.$slots,`add`,{active:e})]),_:3},8,[`id`,`active`])):B(``,!0)],8,HYe),[[Xa,f.value.length||i.add]])],64))}})})),WT,KYe=s((()=>{GYe(),WT=WYe})),GT,qYe,JYe,YYe=s((()=>{G(),GT=Symbol(),qYe=()=>dr(GT,`body`),JYe=e=>{let t=e??`scalar-teleport-${xr()}`;return ur(GT,`#${t}`),t}})),XYe,ZYe=s((()=>{YYe(),G(),XYe=N({inheritAttrs:!1,__name:`ScalarTeleport`,props:{to:{},immediate:{type:Boolean},disabled:{type:Boolean}},setup(e){let t=qYe();return(n,r)=>(F(),L(Ei,{defer:!e.immediate,disabled:e.disabled,to:e.to||j(t)},[R(`div`,V({class:`scalar-app`,style:{display:`contents`}},n.$attrs),[P(n.$slots,`default`)],16)],8,[`defer`,`disabled`,`to`]))}})})),KT,QYe=s((()=>{ZYe(),KT=XYe}));function $Ye(e,t={enabled:A(!0)}){let n=A(0),r=A(0),i=A();return typeof ResizeObserver<`u`&&(i.value=new ResizeObserver(([e])=>{e&&(n.value=e.borderBoxSize[0]?.inlineSize??0,r.value=e.borderBoxSize[0]?.blockSize??0)})),pr([()=>Sn(t.enabled),()=>Sn(e)],([e,t])=>{!t||!i.value||(e?i.value.observe(t):i.value.disconnect())},{immediate:!0}),{width:W(()=>Sn(t.enabled)?`${n.value}px`:void 0),height:W(()=>Sn(t.enabled)?`${r.value}px`:void 0)}}var eXe=s((()=>{G()}));function tXe(e,t,n){return tE(e,eE(t,n))}function qT(e,t){return typeof e==`function`?e(t):e}function JT(e){return e.split(`-`)[0]}function YT(e){return e.split(`-`)[1]}function nXe(e){return e===`x`?`y`:`x`}function rXe(e){return e===`y`?`height`:`width`}function XT(e){return pXe.has(JT(e))?`y`:`x`}function iXe(e){return nXe(XT(e))}function aXe(e,t,n){n===void 0&&(n=!1);let r=YT(e),i=iXe(e),a=rXe(i),o=i===`x`?r===(n?`end`:`start`)?`right`:`left`:r===`start`?`bottom`:`top`;return t.reference[a]>t.floating[a]&&(o=QT(o)),[o,QT(o)]}function oXe(e){let t=QT(e);return[ZT(e),t,ZT(t)]}function ZT(e){return e.replace(/start|end/g,e=>fXe[e])}function sXe(e,t,n){switch(e){case`top`:case`bottom`:return n?t?oE:aE:t?aE:oE;case`left`:case`right`:return t?mXe:hXe;default:return[]}}function cXe(e,t,n,r){let i=YT(e),a=sXe(JT(e),n===`start`,r);return i&&(a=a.map(e=>e+`-`+i),t&&(a=a.concat(a.map(ZT)))),a}function QT(e){return e.replace(/left|right|bottom|top/g,e=>dXe[e])}function lXe(e){return{top:0,right:0,bottom:0,left:0,...e}}function uXe(e){return typeof e==`number`?{top:e,right:e,bottom:e,left:e}:lXe(e)}function $T(e){let{x:t,y:n,width:r,height:i}=e;return{width:r,height:i,top:n,left:t,right:t+r,bottom:n+i,x:t,y:n}}var eE,tE,nE,rE,iE,dXe,fXe,pXe,aE,oE,mXe,hXe,sE=s((()=>{eE=Math.min,tE=Math.max,nE=Math.round,rE=Math.floor,iE=e=>({x:e,y:e}),dXe={left:`right`,right:`left`,bottom:`top`,top:`bottom`},fXe={start:`end`,end:`start`},pXe=new Set([`top`,`bottom`]),aE=[`left`,`right`],oE=[`right`,`left`],mXe=[`top`,`bottom`],hXe=[`bottom`,`top`]}));function gXe(e,t,n){let{reference:r,floating:i}=e,a=XT(t),o=iXe(t),s=rXe(o),c=JT(t),l=a===`y`,u=r.x+r.width/2-i.width/2,d=r.y+r.height/2-i.height/2,f=r[s]/2-i[s]/2,p;switch(c){case`top`:p={x:u,y:r.y-i.height};break;case`bottom`:p={x:u,y:r.y+r.height};break;case`right`:p={x:r.x+r.width,y:d};break;case`left`:p={x:r.x-i.width,y:d};break;default:p={x:r.x,y:r.y}}switch(YT(t)){case`start`:p[o]-=f*(n&&l?-1:1);break;case`end`:p[o]+=f*(n&&l?-1:1);break}return p}async function cE(e,t){t===void 0&&(t={});let{x:n,y:r,platform:i,rects:a,elements:o,strategy:s}=e,{boundary:c=`clippingAncestors`,rootBoundary:l=`viewport`,elementContext:u=`floating`,altBoundary:d=!1,padding:f=0}=qT(t,e),p=uXe(f),m=o[d?u===`floating`?`reference`:`floating`:u],h=$T(await i.getClippingRect({element:await(i.isElement==null?void 0:i.isElement(m))??!0?m:m.contextElement||await(i.getDocumentElement==null?void 0:i.getDocumentElement(o.floating)),boundary:c,rootBoundary:l,strategy:s})),g=u===`floating`?{x:n,y:r,width:a.floating.width,height:a.floating.height}:a.reference,_=await(i.getOffsetParent==null?void 0:i.getOffsetParent(o.floating)),v=await(i.isElement==null?void 0:i.isElement(_))&&await(i.getScale==null?void 0:i.getScale(_))||{x:1,y:1},y=$T(i.convertOffsetParentRelativeRectToViewportRelativeRect?await i.convertOffsetParentRelativeRectToViewportRelativeRect({elements:o,rect:g,offsetParent:_,strategy:s}):g);return{top:(h.top-y.top+p.top)/v.y,bottom:(y.bottom-h.bottom+p.bottom)/v.y,left:(h.left-y.left+p.left)/v.x,right:(y.right-h.right+p.right)/v.x}}async function _Xe(e,t){let{placement:n,platform:r,elements:i}=e,a=await(r.isRTL==null?void 0:r.isRTL(i.floating)),o=JT(n),s=YT(n),c=XT(n)===`y`,l=bXe.has(o)?-1:1,u=a&&c?-1:1,d=qT(t,e),{mainAxis:f,crossAxis:p,alignmentAxis:m}=typeof d==`number`?{mainAxis:d,crossAxis:0,alignmentAxis:null}:{mainAxis:d.mainAxis||0,crossAxis:d.crossAxis||0,alignmentAxis:d.alignmentAxis};return s&&typeof m==`number`&&(p=s===`end`?m*-1:m),c?{x:p*u,y:f*l}:{x:f*l,y:p*u}}var vXe,yXe,bXe,xXe,SXe,CXe,wXe=s((()=>{sE(),vXe=async(e,t,n)=>{let{placement:r=`bottom`,strategy:i=`absolute`,middleware:a=[],platform:o}=n,s=a.filter(Boolean),c=await(o.isRTL==null?void 0:o.isRTL(t)),l=await o.getElementRects({reference:e,floating:t,strategy:i}),{x:u,y:d}=gXe(l,r,c),f=r,p={},m=0;for(let n=0;ne<=0)){let e=(i.flip?.index||0)+1,t=te[e];if(t&&(!(u===`alignment`&&_!==XT(t))||re.every(e=>XT(e.placement)!==_||e.overflows[0]>0)))return{data:{index:e,overflows:re},reset:{placement:t}};let n=re.filter(e=>e.overflows[0]<=0).sort((e,t)=>e.overflows[1]-t.overflows[1])[0]?.placement;if(!n)switch(f){case`bestFit`:{let e=re.filter(e=>{if(ee){let t=XT(e.placement);return t===_||t===`y`}return!0}).map(e=>[e.placement,e.overflows.filter(e=>e>0).reduce((e,t)=>e+t,0)]).sort((e,t)=>e[1]-t[1])[0]?.[0];e&&(n=e);break}case`initialPlacement`:n=o;break}if(r!==n)return{reset:{placement:n}}}return{}}}},bXe=new Set([`left`,`top`]),xXe=function(e){return e===void 0&&(e=0),{name:`offset`,options:e,async fn(t){var n;let{x:r,y:i,placement:a,middlewareData:o}=t,s=await _Xe(t,e);return a===o.offset?.placement&&(n=o.arrow)!=null&&n.alignmentOffset?{}:{x:r+s.x,y:i+s.y,data:{...s,placement:a}}}}},SXe=function(e){return e===void 0&&(e={}),{name:`shift`,options:e,async fn(t){let{x:n,y:r,placement:i}=t,{mainAxis:a=!0,crossAxis:o=!1,limiter:s={fn:e=>{let{x:t,y:n}=e;return{x:t,y:n}}},...c}=qT(e,t),l={x:n,y:r},u=await cE(t,c),d=XT(JT(i)),f=nXe(d),p=l[f],m=l[d];if(a){let e=f===`y`?`top`:`left`,t=f===`y`?`bottom`:`right`,n=p+u[e],r=p-u[t];p=tXe(n,p,r)}if(o){let e=d===`y`?`top`:`left`,t=d===`y`?`bottom`:`right`,n=m+u[e],r=m-u[t];m=tXe(n,m,r)}let h=s.fn({...t,[f]:p,[d]:m});return{...h,data:{x:h.x-n,y:h.y-r,enabled:{[f]:a,[d]:o}}}}}},CXe=function(e){return e===void 0&&(e={}),{name:`size`,options:e,async fn(t){var n,r;let{placement:i,rects:a,platform:o,elements:s}=t,{apply:c=()=>{},...l}=qT(e,t),u=await cE(t,l),d=JT(i),f=YT(i),p=XT(i)===`y`,{width:m,height:h}=a.floating,g,_;d===`top`||d===`bottom`?(g=d,_=f===(await(o.isRTL==null?void 0:o.isRTL(s.floating))?`start`:`end`)?`left`:`right`):(_=d,g=f===`end`?`top`:`bottom`);let v=h-u.top-u.bottom,y=m-u.left-u.right,b=eE(h-u[g],v),ee=eE(m-u[_],y),te=!t.middlewareData.shift,ne=b,x=ee;if((n=t.middlewareData.shift)!=null&&n.enabled.x&&(x=y),(r=t.middlewareData.shift)!=null&&r.enabled.y&&(ne=v),te&&!f){let e=tE(u.left,0),t=tE(u.right,0),n=tE(u.top,0),r=tE(u.bottom,0);p?x=m-2*(e!==0||t!==0?e+t:tE(u.left,u.right)):ne=h-2*(n!==0||r!==0?n+r:tE(u.top,u.bottom))}await c({...t,availableWidth:x,availableHeight:ne});let re=await o.getDimensions(s.floating);return m!==re.width||h!==re.height?{reset:{rects:!0}}:{}}}}}));function lE(){return typeof window<`u`}function uE(e){return pE(e)?(e.nodeName||``).toLowerCase():`#document`}function dE(e){var t;return(e==null||(t=e.ownerDocument)==null?void 0:t.defaultView)||window}function fE(e){return((pE(e)?e.ownerDocument:e.document)||window.document)?.documentElement}function pE(e){return lE()?e instanceof Node||e instanceof dE(e).Node:!1}function mE(e){return lE()?e instanceof Element||e instanceof dE(e).Element:!1}function hE(e){return lE()?e instanceof HTMLElement||e instanceof dE(e).HTMLElement:!1}function TXe(e){return!lE()||typeof ShadowRoot>`u`?!1:e instanceof ShadowRoot||e instanceof dE(e).ShadowRoot}function gE(e){let{overflow:t,overflowX:n,overflowY:r,display:i}=xE(e);return/auto|scroll|overlay|hidden|clip/.test(t+r+n)&&!kXe.has(i)}function EXe(e){return AXe.has(uE(e))}function _E(e){return jXe.some(t=>{try{return e.matches(t)}catch{return!1}})}function vE(e){let t=yE(),n=mE(e)?xE(e):e;return MXe.some(e=>n[e]?n[e]!==`none`:!1)||(n.containerType?n.containerType!==`normal`:!1)||!t&&(n.backdropFilter?n.backdropFilter!==`none`:!1)||!t&&(n.filter?n.filter!==`none`:!1)||NXe.some(e=>(n.willChange||``).includes(e))||PXe.some(e=>(n.contain||``).includes(e))}function DXe(e){let t=CE(e);for(;hE(t)&&!bE(t);){if(vE(t))return t;if(_E(t))return null;t=CE(t)}return null}function yE(){return typeof CSS>`u`||!CSS.supports?!1:CSS.supports(`-webkit-backdrop-filter`,`none`)}function bE(e){return FXe.has(uE(e))}function xE(e){return dE(e).getComputedStyle(e)}function SE(e){return mE(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.scrollX,scrollTop:e.scrollY}}function CE(e){if(uE(e)===`html`)return e;let t=e.assignedSlot||e.parentNode||TXe(e)&&e.host||fE(e);return TXe(t)?t.host:t}function OXe(e){let t=CE(e);return bE(t)?e.ownerDocument?e.ownerDocument.body:e.body:hE(t)&&gE(t)?t:OXe(t)}function wE(e,t,n){t===void 0&&(t=[]),n===void 0&&(n=!0);let r=OXe(e),i=r===e.ownerDocument?.body,a=dE(r);if(i){let e=TE(a);return t.concat(a,a.visualViewport||[],gE(r)?r:[],e&&n?wE(e):[])}return t.concat(r,wE(r,[],n))}function TE(e){return e.parent&&Object.getPrototypeOf(e.parent)?e.frameElement:null}var kXe,AXe,jXe,MXe,NXe,PXe,FXe,IXe=s((()=>{kXe=new Set([`inline`,`contents`]),AXe=new Set([`table`,`td`,`th`]),jXe=[`:popover-open`,`:modal`],MXe=[`transform`,`translate`,`scale`,`rotate`,`perspective`],NXe=[`transform`,`translate`,`scale`,`rotate`,`perspective`,`filter`],PXe=[`paint`,`layout`,`strict`,`content`],FXe=new Set([`html`,`body`,`#document`])}));function LXe(e){let t=xE(e),n=parseFloat(t.width)||0,r=parseFloat(t.height)||0,i=hE(e),a=i?e.offsetWidth:n,o=i?e.offsetHeight:r,s=nE(n)!==a||nE(r)!==o;return s&&(n=a,r=o),{width:n,height:r,$:s}}function EE(e){return mE(e)?e:e.contextElement}function DE(e){let t=EE(e);if(!hE(t))return iE(1);let n=t.getBoundingClientRect(),{width:r,height:i,$:a}=LXe(t),o=(a?nE(n.width):n.width)/r,s=(a?nE(n.height):n.height)/i;return(!o||!Number.isFinite(o))&&(o=1),(!s||!Number.isFinite(s))&&(s=1),{x:o,y:s}}function RXe(e){let t=dE(e);return!yE()||!t.visualViewport?iZe:{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}}function zXe(e,t,n){return t===void 0&&(t=!1),!n||t&&n!==dE(e)?!1:t}function OE(e,t,n,r){t===void 0&&(t=!1),n===void 0&&(n=!1);let i=e.getBoundingClientRect(),a=EE(e),o=iE(1);t&&(r?mE(r)&&(o=DE(r)):o=DE(e));let s=zXe(a,n,r)?RXe(a):iE(0),c=(i.left+s.x)/o.x,l=(i.top+s.y)/o.y,u=i.width/o.x,d=i.height/o.y;if(a){let e=dE(a),t=r&&mE(r)?dE(r):r,n=e,i=TE(n);for(;i&&r&&t!==n;){let e=DE(i),t=i.getBoundingClientRect(),r=xE(i),a=t.left+(i.clientLeft+parseFloat(r.paddingLeft))*e.x,o=t.top+(i.clientTop+parseFloat(r.paddingTop))*e.y;c*=e.x,l*=e.y,u*=e.x,d*=e.y,c+=a,l+=o,n=dE(i),i=TE(n)}}return $T({width:u,height:d,x:c,y:l})}function kE(e,t){let n=SE(e).scrollLeft;return t?t.left+n:OE(fE(e)).left+n}function BXe(e,t){let n=e.getBoundingClientRect();return{x:n.left+t.scrollLeft-kE(e,n),y:n.top+t.scrollTop}}function VXe(e){let{elements:t,rect:n,offsetParent:r,strategy:i}=e,a=i===`fixed`,o=fE(r),s=t?_E(t.floating):!1;if(r===o||s&&a)return n;let c={scrollLeft:0,scrollTop:0},l=iE(1),u=iE(0),d=hE(r);if((d||!d&&!a)&&((uE(r)!==`body`||gE(o))&&(c=SE(r)),hE(r))){let e=OE(r);l=DE(r),u.x=e.x+r.clientLeft,u.y=e.y+r.clientTop}let f=o&&!d&&!a?BXe(o,c):iE(0);return{width:n.width*l.x,height:n.height*l.y,x:n.x*l.x-c.scrollLeft*l.x+u.x+f.x,y:n.y*l.y-c.scrollTop*l.y+u.y+f.y}}function HXe(e){return Array.from(e.getClientRects())}function UXe(e){let t=fE(e),n=SE(e),r=e.ownerDocument.body,i=tE(t.scrollWidth,t.clientWidth,r.scrollWidth,r.clientWidth),a=tE(t.scrollHeight,t.clientHeight,r.scrollHeight,r.clientHeight),o=-n.scrollLeft+kE(e),s=-n.scrollTop;return xE(r).direction===`rtl`&&(o+=tE(t.clientWidth,r.clientWidth)-i),{width:i,height:a,x:o,y:s}}function WXe(e,t){let n=dE(e),r=fE(e),i=n.visualViewport,a=r.clientWidth,o=r.clientHeight,s=0,c=0;if(i){a=i.width,o=i.height;let e=yE();(!e||e&&t===`fixed`)&&(s=i.offsetLeft,c=i.offsetTop)}let l=kE(r);if(l<=0){let e=r.ownerDocument,t=e.body,n=getComputedStyle(t),i=e.compatMode===`CSS1Compat`&&parseFloat(n.marginLeft)+parseFloat(n.marginRight)||0,o=Math.abs(r.clientWidth-t.clientWidth-i);o<=jE&&(a-=o)}else l<=jE&&(a+=l);return{width:a,height:o,x:s,y:c}}function GXe(e,t){let n=OE(e,!0,t===`fixed`),r=n.top+e.clientTop,i=n.left+e.clientLeft,a=hE(e)?DE(e):iE(1);return{width:e.clientWidth*a.x,height:e.clientHeight*a.y,x:i*a.x,y:r*a.y}}function KXe(e,t,n){let r;if(t===`viewport`)r=WXe(e,n);else if(t===`document`)r=UXe(fE(e));else if(mE(t))r=GXe(t,n);else{let n=RXe(e);r={x:t.x-n.x,y:t.y-n.y,width:t.width,height:t.height}}return $T(r)}function qXe(e,t){let n=CE(e);return n===t||!mE(n)||bE(n)?!1:xE(n).position===`fixed`||qXe(n,t)}function JXe(e,t){let n=t.get(e);if(n)return n;let r=wE(e,[],!1).filter(e=>mE(e)&&uE(e)!==`body`),i=null,a=xE(e).position===`fixed`,o=a?CE(e):e;for(;mE(o)&&!bE(o);){let t=xE(o),n=vE(o);!n&&t.position===`fixed`&&(i=null),(a?!n&&!i:!n&&t.position===`static`&&i&&aZe.has(i.position)||gE(o)&&!n&&qXe(e,o))?r=r.filter(e=>e!==o):i=t,o=CE(o)}return t.set(e,r),r}function YXe(e){let{element:t,boundary:n,rootBoundary:r,strategy:i}=e,a=[...n===`clippingAncestors`?_E(t)?[]:JXe(t,this._c):[].concat(n),r],o=a[0],s=a.reduce((e,n)=>{let r=KXe(t,n,i);return e.top=tE(r.top,e.top),e.right=eE(r.right,e.right),e.bottom=eE(r.bottom,e.bottom),e.left=tE(r.left,e.left),e},KXe(t,o,i));return{width:s.right-s.left,height:s.bottom-s.top,x:s.left,y:s.top}}function XXe(e){let{width:t,height:n}=LXe(e);return{width:t,height:n}}function ZXe(e,t,n){let r=hE(t),i=fE(t),a=n===`fixed`,o=OE(e,!0,a,t),s={scrollLeft:0,scrollTop:0},c=iE(0);function l(){c.x=kE(i)}if(r||!r&&!a)if((uE(t)!==`body`||gE(i))&&(s=SE(t)),r){let e=OE(t,!0,a,t);c.x=e.x+t.clientLeft,c.y=e.y+t.clientTop}else i&&l();a&&!r&&i&&l();let u=i&&!r&&!a?BXe(i,s):iE(0);return{x:o.left+s.scrollLeft-c.x-u.x,y:o.top+s.scrollTop-c.y-u.y,width:o.width,height:o.height}}function AE(e){return xE(e).position===`static`}function QXe(e,t){if(!hE(e)||xE(e).position===`fixed`)return null;if(t)return t(e);let n=e.offsetParent;return fE(e)===n&&(n=n.ownerDocument.body),n}function $Xe(e,t){let n=dE(e);if(_E(e))return n;if(!hE(e)){let t=CE(e);for(;t&&!bE(t);){if(mE(t)&&!AE(t))return t;t=CE(t)}return n}let r=QXe(e,t);for(;r&&EXe(r)&&AE(r);)r=QXe(r,t);return r&&bE(r)&&AE(r)&&!vE(r)?n:r||DXe(e)||n}function eZe(e){return xE(e).direction===`rtl`}function tZe(e,t){return e.x===t.x&&e.y===t.y&&e.width===t.width&&e.height===t.height}function nZe(e,t){let n=null,r,i=fE(e);function a(){var e;clearTimeout(r),(e=n)==null||e.disconnect(),n=null}function o(s,c){s===void 0&&(s=!1),c===void 0&&(c=1),a();let l=e.getBoundingClientRect(),{left:u,top:d,width:f,height:p}=l;if(s||t(),!f||!p)return;let m=rE(d),h=rE(i.clientWidth-(u+f)),g=rE(i.clientHeight-(d+p)),_=rE(u),v={rootMargin:-m+`px `+-h+`px `+-g+`px `+-_+`px`,threshold:tE(0,eE(1,c))||1},y=!0;function b(t){let n=t[0].intersectionRatio;if(n!==c){if(!y)return o();n?o(!1,n):r=setTimeout(()=>{o(!1,1e-7)},1e3)}n===1&&!tZe(l,e.getBoundingClientRect())&&o(),y=!1}try{n=new IntersectionObserver(b,{...v,root:i.ownerDocument})}catch{n=new IntersectionObserver(b,v)}n.observe(e)}return o(!0),a}function rZe(e,t,n,r){r===void 0&&(r={});let{ancestorScroll:i=!0,ancestorResize:a=!0,elementResize:o=typeof ResizeObserver==`function`,layoutShift:s=typeof IntersectionObserver==`function`,animationFrame:c=!1}=r,l=EE(e),u=i||a?[...l?wE(l):[],...wE(t)]:[];u.forEach(e=>{i&&e.addEventListener(`scroll`,n,{passive:!0}),a&&e.addEventListener(`resize`,n)});let d=l&&s?nZe(l,n):null,f=-1,p=null;o&&(p=new ResizeObserver(e=>{let[r]=e;r&&r.target===l&&p&&(p.unobserve(t),cancelAnimationFrame(f),f=requestAnimationFrame(()=>{var e;(e=p)==null||e.observe(t)})),n()}),l&&!c&&p.observe(l),p.observe(t));let m,h=c?OE(e):null;c&&g();function g(){let t=OE(e);h&&!tZe(h,t)&&n(),h=t,m=requestAnimationFrame(g)}return n(),()=>{var e;u.forEach(e=>{i&&e.removeEventListener(`scroll`,n),a&&e.removeEventListener(`resize`,n)}),d?.(),(e=p)==null||e.disconnect(),p=null,c&&cancelAnimationFrame(m)}}var iZe,jE,aZe,oZe,sZe,cZe,ME,NE,lZe,uZe,dZe=s((()=>{wXe(),sE(),IXe(),iZe=iE(0),jE=25,aZe=new Set([`absolute`,`fixed`]),oZe=async function(e){let t=this.getOffsetParent||$Xe,n=this.getDimensions,r=await n(e.floating);return{reference:ZXe(e.reference,await t(e.floating),e.strategy),floating:{x:0,y:0,width:r.width,height:r.height}}},sZe={convertOffsetParentRelativeRectToViewportRelativeRect:VXe,getDocumentElement:fE,getClippingRect:YXe,getOffsetParent:$Xe,getElementRects:oZe,getClientRects:HXe,getDimensions:XXe,getScale:DE,isElement:mE,isRTL:eZe},cZe=xXe,ME=SXe,NE=yXe,lZe=CXe,uZe=(e,t,n)=>{let r=new Map,i={platform:sZe,...n},a={...i.platform,_c:r};return vXe(e,t,{...i,platform:a})}})),fZe=s((()=>{G()}));function pZe(e){return typeof e==`object`&&!!e&&`$el`in e}function mZe(e){if(pZe(e)){let t=e.$el;return pE(t)&&uE(t)===`#comment`?null:t}return e}function PE(e){return typeof e==`function`?e():j(e)}function hZe(e){return typeof window>`u`?1:(e.ownerDocument.defaultView||window).devicePixelRatio||1}function gZe(e,t){let n=hZe(e);return Math.round(t*n)/n}function _Ze(e,t,n){n===void 0&&(n={});let r=n.whileElementsMounted,i=W(()=>PE(n.open)??!0),a=W(()=>PE(n.middleware)),o=W(()=>PE(n.placement)??`bottom`),s=W(()=>PE(n.strategy)??`absolute`),c=W(()=>PE(n.transform)??!0),l=W(()=>mZe(e.value)),u=W(()=>mZe(t.value)),d=A(0),f=A(0),p=A(s.value),m=A(o.value),h=xn({}),g=A(!1),_=W(()=>{let e={position:p.value,left:`0`,top:`0`};if(!u.value)return e;let t=gZe(u.value,d.value),n=gZe(u.value,f.value);return c.value?{...e,transform:`translate(`+t+`px, `+n+`px)`,...hZe(u.value)>=1.5&&{willChange:`transform`}}:{position:p.value,left:t+`px`,top:n+`px`}}),v;function y(){if(l.value==null||u.value==null)return;let e=i.value;uZe(l.value,u.value,{middleware:a.value,placement:o.value,strategy:s.value}).then(t=>{d.value=t.x,f.value=t.y,p.value=t.strategy,m.value=t.placement,h.value=t.middlewareData,g.value=e!==!1})}function b(){typeof v==`function`&&(v(),v=void 0)}function ee(){if(b(),r===void 0){y();return}if(l.value!=null&&u.value!=null){v=r(l.value,u.value,y);return}}function te(){i.value||(g.value=!1)}return pr([a,o,s,i],y,{flush:`sync`}),pr([l,u],ee,{flush:`sync`}),pr(i,te,{flush:`sync`}),Wt()&&Gt(b),{x:fn(d),y:fn(f),strategy:fn(p),placement:fn(m),middlewareData:fn(h),isPositioned:fn(g),floatingStyles:_,update:y}}var vZe=s((()=>{dZe(),IXe(),fZe()})),yZe,bZe=s((()=>{QYe(),eXe(),G(),sE(),vZe(),yZe=N({inheritAttrs:!1,__name:`ScalarFloating`,props:{placement:{},offset:{type:[Number,Object,Function],default:5},resize:{type:Boolean,default:!1},target:{},middleware:{default:()=>[]},teleport:{type:[Boolean,String]}},setup(e,{expose:t}){let n=A(null),r=A(null),i=W(()=>{if(typeof window<`u`&&r.value){if(typeof e.target==`string`){let t=document.getElementById(e.target);if(t)return t;console.warn(`ScalarFloating: Target with id="${e.target}" not found`)}else if(e.target instanceof HTMLElement)return e.target;let t=r.value.children?.[0];return t instanceof HTMLElement?t:r.value}}),a=$Ye(i,{enabled:W(()=>e.resize)}),o=W(()=>XT(e.placement??`bottom`)===`y`?a.width.value:void 0),s=W(()=>XT(e.placement??`bottom`)===`x`?a.height.value:void 0),{floatingStyles:c,middlewareData:l}=_Ze(i,n,{placement:W(()=>e.placement??`bottom`),whileElementsMounted:rZe,middleware:W(()=>[cZe(e.offset),NE({padding:48}),ME({padding:8}),lZe({apply({availableWidth:e,availableHeight:t,elements:n}){Object.assign(n.floating.style,{maxWidth:`${Math.max(0,e)-16}px`,maxHeight:`${Math.max(0,t)-16}px`})}}),...e.middleware])});return t({targetRef:i}),(t,i)=>(F(),I(H,null,[R(`div`,{ref_key:`wrapperRef`,ref:r,class:O({contents:!!t.$slots.default})},[P(t.$slots,`default`)],2),t.$slots.floating?(F(),L(j(KT),{key:0,disabled:!e.teleport,to:typeof e.teleport==`string`?e.teleport:void 0},{default:M(()=>[R(`div`,{ref_key:`floatingRef`,ref:n,class:`relative z-context`,style:tt(j(c))},[P(t.$slots,`floating`,{data:j(l),height:s.value,width:o.value})],4)]),_:3},8,[`disabled`,`to`])):B(``,!0)],64))}})})),FE,IE=s((()=>{bZe(),FE=yZe})),xZe,SZe=s((()=>{Wu(),G(),xZe=N({inheritAttrs:!1,__name:`ScalarFloatingBackdrop`,setup(e){let{cx:t}=Uu();return(e,n)=>(F(),I(`div`,nt(ei(j(t)(`absolute inset-0 -z-1 rounded bg-b-1 shadow-lg brightness-lifted`))),[P(e.$slots,`default`)],16))}})})),LE,RE=s((()=>{SZe(),LE=xZe})),CZe,wZe=s((()=>{IE(),RE(),Wu(),G(),Qs(),CZe=N({inheritAttrs:!1,__name:`ScalarComboboxPopover`,props:{placement:{},offset:{type:[Number,Object,Function]},resize:{type:Boolean},target:{},middleware:{},teleport:{type:[Boolean,String]}},setup(e,{expose:t}){let{cx:n}=Uu(),r=A(null),i=e=>{[`ArrowUp`,`ArrowDown`].includes(e.key)&&(e.preventDefault(),e.target?.dispatchEvent(new KeyboardEvent(`keydown`,{key:`Enter`})))};return t({popoverButtonRef:r}),(e,t)=>(F(),L(j(Us),{as:`template`},{default:M(({open:t})=>[U(j(FE),nt(ei(e.$props)),Mr({default:M(()=>[U(j(Ws),{ref_key:`popoverButtonRef`,ref:r,as:`template`,onKeydown:i},{default:M(()=>[P(e.$slots,`default`,{open:t})]),_:2},1536)]),_:2},[t?{name:`floating`,fn:M(({width:r})=>[U(j(Gs),V({style:{width:r}},j(n)(`relative flex flex-col max-h-[inherit] w-40 rounded text-sm`)),{default:M(({close:n})=>[P(e.$slots,`popover`,{close:n,open:t}),U(j(LE))]),_:2},1040,[`style`])]),key:`0`}:void 0]),1040)]),_:3}))}})})),zE,TZe=s((()=>{wZe(),zE=CZe})),EZe,DZe=s((()=>{KYe(),TZe(),G(),EZe=N({__name:`ScalarCombobox`,props:Lr({options:{},placeholder:{},filterFn:{type:Function},placement:{},offset:{type:[Number,Object,Function]},resize:{type:Boolean},target:{},middleware:{},teleport:{type:[Boolean,String]}},{modelValue:{},modelModifiers:{}}),emits:Lr([`add`],[`update:modelValue`]),setup(e,{emit:t}){let n=t,r=Ur(e,`modelValue`);return(t,i)=>(F(),L(zE,{middleware:e.middleware,offset:e.offset,placement:e.placement??`bottom-start`,resize:e.resize,target:e.target,teleport:e.teleport},{default:M(({open:e})=>[P(t.$slots,`default`,{open:e})]),popover:M(({open:i,close:a})=>[U(WT,{filterFn:e.filterFn,modelValue:r.value?[r.value]:[],open:i,options:e.options,placeholder:e.placeholder,onAdd:()=>(a(),n(`add`)),"onUpdate:modelValue":e=>(a(),r.value=e[0])},Mr({_:2},[t.$slots.option?{name:`option`,fn:M(e=>[P(t.$slots,`option`,nt(ei(e)))]),key:`0`}:void 0,t.$slots.group?{name:`group`,fn:M(e=>[P(t.$slots,`group`,nt(ei(e)))]),key:`1`}:void 0,t.$slots.add?{name:`add`,fn:M(e=>[P(t.$slots,`add`,nt(ei(e)))]),key:`2`}:void 0]),1032,[`filterFn`,`modelValue`,`open`,`options`,`placeholder`,`onAdd`,`onUpdate:modelValue`])]),_:3},8,[`middleware`,`offset`,`placement`,`resize`,`target`,`teleport`]))}})})),BE,OZe=s((()=>{DZe(),BE=EZe})),kZe,AZe=s((()=>{KYe(),TZe(),G(),kZe=N({__name:`ScalarComboboxMultiselect`,props:Lr({options:{},placeholder:{},filterFn:{type:Function},placement:{},offset:{type:[Number,Object,Function]},resize:{type:Boolean},target:{},middleware:{},teleport:{type:[Boolean,String]}},{modelValue:{default:()=>[]},modelModifiers:{}}),emits:Lr([`add`],[`update:modelValue`]),setup(e,{expose:t,emit:n}){let r=n,i=Ur(e,`modelValue`),a=A(null);return t({comboboxPopoverRef:a}),(t,n)=>(F(),L(zE,{ref_key:`comboboxPopoverRef`,ref:a,middleware:e.middleware,offset:e.offset,placement:e.placement??`bottom-start`,resize:e.resize,target:e.target,teleport:e.teleport},{default:M(({open:e})=>[P(t.$slots,`default`,{open:e})]),popover:M(({open:a})=>[e.options?.length?(F(),L(WT,{key:0,modelValue:i.value,"onUpdate:modelValue":n[0]||=e=>i.value=e,filterFn:e.filterFn,multiselect:``,open:a,options:e.options,placeholder:e.placeholder,onAdd:n[1]||=e=>r(`add`)},Mr({_:2},[t.$slots.option?{name:`option`,fn:M(e=>[P(t.$slots,`option`,nt(ei(e)))]),key:`0`}:void 0,t.$slots.group?{name:`group`,fn:M(e=>[P(t.$slots,`group`,nt(ei(e)))]),key:`1`}:void 0,t.$slots.add?{name:`add`,fn:M(e=>[P(t.$slots,`add`,nt(ei(e)))]),key:`2`}:void 0]),1032,[`modelValue`,`filterFn`,`open`,`options`,`placeholder`])):B(``,!0)]),_:3},8,[`middleware`,`offset`,`placement`,`resize`,`target`,`teleport`]))}})})),VE,jZe=s((()=>{AZe(),VE=kZe})),HE=s((()=>{OZe(),jZe()})),MZe,NZe,PZe,FZe=s((()=>{RE(),Wu(),G(),MZe={class:`custom-scroll min-h-0 flex-1`},NZe={class:`flex flex-col p-0.75`},PZe=N({inheritAttrs:!1,__name:`ScalarDropdownMenu`,props:{is:{}},setup(e){let{cx:t}=Uu();return(n,r)=>(F(),L(Ar(e.is??`div`),nt(ei(j(t)(`relative flex w-56`))),{default:M(()=>[R(`div`,MZe,[P(n.$slots,`menu`,{},()=>[R(`div`,NZe,[P(n.$slots,`default`)])]),P(n.$slots,`backdrop`,{},()=>[U(j(LE))])])]),_:3},16))}})})),UE,WE=s((()=>{FZe(),UE=PZe}));function IZe(){let e=A();return ur(GE,e),{active:e}}function LZe(){let e=dr(GE);return e||console.warn(`useDropdownItem must be used within a ScalarDropdown`),{active:e}}var GE,RZe=s((()=>{G(),GE=Symbol()}));function KE(e){return Wt()?(Gt(e),!0):!1}function zZe(){return JE&&(window==null?void 0:window.navigator)?.userAgent&&(/iP(?:ad|hone|od)/.test(window.navigator.userAgent)||(window==null?void 0:window.navigator)?.maxTouchPoints>2&&/iPad|Macintosh/.test(window==null?void 0:window.navigator.userAgent))}function BZe(...e){if(e.length!==1)return Cn(...e);let t=e[0];return typeof t==`function`?dn(ste(()=>({get:t,set:XE}))):A(t)}function VZe(e,t){function n(...n){return new Promise((r,i)=>{Promise.resolve(e(()=>t.apply(this,n),{fn:t,thisArg:this,args:n})).then(r).catch(i)})}return n}function HZe(e,t={}){let n,r,i=XE,a=e=>{clearTimeout(e),i(),i=XE},o;return s=>{let c=Sn(e),l=Sn(t.maxWait);return n&&a(n),c<=0||l!==void 0&&l<=0?(r&&=(a(r),void 0),Promise.resolve(s())):new Promise((e,u)=>{i=t.rejectOnCancel?u:e,o=s,l&&!r&&(r=setTimeout(()=>{n&&a(n),r=void 0,e(o())},l)),n=setTimeout(()=>{r&&a(r),r=void 0,e(s())},c)})}}function UZe(e){let t;function n(){return t||=e(),t}return n.reset=async()=>{let e=t;t=void 0,e&&await e},n}function qE(e){return Array.isArray(e)?e:[e]}function WZe(e,t=200,n={}){return VZe(HZe(t,n),e)}function GZe(e,t,n={}){let{eventFilter:r=ZZe,...i}=n;return pr(e,VZe(r,t),i)}function KZe(e,t,n={}){let{immediate:r=!0,immediateCallback:i=!1}=n,a=xn(!1),o;function s(){o&&=(clearTimeout(o),void 0)}function c(){a.value=!1,s()}function l(...n){i&&e(),s(),a.value=!0,o=setTimeout(()=>{a.value=!1,o=void 0,e(...n)},Sn(t))}return r&&(a.value=!0,JE&&l()),KE(c),{isPending:fn(a),start:l,stop:c}}function qZe(e,t,n={}){let{debounce:r=0,maxWait:i=void 0,...a}=n;return GZe(e,t,{...a,eventFilter:HZe(r,{maxWait:i})})}function JZe(e,t,n){return pr(e,t,{...n,immediate:!0})}var JE,YE,YZe,XZe,XE,ZE,ZZe,QE=s((()=>{G(),JE=typeof window<`u`&&typeof document<`u`,typeof WorkerGlobalScope<`u`&&globalThis instanceof WorkerGlobalScope,YE=e=>e!=null,YZe=Object.prototype.toString,XZe=e=>YZe.call(e)===`[object Object]`,XE=()=>{},ZE=zZe(),ZZe=e=>e()}));function $E(e){let t=Sn(e);return t?.$el??t}function eD(...e){let t=[],n=()=>{t.forEach(e=>e()),t.length=0},r=(e,t,n,r)=>(e.addEventListener(t,n,r),()=>e.removeEventListener(t,n,r)),i=W(()=>{let t=qE(Sn(e[0])).filter(e=>e!=null);return t.every(e=>typeof e!=`string`)?t:void 0}),a=JZe(()=>[i.value?.map(e=>$E(e))??[iD].filter(e=>e!=null),qE(Sn(i.value?e[1]:e[0])),qE(j(i.value?e[2]:e[1])),Sn(i.value?e[3]:e[2])],([e,i,a,o])=>{if(n(),!e?.length||!i?.length||!a?.length)return;let s=XZe(o)?{...o}:o;t.push(...e.flatMap(e=>i.flatMap(t=>a.map(n=>r(e,t,n,s)))))},{flush:`post`});return KE(n),()=>{a(),n()}}function tD(e,t,n={}){let{window:r=iD,ignore:i=[],capture:a=!0,detectIframe:o=!1,controls:s=!1}=n;if(!r)return s?{stop:XE,cancel:XE,trigger:XE}:XE;if(ZE&&!oD){oD=!0;let e={passive:!0};Array.from(r.document.body.children).forEach(t=>t.addEventListener(`click`,XE,e)),r.document.documentElement.addEventListener(`click`,XE,e)}let c=!0,l=e=>Sn(i).some(t=>{if(typeof t==`string`)return Array.from(r.document.querySelectorAll(t)).some(t=>t===e.target||e.composedPath().includes(t));{let n=$E(t);return n&&(e.target===n||e.composedPath().includes(n))}});function u(e){let t=Sn(e);return t&&t.$.subTree.shapeFlag===16}function d(e,t){let n=Sn(e),r=n.$.subTree&&n.$.subTree.children;return r==null||!Array.isArray(r)?!1:r.some(e=>e.el===t.target||t.composedPath().includes(e.el))}let f=n=>{let r=$E(e);if(n.target!=null&&!(!(r instanceof Element)&&u(e)&&d(e,n))&&!(!r||r===n.target||n.composedPath().includes(r))){if(`detail`in n&&n.detail===0&&(c=!l(n)),!c){c=!0;return}t(n)}},p=!1,m=[eD(r,`click`,e=>{p||(p=!0,setTimeout(()=>{p=!1},0),f(e))},{passive:!0,capture:a}),eD(r,`pointerdown`,t=>{let n=$E(e);c=!l(t)&&!!(n&&!t.composedPath().includes(n))},{passive:!0}),o&&eD(r,`blur`,n=>{setTimeout(()=>{let i=$E(e);r.document.activeElement?.tagName===`IFRAME`&&!i?.contains(r.document.activeElement)&&t(n)},0)},{passive:!0})].filter(Boolean),h=()=>m.forEach(e=>e());return s?{stop:h,cancel:()=>{c=!1},trigger:e=>{c=!0,f(e),c=!1}}:h}function QZe(){let e=xn(!1),t=ba();return t&&Vi(()=>{e.value=!0},t),e}function nD(e){let t=QZe();return W(()=>(t.value,!!e()))}function $Ze(e,t,n={}){let{window:r=iD,...i}=n,a,o=nD(()=>r&&`MutationObserver`in r),s=()=>{a&&=(a.disconnect(),void 0)},c=pr(W(()=>{let t=qE(Sn(e)).map($E).filter(YE);return new Set(t)}),e=>{s(),o.value&&e.size&&(a=new MutationObserver(t),e.forEach(e=>a.observe(e,i)))},{immediate:!0,flush:`post`}),l=()=>a?.takeRecords(),u=()=>{c(),s()};return KE(u),{isSupported:o,stop:u,takeRecords:l}}function eQe(e,t,n={}){let{window:r=iD,document:i=r?.document,flush:a=`sync`}=n;if(!r||!i)return XE;let o,s=e=>{o?.(),o=e},c=fr(()=>{let n=$E(e);if(n){let{stop:e}=$Ze(i,e=>{e.map(e=>[...e.removedNodes]).flat().some(e=>e===n||e.contains(n))&&t(e)},{window:r,childList:!0,subtree:!0});s(e)}},{flush:a}),l=()=>{c(),s()};return KE(l),l}function tQe(e){return typeof e==`function`?e:typeof e==`string`?t=>t.key===e:Array.isArray(e)?t=>e.includes(t.key):()=>!0}function nQe(...e){let t,n,r={};e.length===3?(t=e[0],n=e[1],r=e[2]):e.length===2?typeof e[1]==`object`?(t=!0,n=e[0],r=e[1]):(t=e[0],n=e[1]):(t=!0,n=e[0]);let{target:i=iD,eventName:a=`keydown`,passive:o=!1,dedupe:s=!1}=r,c=tQe(t);return eD(i,a,e=>{e.repeat&&Sn(s)||c(e)&&n(e)},o)}function rQe(e={}){let{window:t=iD,deep:n=!0,triggerOnRemoval:r=!1}=e,i=e.document??t?.document,a=()=>{let e=i?.activeElement;if(n)for(;e?.shadowRoot;)e=e?.shadowRoot?.activeElement;return e},o=xn(),s=()=>{o.value=a()};if(t){let e={capture:!0,passive:!0};eD(t,`blur`,e=>{e.relatedTarget===null&&s()},e),eD(t,`focus`,s,e)}return r&&eQe(o,s,{document:i}),s(),o}function iQe(e,t={}){let{controls:n=!1,navigator:r=aD}=t,i=nD(()=>r&&`permissions`in r),a=xn(),o=typeof e==`string`?{name:e}:e,s=xn(),c=()=>{s.value=a.value?.state??`prompt`};eD(a,`change`,c,{passive:!0});let l=UZe(async()=>{if(i.value){if(!a.value)try{a.value=await r.permissions.query(o)}catch{a.value=void 0}finally{c()}if(n)return vn(a.value)}});return l(),n?{state:s,isSupported:i,query:l}:s}function aQe(e={}){let{navigator:t=aD,read:n=!1,source:r,copiedDuring:i=1500,legacy:a=!1}=e,o=nD(()=>t&&`clipboard`in t),s=iQe(`clipboard-read`),c=iQe(`clipboard-write`),l=W(()=>o.value||a),u=xn(``),d=xn(!1),f=KZe(()=>d.value=!1,i,{immediate:!1});async function p(){let e=!(o.value&&_(s.value));if(!e)try{u.value=await t.clipboard.readText()}catch{e=!0}e&&(u.value=g())}l.value&&n&&eD([`copy`,`cut`],p,{passive:!0});async function m(e=Sn(r)){if(l.value&&e!=null){let n=!(o.value&&_(c.value));if(!n)try{await t.clipboard.writeText(e)}catch{n=!0}n&&h(e),u.value=e,d.value=!0,f.start()}}function h(e){let t=document.createElement(`textarea`);t.value=e??``,t.style.position=`absolute`,t.style.opacity=`0`,document.body.appendChild(t),t.select(),document.execCommand(`copy`),t.remove()}function g(){return((document==null?void 0:document.getSelection)?.call(document))?.toString()??``}function _(e){return e===`granted`||e===`prompt`}return{isSupported:l,text:u,copied:d,copy:m}}function oQe(e,t,n={}){let{window:r=iD,...i}=n,a,o=nD(()=>r&&`ResizeObserver`in r),s=()=>{a&&=(a.disconnect(),void 0)},c=pr(W(()=>{let t=Sn(e);return Array.isArray(t)?t.map(e=>$E(e)):[$E(t)]}),e=>{if(s(),o.value&&r){a=new ResizeObserver(t);for(let t of e)t&&a.observe(t,i)}},{immediate:!0,flush:`post`}),l=()=>{s(),c()};return KE(l),{isSupported:o,stop:l}}function sQe(e,t={}){let{delayEnter:n=0,delayLeave:r=0,triggerOnRemoval:i=!1,window:a=iD}=t,o=xn(!1),s,c=e=>{let t=e?n:r;s&&=(clearTimeout(s),void 0),t?s=setTimeout(()=>o.value=e,t):o.value=e};return a?(eD(e,`mouseenter`,()=>c(!0),{passive:!0}),eD(e,`mouseleave`,()=>c(!1),{passive:!0}),i&&eQe(W(()=>$E(e)),()=>c(!1)),o):o}function cQe(e,t,n={}){let{root:r,rootMargin:i=`0px`,threshold:a=0,window:o=iD,immediate:s=!0}=n,c=nD(()=>o&&`IntersectionObserver`in o),l=W(()=>qE(Sn(e)).map($E).filter(YE)),u=XE,d=xn(s),f=c.value?pr(()=>[l.value,$E(r),d.value],([e,n])=>{if(u(),!d.value||!e.length)return;let r=new IntersectionObserver(t,{root:$E(n),rootMargin:i,threshold:a});e.forEach(e=>e&&r.observe(e)),u=()=>{r.disconnect(),u=XE}},{immediate:s,flush:`post`}):XE,p=()=>{u(),f(),d.value=!1};return KE(p),{isSupported:c,isActive:d,pause(){u(),d.value=!1},resume(){d.value=!0},stop:p}}function lQe(e=null,t={}){let{baseUrl:n=``,rel:r=`icon`,document:i=mQe}=t,a=BZe(e),o=e=>{let t=i?.head.querySelectorAll(`link[rel*="${r}"]`);if(!t||t.length===0){let t=i?.createElement(`link`);t&&(t.rel=r,t.href=`${n}${e}`,t.type=`image/${e.split(`.`).pop()}`,i?.head.append(t));return}t?.forEach(t=>t.href=`${n}${e}`)};return pr(a,(e,t)=>{typeof e==`string`&&e!==t&&o(e)},{immediate:!0}),a}function uQe(e,t={}){let{window:n=iD}=t,r=W(()=>$E(e)),i=xn(!1),a=W(()=>i.value);if(!n||!rQe(t).value)return{focused:a};let o={passive:!0};return eD(r,hQe,()=>i.value=!0,o),eD(r,gQe,()=>{var e;return i.value=((e=r.value)?.matches)?.call(e,_Qe)??!1},o),{focused:a}}function rD(e){return typeof Window<`u`&&e instanceof Window?e.document.documentElement:typeof Document<`u`&&e instanceof Document?e.documentElement:e}function dQe(e){let t=window.getComputedStyle(e);if(t.overflowX===`scroll`||t.overflowY===`scroll`||t.overflowX===`auto`&&e.clientWidth1?!0:(t.preventDefault&&t.preventDefault(),!1)}function pQe(e,t=!1){let n=xn(t),r=null,i=``;pr(BZe(e),e=>{let t=rD(Sn(e));if(t){let e=t;if(sD.get(e)||sD.set(e,e.style.overflow),e.style.overflow!==`hidden`&&(i=e.style.overflow),e.style.overflow===`hidden`)return n.value=!0;if(n.value)return e.style.overflow=`hidden`}},{immediate:!0});let a=()=>{let t=rD(Sn(e));!t||n.value||(ZE&&(r=eD(t,`touchmove`,e=>{fQe(e)},{passive:!1})),t.style.overflow=`hidden`,n.value=!0)},o=()=>{let t=rD(Sn(e));!t||!n.value||(ZE&&r?.(),t.style.overflow=i,sD.delete(t),n.value=!1)};return KE(o),W({get(){return n.value},set(e){e?a():o()}})}var iD,mQe,aD,oD,hQe,gQe,_Qe,sD,cD=s((()=>{QE(),QE(),G(),iD=JE?window:void 0,mQe=JE?window.document:void 0,aD=JE?window.navigator:void 0,JE&&window.location,oD=!1,hQe=`focusin`,gQe=`focusout`,_Qe=`:focus-within`,sD=new WeakMap})),vQe,yQe,bQe=s((()=>{IE(),WE(),RZe(),Wu(),G(),cD(),vQe=[`id`,`aria-activedescendant`,`aria-labelledby`,`onKeydown`],yQe=N({inheritAttrs:!1,__name:`ScalarDropdown`,props:Lr({placement:{},offset:{type:[Number,Object,Function]},resize:{type:Boolean},target:{},middleware:{},teleport:{type:[Boolean,String]}},{open:{type:Boolean,default:!1},openModifiers:{}}),emits:[`update:open`],setup(e){let t=A(),n=A(),r=Ur(e,`open`),{active:i}=IZe(),a=xr(),o=A(a),s=xr();async function c(){r.value=!r.value,await ir(),r.value&&n.value?.focus()}async function l(e){if([`ArrowDown`,`ArrowUp`,` `,`Enter`].includes(e.key))e.preventDefault();else return;r.value||=!0,await ir(),n.value?.focus(),[`ArrowDown`,` `,`Enter`].includes(e.key)?f(1):e.key===`ArrowUp`&&f(-1)}pr(()=>t.value?.targetRef,(e,t)=>{e&&(e.id?o.value=e.id:(o.value=a,e.setAttribute(`id`,o.value)),e.setAttribute(`aria-haspopup`,`menu`),e.setAttribute(`aria-expanded`,`${r.value}`),r.value&&e.setAttribute(`aria-controls`,s),e.addEventListener(`click`,c),e.addEventListener(`keydown`,l)),t&&t!==e&&(t.id===a&&t.removeAttribute(`id`),t.removeAttribute(`aria-controls`),t.removeAttribute(`aria-haspopup`),t.removeAttribute(`aria-expanded`),t.removeEventListener(`click`,c),t.removeEventListener(`keydown`,l))},{immediate:!0}),pr(r,e=>{let n=t.value?.targetRef;n&&(n.setAttribute(`aria-expanded`,`${e}`),e?n.setAttribute(`aria-controls`,s):n.removeAttribute(`aria-controls`))},{immediate:!0});async function u(){t.value?.targetRef?.focus(),r.value=!1}function d(){if(!i.value||!n.value)return;let e=n.value.querySelector(`#${i.value}[role="menuitem"]:not([aria-disabled="true"])`);e&&(e.click(),u())}function f(e){if(!r.value||!n.value)return;let t=Array.from(n.value.querySelectorAll(`[role="menuitem"]:not([aria-disabled="true"])`));if(t.length===0)return;let a=t.findIndex(e=>e.id===i.value);if(a===-1){let n=t[e>0?0:t.length-1];n?.id&&(i.value=n.id);return}let o=a+e;if(o<0||o>t.length-1)return;let s=t[o];s?.id&&(i.value=s.id)}tD(n,u,{ignore:[W(()=>t.value?.targetRef)]});let{cx:p}=Uu();return(a,c)=>(F(),L(j(FE),V({ref_key:`floatingRef`,ref:t},a.$props,{placement:e.placement??`bottom-start`}),Mr({default:M(()=>[P(a.$slots,`default`,{open:r.value})]),_:2},[r.value?{name:`floating`,fn:M(({width:e})=>[U(UE,V({style:{width:e}},j(p)(`max-h-[inherit] max-w-[inherit]`)),{menu:M(()=>[R(`div`,{id:j(s),ref_key:`menuRef`,ref:n,"aria-activedescendant":j(i),"aria-labelledby":o.value,class:`flex flex-col p-0.75 outline-none`,role:`menu`,tabindex:`-1`,onClick:uo(u,[`stop`]),onKeydown:[c[0]||=fo(uo(e=>f(1),[`prevent`,`stop`]),[`down`]),fo(uo(d,[`prevent`,`stop`]),[`enter`]),fo(uo(u,[`prevent`,`stop`]),[`escape`]),fo(uo(d,[`prevent`,`stop`]),[`space`]),fo(uo(u,[`prevent`,`stop`]),[`tab`]),c[1]||=fo(uo(e=>f(-1),[`prevent`,`stop`]),[`up`])]},[P(a.$slots,`items`,{open:r.value})],40,vQe)]),_:3},16,[`style`])]),key:`0`}:void 0]),1040,[`placement`]))}})})),lD,xQe=s((()=>{bQe(),lD=yQe})),SQe,CQe=s((()=>{Wu(),G(),SQe=N({__name:`ScalarDropdownButton`,props:{is:{default:`button`},active:{type:Boolean},disabled:{type:Boolean}},setup(e){let t=Vu({base:[`block h-8 min-w-0 gap-1.5 rounded px-2.5 py-1.5 text-left`,`truncate no-underline text-sm text-c-1`,`cursor-pointer hover:bg-b-2 highlighted:bg-b-2`],variants:{disabled:{true:`pointer-events-none text-c-3`},active:{true:``}},compoundVariants:[{disabled:!1,active:!0,class:`bg-b-2`}]});return(n,r)=>(F(),L(Ar(e.is),{"aria-disabled":e.disabled,class:O([`item`,j(Hu)(`scalar-dropdown-item`,j(t)({active:e.active,disabled:e.disabled}))]),type:e.is===`button`?`button`:void 0},{default:M(()=>[P(n.$slots,`default`,{},void 0,!0)]),_:3},8,[`aria-disabled`,`class`,`type`]))}})})),uD,dD=s((()=>{MS(),CQe(),uD=jS(SQe,[[`__scopeId`,`data-v-f5e0d3d8`]])})),wQe,TQe=s((()=>{wQe={}}));function EQe(e,t,n,r,i,a){return F(),I(`div`,DQe)}var DQe,fD,OQe=s((()=>{MS(),TQe(),G(),DQe={class:`-mx-0.75 my-0.75 h-border bg-border`},fD=jS(wQe,[[`render`,EQe]])})),kQe,AQe=s((()=>{RZe(),dD(),G(),kQe=N({__name:`ScalarDropdownItem`,props:{id:{default:()=>xr()},disabled:{type:Boolean}},emits:[`click`],setup(e){let{active:t}=LZe();return(n,r)=>(F(),L(uD,{id:e.id,active:j(t)===e.id,disabled:e.disabled,role:`menuitem`,tabindex:`-1`,onClick:r[0]||=e=>n.$emit(`click`,e),onMouseenter:r[1]||=n=>t.value=e.id},{default:M(()=>[P(n.$slots,`default`,{},void 0,!0)]),_:3},8,[`id`,`active`,`disabled`]))}})})),pD,jQe=s((()=>{MS(),AQe(),pD=jS(kQe,[[`__scopeId`,`data-v-3402682d`]])})),mD=s((()=>{xQe(),OQe(),jQe()})),MQe,NQe,PQe,FQe,IQe,LQe,RQe=s((()=>{G(),BT(),PT(),HE(),mD(),MQe={class:`group-[.alert]:outline-orange group-[.error]:outline-red w-full pr-10 -outline-offset-1 has-[:focus-visible]:rounded-[4px] has-[:focus-visible]:outline`},NQe={class:`text-c-1 whitespace-nowrap`},PQe={class:`text-c-1 overflow-hidden text-ellipsis`},FQe={class:`overflow-hidden text-ellipsis`},IQe={class:`flex h-4 w-4 items-center justify-center`},LQe=N({__name:`DataTableInputSelect`,props:{modelValue:{type:[String,Number,Boolean,Array,Object]},value:{},default:{type:[String,Number,Boolean,Array,Object]},canAddCustomValue:{type:Boolean,default:!0},type:{}},emits:[`update:modelValue`],setup(e,{emit:t}){let n=e,r=t,i=W(()=>n.value??[]),a=A(!1),o=A(``),s=A(null);pr(o,e=>{r(`update:modelValue`,e)});let c=e=>{r(`update:modelValue`,e),a.value=!1},l=()=>{o.value.trim()&&c(o.value)},u=()=>{o.value.trim()||r(`update:modelValue`,``),a.value=!1},d=e=>n.modelValue.toString()===e;pr(a,e=>{e&&ir(()=>{s.value?.focus()})});let f=W(()=>n.modelValue===void 0?n.default:n.modelValue),p=W(()=>i.value.map(e=>{let t=e.toString();return{id:t,label:t,value:t}})),m=W(()=>{let e=new Set(n.modelValue.toString().split(`,`));return p.value.filter(t=>e.has(t.id))}),h=e=>{let t=e.map(e=>e.value);r(`update:modelValue`,t.join(`,`))};return(t,n)=>(F(),I(`div`,MQe,[e.type===`array`?(F(),L(j(VE),{key:0,modelValue:m.value,options:p.value,"onUpdate:modelValue":h},{default:M(()=>[U(j(zT),{class:`custom-scroll h-full justify-start gap-1.5 px-2 py-1.5 pr-6 font-normal outline-none`,fullWidth:``,variant:`ghost`},{default:M(()=>[R(`span`,NQe,k(m.value.length>0?m.value.map(e=>e.label).join(`, `):`Select a value`),1),U(j(AT),{class:`min-w-4`,icon:`ChevronDown`,size:`md`})]),_:1})]),_:1},8,[`modelValue`,`options`])):a.value?cr((F(),I(`input`,{key:1,ref_key:`inputRef`,ref:s,"onUpdate:modelValue":n[0]||=e=>o.value=e,class:`text-c-1 w-full min-w-0 border-none px-2 py-1.5 outline-none`,placeholder:`Value`,type:`text`,onBlur:u,onKeyup:fo(l,[`enter`])},null,544)),[[so,o.value]]):(F(),L(j(lD),{key:2,resize:``,value:f.value},{items:M(()=>[(F(!0),I(H,null,jr(i.value,e=>(F(),L(j(pD),{key:e,class:`group/item flex items-center gap-1.5 overflow-hidden text-ellipsis whitespace-nowrap`,value:e,onClick:t=>c(e)},{default:M(()=>[R(`div`,{class:O([`flex h-4 w-4 items-center justify-center rounded-full p-[3px]`,d(e)?`bg-c-accent text-b-1`:`shadow-border text-transparent`])},[U(j(AT),{class:`size-2.5`,icon:`Checkmark`,thickness:`3`})],2),R(`span`,FQe,k(e),1)]),_:2},1032,[`value`,`onClick`]))),128)),e.canAddCustomValue?(F(),I(H,{key:0},[i.value.length?(F(),L(j(fD),{key:0})):B(``,!0),U(j(pD),{class:`flex items-center gap-1.5`,onClick:n[1]||=e=>a.value=!0},{default:M(()=>[R(`div`,IQe,[U(j(AT),{icon:`Add`,size:`sm`})]),n[2]||=R(`span`,null,`Add value`,-1)]),_:1})],64)):B(``,!0)]),default:M(()=>[U(j(zT),{class:`size-full justify-start gap-1.5 overflow-auto px-2 py-1.5 font-normal whitespace-nowrap outline-none`,variant:`ghost`},{default:M(()=>[R(`span`,PQe,k(f.value??`Select a value`),1),U(j(AT),{icon:`ChevronDown`,size:`md`})]),_:1})]),_:1},8,[`value`]))]))}})})),hD,gD=s((()=>{RQe(),hD=LQe})),zQe,BQe,VQe=s((()=>{YYe(),G(),zQe=[`id`],BQe=N({inheritAttrs:!1,__name:`ScalarTeleportRoot`,props:{id:{}},setup(e){let t=JYe(e.id);return(e,n)=>(F(),I(H,null,[P(e.$slots,`default`),R(`div`,{id:j(t),class:`scalar-teleport-root contents`},null,8,zQe)],64))}})})),HQe,UQe=s((()=>{VQe(),HQe=BQe})),WQe=s((()=>{QYe(),UQe()}));function _D(e){return Array.isArray?Array.isArray(e):YQe(e)===`[object Array]`}function GQe(e){if(typeof e==`string`)return e;if(typeof e==`bigint`)return e.toString();let t=e+``;return t==`0`&&1/e==-1/0?`-0`:t}function vD(e){return e==null?``:GQe(e)}function yD(e){return typeof e==`string`}function bD(e){return typeof e==`number`}function KQe(e){return e===!0||e===!1||JQe(e)&&YQe(e)==`[object Boolean]`}function qQe(e){return typeof e==`object`}function JQe(e){return qQe(e)&&e!==null}function xD(e){return e!=null}function SD(e){return!e.trim().length}function YQe(e){return e==null?e===void 0?`[object Undefined]`:`[object Null]`:Object.prototype.toString.call(e)}function XQe(e){let t=null,n=null,r=null,i=1,a=null;if(yD(e)||_D(e))r=e,t=ZQe(e),n=CD(e);else{if(!jD.call(e,`name`))throw Error(w$e(`name`));let o=e.name;if(r=o,jD.call(e,`weight`)&&e.weight!==void 0&&(i=e.weight,i<=0))throw Error(T$e(CD(o)));t=ZQe(o),n=CD(o),a=e.getFn??null}return{path:t,id:n,weight:i,src:r,getFn:a}}function ZQe(e){return _D(e)?e:e.split(`.`)}function CD(e){return _D(e)?e.join(`.`):e}function QQe(e,t){let n=[],r=!1,i=(e,t,a,o)=>{if(xD(e))if(!t[a])n.push(o===void 0?e:{v:e,i:o});else{let s=e[t[a]];if(!xD(s))return;if(a===t.length-1&&(yD(s)||bD(s)||KQe(s)||typeof s==`bigint`))n.push(o===void 0?vD(s):{v:vD(s),i:o});else if(_D(s)){r=!0;for(let e=0,n=s.length;e=9&&e<=13||e===32||e===160}function e$e(e=1,t=3){let n=new Map,r=10**t;return{get(t){let i=0,a=!1;for(let e=0;e=t&&n.push([r,i]),r=-1)}return e[a-1]&&a-r>=t&&n.push([r,a-1]),n}function i$e(e,t,n,{location:r=MD.location,distance:i=MD.distance,threshold:a=MD.threshold,findAllMatches:o=MD.findAllMatches,minMatchCharLength:s=MD.minMatchCharLength,includeMatches:c=MD.includeMatches,ignoreLocation:l=MD.ignoreLocation}={}){if(t.length>32)throw Error(C$e(32));let u=t.length,d=e.length,f=Math.max(0,Math.min(r,d)),p=a,m=f,h=(e,t)=>{let n=e/u;if(l)return n;let r=Math.abs(f-t);return i?n+r/i:r?1:n},g=s>1||c,_=g?Array(d):[],v;for(;(v=e.indexOf(t,m))>-1;){let e=h(0,v);if(p=Math.min(e,p),m=v+u,g){let e=0;for(;e=a;--r){let i=r-1,o=n[e[i]];if(c[r]=(c[r+1]<<1|1)&o,t&&(c[r]|=(y[r+1]|y[r])<<1|1|y[r+1]),c[r]&ne&&(b=h(t,i),b<=p)){if(p=b,m=i,ee=t,m<=f)break;a=Math.max(1,2*f-m)}}if(h(t+1,f)>p)break;y=c}if(g&&m>=0){let t=Math.min(d-1,m+u-1+ee);for(let r=m;r<=t;r+=1)n[e[r]]&&(_[r]=1)}let x={isMatch:m>=0,score:Math.max(.001,b)};if(g){let e=r$e(_,s);e.length?c&&(x.indices=e):x.isMatch=!1}return x}function a$e(e){let t={};for(let n=0,r=e.length;ne[0]-t[0]||e[1]-t[1]);let t=[e[0]];for(let n=1,r=e.length;n=n)break;let i=r;for(;i=n||e[t]===` `){i++;break}if(e[t]===`$`&&(t+1>=n||e[t+1]===` `)){i+=2;break}}i++}t.push(e.substring(r,i)),r=i}else{for(;i{let n=s$e(e.replace(/\u0000/g,`|`).trim()).filter(e=>e&&!!e.trim()),r=[];for(let e=0,i=n.length;e{if(yD(e)){let r={keyId:null,pattern:e};return n&&(r.searcher=ED(e,t)),r}let i=Object.keys(e),a=L$e(e);if(!a&&i.length>1&&!HD(e))return r(UD(e));if(R$e(e)){let r=a?e[VD.PATH]:i[0],o=a?e[VD.PATTERN]:e[r];if(!yD(o))throw Error(S$e(r));let s={keyId:CD(r),pattern:o};return n&&(s.searcher=ED(o,t)),s}let o={children:[],operator:i[0]};return i.forEach(t=>{let n=e[t];_D(n)&&n.forEach(e=>{o.children.push(r(e))})}),o};return HD(e)||(e=UD(e)),r(e)}function DD(e,{ignoreFieldNorm:t=MD.ignoreFieldNorm}){let n=1;return e.forEach(({key:e,norm:r,score:i})=>{let a=e?e.weight:null;n*=(i===0&&a?2**-52:i)**+((a||1)*(t?1:r))}),n}function d$e(e,{ignoreFieldNorm:t=MD.ignoreFieldNorm}){e.forEach(e=>{e.score=DD(e.matches,{ignoreFieldNorm:t})})}function f$e(e){let t=[];return e.matches.forEach(e=>{if(!xD(e.indices)||!e.indices.length)return;let n={indices:e.indices,value:e.value};e.key&&(n.key=e.key.id),e.idx>-1&&(n.refIndex=e.idx),t.push(n)}),t}function p$e(e,t,{includeMatches:n=MD.includeMatches,includeScore:r=MD.includeScore}={}){return e.map(e=>{let{idx:i}=e,a={item:t[i],refIndex:i};return n&&(a.matches=f$e(e)),r&&(a.score=e.score),a})}function m$e(e){WD.has(e)||(WD.add(e),console.warn(`[Fuse] tokenize regex ${e} lacks the global flag; only the first match per text will be returned. Add the 'g' flag.`))}function h$e(e){if(typeof e==`function`){let t=!1;return n=>{let r=e(n);if(!t&&(t=!0,!Array.isArray(r)||r.some(e=>typeof e!=`string`)))throw Error(`[Fuse] tokenize function must return string[]; received ${Array.isArray(r)?`array containing non-strings`:typeof r}.`);return r}}return e instanceof RegExp?(e.global||m$e(e),t=>t.match(e)||[]):e=>e.match(B$e)||[]}function OD({isCaseSensitive:e=!1,ignoreDiacritics:t=!1,tokenize:n}={}){let r=h$e(n);return{tokenize(n){return e||(n=n.toLowerCase()),t&&(n=FD(n)),r(n)}}}function kD(e,t,n,r){let i=r.tokenize(t);if(!i.length)return;e.fieldCount++,e.docFieldCount.set(n,(e.docFieldCount.get(n)||0)+1);let a=new Set(i),o=e.docTermFieldHits.get(n);o||(o=new Map,e.docTermFieldHits.set(n,o));for(let t of a)o.set(t,(o.get(t)||0)+1),e.df.set(t,(e.df.get(t)||0)+1)}function g$e(e,t,n,r){let{i,v:a,$:o}=t;if(a!==void 0){kD(e,a,i,r);return}if(o)for(let t=0;te-t);for(let t of n)y$e(e,t);let r=e=>{let t=0,r=n.length;for(;t>>1;n[i]i?r(t):t,n);e.docFieldCount=a;let o=new Map;for(let[t,n]of e.docTermFieldHits)o.set(t>i?r(t):t,n);e.docTermFieldHits=o}var x$e,AD,S$e,C$e,w$e,T$e,E$e,jD,D$e,O$e,k$e,A$e,j$e,MD,ND,PD,M$e,FD,ID,N$e,LD,RD,P$e,F$e,I$e,zD,BD,VD,HD,L$e,R$e,UD,z$e,B$e,WD,V$e,GD,KD,qD=s((()=>{x$e=`Incorrect 'index' type`,AD=`Invalid doc index: must be a non-negative integer within the bounds of the docs array`,S$e=e=>`Invalid value for key ${e}`,C$e=e=>`Pattern length exceeds max of ${e}.`,w$e=e=>`Missing ${e} property in key`,T$e=e=>`Property 'weight' in key '${e}' must be a positive integer`,E$e=`Fuse.match does not support useTokenSearch: token search requires corpus-level statistics (df, fieldCount) that a one-off string comparison does not have. Use new Fuse(...).search(...) instead.`,jD=Object.prototype.hasOwnProperty,D$e=class{constructor(e){this._keys=[],this._keyMap={};let t=0;e.forEach(e=>{let n=XQe(e);this._keys.push(n),this._keyMap[n.id]=n,t+=n.weight}),this._keys.forEach(e=>{e.weight/=t})}get(e){return this._keyMap[e]}keys(){return this._keys}toJSON(){return JSON.stringify(this._keys)}},O$e={includeMatches:!1,findAllMatches:!1,minMatchCharLength:1},k$e={isCaseSensitive:!1,ignoreDiacritics:!1,includeScore:!1,keys:[],shouldSort:!0,sortFn:(e,t)=>e.score===t.score?e.idx{this._keysMap[e.id]=t})}create(){if(this.isCreated||!this.docs.length)return;this.isCreated=!0;let e=this.docs.length;this.records=Array(e);let t=0;if(yD(this.docs[0]))for(let n=0;ne&&--this.records[t].i}removeAll(e){let t=new Set;for(let n of e)Number.isInteger(n)&&n>=0&&t.add(n);if(t.size===0)return;this.records=this.records.filter(e=>!t.has(e.i));let n=Array.from(t).sort((e,t)=>e-t);for(let e of this.records){let t=0,r=n.length;for(;t>>1;n[i]t),records:this.records}}},PD={ł:`l`,Ł:`L`,đ:`d`,Đ:`D`,ø:`o`,Ø:`O`,ħ:`h`,Ħ:`H`,ŧ:`t`,Ŧ:`T`,ı:`i`,ß:`ss`},M$e=RegExp(`[`+Object.keys(PD).join(``)+`]`,`g`),FD=typeof String.prototype.normalize==`function`?e=>e.normalize(`NFD`).replace(/[\u0300-\u036F\u0483-\u0489\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u064B-\u065F\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u0711\u0730-\u074A\u07A6-\u07B0\u07EB-\u07F3\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u08D3-\u08E1\u08E3-\u0903\u093A-\u093C\u093E-\u094F\u0951-\u0957\u0962\u0963\u0981-\u0983\u09BC\u09BE-\u09C4\u09C7\u09C8\u09CB-\u09CD\u09D7\u09E2\u09E3\u09FE\u0A01-\u0A03\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A70\u0A71\u0A75\u0A81-\u0A83\u0ABC\u0ABE-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AE2\u0AE3\u0AFA-\u0AFF\u0B01-\u0B03\u0B3C\u0B3E-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B56\u0B57\u0B62\u0B63\u0B82\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD7\u0C00-\u0C04\u0C3E-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C81-\u0C83\u0CBC\u0CBE-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CE2\u0CE3\u0D00-\u0D03\u0D3B\u0D3C\u0D3E-\u0D44\u0D46-\u0D48\u0D4A-\u0D4D\u0D57\u0D62\u0D63\u0D82\u0D83\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DF2\u0DF3\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0EB1\u0EB4-\u0EB9\u0EBB\u0EBC\u0EC8-\u0ECD\u0F18\u0F19\u0F35\u0F37\u0F39\u0F3E\u0F3F\u0F71-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102B-\u103E\u1056-\u1059\u105E-\u1060\u1062-\u1064\u1067-\u106D\u1071-\u1074\u1082-\u108D\u108F\u109A-\u109D\u135D-\u135F\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17B4-\u17D3\u17DD\u180B-\u180D\u1885\u1886\u18A9\u1920-\u192B\u1930-\u193B\u1A17-\u1A1B\u1A55-\u1A5E\u1A60-\u1A7C\u1A7F\u1AB0-\u1ABE\u1B00-\u1B04\u1B34-\u1B44\u1B6B-\u1B73\u1B80-\u1B82\u1BA1-\u1BAD\u1BE6-\u1BF3\u1C24-\u1C37\u1CD0-\u1CD2\u1CD4-\u1CE8\u1CED\u1CF2-\u1CF4\u1CF7-\u1CF9\u1DC0-\u1DF9\u1DFB-\u1DFF\u20D0-\u20F0\u2CEF-\u2CF1\u2D7F\u2DE0-\u2DFF\u302A-\u302F\u3099\u309A\uA66F-\uA672\uA674-\uA67D\uA69E\uA69F\uA6F0\uA6F1\uA802\uA806\uA80B\uA823-\uA827\uA880\uA881\uA8B4-\uA8C5\uA8E0-\uA8F1\uA8FF\uA926-\uA92D\uA947-\uA953\uA980-\uA983\uA9B3-\uA9C0\uA9E5\uAA29-\uAA36\uAA43\uAA4C\uAA4D\uAA7B-\uAA7D\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEB-\uAAEF\uAAF5\uAAF6\uABE3-\uABEA\uABEC\uABED\uFB1E\uFE00-\uFE0F\uFE20-\uFE2F]/g,``).replace(M$e,e=>PD[e]):e=>e,ID=class{constructor(e,{location:t=MD.location,threshold:n=MD.threshold,distance:r=MD.distance,includeMatches:i=MD.includeMatches,findAllMatches:a=MD.findAllMatches,minMatchCharLength:o=MD.minMatchCharLength,isCaseSensitive:s=MD.isCaseSensitive,ignoreDiacritics:c=MD.ignoreDiacritics,ignoreLocation:l=MD.ignoreLocation}={}){if(this.options={location:t,threshold:n,distance:r,includeMatches:i,findAllMatches:a,minMatchCharLength:o,isCaseSensitive:s,ignoreDiacritics:c,ignoreLocation:l},e=s?e:e.toLowerCase(),e=c?FD(e):e,this.pattern=e,this.chunks=[],!this.pattern.length)return;let u=(e,t)=>{this.chunks.push({pattern:e,alphabet:a$e(e),startIndex:t})},d=this.pattern.length;if(d>32){let e=0,t=d%32,n=d-t;for(;e{let{isMatch:m,score:h,indices:g}=i$e(e,t,n,{location:i+p,distance:a,threshold:o,findAllMatches:s,minMatchCharLength:c,includeMatches:r,ignoreLocation:l});m&&(f=!0),d+=h,m&&g&&u.push(...g)});let p={isMatch:f,score:f?d/this.chunks.length:1};return f&&r&&(p.indices=wD(u)),p}},N$e=new Set([`fuzzy`,`include`]),LD=[{type:`exact`,multiRegex:/^="(.*)"$/,singleRegex:/^=(.*)$/,create:e=>({type:`exact`,search(t){let n=t===e;return{isMatch:n,score:+!n,indices:[0,e.length-1]}}})},{type:`include`,multiRegex:/^'"(.*)"$/,singleRegex:/^'(.*)$/,create:e=>({type:`include`,search(t){let n=0,r,i=[],a=e.length;for(;(r=t.indexOf(e,n))>-1;)n=r+a,i.push([r,n-1]);let o=!!i.length;return{isMatch:o,score:+!o,indices:i}}})},{type:`prefix-exact`,multiRegex:/^\^"(.*)"$/,singleRegex:/^\^(.*)$/,create:e=>({type:`prefix-exact`,search(t){let n=t.startsWith(e);return{isMatch:n,score:+!n,indices:[0,e.length-1]}}})},{type:`inverse-prefix-exact`,multiRegex:/^!\^"(.*)"$/,singleRegex:/^!\^(.*)$/,create:e=>({type:`inverse-prefix-exact`,search(t){let n=!t.startsWith(e);return{isMatch:n,score:+!n,indices:[0,t.length-1]}}})},{type:`inverse-suffix-exact`,multiRegex:/^!"(.*)"\$$/,singleRegex:/^!(.*)\$$/,create:e=>({type:`inverse-suffix-exact`,search(t){let n=!t.endsWith(e);return{isMatch:n,score:+!n,indices:[0,t.length-1]}}})},{type:`suffix-exact`,multiRegex:/^"(.*)"\$$/,singleRegex:/^(.*)\$$/,create:e=>({type:`suffix-exact`,search(t){let n=t.endsWith(e);return{isMatch:n,score:+!n,indices:[t.length-e.length,t.length-1]}}})},{type:`inverse-exact`,multiRegex:/^!"(.*)"$/,singleRegex:/^!(.*)$/,create:e=>({type:`inverse-exact`,search(t){let n=t.indexOf(e)===-1;return{isMatch:n,score:+!n,indices:[0,t.length-1]}}})},{type:`fuzzy`,multiRegex:/^"(.*)"$/,singleRegex:/^(.*)$/,create:(e,t={})=>{let n=new ID(e,{location:t.location??MD.location,threshold:t.threshold??MD.threshold,distance:t.distance??MD.distance,includeMatches:t.includeMatches??MD.includeMatches,findAllMatches:t.findAllMatches??MD.findAllMatches,minMatchCharLength:t.minMatchCharLength??MD.minMatchCharLength,isCaseSensitive:t.isCaseSensitive??MD.isCaseSensitive,ignoreDiacritics:t.ignoreDiacritics??MD.ignoreDiacritics,ignoreLocation:t.ignoreLocation??MD.ignoreLocation});return{type:`fuzzy`,search(e){return n.searchIn(e)}}}}],RD=LD.length,P$e=`\0`,F$e=`|`,I$e=class{constructor(e,{isCaseSensitive:t=MD.isCaseSensitive,ignoreDiacritics:n=MD.ignoreDiacritics,includeMatches:r=MD.includeMatches,minMatchCharLength:i=MD.minMatchCharLength,ignoreLocation:a=MD.ignoreLocation,findAllMatches:o=MD.findAllMatches,location:s=MD.location,threshold:c=MD.threshold,distance:l=MD.distance}={}){this.query=null,this.options={isCaseSensitive:t,ignoreDiacritics:n,includeMatches:r,minMatchCharLength:i,findAllMatches:o,ignoreLocation:a,location:s,threshold:c,distance:l},e=t?e:e.toLowerCase(),e=n?FD(e):e,this.pattern=e,this.query=l$e(this.pattern,this.options)}static condition(e,t){return t.useExtendedSearch}searchIn(e){let t=this.query;if(!t)return{isMatch:!1,score:1};let{includeMatches:n,isCaseSensitive:r,ignoreDiacritics:i}=this.options;e=r?e:e.toLowerCase(),e=i?FD(e):e;let a=0,o=[],s=0,c=!1;for(let r=0,i=t.length;r!!(e[BD.AND]||e[BD.OR]),L$e=e=>!!e[VD.PATH],R$e=e=>!_D(e)&&qQe(e)&&!HD(e),UD=e=>({[BD.AND]:Object.keys(e).map(t=>({[t]:e[t]}))}),z$e=class{constructor(e,t){this.limit=e,this.heap=[],this.comparator=t}get size(){return this.heap.length}insert(e){this.size0;){let n=e-1>>1;if(this.comparator(t[e],t[n])<=0)break;let r=t[e];t[e]=t[n],t[n]=r,e=n}}_sinkDown(e){let t=this.heap,n=t.length,r=e;do{e=r;let i=2*e+1,a=2*e+2;if(i0&&(r=i),a0&&(r=a),r!==e){let n=t[e];t[e]=t[r],t[r]=n}}while(r!==e)}},B$e=/[\p{L}\p{M}\p{N}_]+/gu,WD=new WeakSet,V$e=class{static condition(e,t){return t.useTokenSearch}constructor(e,t){this.options=t,this.analyzer=OD({isCaseSensitive:t.isCaseSensitive,ignoreDiacritics:t.ignoreDiacritics,tokenize:t.tokenize});let n=this.analyzer.tokenize(e),{df:r,fieldCount:i}=t._invertedIndex;this.termSearchers=[],this.idfWeights=[];for(let e of n){this.termSearchers.push(new ID(e,{location:t.location,threshold:t.threshold,distance:t.distance,includeMatches:t.includeMatches,findAllMatches:t.findAllMatches,minMatchCharLength:t.minMatchCharLength,isCaseSensitive:t.isCaseSensitive,ignoreDiacritics:t.ignoreDiacritics,ignoreLocation:!0}));let n=r.get(e)||0,a=Math.log(1+(i-n+.5)/(n+.5));this.idfWeights.push(a)}this.combineAll=t.tokenMatch===`all`,this.numTerms=this.termSearchers.length,this.useMask=this.numTerms<=31}searchIn(e){if(!this.termSearchers.length)return{isMatch:!1,score:1};let t=[],n=0,r=0,i=0,a=0,o=this.combineAll&&!this.useMask?new Set:null;for(let s=0;s0?1-n/r:0,c={isMatch:!0,score:Math.max(.001,s)};return this.options.includeMatches&&t.length&&(c.indices=wD(t)),this.combineAll&&(this.useMask?c.matchedMask=a:c.matchedTerms=o,c.termCount=this.numTerms),c}},GD=class{constructor(e,t,n){this.options={...MD,...t},this.options.useExtendedSearch,this.options.useTokenSearch,this._keyStore=new D$e(this.options.keys),this._docs=e,this._myIndex=null,this._invertedIndex=null,this.setCollection(e,n),this._lastQuery=null,this._lastSearcher=null}_getSearcher(e){if(this._lastQuery===e)return this._lastSearcher;let t=ED(e,this._invertedIndex?{...this.options,_invertedIndex:this._invertedIndex}:this.options);return this._lastQuery=e,this._lastSearcher=t,t}setCollection(e,t){if(this._docs=e,t&&!(t instanceof ND))throw Error(x$e);if(this._myIndex=t||t$e(this.options.keys,this._docs,{getFn:this.options.getFn,fieldNormWeight:this.options.fieldNormWeight}),this.options.useTokenSearch){let e=OD({isCaseSensitive:this.options.isCaseSensitive,ignoreDiacritics:this.options.ignoreDiacritics,tokenize:this.options.tokenize});this._invertedIndex=_$e(this._myIndex.records,this._myIndex.keys.length,e)}this._invalidateSearcherCache()}add(e){if(!xD(e))return;this._docs.push(e);let t=this._myIndex.add(e,this._docs.length-1);if(this._invertedIndex&&t){let e=OD({isCaseSensitive:this.options.isCaseSensitive,ignoreDiacritics:this.options.ignoreDiacritics,tokenize:this.options.tokenize});v$e(this._invertedIndex,t,this._myIndex.keys.length,e)}this._invalidateSearcherCache()}remove(e=()=>!1){let t=[],n=[];for(let r=0,i=this._docs.length;r!e.has(n)),this._myIndex.removeAll(n),this._invalidateSearcherCache()}return t}removeAt(e){if(!Number.isInteger(e)||e<0||e>=this._docs.length)throw Error(AD);this._invertedIndex&&b$e(this._invertedIndex,[e]);let t=this._docs.splice(e,1)[0];return this._myIndex.removeAt(e),this._invalidateSearcherCache(),t}_invalidateSearcherCache(){this._lastQuery=null,this._lastSearcher=null}getIndex(){return this._myIndex}_normalizedKeys(){return this._myIndex.keys.map(e=>this._keyStore.get(e.id)||e)}search(e,t){let{limit:n=-1}=t||{},{includeMatches:r,includeScore:i,shouldSort:a,sortFn:o,ignoreFieldNorm:s}=this.options;if(yD(e)&&!e.trim()){let e=this._docs.map((e,t)=>({item:e,refIndex:t}));return bD(n)&&n>-1&&(e=e.slice(0,n)),e}let c=a&&bD(n)&&n>0&&yD(e),l=o,u=(e,t)=>l(e,t)||e.idx-t.idx,d;if(c){let t=new z$e(n,u);yD(this._docs[0])?this._searchStringList(e,{heap:t,ignoreFieldNorm:s}):this._searchObjectList(e,{heap:t,ignoreFieldNorm:s}),d=t.extractSorted()}else d=yD(e)?yD(this._docs[0])?this._searchStringList(e):this._searchObjectList(e):this._searchLogical(e),d$e(d,{ignoreFieldNorm:s}),a&&d.sort(yD(e)?u:l),bD(n)&&n>-1&&(d=d.slice(0,n));return p$e(d,this._docs,{includeMatches:r,includeScore:i})}_searchStringList(e,{heap:t,ignoreFieldNorm:n}={}){let r=this._getSearcher(e),i=this.options.useTokenSearch&&this.options.tokenMatch===`all`,{records:a}=this._myIndex,o=t?null:[];return a.forEach(({v:e,i:a,n:s})=>{if(!xD(e))return;let c=r.searchIn(e);if(c.isMatch){let r={score:c.score,value:e,norm:s,indices:c.indices};i&&(r.matchedMask=c.matchedMask,r.matchedTerms=c.matchedTerms,r.termCount=c.termCount);let l=[r];if(!i||this._coversAllTokens(l)){let r={item:e,idx:a,matches:l};t?(r.score=DD(r.matches,{ignoreFieldNorm:n}),t.insert(r)):o.push(r)}}}),o}_searchLogical(e){let t=u$e(e,this.options),n=this._normalizedKeys(),r=(e,t,i)=>{if(!(`children`in e)){let{keyId:r,searcher:a}=e,o;return r===null?(o=[],n.forEach((e,n)=>{o.push(...this._findMatches({key:e,value:t[n],searcher:a}))})):o=this._findMatches({key:this._keyStore.get(r),value:this._myIndex.getValueForItemAtKeyId(t,r),searcher:a}),o&&o.length?[{idx:i,item:t,matches:o}]:[]}let{children:a,operator:o}=e,s=[];for(let e=0,n=a.length;e{if(xD(e)){let i=r(t,e,n);i.length&&(a.has(n)||(a.set(n,{idx:n,item:e,matches:[]}),o.push(a.get(n))),i.forEach(({matches:e})=>{a.get(n).matches.push(...e)}))}}),o}_searchObjectList(e,{heap:t,ignoreFieldNorm:n}={}){let r=this._getSearcher(e),i=this.options.useTokenSearch&&this.options.tokenMatch===`all`,{records:a}=this._myIndex,o=this._normalizedKeys(),s=t?null:[];return a.forEach(({$:e,i:a})=>{if(!xD(e))return;let c=[],l=!1,u=!1;if(o.forEach((t,n)=>{let i=this._findMatches({key:t,value:e[n],searcher:r});i.length?(c.push(...i),i[0].hasInverse&&(u=!0)):l=!0}),!(u&&l)&&c.length&&(!i||this._coversAllTokens(c))){let r={idx:a,item:e,matches:c};t?(r.score=DD(r.matches,{ignoreFieldNorm:n}),t.insert(r)):s.push(r)}}),s}_findMatches({key:e,value:t,searcher:n}){if(!xD(t))return[];let r=[];if(_D(t))t.forEach(({v:t,i,n:a})=>{if(!xD(t))return;let o=n.searchIn(t);if(o.isMatch){let n={score:o.score,key:e,value:t,idx:i,norm:a,indices:o.indices,hasInverse:o.hasInverse};o.termCount!==void 0&&(n.matchedMask=o.matchedMask,n.matchedTerms=o.matchedTerms,n.termCount=o.termCount),r.push(n)}});else{let{v:i,n:a}=t,o=n.searchIn(i);if(o.isMatch){let t={score:o.score,key:e,value:i,norm:a,indices:o.indices,hasInverse:o.hasInverse};o.termCount!==void 0&&(t.matchedMask=o.matchedMask,t.matchedTerms=o.matchedTerms,t.termCount=o.termCount),r.push(t)}}return r}_coversAllTokens(e){let t=e.length?e[0].termCount:void 0;if(t===void 0)return!0;if(t<=31){let n=0;for(let t=0;tTD(e))},KD=GD})),H$e,U$e,W$e,G$e,K$e,JD,q$e,J$e=s((()=>{G(),BT(),ul(),xS(),WQe(),cD(),qD(),H$e=[`id`],U$e=[`id`,`aria-selected`,`onClick`],W$e={class:`flex items-center gap-2 whitespace-nowrap`},G$e={key:1,class:`text-c-3 bg-b-3 flex h-4.5 min-w-4.5 items-center justify-center rounded px-0.5 font-sans text-[9px] font-semibold`},K$e={class:`max-w-[9rem] overflow-hidden text-right text-ellipsis whitespace-nowrap`},JD=12,q$e=N({__name:`EnvironmentVariablesDropdown`,props:{query:{},environment:{},dropdownPosition:{},contextFunctionItems:{default:()=>[]},listboxId:{}},emits:[`select`,`redirect`,`close`],setup(e,{expose:t,emit:n}){let r=n,i=A(!0),a=A(null),o=A(0),s=()=>{r(`redirect`),i.value=!1,r(`close`)},c=W(()=>(e.environment?.variables??[]).map(e=>({key:e.name,value:typeof e.value==`string`?e.value:e.value.default}))),l=W(()=>e.contextFunctionItems.map(e=>({kind:`context`,key:e.key,secondary:e.description}))),u=W(()=>c.value.filter(({key:e,value:t})=>e!==``||t!==``).map(({key:e,value:t})=>({kind:`env`,key:e,secondary:t}))),d=W(()=>u.value.map(e=>({...e,fuseText:`${e.key} ${e.secondary}`}))),f=W(()=>l.value.map(e=>({...e,fuseText:`${e.key} ${e.secondary}`}))),p=W(()=>new KD(d.value,{keys:[`fuseText`],threshold:.35})),m=W(()=>new KD(f.value,{keys:[`fuseText`],threshold:.35})),h=W(()=>{let t=new Map(e.contextFunctionItems.map(e=>[e.key,e]));return SRe.flatMap(e=>{let n=t.get(e);return n?[{kind:`context`,key:n.key,secondary:n.description}]:[]})}),g=W(()=>{if(!e.query.trim())return[...u.value.slice(-4),...h.value];let t=e.query.trim(),n=p.value.search(t,{limit:JD}).map(e=>{let{kind:t,key:n,secondary:r}=e.item;return{kind:t,key:n,secondary:r}}),r=JD-n.length,i=r>0?m.value.search(t,{limit:r}).map(e=>{let{kind:t,key:n,secondary:r}=e.item;return{kind:t,key:n,secondary:r}}):[];return[...n,...i]}),_=t=>e.listboxId?`${e.listboxId}-option-${t}`:void 0,v=W(()=>g.value.length?_(o.value):void 0),y=e=>{r(`select`,e)};pr(()=>g.value.length,e=>{o.value>e-1&&(o.value=Math.max(0,e-1))}),t({handleArrowKey:e=>{let t=e===`up`?-1:1,n=g.value.length;n!==0&&(o.value=(o.value+t+n)%n)},handleSelect:()=>{if(o.value>=0){let e=g.value[o.value];e&&y(e.key)}},activeOptionId:v}),Vi(()=>{o.value=0});let b=W(()=>({left:(e.dropdownPosition?.left??0)+`px`,top:(e.dropdownPosition?.top??0)+5+`px`}));return tD(a,()=>{i.value=!1,r(`close`)},{ignore:[a]}),(t,n)=>i.value?(F(),L(j(KT),{key:0,class:`scalar-client`},{default:M(()=>[R(`div`,{ref_key:`dropdownRef`,ref:a,class:`custom-scroll z-context fixed top-0 left-0 flex max-h-[60svh] w-56 flex-col rounded border p-0.75`,style:tt(b.value),onMousedown:n[0]||=uo(()=>{},[`prevent`])},[R(`ul`,{id:e.listboxId,"aria-label":`Variable suggestions`,class:`gap-1/2 flex flex-col`,role:`listbox`},[(F(!0),I(H,null,jr(g.value,(t,n)=>(F(),I(`li`,{key:`${t.kind}-${t.key}`,id:_(n),"aria-selected":n===o.value,class:O([`font-code text-xxs hover:bg-b-3 flex h-8 cursor-pointer items-center justify-between gap-1.5 rounded p-1.5 transition-colors duration-150`,{"bg-b-3":n===o.value}]),role:`option`,onClick:e=>y(t.key)},[R(`div`,W$e,[t.kind===`env`?(F(),I(`span`,{key:0,class:`h-2.25 w-2.25 min-w-2.25 rounded-full`,style:tt({backgroundColor:e.environment?.color})},null,4)):(F(),I(`span`,G$e,` fn `)),z(` `+k(t.key),1)]),R(`span`,K$e,k(t.secondary),1)],10,U$e))),128))],8,H$e),g.value.length?B(``,!0):(F(),L(j(zT),{key:0,class:`font-code text-xxs bg-b-inherit hover:bg-b-3 flex h-8 w-full justify-start gap-2 px-1.5 transition-colors duration-150`,variant:`outlined`,onClick:s},{default:M(()=>[U(j(il),{class:`size-3`}),n[1]||=z(` Add Variable `,-1)]),_:1})),n[2]||=R(`div`,{class:`bg-b-1 brightness-lifted absolute inset-0 -z-1 rounded shadow-lg`},null,-1)],36)]),_:1})):B(``,!0)}})})),YD,Y$e=s((()=>{J$e(),YD=q$e})),XD,X$e,Z$e=s((()=>{XD=`scalar-tooltip`,X$e=`scalar-tooltip`}));function Q$e(){if(typeof document>`u`||typeof window>`u`||nO.value)return;let e=document.getElementById(XD);e?nO.value=e:(nO.value=document.createElement(`div`),nO.value.role=`tooltip`,nO.value.id=XD,nO.value.classList.add(X$e),nO.value.classList.add(`scalar-app`),nO.value.style.setProperty(`display`,`none`),nO.value.addEventListener(`mouseleave`,ZD),document.body.appendChild(nO.value))}function ZD(e){n1e(e)&&($D(),rO.value=void 0)}function $$e(e){e.key===`Escape`&&(e.stopPropagation(),ZD(e))}function e1e(e){let t=e?.closest(`dialog`);if(t)try{return t.matches(`:modal`)?t:void 0}catch{return}}function QD(e){if(!nO.value)return!1;let t=e1e(e)??document.body;return nO.value.parentElement===t?!1:(t.appendChild(nO.value),!0)}function $D(){tO.value&&(clearTimeout(tO.value),tO.value=void 0)}function t1e(e){let t=[],n=e.parentElement;for(;n;)t.push(n),n=n.parentElement;return t}function n1e(e){let t=j(rO.value?.targetRef);if(e instanceof MouseEvent&&e.relatedTarget instanceof Element&&t){let n=t1e(e.relatedTarget);return e.relatedTarget.id!==`scalar-tooltip`&&!n.some(e=>e.id===`scalar-tooltip`)&&e.relatedTarget!==t}return!0}function eO(e){Q$e();function t(t){let r=j(e.delay)??300;$D(),r>0?tO.value=setTimeout(()=>n(t),r):n(t)}function n(t){$D(),document.addEventListener(`keydown`,$$e,{once:!0,capture:!0}),QD(j(e.targetRef)),rO.value=e}pr(()=>j(e.targetRef),(e,r)=>{r&&(r.removeEventListener(`mouseenter`,t),r.removeEventListener(`mouseleave`,ZD),r.removeEventListener(`focus`,n),r.removeEventListener(`blur`,ZD),r.removeAttribute(`aria-describedby`)),e&&(e.addEventListener(`mouseenter`,t),e.addEventListener(`mouseleave`,ZD),e.addEventListener(`focus`,n),e.addEventListener(`blur`,ZD),e.setAttribute(`aria-describedby`,XD))},{immediate:!0}),Gt(()=>{$D();let r=j(e.targetRef);r&&(r.removeEventListener(`mouseenter`,t),r.removeEventListener(`mouseleave`,ZD),r.removeEventListener(`focus`,n),r.removeEventListener(`blur`,ZD),r.removeAttribute(`aria-describedby`)),j(rO.value?.targetRef)===j(e.targetRef)&&(rO.value=void 0)})}var tO,nO,rO,iO,r1e,i1e,aO=s((()=>{Z$e(),G(),vZe(),tO=A(),nO=A(),rO=A(),{floatingStyles:iO,placement:r1e,update:i1e}=_Ze(W(()=>j(rO.value?.targetRef)),nO,{placement:W(()=>j(rO.value?.placement)),whileElementsMounted:rZe,middleware:W(()=>[NE(),ME()])}),pr(r1e,e=>{!nO.value||!e||(nO.value.dataset.side=e.split(`-`)[0])}),pr(iO,()=>{nO.value&&(nO.value.style.position=iO.value.position,nO.value.style.top=iO.value.top,nO.value.style.left=iO.value.left,nO.value.style.transform=iO.value.transform??``,nO.value.style.willChange=iO.value.willChange??``)}),pr(rO,e=>{if(nO.value)if(e){QD(j(e.targetRef))&&i1e();let t=j(e?.contentTarget)??`textContent`;nO.value[t]=j(e?.content)??``;let n=j(e?.offset)??4;nO.value.style.setProperty(`--scalar-tooltip-offset`,`${n}px`),nO.value.dataset.side=(j(e?.placement)??`bottom`).split(`-`)[0],nO.value.style.setProperty(`display`,`block`)}else nO.value.innerHTML=``,nO.value.style.removeProperty(`--scalar-tooltip-offset`),nO.value.style.setProperty(`display`,`none`),QD(void 0)},{deep:!0})})),oO,a1e,o1e,s1e=s((()=>{oO={"⌘":`Command`,"^":`Control`,ctrl:`Control`,"⌥":`Option`,alt:`Alt`,"⇧":`Shift`,"⇪":`Caps Lock`,"↵":`Enter`,"←":`Left Arrow`,"→":`Right Arrow`,"↑":`Up Arrow`,"↓":`Down Arrow`},a1e={Meta:`⌘`,Shift:`⇧`,Alt:`⌥`,Control:`^`},o1e={Meta:`ctrl`,Shift:`⇧`,Alt:`alt`,Control:`ctrl`}})),c1e,sO,cO=s((()=>{c1e=e=>{let t=Reflect.get(e,`userAgentData`);if(!(!t||typeof t!=`object`)&&!(!(`platform`in t)||typeof t.platform!=`string`))return t.platform},sO=()=>{if(typeof navigator>`u`)return!1;let e=c1e(navigator);return e?e.toLowerCase().includes(`mac`):/Mac/.test(navigator.userAgent)}}));function l1e(e){return e==="default"}function u1e(e){let t=l1e(e)?`Meta`:e;return p1e()?a1e[t]:o1e[t]}function d1e(e,t){return[...t.map(e=>u1e(e)),e]}function f1e(e){return e in oO?oO[e]:e}var p1e,m1e=s((()=>{s1e(),cO(),p1e=()=>sO()})),h1e,g1e,_1e,v1e=s((()=>{m1e(),Wu(),G(),h1e={"aria-hidden":`true`,class:`contents`},g1e={class:`sr-only`},_1e=N({inheritAttrs:!1,__name:`ScalarHotkey`,props:{hotkey:{},modifier:{default:()=>[`Meta`]}},setup(e){let{cx:t}=Uu(),n=W(()=>d1e(e.hotkey,e.modifier));return(e,r)=>(F(),I(`div`,nt(ei(j(t)(`border-(--scalar-background-3) inline-flex gap-0.5 overflow-hidden rounded border text-xxs rounded-b p-1 font-medium uppercase leading-none`))),[(F(!0),I(H,null,jr(n.value,(e,t)=>(F(),I(`div`,{key:t},[R(`span`,h1e,k(e),1),R(`span`,g1e,k(j(f1e)(e)),1)]))),128))],16))}})})),lO,y1e=s((()=>{v1e(),lO=_1e})),b1e,x1e=s((()=>{aO(),G(),b1e=N({__name:`ScalarTooltip`,props:{content:{default:``},delay:{default:()=>300},placement:{default:`top`},offset:{default:()=>4}},setup(e){let t=A(null);return eO({content:W(()=>e.content),delay:W(()=>e.delay),placement:W(()=>e.placement),offset:W(()=>e.offset),targetRef:W(()=>t.value?.children?.[0]||t.value||void 0)}),(e,n)=>(F(),I(`div`,{ref_key:`wrapperRef`,ref:t,class:O({contents:!!e.$slots.default})},[P(e.$slots,`default`)],2))}})})),uO,S1e=s((()=>{x1e(),uO=b1e})),dO=s((()=>{aO(),S1e()})),C1e,w1e=s((()=>{G(),dO(),C1e=N({name:`PillTooltipHost`,__name:`PillTooltipHost`,props:{context:{},target:{}},setup(e){let t=e,n=t.context.type===`contextFunction`,r=W(()=>{if(!n||typeof document>`u`||t.context.type!==`contextFunction`)return``;let e=document.createElement(`div`);return wie(ci(`div`,{class:`flex flex-col gap-1.5 text-left`},[ci(`span`,{},t.context.details),ci(`div`,{class:`text-[color:var(--scalar-color-3)] text-[10px] font-normal`},`Computed at request execution`)]),e),e.innerHTML}),i=W(()=>t.context.type===`environment`?t.context.value:``),a=A(t.target);return eO({content:n?r:i,contentTarget:n?`innerHTML`:`textContent`,delay:0,placement:`bottom-start`,offset:6,targetRef:a}),(e,t)=>null}})})),fO,T1e=s((()=>{w1e(),fO=C1e}));function E1e(e){if(e<768)return!1;for(let t=0,n=mO.length;;){let r=t+n>>1;if(e=hO[r])t=r+1;else return!0;if(t==n)return!1}}function D1e(e){return e>=127462&&e<=127487}function O1e(e,t,n=!0,r=!0){return(n?k1e:A1e)(e,t,r)}function k1e(e,t,n){if(t==e.length)return t;t&&j1e(e.charCodeAt(t))&&M1e(e.charCodeAt(t-1))&&t--;let r=pO(e,t);for(t+=N1e(r);t=0&&D1e(pO(e,r));)n++,r-=2;if(n%2==0)break;t+=2}else break}return t}function A1e(e,t,n){for(;t>0;){let r=k1e(e,t-2,n);if(r=56320&&e<57344}function M1e(e){return e>=55296&&e<56320}function N1e(e){return e<65536?1:2}var mO,hO,gO,P1e=s((()=>{mO=[],hO=[],(()=>{let e=`lc,34,7n,7,7b,19,,,,2,,2,,,20,b,1c,l,g,,2t,7,2,6,2,2,,4,z,,u,r,2j,b,1m,9,9,,o,4,,9,,3,,5,17,3,3b,f,,w,1j,,,,4,8,4,,3,7,a,2,t,,1m,,,,2,4,8,,9,,a,2,q,,2,2,1l,,4,2,4,2,2,3,3,,u,2,3,,b,2,1l,,4,5,,2,4,,k,2,m,6,,,1m,,,2,,4,8,,7,3,a,2,u,,1n,,,,c,,9,,14,,3,,1l,3,5,3,,4,7,2,b,2,t,,1m,,2,,2,,3,,5,2,7,2,b,2,s,2,1l,2,,,2,4,8,,9,,a,2,t,,20,,4,,2,3,,,8,,29,,2,7,c,8,2q,,2,9,b,6,22,2,r,,,,,,1j,e,,5,,2,5,b,,10,9,,2u,4,,6,,2,2,2,p,2,4,3,g,4,d,,2,2,6,,f,,jj,3,qa,3,t,3,t,2,u,2,1s,2,,7,8,,2,b,9,,19,3,3b,2,y,,3a,3,4,2,9,,6,3,63,2,2,,1m,,,7,,,,,2,8,6,a,2,,1c,h,1r,4,1c,7,,,5,,14,9,c,2,w,4,2,2,,3,1k,,,2,3,,,3,1m,8,2,2,48,3,,d,,7,4,,6,,3,2,5i,1m,,5,ek,,5f,x,2da,3,3x,,2o,w,fe,6,2x,2,n9w,4,,a,w,2,28,2,7k,,3,,4,,p,2,5,,47,2,q,i,d,,12,8,p,b,1a,3,1c,,2,4,2,2,13,,1v,6,2,2,2,2,c,,8,,1b,,1f,,,3,2,2,5,2,,,16,2,8,,6m,,2,,4,,fn4,,kh,g,g,g,a6,2,gt,,6a,,45,5,1ae,3,,2,5,4,14,3,4,,4l,2,fx,4,ar,2,49,b,4w,,1i,f,1k,3,1d,4,2,2,1x,3,10,5,,8,1q,,c,2,1g,9,a,4,2,,2n,3,2,,,2,6,,4g,,3,8,l,2,1l,2,,,,,m,,e,7,3,5,5f,8,2,3,,,n,,29,,2,6,,,2,,,2,,2,6j,,2,4,6,2,,2,r,2,2d,8,2,,,2,2y,,,,2,6,,,2t,3,2,4,,5,77,9,,2,6t,,a,2,,,4,,40,4,2,2,4,,w,a,14,6,2,4,8,,9,6,2,3,1a,d,,2,ba,7,,6,,,2a,m,2,7,,2,,2,3e,6,3,,,2,,7,,,20,2,3,,,,9n,2,f0b,5,1n,7,t4,,1r,4,29,,f5k,2,43q,,,3,4,5,8,8,2,7,u,4,44,3,1iz,1j,4,1e,8,,e,,m,5,,f,11s,7,,h,2,7,,2,,5,79,7,c5,4,15s,7,31,7,240,5,gx7k,2o,3k,6o`.split(`,`).map(e=>e?parseInt(e,36):1);for(let t=0,n=0;t=n&&(c>r&&(s=s.slice(0,r-i)),i=56320&&e<57344}function R1e(e){return e>=55296&&e<56320}function bO(e,t){let n=e.charCodeAt(t);if(!R1e(n)||t+1==e.length)return n;let r=e.charCodeAt(t+1);return L1e(r)?(n-55296<<10)+(r-56320)+65536:n}function z1e(e){return e<=65535?String.fromCharCode(e):(e-=65536,String.fromCharCode((e>>10)+55296,(e&1023)+56320))}function xO(e){return e<65536?1:2}function SO(e,t,n,r=!1){if(t==0&&n<=0)return;let i=e.length-2;i>=0&&n<=0&&n==e[i+1]?e[i]+=t:i>=0&&t==0&&e[i]==0?e[i+1]+=n:r?(e[i]+=t,e[i+1]+=n):e.push(t,n)}function CO(e,t,n){if(n.length==0)return;let r=t.length-2>>1;if(r>1])),!(n||o==e.sections.length||e.sections[o+1]<0);)s=e.sections[o++],c=e.sections[o++];t(i,l,a,u,d),i=l,a=u}}}function TO(e,t,n,r=!1){let i=[],a=r?[]:null,o=new XO(e),s=new XO(t);for(let e=-1;;)if(o.done&&s.len||s.done&&o.len)throw Error(`Mismatched change set lengths`);else if(o.ins==-1&&s.ins==-1){let e=Math.min(o.len,s.len);SO(i,e,-1),o.forward(e),s.forward(e)}else if(s.ins>=0&&(o.ins<0||e==o.i||o.off==0&&(s.len=0&&e=0){let t=0,n=o.len;for(;n;)if(s.ins==-1){let e=Math.min(n,s.len);t+=e,n-=e,s.forward(e)}else if(s.ins==0&&s.lent||o.ins>=0&&o.len>t)&&(e||r.length>n),a.forward2(t),o.forward(t)}}function V1e(e,t){for(let n of e.ranges)if(n.to>t)throw RangeError(`Selection points outside of document`)}function EO(e,t){return e==t||e.length==t.length&&e.every((e,n)=>e===t[n])}function H1e(e,t,n){if(e.length!=t.length)return!1;for(let r=0;re[t.id]),i=n.map(e=>e.type),a=r.filter(e=>!(e&1)),o=e[t.id]>>1;function s(e){let n=[];for(let t=0;tnew ok(t,e)}function W1e(e,t,n){let r=[[],[],[],[],[]],i=new Map;function a(e,o){let s=i.get(e);if(s!=null){if(s<=o)return;let t=r[s].indexOf(e);t>-1&&r[s].splice(t,1),e instanceof ck&&n.delete(e.compartment)}if(i.set(e,o),Array.isArray(e))for(let t of e)a(t,o);else if(e instanceof ck){if(n.has(e.compartment))throw RangeError(`Duplicate use of compartment in extensions`);let r=t.get(e.compartment)||e.inner;n.set(e.compartment,r),a(r,o)}else if(e instanceof ok)a(e.inner,e.prec);else if(e instanceof rk)r[o].push(e),e.provides&&a(e.provides,o);else if(e instanceof tk)r[o].push(e),e.facet.extensions&&a(e.facet.extensions,ik.default);else{let t=e.extension;if(!t)throw Error(`Unrecognized extension value in extension set (${e}). This sometimes happens because multiple instances of @codemirror/state are loaded, breaking instanceof checks.`);a(t,o)}}return a(e,ik.default),r.reduce((e,t)=>e.concat(t))}function kO(e,t){if(t&1)return 2;let n=t>>1,r=e.status[n];if(r==4)throw Error(`Cyclic dependency between fields and/or facets`);if(r&2)return r;e.status[n]=4;let i=e.computeSlot(e,e.config.dynamicSlots[n]);return e.status[n]=2|i}function AO(e,t){return t&1?e.config.staticValues[t>>1]:e.values[t>>1]}function G1e(e,t){let n=[];for(let r=0,i=0;;){let a,o;if(r=e[r]))a=e[r++],o=e[r++];else if(i=0;n--){let i=r[n](e);e=i instanceof yk?i:Array.isArray(i)&&i.length==1&&i[0]instanceof yk?i[0]:q1e(t,MO(i),!1)}return e}function Y1e(e){let t=e.startState,n=t.facet(hk),r=e;for(let i=n.length-1;i>=0;i--){let a=n[i](e);a&&Object.keys(a).length&&(r=K1e(r,jO(t,a,e.changes.newLength),!0))}return r==e?e:yk.create(t,e.changes,e.selection,r.effects,r.annotations,r.scrollIntoView)}function MO(e){return e==null?o0e:Array.isArray(e)?e:[e]}function X1e(e){if(xk)return xk.test(e);for(let t=0;t`€`&&(n.toUpperCase()!=n.toLowerCase()||s0e.test(n)))return!0}return!1}function Z1e(e){return t=>{if(!/\S/.test(t))return bk.Space;if(X1e(t))return bk.Word;for(let n=0;n-1)return bk.Word;return bk.Other}}function NO(e,t,n={}){let r={};for(let t of e)for(let e of Object.keys(t)){let i=t[e],a=r[e];if(a===void 0)r[e]=i;else if(!(a===i||i===void 0))if(Object.hasOwnProperty.call(n,e))r[e]=n[e](a,i);else throw Error(`Config merge conflict for field `+e)}for(let e in t)r[e]===void 0&&(r[e]=t[e]);return r}function PO(e,t){return e.from-t.from||e.value.startSide-t.value.startSide}function Q1e(e){if(e.length>1)for(let t=e[0],n=1;n0)return e.slice().sort(PO);t=r}return e}function $1e(e,t,n){let r=new Map;for(let t of e)for(let e=0;e=e.length)break;let i=e[r];if(r+1=0&&(i=e[r+1],r++),n.compare(i)<0)break;e[r]=n,e[t]=i,t=r}}function e0e(e,t,n,r,i,a){e.goto(t),n.goto(r);let o=r+i,s=r,c=r-t;for(;;){let t=e.to+c-n.to,r=t||e.endSide-n.endSide,i=r<0?e.to+c:n.to,l=Math.min(i,o);if(e.point||n.point?e.point&&n.point&&(e.point==n.point||e.point.eq(n.point))&&IO(e.activeForPoint(e.to),n.activeForPoint(n.to))||a.comparePoint(s,l,e.point,n.point):l>s&&!IO(e.active,n.active)&&a.compareRange(s,l,e.active,n.active),i>o)break;(t||e.openEnd!=n.openEnd)&&a.boundChange&&a.boundChange(i),s=i,r<=0&&e.next(),r>=0&&n.next()}}function IO(e,t){if(e.length!=t.length)return!1;for(let n=0;n=t;n--)e[n+1]=e[n];e[t]=n}function t0e(e,t){let n=-1,r=1e9;for(let i=0;i=t)return r;if(r==e.length)break;i+=e.charCodeAt(r)==9?n-i%n:1,r=yO(e,r)}return r===!0?-1:e.length}var BO,VO,HO,UO,WO,GO,r0e,KO,qO,JO,YO,XO,ZO,QO,$O,ek,tk,nk,rk,ik,ak,ok,sk,ck,lk,uk,dk,fk,pk,mk,hk,gk,_k,i0e,a0e,vk,yk,o0e,bk,s0e,xk,Sk,Ck,wk,c0e,Tk,Ek,Dk,Ok,kk,Ak=s((()=>{P1e(),BO=class e{lineAt(e){if(e<0||e>this.length)throw RangeError(`Invalid position ${e} in document of length ${this.length}`);return this.lineInner(e,!1,1,0)}line(e){if(e<1||e>this.lines)throw RangeError(`Invalid line number ${e} in ${this.lines}-line document`);return this.lineInner(e,!0,1,0)}replace(e,t,n){[e,t]=vO(this,e,t);let r=[];return this.decompose(0,e,r,2),n.length&&n.decompose(0,n.length,r,3),this.decompose(t,this.length,r,1),HO.from(r,this.length-(t-e)+n.length)}append(e){return this.replace(this.length,this.length,e)}slice(e,t=this.length){[e,t]=vO(this,e,t);let n=[];return this.decompose(e,t,n,0),HO.from(n,t-e)}eq(e){if(e==this)return!0;if(e.length!=this.length||e.lines!=this.lines)return!1;let t=this.scanIdentical(e,1),n=this.length-this.scanIdentical(e,-1),r=new UO(this),i=new UO(e);for(let e=t,a=t;;){if(r.next(e),i.next(e),e=0,r.lineBreak!=i.lineBreak||r.done!=i.done||r.value!=i.value)return!1;if(a+=r.value.length,r.done||a>=n)return!0}}iter(e=1){return new UO(this,e)}iterRange(e,t=this.length){return new WO(this,e,t)}iterLines(e,t){let n;if(e==null)n=this.iter();else{t??=this.lines+1;let r=this.line(e).from;n=this.iterRange(r,Math.max(r,t==this.lines+1?this.length:t<=1?0:this.line(t-1).to))}return new GO(n)}toString(){return this.sliceString(0)}toJSON(){let e=[];return this.flatten(e),e}constructor(){}static of(t){if(t.length==0)throw RangeError(`A document must have at least one line`);return t.length==1&&!t[0]?e.empty:t.length<=32?new VO(t):HO.from(VO.split(t,[]))}},VO=class e extends BO{constructor(e,t=F1e(e)){super(),this.text=e,this.length=t}get lines(){return this.text.length}get children(){return null}lineInner(e,t,n,r){for(let i=0;;i++){let a=this.text[i],o=r+a.length;if((t?n:o)>=e)return new r0e(r,o,n,a);r=o+1,n++}}decompose(t,n,r,i){let a=t<=0&&n>=this.length?this:new e(I1e(this.text,t,n),Math.min(n,this.length)-Math.max(0,t));if(i&1){let t=r.pop(),n=_O(a.text,t.text.slice(),0,a.length);if(n.length<=32)r.push(new e(n,t.length+a.length));else{let t=n.length>>1;r.push(new e(n.slice(0,t)),new e(n.slice(t)))}}else r.push(a)}replace(t,n,r){if(!(r instanceof e))return super.replace(t,n,r);[t,n]=vO(this,t,n);let i=_O(this.text,_O(r.text,I1e(this.text,0,t)),n),a=this.length+r.length-(n-t);return i.length<=32?new e(i,a):HO.from(e.split(i,[]),a)}sliceString(e,t=this.length,n=` +`){[e,t]=vO(this,e,t);let r=``;for(let i=0,a=0;i<=t&&ae&&a&&(r+=n),ei&&(r+=o.slice(Math.max(0,e-i),t-i)),i=s+1}return r}flatten(e){for(let t of this.text)e.push(t)}scanIdentical(){return 0}static split(t,n){let r=[],i=-1;for(let a of t)r.push(a),i+=a.length+1,r.length==32&&(n.push(new e(r,i)),r=[],i=-1);return i>-1&&n.push(new e(r,i)),n}},HO=class e extends BO{constructor(e,t){super(),this.children=e,this.length=t,this.lines=0;for(let t of e)this.lines+=t.lines}lineInner(e,t,n,r){for(let i=0;;i++){let a=this.children[i],o=r+a.length,s=n+a.lines-1;if((t?s:o)>=e)return a.lineInner(e,t,n,r);r=o+1,n=s+1}}decompose(e,t,n,r){for(let i=0,a=0;a<=t&&i=a){let i=r&(a<=e|(s>=t?2:0));a>=e&&s<=t&&!i?n.push(o):o.decompose(e-a,t-a,n,i)}a=s+1}}replace(t,n,r){if([t,n]=vO(this,t,n),r.lines=a&&n<=s){let c=o.replace(t-a,n-a,r),l=this.lines-o.lines+c.lines;if(c.lines>4&&c.lines>l>>6){let a=this.children.slice();return a[i]=c,new e(a,this.length-(n-t)+r.length)}return super.replace(a,s,c)}a=s+1}return super.replace(t,n,r)}sliceString(e,t=this.length,n=` +`){[e,t]=vO(this,e,t);let r=``;for(let i=0,a=0;ie&&i&&(r+=n),ea&&(r+=o.sliceString(e-a,t-a,n)),a=s+1}return r}flatten(e){for(let t of this.children)t.flatten(e)}scanIdentical(t,n){if(!(t instanceof e))return 0;let r=0,[i,a,o,s]=n>0?[0,0,this.children.length,t.children.length]:[this.children.length-1,t.children.length-1,-1,-1];for(;;i+=n,a+=n){if(i==o||a==s)return r;let e=this.children[i],c=t.children[a];if(e!=c)return r+e.scanIdentical(c,n);r+=e.length+1}}static from(t,n=t.reduce((e,t)=>e+t.length+1,-1)){let r=0;for(let e of t)r+=e.lines;if(r<32){let e=[];for(let n of t)n.flatten(e);return new VO(e,n)}let i=Math.max(32,r>>5),a=i<<1,o=i>>1,s=[],c=0,l=-1,u=[];function d(t){let n;if(t.lines>a&&t instanceof e)for(let e of t.children)d(e);else t.lines>o&&(c>o||!c)?(f(),s.push(t)):t instanceof VO&&c&&(n=u[u.length-1])instanceof VO&&t.lines+n.lines<=32?(c+=t.lines,l+=t.length+1,u[u.length-1]=new VO(n.text.concat(t.text),n.length+1+t.length)):(c+t.lines>i&&f(),c+=t.lines,l+=t.length+1,u.push(t))}function f(){c!=0&&(s.push(u.length==1?u[0]:e.from(u,l)),l=-1,c=u.length=0)}for(let e of t)d(e);return f(),s.length==1?s[0]:new e(s,n)}},BO.empty=new VO([``],0),UO=class{constructor(e,t=1){this.dir=t,this.done=!1,this.lineBreak=!1,this.value=``,this.nodes=[e],this.offsets=[t>0?1:(e instanceof VO?e.text.length:e.children.length)<<1]}nextInner(e,t){for(this.done=this.lineBreak=!1;;){let n=this.nodes.length-1,r=this.nodes[n],i=this.offsets[n],a=i>>1,o=r instanceof VO?r.text.length:r.children.length;if(a==(t>0?o:0)){if(n==0)return this.done=!0,this.value=``,this;t>0&&this.offsets[n-1]++,this.nodes.pop(),this.offsets.pop()}else if((i&1)==(t>0?0:1)){if(this.offsets[n]+=t,e==0)return this.lineBreak=!0,this.value=` +`,this;e--}else if(r instanceof VO){let i=r.text[a+(t<0?-1:0)];if(this.offsets[n]+=t,i.length>Math.max(0,e))return this.value=e==0?i:t>0?i.slice(e):i.slice(0,i.length-e),this;e-=i.length}else{let i=r.children[a+(t<0?-1:0)];e>i.length?(e-=i.length,this.offsets[n]+=t):(t<0&&this.offsets[n]--,this.nodes.push(i),this.offsets.push(t>0?1:(i instanceof VO?i.text.length:i.children.length)<<1))}}}next(e=0){return e<0&&(this.nextInner(-e,-this.dir),e=this.value.length),this.nextInner(e,this.dir)}},WO=class{constructor(e,t,n){this.value=``,this.done=!1,this.cursor=new UO(e,t>n?-1:1),this.pos=t>n?e.length:0,this.from=Math.min(t,n),this.to=Math.max(t,n)}nextInner(e,t){if(t<0?this.pos<=this.from:this.pos>=this.to)return this.value=``,this.done=!0,this;e+=Math.max(0,t<0?this.pos-this.to:this.from-this.pos);let n=t<0?this.pos-this.from:this.to-this.pos;e>n&&(e=n),n-=e;let{value:r}=this.cursor.next(e);return this.pos+=(r.length+e)*t,this.value=r.length<=n?r:t<0?r.slice(r.length-n):r.slice(0,n),this.done=!this.value,this}next(e=0){return e<0?e=Math.max(e,this.from-this.pos):e>0&&(e=Math.min(e,this.to-this.pos)),this.nextInner(e,this.cursor.dir)}get lineBreak(){return this.cursor.lineBreak&&this.value!=``}},GO=class{constructor(e){this.inner=e,this.afterBreak=!0,this.value=``,this.done=!1}next(e=0){let{done:t,lineBreak:n,value:r}=this.inner.next(e);return t&&this.afterBreak?(this.value=``,this.afterBreak=!1):t?(this.done=!0,this.value=``):n?this.afterBreak?this.value=``:(this.afterBreak=!0,this.next()):(this.value=r,this.afterBreak=!1),this}get lineBreak(){return!1}},typeof Symbol<`u`&&(BO.prototype[Symbol.iterator]=function(){return this.iter()},UO.prototype[Symbol.iterator]=WO.prototype[Symbol.iterator]=GO.prototype[Symbol.iterator]=function(){return this}),r0e=class{constructor(e,t,n,r){this.from=e,this.to=t,this.number=n,this.text=r}get length(){return this.to-this.from}},KO=/\r\n?|\n/,qO=(function(e){return e[e.Simple=0]=`Simple`,e[e.TrackDel=1]=`TrackDel`,e[e.TrackBefore=2]=`TrackBefore`,e[e.TrackAfter=3]=`TrackAfter`,e})(qO||={}),JO=class e{constructor(e){this.sections=e}get length(){let e=0;for(let t=0;te)return i+(e-r);i+=o}else{if(n!=qO.Simple&&c>=e&&(n==qO.TrackDel&&re||n==qO.TrackBefore&&re))return null;if(c>e||c==e&&t<0&&!o)return e==r||t<0?i:i+s;i+=s}r=c}if(e>r)throw RangeError(`Position ${e} is out of range for changeset of length ${r}`);return i}touchesRange(e,t=e){for(let n=0,r=0;n=0&&r<=t&&o>=e)return rt?`cover`:!0;r=o}return!1}toString(){let e=``;for(let t=0;t=0?`:`+r:``)}return e}toJSON(){return this.sections}static fromJSON(t){if(!Array.isArray(t)||t.length%2||t.some(e=>typeof e!=`number`))throw RangeError(`Invalid JSON representation of ChangeDesc`);return new e(t)}static create(t){return new e(t)}},YO=class e extends JO{constructor(e,t){super(e),this.inserted=t}apply(e){if(this.length!=e.length)throw RangeError(`Applying change set to a document with the wrong length`);return wO(this,(t,n,r,i,a)=>e=e.replace(r,r+(n-t),a),!1),e}mapDesc(e,t=!1){return TO(this,e,t,!0)}invert(t){let n=this.sections.slice(),r=[];for(let e=0,i=0;e=0){n[e]=o,n[e+1]=a;let s=e>>1;for(;r.length0&&CO(r,n,a.text),a.forward(e),o+=e}let c=t[e++];for(;o>1].toJSON()))}return e}static of(t,n,r){let i=[],a=[],o=0,s=null;function c(t=!1){if(!t&&!i.length)return;os||e<0||s>n)throw RangeError(`Invalid change range ${e} to ${s} (in doc of length ${n})`);let u=l?typeof l==`string`?BO.of(l.split(r||KO)):l:BO.empty,d=u.length;if(e==s&&d==0)return;eo&&SO(i,e-o,-1),SO(i,s-e,d),CO(a,i,u),o=s}}return l(t),c(!s),s}static empty(t){return new e(t?[t,-1]:[],[])}static fromJSON(t){if(!Array.isArray(t))throw RangeError(`Invalid JSON representation of ChangeSet`);let n=[],r=[];for(let e=0;et&&typeof e!=`string`))throw RangeError(`Invalid JSON representation of ChangeSet`);else if(i.length==1)n.push(i[0],0);else{for(;r.length>1;return t>=e.length?BO.empty:e[t]}textBit(e){let{inserted:t}=this.set,n=this.i-2>>1;return n>=t.length&&!e?BO.empty:t[n].slice(this.off,e==null?void 0:this.off+e)}forward(e){e==this.len?this.next():(this.len-=e,this.off+=e)}forward2(e){this.ins==-1?this.forward(e):e==this.ins?this.next():(this.ins-=e,this.off+=e)}},ZO=class e{constructor(e,t,n){this.from=e,this.to=t,this.flags=n}get anchor(){return this.flags&32?this.to:this.from}get head(){return this.flags&32?this.from:this.to}get empty(){return this.from==this.to}get assoc(){return this.flags&8?-1:this.flags&16?1:0}get bidiLevel(){let e=this.flags&7;return e==7?null:e}get goalColumn(){let e=this.flags>>6;return e==16777215?void 0:e}map(t,n=-1){let r,i;return this.empty?r=i=t.mapPos(this.from,n):(r=t.mapPos(this.from,1),i=t.mapPos(this.to,-1)),r==this.from&&i==this.to?this:new e(r,i,this.flags)}extend(e,t=e){if(e<=this.anchor&&t>=this.anchor)return QO.range(e,t);let n=Math.abs(e-this.anchor)>Math.abs(t-this.anchor)?e:t;return QO.range(this.anchor,n)}eq(e,t=!1){return this.anchor==e.anchor&&this.head==e.head&&(!t||!this.empty||this.assoc==e.assoc)}toJSON(){return{anchor:this.anchor,head:this.head}}static fromJSON(e){if(!e||typeof e.anchor!=`number`||typeof e.head!=`number`)throw RangeError(`Invalid JSON representation for SelectionRange`);return QO.range(e.anchor,e.head)}static create(t,n,r){return new e(t,n,r)}},QO=class e{constructor(e,t){this.ranges=e,this.mainIndex=t}map(t,n=-1){return t.empty?this:e.create(this.ranges.map(e=>e.map(t,n)),this.mainIndex)}eq(e,t=!1){if(this.ranges.length!=e.ranges.length||this.mainIndex!=e.mainIndex)return!1;for(let n=0;ne.toJSON()),main:this.mainIndex}}static fromJSON(t){if(!t||!Array.isArray(t.ranges)||typeof t.main!=`number`||t.main>=t.ranges.length)throw RangeError(`Invalid JSON representation for EditorSelection`);return new e(t.ranges.map(e=>ZO.fromJSON(e)),t.main)}static single(t,n=t){return new e([e.range(t,n)],0)}static create(t,n=0){if(t.length==0)throw RangeError(`A selection needs at least one range`);for(let r=0,i=0;ie?8:0)|i)}static normalized(t,n=0){let r=t[n];t.sort((e,t)=>e.from-t.from),n=t.indexOf(r);for(let r=1;ri.head?e.range(s,o):e.range(o,s))}}return new e(t,n)}},$O=0,ek=class e{constructor(e,t,n,r,i){this.combine=e,this.compareInput=t,this.compare=n,this.isStatic=r,this.id=$O++,this.default=e([]),this.extensions=typeof i==`function`?i(this):i}get reader(){return this}static define(t={}){return new e(t.combine||(e=>e),t.compareInput||((e,t)=>e===t),t.compare||(t.combine?(e,t)=>e===t:EO),!!t.static,t.enables)}of(e){return new tk([],this,0,e)}compute(e,t){if(this.isStatic)throw Error(`Can't compute a static facet`);return new tk(e,this,1,t)}computeN(e,t){if(this.isStatic)throw Error(`Can't compute a static facet`);return new tk(e,this,2,t)}from(e,t){return t||=e=>e,this.compute([e],n=>t(n.field(e)))}},tk=class{constructor(e,t,n,r){this.dependencies=e,this.facet=t,this.type=n,this.value=r,this.id=$O++}dynamicSlot(e){let t=this.value,n=this.facet.compareInput,r=this.id,i=e[r]>>1,a=this.type==2,o=!1,s=!1,c=[];for(let t of this.dependencies)t==`doc`?o=!0:t==`selection`?s=!0:(e[t.id]??1)&1||c.push(e[t.id]);return{create(e){return e.values[i]=t(e),1},update(e,r){if(o&&r.docChanged||s&&(r.docChanged||r.selection)||DO(e,c)){let r=t(e);if(a?!H1e(r,e.values[i],n):!n(r,e.values[i]))return e.values[i]=r,1}return 0},reconfigure:(e,o)=>{let s,c=o.config.address[r];if(c!=null){let r=AO(o,c);if(this.dependencies.every(t=>t instanceof ek?o.facet(t)===e.facet(t):t instanceof rk?o.field(t,!1)==e.field(t,!1):!0)||(a?H1e(s=t(e),r,n):n(s=t(e),r)))return e.values[i]=r,0}else s=t(e);return e.values[i]=s,1}}}},nk=ek.define({static:!0}),rk=class e{constructor(e,t,n,r,i){this.id=e,this.createF=t,this.updateF=n,this.compareF=r,this.spec=i,this.provides=void 0}static define(t){let n=new e($O++,t.create,t.update,t.compare||((e,t)=>e===t),t);return t.provide&&(n.provides=t.provide(n)),n}create(e){return(e.facet(nk).find(e=>e.field==this)?.create||this.createF)(e)}slot(e){let t=e[this.id]>>1;return{create:e=>(e.values[t]=this.create(e),1),update:(e,n)=>{let r=e.values[t],i=this.updateF(r,n);return this.compareF(r,i)?0:(e.values[t]=i,1)},reconfigure:(e,n)=>n.config.address[this.id]==null?(e.values[t]=this.create(e),1):(e.values[t]=n.field(this),0)}}init(e){return[this,nk.of({field:this,create:e})]}get extension(){return this}},ik={lowest:4,low:3,default:2,high:1,highest:0},ak={highest:OO(ik.highest),high:OO(ik.high),default:OO(ik.default),low:OO(ik.low),lowest:OO(ik.lowest)},ok=class{constructor(e,t){this.inner=e,this.prec=t}},sk=class e{of(e){return new ck(this,e)}reconfigure(t){return e.reconfigure.of({compartment:this,extension:t})}get(e){return e.config.compartments.get(this)}},ck=class{constructor(e,t){this.compartment=e,this.inner=t}},lk=class e{constructor(e,t,n,r,i,a){for(this.base=e,this.compartments=t,this.dynamicSlots=n,this.address=r,this.staticValues=i,this.facets=a,this.statusTemplate=[];this.statusTemplate.length>1]}static resolve(t,n,r){let i=[],a=Object.create(null),o=new Map;for(let e of W1e(t,n,o))e instanceof rk?i.push(e):(a[e.facet.id]||(a[e.facet.id]=[])).push(e);let s=Object.create(null),c=[],l=[];for(let e of i)s[e.id]=l.length<<1,l.push(t=>e.slot(t));let u=r?.config.facets;for(let e in a){let t=a[e],n=t[0].facet,i=u&&u[e]||[];if(t.every(e=>e.type==0))if(s[n.id]=c.length<<1|1,EO(i,t))c.push(r.facet(n));else{let e=n.combine(t.map(e=>e.value));c.push(r&&n.compare(e,r.facet(n))?r.facet(n):e)}else{for(let e of t)e.type==0?(s[e.id]=c.length<<1|1,c.push(e.value)):(s[e.id]=l.length<<1,l.push(t=>e.dynamicSlot(t)));s[n.id]=l.length<<1,l.push(e=>U1e(e,n,t))}}let d=l.map(e=>e(s));return new e(t,o,d,s,c,a)}},uk=ek.define(),dk=ek.define({combine:e=>e.some(e=>e),static:!0}),fk=ek.define({combine:e=>e.length?e[0]:void 0,static:!0}),pk=ek.define(),mk=ek.define(),hk=ek.define(),gk=ek.define({combine:e=>e.length?e[0]:!1}),_k=class{constructor(e,t){this.type=e,this.value=t}static define(){return new i0e}},i0e=class{of(e){return new _k(this,e)}},a0e=class{constructor(e){this.map=e}of(e){return new vk(this,e)}},vk=class e{constructor(e,t){this.type=e,this.value=t}map(t){let n=this.type.map(this.value,t);return n===void 0?void 0:n==this.value?this:new e(this.type,n)}is(e){return this.type==e}static define(e={}){return new a0e(e.map||(e=>e))}static mapEffects(e,t){if(!e.length)return e;let n=[];for(let r of e){let e=r.map(t);e&&n.push(e)}return n}},vk.reconfigure=vk.define(),vk.appendConfig=vk.define(),yk=class e{constructor(t,n,r,i,a,o){this.startState=t,this.changes=n,this.selection=r,this.effects=i,this.annotations=a,this.scrollIntoView=o,this._doc=null,this._state=null,r&&V1e(r,n.newLength),a.some(t=>t.type==e.time)||(this.annotations=a.concat(e.time.of(Date.now())))}static create(t,n,r,i,a,o){return new e(t,n,r,i,a,o)}get newDoc(){return this._doc||=this.changes.apply(this.startState.doc)}get newSelection(){return this.selection||this.startState.selection.map(this.changes)}get state(){return this._state||this.startState.applyTransaction(this),this._state}annotation(e){for(let t of this.annotations)if(t.type==e)return t.value}get docChanged(){return!this.changes.empty}get reconfigured(){return this.startState.config!=this.state.config}isUserEvent(t){let n=this.annotation(e.userEvent);return!!(n&&(n==t||n.length>t.length&&n.slice(0,t.length)==t&&n[t.length]==`.`))}},yk.time=_k.define(),yk.userEvent=_k.define(),yk.addToHistory=_k.define(),yk.remote=_k.define(),o0e=[],bk=(function(e){return e[e.Word=0]=`Word`,e[e.Space=1]=`Space`,e[e.Other=2]=`Other`,e})(bk||={}),s0e=/[\u00df\u0587\u0590-\u05f4\u0600-\u06ff\u3040-\u309f\u30a0-\u30ff\u3400-\u4db5\u4e00-\u9fcc\uac00-\ud7af]/;try{xk=RegExp(`[\\p{Alphabetic}\\p{Number}_]`,`u`)}catch{}Sk=class e{constructor(e,t,n,r,i,a){this.config=e,this.doc=t,this.selection=n,this.values=r,this.status=e.statusTemplate.slice(),this.computeSlot=i,a&&(a._state=this);for(let e=0;ei.set(t,e)),null),i.set(e.value.compartment,e.value.extension)):e.is(vk.reconfigure)?(n=null,r=e.value):e.is(vk.appendConfig)&&(n=null,r=MO(r).concat(e.value));let a;n?a=t.startState.values.slice():(n=lk.resolve(r,i,this),a=new e(n,this.doc,this.selection,n.dynamicSlots.map(()=>null),(e,t)=>t.reconfigure(e,this),null).values);let o=t.startState.facet(dk)?t.newSelection:t.newSelection.asSingle();new e(n,t.newDoc,o,a,(e,n)=>n.update(e,t),t)}replaceSelection(e){return typeof e==`string`&&(e=this.toText(e)),this.changeByRange(t=>({changes:{from:t.from,to:t.to,insert:e},range:QO.cursor(t.from+e.length)}))}changeByRange(e){let t=this.selection,n=e(t.ranges[0]),r=this.changes(n.changes),i=[n.range],a=MO(n.effects);for(let n=1;nn.spec.fromJSON(a,e)))}}return e.create({doc:t.doc,selection:QO.fromJSON(t.selection),extensions:n.extensions?i.concat([n.extensions]):i})}static create(t={}){let n=lk.resolve(t.extensions||[],new Map),r=t.doc instanceof BO?t.doc:BO.of((t.doc||``).split(n.staticFacet(e.lineSeparator)||KO)),i=t.selection?t.selection instanceof QO?t.selection:QO.single(t.selection.anchor,t.selection.head):QO.single(0);return V1e(i,r.length),n.staticFacet(dk)||(i=i.asSingle()),new e(n,r,i,n.dynamicSlots.map(()=>null),(e,t)=>t.create(e),null)}get tabSize(){return this.facet(e.tabSize)}get lineBreak(){return this.facet(e.lineSeparator)||` +`}get readOnly(){return this.facet(gk)}phrase(t,...n){for(let n of this.facet(e.phrases))if(Object.prototype.hasOwnProperty.call(n,t)){t=n[t];break}return n.length&&(t=t.replace(/\$(\$|\d*)/g,(e,t)=>{if(t==`$`)return`$`;let r=+(t||1);return!r||r>n.length?e:n[r-1]})),t}languageDataAt(e,t,n=-1){let r=[];for(let i of this.facet(uk))for(let a of i(this,t,n))Object.prototype.hasOwnProperty.call(a,e)&&r.push(a[e]);return r}charCategorizer(e){return Z1e(this.languageDataAt(`wordChars`,e).join(``))}wordAt(e){let{text:t,from:n,length:r}=this.doc.lineAt(e),i=this.charCategorizer(e),a=e-n,o=e-n;for(;a>0;){let e=yO(t,a,!1);if(i(t.slice(e,a))!=bk.Word)break;a=e}for(;oe.length?e[0]:4}),Sk.lineSeparator=fk,Sk.readOnly=gk,Sk.phrases=ek.define({compare(e,t){let n=Object.keys(e),r=Object.keys(t);return n.length==r.length&&n.every(n=>e[n]==t[n])}}),Sk.languageData=uk,Sk.changeFilter=pk,Sk.transactionFilter=mk,Sk.transactionExtender=hk,sk.reconfigure=vk.define(),Ck=class{eq(e){return this==e}range(e,t=e){return wk.create(e,t,this)}},Ck.prototype.startSide=Ck.prototype.endSide=0,Ck.prototype.point=!1,Ck.prototype.mapMode=qO.TrackDel,wk=class e{constructor(e,t,n){this.from=e,this.to=t,this.value=n}static create(t,n,r){return new e(t,n,r)}},c0e=class e{constructor(e,t,n,r){this.from=e,this.to=t,this.value=n,this.maxPoint=r}get length(){return this.to[this.to.length-1]}findIndex(e,t,n,r=0){let i=n?this.to:this.from;for(let a=r,o=i.length;;){if(a==o)return a;let r=a+o>>1,s=i[r]-e||(n?this.value[r].endSide:this.value[r].startSide)-t;if(r==a)return s>=0?a:o;s>=0?o=r:a=r+1}}between(e,t,n,r){for(let i=this.findIndex(t,-1e9,!0),a=this.findIndex(n,1e9,!1,i);if||d==f&&c.startSide>0&&c.endSide<=0)continue;(f-d||c.endSide-c.startSide)<0||(o<0&&(o=d),c.point&&(s=Math.max(s,f-d)),r.push(c),i.push(d-o),a.push(f-o))}return{mapped:r.length?new e(i,a,r,s):null,pos:o}}},Tk=class e{constructor(e,t,n,r){this.chunkPos=e,this.chunk=t,this.nextLayer=n,this.maxPoint=r}static create(t,n,r,i){return new e(t,n,r,i)}get length(){let e=this.chunk.length-1;return e<0?0:Math.max(this.chunkEnd(e),this.nextLayer.length)}get size(){if(this.isEmpty)return 0;let e=this.nextLayer.size;for(let t of this.chunk)e+=t.value.length;return e}chunkEnd(e){return this.chunkPos[e]+this.chunk[e].length}update(t){let{add:n=[],sort:r=!1,filterFrom:i=0,filterTo:a=this.length}=t,o=t.filter;if(n.length==0&&!o)return this;if(r&&(n=n.slice().sort(PO)),this.isEmpty)return n.length?e.of(n):this;let s=new Dk(this,null,-1).goto(0),c=0,l=[],u=new Ek;for(;s.value||c=0){let e=n[c++];u.addInner(e.from,e.to,e.value)||l.push(e)}else s.rangeIndex==1&&s.chunkIndexthis.chunkEnd(s.chunkIndex)||as.to||a=i&&e<=i+a.length&&a.between(i,e-i,t-i,n)===!1)return}this.nextLayer.between(e,t,n)}}iter(e=0){return Ok.from([this]).goto(e)}get isEmpty(){return this.nextLayer==this}static iter(e,t=0){return Ok.from(e).goto(t)}static compare(e,t,n,r,i=-1){let a=e.filter(e=>e.maxPoint>0||!e.isEmpty&&e.maxPoint>=i),o=t.filter(e=>e.maxPoint>0||!e.isEmpty&&e.maxPoint>=i),s=$1e(a,o,n),c=new kk(a,s,i),l=new kk(o,s,i);n.iterGaps((e,t,n)=>e0e(c,e,l,t,n,r)),n.empty&&n.length==0&&e0e(c,0,l,0,0,r)}static eq(e,t,n=0,r){r??=999999999;let i=e.filter(e=>!e.isEmpty&&t.indexOf(e)<0),a=t.filter(t=>!t.isEmpty&&e.indexOf(t)<0);if(i.length!=a.length)return!1;if(!i.length)return!0;let o=$1e(i,a),s=new kk(i,o,0).goto(n),c=new kk(a,o,0).goto(n);for(;;){if(s.to!=c.to||!IO(s.active,c.active)||s.point&&(!c.point||!s.point.eq(c.point)))return!1;if(s.to>r)return!0;s.next(),c.next()}}static spans(e,t,n,r,i=-1){let a=new kk(e,null,i).goto(t),o=t,s=a.openStart;for(;;){let e=Math.min(a.to,n);if(a.point){let n=a.activeForPoint(a.to),i=a.pointFromo&&(r.span(o,e,a.active,s),s=a.openEnd(e));if(a.to>n)return s+(a.point&&a.to>n?1:0);o=a.to,a.next()}}static of(e,t=!1){let n=new Ek;for(let r of e instanceof wk?[e]:t?Q1e(e):e)n.add(r.from,r.to,r.value);return n.finish()}static join(t){if(!t.length)return e.empty;let n=t[t.length-1];for(let r=t.length-2;r>=0;r--)for(let i=t[r];i!=e.empty;i=i.nextLayer)n=new e(i.chunkPos,i.chunk,n,Math.max(i.maxPoint,n.maxPoint));return n}},Tk.empty=new Tk([],[],null,-1),Tk.empty.nextLayer=Tk.empty,Ek=class e{finishChunk(e){this.chunks.push(new c0e(this.from,this.to,this.value,this.maxPoint)),this.chunkPos.push(this.chunkStart),this.chunkStart=-1,this.setMaxPoint=Math.max(this.setMaxPoint,this.maxPoint),this.maxPoint=-1,e&&(this.from=[],this.to=[],this.value=[])}constructor(){this.chunks=[],this.chunkPos=[],this.chunkStart=-1,this.last=null,this.lastFrom=-1e9,this.lastTo=-1e9,this.from=[],this.to=[],this.value=[],this.maxPoint=-1,this.setMaxPoint=-1,this.nextLayer=null}add(t,n,r){this.addInner(t,n,r)||(this.nextLayer||=new e).add(t,n,r)}addInner(e,t,n){let r=e-this.lastTo||n.startSide-this.last.endSide;if(r<=0&&(e-this.lastFrom||n.startSide-this.last.startSide)<0)throw Error("Ranges must be added sorted by `from` position and `startSide`");return r<0?!1:(this.from.length==250&&this.finishChunk(!0),this.chunkStart<0&&(this.chunkStart=e),this.from.push(e-this.chunkStart),this.to.push(t-this.chunkStart),this.last=n,this.lastFrom=e,this.lastTo=t,this.value.push(n),n.point&&(this.maxPoint=Math.max(this.maxPoint,t-e)),!0)}addChunk(e,t){if((e-this.lastTo||t.value[0].startSide-this.last.endSide)<0)return!1;this.from.length&&this.finishChunk(!0),this.setMaxPoint=Math.max(this.setMaxPoint,t.maxPoint),this.chunks.push(t),this.chunkPos.push(e);let n=t.value.length-1;return this.last=t.value[n],this.lastFrom=t.from[n]+e,this.lastTo=t.to[n]+e,!0}finish(){return this.finishInner(Tk.empty)}finishInner(e){if(this.from.length&&this.finishChunk(!1),this.chunks.length==0)return e;let t=Tk.create(this.chunkPos,this.chunks,this.nextLayer?this.nextLayer.finishInner(e):e,this.setMaxPoint);return this.from=null,t}},Dk=class{constructor(e,t,n,r=0){this.layer=e,this.skip=t,this.minPoint=n,this.rank=r}get startSide(){return this.value?this.value.startSide:0}get endSide(){return this.value?this.value.endSide:0}goto(e,t=-1e9){return this.chunkIndex=this.rangeIndex=0,this.gotoInner(e,t,!1),this}gotoInner(e,t,n){for(;this.chunkIndex=this.minPoint)break}}setRangeIndex(e){if(e==this.layer.chunk[this.chunkIndex].value.length){if(this.chunkIndex++,this.skip)for(;this.chunkIndex=r&&i.push(new Dk(a,n,r,e));return i.length==1?i[0]:new e(i)}get startSide(){return this.value?this.value.startSide:0}goto(e,t=-1e9){for(let n of this.heap)n.goto(e,t);for(let e=this.heap.length>>1;e>=0;e--)FO(this.heap,e);return this.next(),this}forward(e,t){for(let n of this.heap)n.forward(e,t);for(let e=this.heap.length>>1;e>=0;e--)FO(this.heap,e);(this.to-e||this.value.endSide-t)<0&&this.next()}next(){if(this.heap.length==0)this.from=this.to=1e9,this.value=null,this.rank=-1;else{let e=this.heap[0];this.from=e.from,this.to=e.to,this.value=e.value,this.rank=e.rank,e.value&&e.next(),FO(this.heap,0)}}},kk=class{constructor(e,t,n){this.minPoint=n,this.active=[],this.activeTo=[],this.activeRank=[],this.minActive=-1,this.point=null,this.pointFrom=0,this.pointRank=0,this.to=-1e9,this.endSide=0,this.openStart=-1,this.cursor=Ok.from(e,t,n)}goto(e,t=-1e9){return this.cursor.goto(e,t),this.active.length=this.activeTo.length=this.activeRank.length=0,this.minActive=-1,this.to=e,this.endSide=t,this.openStart=-1,this.next(),this}forward(e,t){for(;this.minActive>-1&&(this.activeTo[this.minActive]-e||this.active[this.minActive].endSide-t)<0;)this.removeActive(this.minActive);this.cursor.forward(e,t)}removeActive(e){LO(this.active,e),LO(this.activeTo,e),LO(this.activeRank,e),this.minActive=t0e(this.active,this.activeTo)}addActive(e){let t=0,{value:n,to:r,rank:i}=this.cursor;for(;t0;)t++;RO(this.active,t,n),RO(this.activeTo,t,r),RO(this.activeRank,t,i),e&&RO(e,t,this.cursor.from),this.minActive=t0e(this.active,this.activeTo)}next(){let e=this.to,t=this.point;this.point=null;let n=this.openStart<0?[]:null;for(;;){let r=this.minActive;if(r>-1&&(this.activeTo[r]-this.cursor.from||this.active[r].endSide-this.cursor.startSide)<0){if(this.activeTo[r]>e){this.to=this.activeTo[r],this.endSide=this.active[r].endSide;break}this.removeActive(r),n&&LO(n,r)}else if(!this.cursor.value){this.to=this.endSide=1e9;break}else if(this.cursor.from>e){this.to=this.cursor.from,this.endSide=this.cursor.startSide;break}else{let e=this.cursor.value;if(!e.point)this.addActive(n),this.cursor.next();else if(t&&this.cursor.to==this.to&&this.cursor.from=0&&n[t]=0&&!(this.activeRank[n]e||this.activeTo[n]==e&&this.active[n].endSide>=this.point.endSide)&&t.push(this.active[n]);return t.reverse()}openEnd(e){let t=0;for(let n=this.activeTo.length-1;n>=0&&this.activeTo[n]>e;n--)t++;return t}}})),jk,Mk,Nk,Pk,Fk,Ik,l0e,u0e=s((()=>{jk=`ͼ`,Mk=typeof Symbol>`u`?`__ͼ`:Symbol.for(jk),Nk=typeof Symbol>`u`?`__styleSet`+Math.floor(Math.random()*1e8):Symbol(`styleSet`),Pk=typeof globalThis<`u`?globalThis:typeof window<`u`?window:{},Fk=class{constructor(e,t){this.rules=[];let{finish:n}=t||{};function r(e){return/^@/.test(e)?[e]:e.split(/,\s*/)}function i(e,t,a,o){let s=[],c=/^@(\w+)\b/.exec(e[0]),l=c&&c[1]==`keyframes`;if(c&&t==null)return a.push(e[0]+`;`);for(let n in t){let o=t[n];if(/&/.test(n))i(n.split(/,\s*/).map(t=>e.map(e=>t.replace(/&/,e))).reduce((e,t)=>e.concat(t)),o,a);else if(o&&typeof o==`object`){if(!c)throw RangeError(`The value of a property (`+n+`) should be a primitive value.`);i(r(n),o,s,l)}else o!=null&&s.push(n.replace(/_.*/,``).replace(/[A-Z]/g,e=>`-`+e.toLowerCase())+`: `+o+`;`)}(s.length||l)&&a.push((n&&!c&&!o?e.map(n):e).join(`, `)+` {`+s.join(` `)+`}`)}for(let t in e)i(r(t),e[t],this.rules)}getRules(){return this.rules.join(` +`)}static newName(){let e=Pk[Mk]||1;return Pk[Mk]=e+1,jk+e.toString(36)}static mount(e,t,n){let r=e[Nk],i=n&&n.nonce;r?i&&r.setNonce(i):r=new l0e(e,i),r.mount(Array.isArray(t)?t:[t],e)}},Ik=new Map,l0e=class{constructor(e,t){let n=e.ownerDocument||e,r=n.defaultView;if(!e.head&&e.adoptedStyleSheets&&r.CSSStyleSheet){let t=Ik.get(n);if(t)return e[Nk]=t;this.sheet=new r.CSSStyleSheet,Ik.set(n,this)}else this.styleTag=n.createElement(`style`),t&&this.styleTag.setAttribute(`nonce`,t);this.modules=[],e[Nk]=this}mount(e,t){let n=this.sheet,r=0,i=0;for(let t=0;t-1&&(this.modules.splice(o,1),i--,o=-1),o==-1){if(this.modules.splice(i++,0,a),n)for(let e=0;e{for(Lk={8:`Backspace`,9:`Tab`,10:`Enter`,12:`NumLock`,13:`Enter`,16:`Shift`,17:`Control`,18:`Alt`,20:`CapsLock`,27:`Escape`,32:` `,33:`PageUp`,34:`PageDown`,35:`End`,36:`Home`,37:`ArrowLeft`,38:`ArrowUp`,39:`ArrowRight`,40:`ArrowDown`,44:`PrintScreen`,45:`Insert`,46:`Delete`,59:`;`,61:`=`,91:`Meta`,92:`Meta`,106:`*`,107:`+`,108:`,`,109:`-`,110:`.`,111:`/`,144:`NumLock`,145:`ScrollLock`,160:`Shift`,161:`Shift`,162:`Control`,163:`Control`,164:`Alt`,165:`Alt`,173:`-`,186:`;`,187:`=`,188:`,`,189:`-`,190:`.`,191:`/`,192:"`",219:`[`,220:`\\`,221:`]`,222:`'`},Rk={48:`)`,49:`!`,50:`@`,51:`#`,52:`$`,53:`%`,54:`^`,55:`&`,56:`*`,57:`(`,59:`:`,61:`+`,173:`_`,186:`:`,187:`+`,188:`<`,189:`_`,190:`>`,191:`?`,192:`~`,219:`{`,220:`|`,221:`}`,222:`"`},f0e=typeof navigator<`u`&&/Mac/.test(navigator.platform),p0e=typeof navigator<`u`&&/MSIE \d|Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(navigator.userAgent),zk=0;zk<10;zk++)Lk[48+zk]=Lk[96+zk]=String(zk);for(zk=1;zk<=24;zk++)Lk[zk+111]=`F`+zk;for(zk=65;zk<=90;zk++)Lk[zk]=String.fromCharCode(zk+32),Rk[zk]=String.fromCharCode(zk);for(var e in Lk)Rk.hasOwnProperty(e)||(Rk[e]=Lk[e])}));function Bk(e){let t;return t=e.nodeType==11?e.getSelection?e:e.ownerDocument:e,t.getSelection()}function Vk(e,t){return t?e==t||e.contains(t.nodeType==1?t:t.parentNode):!1}function Hk(e,t){if(!t.anchorNode)return!1;try{return Vk(e,t.anchorNode)}catch{return!1}}function Uk(e){return e.nodeType==3?Yk(e,0,e.nodeValue.length).getClientRects():e.nodeType==1?e.getClientRects():[]}function Wk(e,t,n,r){return n?h0e(e,t,n,r,-1)||h0e(e,t,n,r,1):!1}function Gk(e){for(var t=0;;t++)if(e=e.previousSibling,!e)return t}function Kk(e){return e.nodeType==1&&/^(DIV|P|LI|UL|OL|BLOCKQUOTE|DD|DT|H\d|SECTION|PRE)$/.test(e.nodeName)}function h0e(e,t,n,r,i){for(;;){if(e==n&&t==r)return!0;if(t==(i<0?0:qk(e))){if(e.nodeName==`DIV`)return!1;let n=e.parentNode;if(!n||n.nodeType!=1)return!1;t=Gk(e)+(i<0?0:1),e=n}else if(e.nodeType==1){if(e=e.childNodes[t+(i<0?-1:0)],e.nodeType==1&&e.contentEditable==`false`)return!1;t=i<0?qk(e):0}else return!1}}function qk(e){return e.nodeType==3?e.nodeValue.length:e.childNodes.length}function Jk(e,t){let n=t?e.left:e.right;return{left:n,right:n,top:e.top,bottom:e.bottom}}function g0e(e){let t=e.visualViewport;return t?{left:0,right:t.width,top:0,bottom:t.height}:{left:0,right:e.innerWidth,top:0,bottom:e.innerHeight}}function _0e(e,t){let n=t.width/e.offsetWidth,r=t.height/e.offsetHeight;return(n>.995&&n<1.005||!isFinite(n)||Math.abs(t.width-e.offsetWidth)<1)&&(n=1),(r>.995&&r<1.005||!isFinite(r)||Math.abs(t.height-e.offsetHeight)<1)&&(r=1),{scaleX:n,scaleY:r}}function v0e(e,t,n,r,i,a,o,s){let c=e.ownerDocument,l=c.defaultView||window;for(let u=e,d=!1;u&&!d;)if(u.nodeType==1){let e,f=u==c.body,p=1,m=1;if(f)e=g0e(l);else{if(/^(fixed|sticky)$/.test(getComputedStyle(u).position)&&(d=!0),u.scrollHeight<=u.clientHeight&&u.scrollWidth<=u.clientWidth){u=u.assignedSlot||u.parentNode;continue}let t=u.getBoundingClientRect();({scaleX:p,scaleY:m}=_0e(u,t)),e={left:t.left,right:t.left+u.clientWidth*p,top:t.top,bottom:t.top+u.clientHeight*m}}let h=0,g=0;if(i==`nearest`)t.top0&&t.bottom>e.bottom+g&&(g=t.bottom-e.bottom+g+o)):t.bottom>e.bottom&&(g=t.bottom-e.bottom+o,n<0&&t.top-g0&&t.right>e.right+h&&(h=t.right-e.right+h+a)):t.right>e.right&&(h=t.right-e.right+a,n<0&&t.lefti.clientHeight&&(r=i),!n&&i.scrollWidth>i.clientWidth&&(n=i),i=i.assignedSlot||i.parentNode;else if(i.nodeType==11)i=i.host;else break;return{x:n,y:r}}function b0e(e){if(e.setActive)return e.setActive();if(xA)return e.focus(xA);let t=[];for(let n=e;n&&(t.push(n,n.scrollTop,n.scrollLeft),n!=n.ownerDocument);n=n.parentNode);if(e.focus(xA==null?{get preventScroll(){return xA={preventScroll:!0},!0}}:void 0),!xA){xA=!1;for(let e=0;eMath.max(1,e.scrollHeight-e.clientHeight-4)}function T0e(e,t){for(let n=e,r=t;;)if(n.nodeType==3&&r>0)return{node:n,offset:r};else if(n.nodeType==1&&r>0){if(n.contentEditable==`false`)return null;n=n.childNodes[r-1],r=qk(n)}else if(n.parentNode&&!Kk(n))r=Gk(n),n=n.parentNode;else return null}function E0e(e,t){for(let n=e,r=t;;)if(n.nodeType==3&&r0&&(!o&&a.length&&u.merge(n,u.length,a[0],!1,s,0)?u.breakAfter=a.shift().breakAfter:(nr&&(t=r);let i=t,a=t,o=0;t==0&&n<0||t==r&&n>=0?LA.chrome||LA.gecko||(t?(i--,o=1):a=0)?0:s.length-1];return LA.safari&&!o&&c.width==0&&(c=Array.prototype.find.call(s,e=>e.width)||c),o?Jk(c,o<0):c||null}function j0e(e,t){let n=e.dom,{children:r}=e,i=0;for(let e=0;ie&&t0;e--){let t=r[e-1];if(t.dom.parentNode==n)return t.domAtPos(t.length)}for(let e=i;e0&&t instanceof zA&&i.length&&(r=i[i.length-1])instanceof zA&&r.mark.eq(t.mark)?M0e(r,t.children[0],n-1):(i.push(t),t.setParent(e)),e.length+=t.length}function N0e(e,t,n){let r=null,i=-1,a=null,o=-1;function s(e,t){for(let c=0,l=0;c=t&&(u.children.length?s(u,t-l):(!a||a.isHidden&&n>0)&&(d>t||l==d&&u.getSide()>0)?(a=u,o=t-l):(l-1?1:0)!=i.length-(n&&i.indexOf(n)>-1?1:0))return!1;for(let a of r)if(a!=n&&(i.indexOf(a)==-1||e[a]!==t[a]))return!1;return!0}function $k(e,t,n){let r=!1;if(t)for(let i in t)n&&i in n||(r=!0,i==`style`?e.style.cssText=``:e.removeAttribute(i));if(n)for(let i in n)t&&t[i]==n[i]||(r=!0,i==`style`?e.style.cssText=n[i]:e.setAttribute(i,n[i]));return r}function F0e(e){let t=Object.create(null);for(let n=0;n=0&&n[i]+r>=e?n[i]=Math.max(n[i],t):n.push(e,t)}function tA(e,t){for(let n of t)e=new zA(n,[e],e.length);return e}function R0e(e){let t=[];for(let n=0;n=0;e-=3)if(ij[e+1]==-r){let n=ij[e+2],r=n&2?i:n&4?n&1?a:i:0;r&&(oj[t]=oj[ij[e]]=r),s=e;break}}else if(ij.length==189)break;else ij[s++]=t,ij[s++]=n,ij[s++]=c;else if((o=oj[t])==2||o==1){let e=o==i;c=+!e;for(let t=s-3;t>=0;t-=3){let n=ij[t+2];if(n&2)break;if(e)ij[t+2]|=2;else{if(n&4)break;ij[t+2]|=4}}}}}function U0e(e,t,n,r){for(let i=0,a=r;i<=n.length;i++){let o=i?n[i-1].to:e,s=ic;)t==a&&(t=n[--r].from,a=r?n[r-1].to:e),oj[--t]=u;c=o}else a=o,c++}}}function nA(e,t,n,r,i,a,o){let s=r%2?2:1;if(r%2==i%2)for(let c=t,l=0;cc&&o.push(new aj(c,m.from,f)),rA(e,m.direction==tj==!(f%2)?r:r+1,i,m.inner,m.from,m.to,o),c=m.to),p=m.to}else if(p==n||(t?oj[p]!=s:oj[p]==s))break;else p++;d?nA(e,c,p,r+1,i,d,o):ct;){let n=!0,u=!1;if(!l||c>a[l-1].to){let e=oj[c-1];e!=s&&(n=!1,u=e==16)}let d=!n&&s==1?[]:null,f=n?r:r+1,p=c;run:for(;;)if(l&&p==a[l-1].to){if(u)break run;let m=a[--l];if(!n)for(let e=m.from,n=l;;){if(e==t)break run;if(n&&a[n-1].to==e)e=a[--n].from;else if(oj[e-1]==s)break run;else break}d?d.push(m):(m.tooj.length;)oj[oj.length]=256;let r=[],i=t==tj?0:1;return rA(e,i,i,n,0,e.length,r),r}function G0e(e){return[new aj(0,e,0)]}function K0e(e,t,n,r,i){let a=r.head-e.from,o=aj.find(t,a,r.bidiLevel??-1,r.assoc),s=t[o],c=s.side(i,n);if(a==c){let e=o+=i?1:-1;if(e<0||e>=t.length)return null;s=t[o=e],a=s.side(!i,n),c=s.side(i,n)}let l=yO(e.text,a,s.forward(i,n));(ls.to)&&(l=c),sj=e.text.slice(Math.min(a,l),Math.max(a,l));let u=o==(i?t.length-1:0)?null:t[o+(i?1:-1)];return u&&l==c&&u.level+ +!it instanceof Function?t(e):t),i=[];return Tk.spans(r,t.from,t.to,{point(){},span(e,n,r,a){let o=e-t.from,s=n-t.from,c=i;for(let e=r.length-1;e>=0;e--,a--){let n=r[e].spec.bidiIsolate,i;if(n??=q0e(t.text,o,s),a>0&&c.length&&(i=c[c.length-1]).to==o&&i.direction==n)i.to=s,c=i.inner;else{let e={from:o,to:s,direction:n,inner:[]};c.push(e),c=e.inner}}}}),i}function aA(e){let t=0,n=0,r=0,i=0;for(let a of e.state.facet(Mj)){let o=a(e);o&&(o.left!=null&&(t=Math.max(t,o.left)),o.right!=null&&(n=Math.max(n,o.right)),o.top!=null&&(r=Math.max(r,o.top)),o.bottom!=null&&(i=Math.max(i,o.bottom)))}return{left:t,right:n,top:r,bottom:i}}function Y0e(e){return e.node.nodeType==1&&e.node.firstChild&&(e.offset==0||e.node.childNodes[e.offset-1].contentEditable==`false`)&&(e.offset==e.node.childNodes.length||e.node.childNodes[e.offset].contentEditable==`false`)}function X0e(e,t){let n=e.observer.selectionRange;if(!n.focusNode)return null;let r=T0e(n.focusNode,n.focusOffset),i=E0e(n.focusNode,n.focusOffset),a=r||i;if(i&&r&&i.node!=r.node){let t=wA.get(i.node);if(!t||t instanceof RA&&t.text!=i.node.nodeValue)a=i;else if(e.docView.lastCompositionAfterCursor){let e=wA.get(r.node);!e||e instanceof RA&&e.text!=r.node.nodeValue||(a=i)}}if(e.docView.lastCompositionAfterCursor=a!=r,!a)return null;let o=t-a.offset;return{from:o,to:o+a.node.nodeValue.length,node:a.node}}function Z0e(e,t,n){let r=X0e(e,n);if(!r)return null;let{node:i,from:a,to:o}=r,s=i.nodeValue;if(/[\n\r]/.test(s)||e.state.doc.sliceString(r.from,r.to)!=s)return null;let c=t.invertedDesc,l=new Pj(c.mapPos(a),c.mapPos(o),a,o),u=[];for(let t=i.parentNode;;t=t.parentNode){let n=wA.get(t);if(n instanceof zA)u.push({node:t,deco:n.mark});else if(n instanceof YA||t.nodeName==`DIV`&&t.parentNode==e.contentDOM)return{range:l,text:i,marks:u,line:t};else if(t!=e.contentDOM)u.push({node:t,deco:new KA({inclusive:!0,attributes:F0e(t),tagName:t.tagName.toLowerCase()})});else return null}}function Q0e(e,t){return e.nodeType==1?(t&&e.childNodes[t-1].contentEditable==`false`?1:0)|(t{et.from&&(n=!0)}),n}function n2e(e,t,n=1){let r=e.charCategorizer(t),i=e.doc.lineAt(t),a=t-i.from;if(i.length==0)return QO.cursor(t);a==0?n=1:a==i.length&&(n=-1);let o=a,s=a;n<0?o=yO(i.text,a,!1):s=yO(i.text,a);let c=r(i.text.slice(o,s));for(;o>0;){let e=yO(i.text,o,!1);if(r(i.text.slice(e,o))!=c)break;o=e}for(;se?t.left-e:Math.max(0,e-t.right)}function i2e(e,t){return t.top>e?t.top-e:Math.max(0,e-t.bottom)}function oA(e,t){return e.topt.top+1}function a2e(e,t){return te.bottom?{top:e.top,left:e.left,right:e.right,bottom:t}:e}function sA(e,t,n){let r,i,a,o,s=!1,c,l,u,d;for(let f=e.firstChild;f;f=f.nextSibling){let e=Uk(f);for(let p=0;pg||o==g&&a>h){r=f,i=m,a=h,o=g;let c=g?n0?p0)}h==0?n>m.bottom&&(!u||u.bottomm.top)&&(l=f,d=m):u&&oA(u,m)?u=o2e(u,m.bottom):d&&oA(d,m)&&(d=a2e(d,m.top))}}if(u&&u.bottom>=n?(r=c,i=u):d&&d.top<=n&&(r=l,i=d),!r)return{node:e,offset:0};let f=Math.max(i.left,Math.min(i.right,t));return r.nodeType==3?s2e(r,f,n):s&&r.contentEditable!=`false`?sA(r,f,n):{node:e,offset:Array.prototype.indexOf.call(e.childNodes,r)+ +(t>=(i.left+i.right)/2)}}function s2e(e,t,n){let r=e.nodeValue.length,i=-1,a=1e9,o=0;for(let s=0;sn?l.top-n:n-l.bottom)-1;if(l.left-1<=t&&l.right+1>=t&&u=(l.left+l.right)/2,r=n;if((LA.chrome||LA.gecko)&&Yk(e,s).getBoundingClientRect().left==l.right&&(r=!n),u<=0)return{node:e,offset:s+ +!!r};i=s+ +!!r,a=u}}}return{node:e,offset:i>-1?i:o>0?e.nodeValue.length:0}}function c2e(e,t,n,r=-1){let i=e.contentDOM.getBoundingClientRect(),a=i.top+e.viewState.paddingTop,o,{docHeight:s}=e.viewState,{x:c,y:l}=t,u=l-a;if(u<0)return 0;if(u>s)return e.state.doc.length;for(let t=e.viewState.heightOracle.textHeight/2,i=!1;o=e.elementAtHeight(u),o.type!=WA.Text;)for(;u=r>0?o.bottom+t:o.top-t,!(u>=0&&u<=s);){if(i)return n?null:0;i=!0,r=-r}l=a+u;let d=o.from;if(de.viewport.to)return e.viewport.to==e.state.doc.length?e.state.doc.length:n?null:l2e(e,i,o,c,l);let f=e.dom.ownerDocument,p=e.root.elementFromPoint?e.root:f,m=p.elementFromPoint(c,l);m&&!e.contentDOM.contains(m)&&(m=null),m||(c=Math.max(i.left+1,Math.min(i.right-1,c)),m=p.elementFromPoint(c,l),m&&!e.contentDOM.contains(m)&&(m=null));let h,g=-1;if(m&&e.docView.nearest(m)?.isEditable!=0){if(f.caretPositionFromPoint){let e=f.caretPositionFromPoint(c,l);e&&({offsetNode:h,offset:g}=e)}else if(f.caretRangeFromPoint){let t=f.caretRangeFromPoint(c,l);t&&({startContainer:h,startOffset:g}=t,(!e.contentDOM.contains(h)||LA.safari&&u2e(h,g,c)||LA.chrome&&d2e(h,g,c))&&(h=void 0))}h&&(g=Math.min(qk(h),g))}if(!h||!e.docView.dom.contains(h)){let t=YA.find(e.docView,d);if(!t)return u>o.top+o.height/2?o.to:o.from;({node:h,offset:g}=sA(t.dom,c,l))}let _=e.docView.nearest(h);if(!_)return null;if(_.isWidget&&_.dom?.nodeType==1){let e=_.dom.getBoundingClientRect();return t.ye.defaultLineHeight*1.5){let t=e.viewState.heightOracle.textHeight,r=Math.floor((i-n.top-(e.defaultLineHeight-t)*.5)/t);a+=r*e.viewState.heightOracle.lineLength}let o=e.state.sliceDoc(n.from,n.to);return n.from+n0e(o,a,e.state.tabSize)}function u2e(e,t,n){let r;if(e.nodeType!=3||t!=(r=e.nodeValue.length))return!1;for(let t=e.nextSibling;t;t=t.nextSibling)if(t.nodeType!=1||t.nodeName!=`BR`)return!1;return Yk(e,r-1,r).getBoundingClientRect().left>n}function d2e(e,t,n){if(t!=0)return!1;for(let t=e;;){let e=t.parentNode;if(!e||e.nodeType!=1||e.firstChild!=t)return!1;if(e.classList.contains(`cm-line`))break;t=e}return n-(e.nodeType==1?e.getBoundingClientRect():Yk(e,0,Math.max(e.nodeValue.length,1)).getBoundingClientRect()).left>5}function f2e(e,t){let n=e.lineBlockAt(t);if(Array.isArray(n.type)){for(let e of n.type)if(e.to>t||e.to==t&&(e.to==n.to||e.type==WA.Text))return e}return n}function p2e(e,t,n,r){let i=f2e(e,t.head),a=!r||i.type!=WA.Text||!(e.lineWrapping||i.widgetLineBreaks)?null:e.coordsAtPos(t.assoc<0&&t.head>i.from?t.head-1:t.head);if(a){let t=e.dom.getBoundingClientRect(),r=e.textDirectionAt(i.from),o=e.posAtCoords({x:n==(r==ej.LTR)?t.right-1:t.left+1,y:(a.top+a.bottom)/2});if(o!=null)return QO.cursor(o,n?-1:1)}return QO.cursor(n?i.to:i.from,n?-1:1)}function m2e(e,t,n,r){let i=e.state.doc.lineAt(t.head),a=e.bidiSpans(i),o=e.textDirectionAt(i.from);for(let s=t,c=null;;){let t=K0e(i,a,o,s,n),l=sj;if(!t){if(i.number==(n?e.state.doc.lines:1))return s;l=` +`,i=e.state.doc.line(i.number+(n?1:-1)),a=e.bidiSpans(i),t=e.visualLineSide(i,!n)}if(!c){if(!r)return t;c=r(l)}else if(!c(l))return s;s=t}}function h2e(e,t,n){let r=e.state.charCategorizer(t),i=r(n);return e=>{let t=r(e);return i==bk.Space&&(i=t),i==t}}function g2e(e,t,n,r){let i=t.head,a=n?1:-1;if(i==(n?e.state.doc.length:0))return QO.cursor(i,t.assoc);let o=t.goalColumn,s,c=e.contentDOM.getBoundingClientRect(),l=e.coordsAtPos(i,t.assoc||-1),u=e.documentTop;if(l)o??=l.left-c.left,s=a<0?l.top:l.bottom;else{let t=e.viewState.lineBlockAt(i);o??=Math.min(c.right-c.left,e.defaultCharacterWidth*(i-t.from)),s=(a<0?t.top:t.bottom)+u}let d=c.left+o,f=r??e.viewState.heightOracle.textHeight>>1;for(let t=0;;t+=10){let n=s+(f+t)*a,r=c2e(e,{x:d,y:n},!1,a);if(nc.bottom||(a<0?ri)){let t=e.docView.coordsForChar(r),i=!t||n{if(t>e&&tt(e)),n.from,t.head>n.from?-1:1);return r==n.from?n:QO.cursor(r,rDate.now()-100?e.inputState.lastKeyCode:-1;if(t.bounds){let{from:r,to:o}=t.bounds,s=i.from,c=null;(a===8||LA.android&&t.text.length=i.from&&n.to<=i.to&&(n.from!=i.from||n.to!=i.to)&&i.to-i.from-(n.to-n.from)<=4?n={from:i.from,to:i.to,insert:e.state.doc.slice(i.from,n.from).append(n.insert).append(e.state.doc.slice(n.to,i.to))}:(LA.mac||LA.android)&&n&&n.from==n.to&&n.from==i.head-1&&/^\. ?$/.test(n.insert.toString())&&e.contentDOM.getAttribute(`autocorrect`)==`off`?(r&&n.insert.length==2&&(r=QO.single(r.main.anchor-1,r.main.head-1)),n={from:i.from,to:i.to,insert:BO.of([` `])}):LA.chrome&&n&&n.from==n.to&&n.from==i.head&&n.insert.toString()==` + `&&e.lineWrapping&&(r&&=QO.single(r.main.anchor-1,r.main.head-1),n={from:i.from,to:i.to,insert:BO.of([` `])}),n)return uA(e,n,r,a);if(r&&!r.main.eq(i)){let t=!1,n=`select`;return e.inputState.lastSelectionTime>Date.now()-50&&(e.inputState.lastSelectionOrigin==`select`&&(t=!0),n=e.inputState.lastSelectionOrigin),e.dispatch({selection:r,scrollIntoView:t,userEvent:n}),!0}else return!1}function uA(e,t,n,r=-1){if(LA.ios&&e.inputState.flushIOSKey(t))return!0;let i=e.state.selection.main;if(LA.android&&(t.to==i.to&&(t.from==i.from||t.from==i.from-1&&e.state.sliceDoc(t.from,i.from)==` `)&&t.insert.length==1&&t.insert.lines==2&&Xk(e.contentDOM,`Enter`,13)||(t.from==i.from-1&&t.to==i.to&&t.insert.length==0||r==8&&t.insert.lengthi.head)&&Xk(e.contentDOM,`Backspace`,8)||t.from==i.from&&t.to==i.to+1&&t.insert.length==0&&Xk(e.contentDOM,`Delete`,46)))return!0;let a=t.insert.toString();e.inputState.composing>=0&&e.inputState.composing++;let o,s=()=>o||=y2e(e,t,n);return e.state.facet(pj).some(n=>n(e,t.from,t.to,a,s))||e.dispatch(s()),!0}function y2e(e,t,n){let r,i=e.state,a=i.selection.main;if(t.from>=a.from&&t.to<=a.to&&t.to-t.from>=(a.to-a.from)/3&&(!n||n.main.empty&&n.main.from==t.from+t.insert.length)&&e.inputState.composing<0){let n=a.fromt.to?i.sliceDoc(t.to,a.to):``;r=i.replaceSelection(e.state.toText(n+t.insert.sliceString(0,void 0,e.state.lineBreak)+o))}else{let o=i.changes(t),s=n&&n.main.to<=o.newLength?n.main:void 0;if(i.selection.ranges.length>1&&e.inputState.composing>=0&&t.to<=a.to&&t.to>=a.to-10){let c=e.state.sliceDoc(t.from,t.to),l,u=n&&X0e(e,n.main.head);if(u){let e=t.insert.length-(t.to-t.from);l={from:u.from,to:u.to-e}}else l=e.state.doc.lineAt(a.head);let d=a.to-t.to,f=a.to-a.from;r=i.changeByRange(n=>{if(n.from==a.from&&n.to==a.to)return{changes:o,range:s||n.map(o)};let r=n.to-d,u=r-c.length;if(n.to-n.from!=f||e.state.sliceDoc(u,r)!=c||n.to>=l.from&&n.from<=l.to)return{range:n};let p=i.changes({from:u,to:r,insert:t.insert}),m=n.to-a.to;return{changes:p,range:s?QO.range(Math.max(0,s.anchor+m),Math.max(0,s.head+m)):n.map(p)}})}else r={changes:o,selection:s&&i.selection.replaceRange(s)}}let o=`input.type`;return(e.composing||e.inputState.compositionPendingChange&&e.inputState.compositionEndedAt>Date.now()-50)&&(e.inputState.compositionPendingChange=!1,o+=`.compose`,e.inputState.compositionFirstChange&&(o+=`.start`,e.inputState.compositionFirstChange=!1)),i.update(r,{userEvent:o,scrollIntoView:!0})}function b2e(e,t,n,r){let i=Math.min(e.length,t.length),a=0;for(;a0&&s>0&&e.charCodeAt(o-1)==t.charCodeAt(s-1);)o--,s--;if(r==`end`){let e=Math.max(0,a-Math.min(o,s));n-=o+e-a}if(o=o?a-n:0;a-=e,s=a+(s-o),o=a}else if(s=s?a-n:0;a-=e,o=a+(o-s),s=a}return{from:a,toA:o,toB:s}}function x2e(e){let t=[];if(e.root.activeElement!=e.contentDOM)return t;let{anchorNode:n,anchorOffset:r,focusNode:i,focusOffset:a}=e.observer.selectionRange;return n&&(t.push(new Rj(n,r)),(i!=n||a!=r)&&t.push(new Rj(i,a))),t}function S2e(e,t){if(e.length==0)return null;let n=e[0].pos,r=e.length==2?e[1].pos:n;return n>-1&&r>-1?QO.single(n+t,r+t):null}function C2e(e,t){return(n,r)=>{try{return t.call(e,r,n)}catch(e){iA(n.state,e)}}}function w2e(e){let t=Object.create(null);function n(e){return t[e]||(t[e]={observers:[],handlers:[]})}for(let t of e){let e=t.spec;if(e&&e.domEventHandlers)for(let r in e.domEventHandlers){let i=e.domEventHandlers[r];i&&n(r).handlers.push(C2e(t.value,i))}if(e&&e.domEventObservers)for(let r in e.domEventObservers){let i=e.domEventObservers[r];i&&n(r).observers.push(C2e(t.value,i))}}for(let e in Hj)n(e).handlers.push(Hj[e]);for(let e in Uj)n(e).observers.push(Uj[e]);return t}function dA(e){return Math.max(0,e)*.7+8}function T2e(e,t){return Math.max(Math.abs(e.clientX-t.clientX),Math.abs(e.clientY-t.clientY))}function E2e(e,t){let n=e.state.facet(cj);return n.length?n[0](t):LA.mac?t.metaKey:t.ctrlKey}function D2e(e,t){let n=e.state.facet(lj);return n.length?n[0](t):LA.mac?!t.altKey:!t.ctrlKey}function O2e(e,t){let{main:n}=e.state.selection;if(n.empty)return!1;let r=Bk(e.root);if(!r||r.rangeCount==0)return!0;let i=r.getRangeAt(0).getClientRects();for(let e=0;e=t.clientX&&n.top<=t.clientY&&n.bottom>=t.clientY)return!0}return!1}function k2e(e,t){if(!t.bubbles)return!0;if(t.defaultPrevented)return!1;for(let n=t.target,r;n!=e.contentDOM;n=n.parentNode)if(!n||n.nodeType==11||(r=wA.get(n))&&r.ignoreEvent(t))return!1;return!0}function A2e(e){let t=e.dom.parentNode;if(!t)return;let n=t.appendChild(document.createElement(`textarea`));n.style.cssText=`position: fixed; left: -10000px; top: 10px`,n.focus(),setTimeout(()=>{e.focus(),n.remove(),j2e(e,n.value)},50)}function fA(e,t,n){for(let r of e.facet(t))n=r(n,e);return n}function j2e(e,t){t=fA(e.state,hj,t);let{state:n}=e,r,i=1,a=n.toText(t),o=a.lines==n.selection.ranges.length;if(Yj!=null&&n.selection.ranges.every(e=>e.empty)&&Yj==a.toString()){let e=-1;r=n.changeByRange(r=>{let s=n.doc.lineAt(r.from);if(s.from==e)return{range:r};e=s.from;let c=n.toText((o?a.line(i++).text:t)+n.lineBreak);return{changes:{from:s.from,insert:c},range:QO.cursor(r.from+c.length)}})}else r=o?n.changeByRange(e=>{let t=a.line(i++);return{changes:{from:e.from,to:e.to,insert:t.text},range:QO.cursor(e.from+t.length)}}):n.replaceSelection(a);e.dispatch(r,{userEvent:`input.paste`,scrollIntoView:!0})}function M2e(e,t,n,r){if(r==1)return QO.cursor(t,n);if(r==2)return n2e(e.state,t,n);{let n=YA.find(e.docView,t),r=e.state.doc.lineAt(n?n.posAtEnd:t),i=n?n.posAtStart:r.from,a=n?n.posAtEnd:r.to;return a=r?-1:1}function P2e(e,t){let n=e.posAtCoords({x:t.clientX,y:t.clientY},!1);return{pos:n,bias:N2e(e,n,t.clientX,t.clientY)}}function F2e(e){if(!z4e)return e.detail;let t=Kj,n=Jj;return Kj=e,Jj=Date.now(),qj=!t||n>Date.now()-400&&Math.abs(t.clientX-e.clientX)<2&&Math.abs(t.clientY-e.clientY)<2?(qj+1)%3:1}function I2e(e,t){let n=P2e(e,t),r=F2e(t),i=e.state.selection;return{update(e){e.docChanged&&(n.pos=e.changes.mapPos(n.pos),i=i.map(e.changes))},get(t,a,o){let s=P2e(e,t),c,l=M2e(e,s.pos,s.bias,r);if(n.pos!=s.pos&&!a){let t=M2e(e,n.pos,n.bias,r),i=Math.min(t.from,l.from),a=Math.max(t.to,l.to);l=i1&&(c=L2e(i,s.pos))?c:o?i.addRange(l):QO.create([l])}}}function L2e(e,t){for(let n=0;n=t)return QO.create(e.ranges.slice(0,n).concat(e.ranges.slice(n+1)),e.mainIndex==n?0:e.mainIndex-+(e.mainIndex>n))}return null}function R2e(e,t,n,r){if(n=fA(e.state,hj,n),!n)return;let i=e.posAtCoords({x:t.clientX,y:t.clientY},!1),{draggedContent:a}=e.inputState,o=r&&a&&D2e(e,t)?{from:a.from,to:a.to}:null,s={from:i,insert:n},c=e.state.changes(o?[o,s]:s);e.focus(),e.dispatch({changes:c,selection:{anchor:c.mapPos(i,-1),head:c.mapPos(i,1)},userEvent:o?`move.drop`:`input.drop`}),e.inputState.draggedContent=null}function z2e(e,t){let n=e.dom.parentNode;if(!n)return;let r=n.appendChild(document.createElement(`textarea`));r.style.cssText=`position: fixed; left: -10000px; top: 10px`,r.value=t,r.focus(),r.selectionEnd=t.length,r.selectionStart=0,setTimeout(()=>{r.remove(),e.focus()},50)}function B2e(e){let t=[],n=[],r=!1;for(let r of e.selection.ranges)r.empty||(t.push(e.sliceDoc(r.from,r.to)),n.push(r));if(!t.length){let i=-1;for(let{from:r}of e.selection.ranges){let a=e.doc.lineAt(r);a.number>i&&(t.push(a.text),n.push({from:a.from,to:Math.min(e.doc.length,a.to+1)})),i=a.number}r=!0}return{text:fA(e,gj,t.join(e.lineBreak)),ranges:n,linewise:r}}function V2e(e,t){let n=[];for(let r of e.facet(mj)){let i=r(e,t);i&&n.push(i)}return n?e.update({effects:n,annotations:Xj.of(!0)}):null}function H2e(e){setTimeout(()=>{let t=e.hasFocus;if(t!=e.inputState.notifiedFocused){let n=V2e(e.state,t);n?e.dispatch(n):e.update([])}},10)}function U2e(e){Zj.has(e)||(Zj.add(e),e.addEventListener(`copy`,()=>{}),e.addEventListener(`cut`,()=>{}))}function W2e(){$j=!1}function pA(e,t){return e==t?e:(e.constructor!=t.constructor&&($j=!0),t)}function G2e(e,t){let n,r;e[t]==null&&(n=e[t-1])instanceof oM&&(r=e[t+1])instanceof oM&&e.splice(t-1,3,new oM(n.length+1+r.length))}function K2e(e,t,n){let r=new G4e;return Tk.compare(e,t,n,r,0),r.changes}function q2e(e,t){let n=e.getBoundingClientRect(),r=e.ownerDocument,i=r.defaultView||window,a=Math.max(0,n.left),o=Math.min(i.innerWidth,n.right),s=Math.max(0,n.top),c=Math.min(i.innerHeight,n.bottom);for(let t=e.parentNode;t&&t!=r.body;)if(t.nodeType==1){let n=t,r=window.getComputedStyle(n);if((n.scrollHeight>n.clientHeight||n.scrollWidth>n.clientWidth)&&r.overflow!=`visible`){let r=n.getBoundingClientRect();a=Math.max(a,r.left),o=Math.min(o,r.right),s=Math.max(s,r.top),c=Math.min(t==e.parentNode?i.innerHeight:c,r.bottom)}t=r.position==`absolute`||r.position==`fixed`?n.offsetParent:n.parentNode}else if(t.nodeType==11)t=t.host;else break;return{left:a-n.left,right:Math.max(a,o)-n.left,top:s-(n.top+t),bottom:Math.max(s,c)-(n.top+t)}}function J2e(e,t){let n=e.getBoundingClientRect();return{left:0,right:n.right-n.left,top:t,bottom:n.bottom-(n.top+t)}}function Y2e(e,t,n){let r=[],i=e,a=0;return Tk.spans(n,e,t,{span(){},point(e,t){e>i&&(r.push({from:i,to:e}),a+=e-i),i=t}},20),i=1)return t[t.length-1].to;let r=Math.floor(e*n);for(let e=0;;e++){let{from:n,to:i}=t[e],a=i-n;if(r<=a)return n+r;r-=a}}function hA(e,t){let n=0;for(let{from:r,to:i}of e.ranges){if(t<=i){n+=t-r;break}n+=i-r}return n/e.total}function X2e(e,t){for(let n of e)if(t(n))return n}function gA(e,t){if(t.scale==1)return e;let n=t.toDOM(e.top),r=t.toDOM(e.bottom);return new eM(e.from,e.length,n,r-n,Array.isArray(e._content)?e._content.map(e=>gA(e,t)):e._content)}function _A(e,t,n){return new Fk(t,{finish(t){return/&/.test(t)?t.replace(/&\w*/,t=>{if(t==`&`)return e;if(!n||!n[t])throw RangeError(`Unsupported selector: ${t}`);return n[t]}):e+` `+t}})}function Z2e(e,t,n){for(;t;){let r=wA.get(t);if(r&&r.parent==e)return r;let i=t.parentNode;t=i==e.dom?n>0?t.nextSibling:t.previousSibling:i}return null}function Q2e(e,t){let n=t.startContainer,r=t.startOffset,i=t.endContainer,a=t.endOffset,o=e.docView.domAtPos(e.state.selection.main.anchor);return Wk(o.node,o.offset,i,a)&&([n,r,i,a]=[i,a,n,r]),{anchorNode:n,anchorOffset:r,focusNode:i,focusOffset:a}}function $2e(e,t){if(t.getComposedRanges){let n=t.getComposedRanges(e.root)[0];if(n)return Q2e(e,n)}let n=null;function r(e){e.preventDefault(),e.stopImmediatePropagation(),n=e.getTargetRanges()[0]}return e.contentDOM.addEventListener(`beforeinput`,r,!0),e.dom.ownerDocument.execCommand(`indent`),e.contentDOM.removeEventListener(`beforeinput`,r,!0),n?Q2e(e,n):null}function e4e(e,t,n){for(let r=e.state.facet(t),i=r.length-1;i>=0;i--){let t=r[i],a=typeof t==`function`?t(e):t;a&&Zk(a,n)}return n}function t4e(e,t){let n=e.split(/-(?!$)/),r=n[n.length-1];r==`Space`&&(r=` `);let i,a,o,s;for(let e=0;ee.concat(t),[]))),n}function r4e(e,t=$4e){let n=Object.create(null),r=Object.create(null),i=(e,t)=>{let n=r[e];if(n==null)r[e]=t;else if(n!=t)throw Error(`Key binding `+e+` is used both as a regular binding and as a multi-stroke prefix`)},a=(e,r,a,o,s)=>{let c=n[e]||(n[e]=Object.create(null)),l=r.split(/ (?!$)/).map(e=>t4e(e,t));for(let t=1;t{let r=CM={view:t,prefix:n,scope:e};return setTimeout(()=>{CM==r&&(CM=null)},t3e),!0}]})}let u=l.join(` `);i(u,!1);let d=c[u]||(c[u]={preventDefault:!1,stopPropagation:!1,run:(c._any?.run)?.slice()||[]});a&&d.run.push(a),o&&(d.preventDefault=!0),s&&(d.stopPropagation=!0)};for(let r of e){let e=r.scope?r.scope.split(` `):[`editor`];if(r.any)for(let t of e){let e=n[t]||(n[t]=Object.create(null));e._any||={preventDefault:!1,stopPropagation:!1,run:[]};let{any:i}=r;for(let t in e)e[t].run.push(e=>i(e,wM))}let i=r[t]||r.key;if(i)for(let t of e)a(t,i,r.run,r.preventDefault,r.stopPropagation),r.shift&&a(t,`Shift-`+i,r.shift,r.preventDefault,r.stopPropagation)}return n}function i4e(e,t,n,r){wM=t;let i=d0e(t),a=xO(bO(i,0))==i.length&&i!=` `,o=``,s=!1,c=!1,l=!1;CM&&CM.view==n&&CM.scope==r&&(o=CM.prefix+` `,Bj.indexOf(t.keyCode)<0&&(c=!0,CM=null));let u=new Set,d=e=>{if(e){for(let t of e.run)if(!u.has(t)&&(u.add(t),t(n)))return e.stopPropagation&&(l=!0),!0;e.preventDefault&&(e.stopPropagation&&(l=!0),c=!0)}return!1},f=e[r],p,m;return f&&(d(f[o+vA(i,t,!a)])?s=!0:a&&(t.altKey||t.metaKey||t.ctrlKey)&&!(LA.windows&&t.ctrlKey&&t.altKey)&&(p=Lk[t.keyCode])&&p!=i?(d(f[o+vA(p,t,!0)])||t.shiftKey&&(m=Rk[t.keyCode])!=i&&m!=p&&d(f[o+vA(m,t,!1)]))&&(s=!0):a&&t.shiftKey&&d(f[o+vA(i,t,!0)])&&(s=!0),!s&&d(f._any)&&(s=!0)),c&&(s=!0),s&&l&&t.stopPropagation(),wM=null,s}function a4e(e,t,n,r,i){t.lastIndex=0;for(let a=e.iterRange(n,r),o=n,s;!a.next().done;o+=a.value.length)if(!a.lineBreak)for(;s=t.exec(a.value);)i(o+s.index,s)}function o4e(e,t){let n=e.visibleRanges;if(n.length==1&&n[0].from==e.viewport.from&&n[0].to==e.viewport.to)return n;let r=[];for(let{from:i,to:a}of n)i=Math.max(e.state.doc.lineAt(i).from,i-t),a=Math.min(e.state.doc.lineAt(a).to,a+t),r.length&&r[r.length-1].to>=i?r[r.length-1].to=a:r.push({from:i,to:a});return r}function s4e(){if(OM==null&&typeof document<`u`&&document.body){let e=document.body.style;OM=(e.tabSize??e.MozTabSize)!=null}return OM||!1}function c4e(e={}){return[kM.of(e),l4e()]}function l4e(){return a3e||=wj.fromClass(class{constructor(e){this.view=e,this.decorations=GA.none,this.decorationCache=Object.create(null),this.decorator=this.makeDecorator(e.state.facet(kM)),this.decorations=this.decorator.createDeco(e)}makeDecorator(e){return new EM({regexp:e.specialChars,decoration:(t,n,r)=>{let{doc:i}=n.state,a=bO(t[0],0);if(a==9){let e=i.lineAt(r),t=n.state.tabSize,a=zO(e.text,t,r-e.from);return GA.replace({widget:new c3e((t-a%t)*this.view.defaultCharacterWidth/this.view.scaleX)})}return this.decorationCache[a]||(this.decorationCache[a]=GA.replace({widget:new s3e(e,a)}))},boundary:e.replaceTabs?void 0:/[^]/})}update(e){let t=e.state.facet(kM);e.startState.facet(kM)==t?this.decorations=this.decorator.updateDeco(e,this.decorations):(this.decorator=this.makeDecorator(t),this.decorations=this.decorator.createDeco(e.view))}},{decorations:e=>e.decorations})}function u4e(e){return e>=32?o3e:e==10?`␤`:String.fromCharCode(9216+e)}function d4e(e){return wj.fromClass(class{constructor(t){this.view=t,this.placeholder=e?GA.set([GA.widget({widget:new l3e(e),side:1}).range(0)]):GA.none}get decorations(){return this.view.state.doc.length?GA.none:this.placeholder}},{decorations:e=>e.decorations})}function f4e(e){let{win:t}=e;return{top:0,left:0,bottom:t.innerHeight,right:t.innerWidth}}function p4e(e,t){let n=parseInt(e.style.left,10);(isNaN(n)||Math.abs(t-n)>1)&&(e.style.left=t+`px`)}function m4e(e,t){let{left:n,right:r,top:i,bottom:a}=e.getBoundingClientRect(),o;if(o=e.querySelector(`.cm-tooltip-arrow`)){let e=o.getBoundingClientRect();i=Math.min(e.top,i),a=Math.max(e.bottom,a)}return t.clientX>=n-RM&&t.clientX<=r+RM&&t.clientY>=i-RM&&t.clientY<=a+RM}function h4e(e,t,n,r,i,a){let o=e.scrollDOM.getBoundingClientRect(),s=e.documentTop+e.documentPadding.top+e.contentHeight;if(o.left>r||o.righti||Math.min(o.bottom,s)=t&&c<=n}function g4e(e,t={}){let n=vk.define(),r=rk.define({create(){return[]},update(e,r){if(e.length&&(t.hideOnChange&&(r.docChanged||r.selection)?e=[]:t.hideOn&&(e=e.filter(e=>!t.hideOn(r,e))),r.docChanged)){let t=[];for(let n of e){let e=r.changes.mapPos(n.pos,-1,qO.TrackDel);if(e!=null){let i=Object.assign(Object.create(null),n);i.pos=e,i.end!=null&&(i.end=r.changes.mapPos(i.end)),t.push(i)}}e=t}for(let t of r.effects)t.is(n)&&(e=t.value),t.is(m3e)&&(e=[]);return e},provide:e=>IM.from(e)});return{active:r,extension:[r,wj.define(i=>new p3e(i,e,r,n,t.hoverTime||300)),f3e]}}function _4e(e,t){let n=e.plugin(PM);if(!n)return null;let r=n.manager.tooltips.indexOf(t);return r<0?null:n.manager.tooltipViews[r]}function v4e(e){let t=e.nextSibling;return e.remove(),t}function y4e(e){return[b4e(),WM.of(Object.assign(Object.assign({},_3e),e))]}function b4e(e){let t=[v3e];return e&&e.fixed===!1&&t.push(GM.of(!0)),t}function x4e(e){return Array.isArray(e)?e:[e]}function yA(e,t,n){for(;e.value&&e.from<=n;)e.from==n&&t.push(e.value),e.next()}function S4e(e,t){if(e.length!=t.length)return!1;for(let n=0;n{Ak(),u0e(),m0e(),T4e=class{constructor(){this.anchorNode=null,this.anchorOffset=0,this.focusNode=null,this.focusOffset=0}eq(e){return this.anchorNode==e.anchorNode&&this.anchorOffset==e.anchorOffset&&this.focusNode==e.focusNode&&this.focusOffset==e.focusOffset}setRange(e){let{anchorNode:t,focusNode:n}=e;this.set(t,Math.min(e.anchorOffset,t?qk(t):0),n,Math.min(e.focusOffset,n?qk(n):0))}set(e,t,n,r){this.anchorNode=e,this.anchorOffset=t,this.focusNode=n,this.focusOffset=r}},xA=null,SA=class e{constructor(e,t,n=!0){this.node=e,this.offset=t,this.precise=n}static before(t,n){return new e(t.parentNode,Gk(t),n)}static after(t,n){return new e(t.parentNode,Gk(t)+1,n)}},CA=[],wA=class e{constructor(){this.parent=null,this.dom=null,this.flags=2}get overrideDOMText(){return null}get posAtStart(){return this.parent?this.parent.posBefore(this):0}get posAtEnd(){return this.posAtStart+this.length}posBefore(e){let t=this.posAtStart;for(let n of this.children){if(n==e)return t;t+=n.length+n.breakAfter}throw RangeError(`Invalid child in posBefore`)}posAfter(e){return this.posBefore(e)+e.length}sync(t,n){if(this.flags&2){let r=this.dom,i=null,a;for(let o of this.children){if(o.flags&7){if(!o.dom&&(a=i?i.nextSibling:r.firstChild)){let t=e.get(a);(!t||!t.parent&&t.canReuseDOM(o))&&o.reuseDOM(a)}o.sync(t,n),o.flags&=-8}if(a=i?i.nextSibling:r.firstChild,n&&!n.written&&n.node==r&&a!=o.dom&&(n.written=!0),o.dom.parentNode==r)for(;a&&a!=o.dom;)a=D0e(a);else r.insertBefore(o.dom,a);i=o.dom}for(a=i?i.nextSibling:r.firstChild,a&&n&&n.node==r&&(n.written=!0);a;)a=D0e(a)}else if(this.flags&1)for(let e of this.children)e.flags&7&&(e.sync(t,n),e.flags&=-8)}reuseDOM(e){}localPosFromDOM(t,n){let r;if(t==this.dom)r=this.dom.childNodes[n];else{let e=qk(t)==0?0:n==0?-1:1;for(;;){let n=t.parentNode;if(n==this.dom)break;e==0&&n.firstChild!=n.lastChild&&(e=t==n.firstChild?-1:1),t=n}r=e<0?t:t.nextSibling}if(r==this.dom.firstChild)return 0;for(;r&&!e.get(r);)r=r.nextSibling;if(!r)return this.length;for(let e=0,t=0;;e++){let n=this.children[e];if(n.dom==r)return t;t+=n.length+n.breakAfter}}domBoundsAround(e,t,n=0){let r=-1,i=-1,a=-1,o=-1;for(let s=0,c=n,l=n;st)return n.domBoundsAround(e,t,c);if(u>=e&&r==-1&&(r=s,i=c),c>t&&n.dom.parentNode==this.dom){a=s,o=l;break}l=u,c=u+n.breakAfter}return{from:i,to:o<0?n+this.length:o,startDOM:(r?this.children[r-1].dom.nextSibling:null)||this.dom.firstChild,endDOM:a=0?this.children[a].dom:null}}markDirty(e=!1){this.flags|=2,this.markParentsDirty(e)}markParentsDirty(e){for(let t=this.parent;t;t=t.parent){if(e&&(t.flags|=2),t.flags&1)return;t.flags|=1,e=!1}}setParent(e){this.parent!=e&&(this.parent=e,this.flags&7&&this.markParentsDirty(!0))}setDOM(e){this.dom!=e&&(this.dom&&(this.dom.cmView=null),this.dom=e,e.cmView=this)}get rootView(){for(let e=this;;){let t=e.parent;if(!t)return e;e=t}}replaceChildren(e,t,n=CA){this.markDirty();for(let r=e;rthis.pos||e==this.pos&&(t>0||this.i==0||this.children[this.i-1].breakAfter))return this.off=e-this.pos,this;let n=this.children[--this.i];this.pos-=n.length+n.breakAfter}}},EA=typeof navigator<`u`?navigator:{userAgent:``,vendor:``,platform:``},DA=typeof document<`u`?document:{documentElement:{style:{}}},OA=/Edge\/(\d+)/.exec(EA.userAgent),kA=/MSIE \d/.test(EA.userAgent),AA=/Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(EA.userAgent),jA=!!(kA||AA||OA),MA=!jA&&/gecko\/(\d+)/i.test(EA.userAgent),NA=!jA&&/Chrome\/(\d+)/.exec(EA.userAgent),PA=`webkitFontSmoothing`in DA.documentElement.style,FA=!jA&&/Apple Computer/.test(EA.vendor),IA=FA&&(/Mobile\/\w+/.test(EA.userAgent)||EA.maxTouchPoints>2),LA={mac:IA||/Mac/.test(EA.platform),windows:/Win/.test(EA.platform),linux:/Linux|X11/.test(EA.platform),ie:jA,ie_version:kA?DA.documentMode||6:AA?+AA[1]:OA?+OA[1]:0,gecko:MA,gecko_version:MA?+(/Firefox\/(\d+)/.exec(EA.userAgent)||[0,0])[1]:0,chrome:!!NA,chrome_version:NA?+NA[1]:0,ios:IA,android:/Android\b/.test(EA.userAgent),webkit:PA,safari:FA,webkit_version:PA?+(/\bAppleWebKit\/(\d+)/.exec(EA.userAgent)||[0,0])[1]:0,tabSize:DA.documentElement.style.tabSize==null?`-moz-tab-size`:`tab-size`},D4e=256,RA=class e extends wA{constructor(e){super(),this.text=e}get length(){return this.text.length}createDOM(e){this.setDOM(e||document.createTextNode(this.text))}sync(e,t){this.dom||this.createDOM(),this.dom.nodeValue!=this.text&&(t&&t.node==this.dom&&(t.written=!0),this.dom.nodeValue=this.text)}reuseDOM(e){e.nodeType==3&&this.createDOM(e)}merge(t,n,r){return this.flags&8||r&&(!(r instanceof e)||this.length-(n-t)+r.length>D4e||r.flags&8)?!1:(this.text=this.text.slice(0,t)+(r?r.text:``)+this.text.slice(n),this.markDirty(),!0)}split(t){let n=new e(this.text.slice(t));return this.text=this.text.slice(0,t),this.markDirty(),n.flags|=this.flags&8,n}localPosFromDOM(e,t){return e==this.dom?t:t?this.text.length:0}domAtPos(e){return new SA(this.dom,e)}domBoundsAround(e,t,n){return{from:n,to:n+this.length,startDOM:this.dom,endDOM:this.dom.nextSibling}}coordsAt(e,t){return A0e(this.dom,e,t)}},zA=class e extends wA{constructor(e,t=[],n=0){super(),this.mark=e,this.children=t,this.length=n;for(let e of t)e.setParent(this)}setAttrs(e){if(S0e(e),this.mark.class&&(e.className=this.mark.class),this.mark.attrs)for(let t in this.mark.attrs)e.setAttribute(t,this.mark.attrs[t]);return e}canReuseDOM(e){return super.canReuseDOM(e)&&!((this.flags|e.flags)&8)}reuseDOM(e){e.nodeName==this.mark.tagName.toUpperCase()&&(this.setDOM(e),this.flags|=6)}sync(e,t){this.dom?this.flags&4&&this.setAttrs(this.dom):this.setDOM(this.setAttrs(document.createElement(this.mark.tagName))),super.sync(e,t)}merge(t,n,r,i,a,o){return r&&(!(r instanceof e&&r.mark.eq(this.mark))||t&&a<=0||nt&&n.push(r=t&&(i=a),r=o,a++}let o=this.length-t;return this.length=t,i>-1&&(this.children.length=i,this.markDirty()),new e(this.mark,n,o)}domAtPos(e){return j0e(this,e)}coordsAt(e,t){return N0e(this,e,t)}},BA=class e extends wA{static create(t,n,r){return new e(t,n,r)}constructor(e,t,n){super(),this.widget=e,this.length=t,this.side=n,this.prevWidget=null}split(t){let n=e.create(this.widget,this.length-t,this.side);return this.length-=t,n}sync(e){(!this.dom||!this.widget.updateDOM(this.dom,e))&&(this.dom&&this.prevWidget&&this.prevWidget.destroy(this.dom),this.prevWidget=null,this.setDOM(this.widget.toDOM(e)),this.widget.editable||(this.dom.contentEditable=`false`))}getSide(){return this.side}merge(t,n,r,i,a,o){return r&&(!(r instanceof e)||!this.widget.compare(r.widget)||t>0&&a<=0||n0)?SA.before(this.dom):SA.after(this.dom,e==this.length)}domBoundsAround(){return null}coordsAt(e,t){let n=this.widget.coordsAt(this.dom,e,t);if(n)return n;let r=this.dom.getClientRects(),i=null;if(!r.length)return null;let a=this.side?this.side<0:e>0;for(let t=a?r.length-1:0;i=r[t],!(e>0?t==0:t==r.length-1||i.top0?SA.before(this.dom):SA.after(this.dom)}localPosFromDOM(){return 0}domBoundsAround(){return null}coordsAt(e){return this.dom.getBoundingClientRect()}get overrideDOMText(){return BO.empty}get isHidden(){return!0}},RA.prototype.children=BA.prototype.children=VA.prototype.children=CA,HA=Object.create(null),UA=class{eq(e){return!1}updateDOM(e,t){return!1}compare(e){return this==e||this.constructor==e.constructor&&this.eq(e)}get estimatedHeight(){return-1}get lineBreaks(){return 0}ignoreEvent(e){return!0}coordsAt(e,t,n){return null}get isHidden(){return!1}get editable(){return!1}destroy(e){}},WA=(function(e){return e[e.Text=0]=`Text`,e[e.WidgetBefore=1]=`WidgetBefore`,e[e.WidgetAfter=2]=`WidgetAfter`,e[e.WidgetRange=3]=`WidgetRange`,e})(WA||={}),GA=class extends Ck{constructor(e,t,n,r){super(),this.startSide=e,this.endSide=t,this.widget=n,this.spec=r}get heightRelevant(){return!1}static mark(e){return new KA(e)}static widget(e){let t=Math.max(-1e4,Math.min(1e4,e.side||0)),n=!!e.block;return t+=n&&!e.inlineOrder?t>0?3e8:-4e8:t>0?1e8:-1e8,new JA(e,t,t,n,e.widget||null,!1)}static replace(e){let t=!!e.block,n,r;if(e.isBlockGap)n=-5e8,r=4e8;else{let{start:i,end:a}=I0e(e,t);n=(i?t?-3e8:-1:5e8)-1,r=(a?t?2e8:1:-6e8)+1}return new JA(e,n,r,t,e.widget||null,!0)}static line(e){return new qA(e)}static set(e,t=!1){return Tk.of(e,t)}hasHeight(){return this.widget?this.widget.estimatedHeight>-1:!1}},GA.none=Tk.empty,KA=class e extends GA{constructor(e){let{start:t,end:n}=I0e(e);super(t?-1:5e8,n?1:-6e8,null,e),this.tagName=e.tagName||`span`,this.class=e.class||``,this.attrs=e.attributes||null}eq(t){return this==t||t instanceof e&&this.tagName==t.tagName&&(this.class||this.attrs?.class)==(t.class||t.attrs?.class)&&Qk(this.attrs,t.attrs,`class`)}range(e,t=e){if(e>=t)throw RangeError(`Mark decorations may not be empty`);return super.range(e,t)}},KA.prototype.point=!1,qA=class e extends GA{constructor(e){super(-2e8,-2e8,null,e)}eq(t){return t instanceof e&&this.spec.class==t.spec.class&&Qk(this.spec.attributes,t.spec.attributes)}range(e,t=e){if(t!=e)throw RangeError(`Line decoration ranges must be zero-length`);return super.range(e,t)}},qA.prototype.mapMode=qO.TrackBefore,qA.prototype.point=!0,JA=class e extends GA{constructor(e,t,n,r,i,a){super(t,n,i,e),this.block=r,this.isReplace=a,this.mapMode=r?t<=0?qO.TrackBefore:qO.TrackAfter:qO.TrackDel}get type(){return this.startSide==this.endSide?this.startSide<=0?WA.WidgetBefore:WA.WidgetAfter:WA.WidgetRange}get heightRelevant(){return this.block||!!this.widget&&(this.widget.estimatedHeight>=5||this.widget.lineBreaks>0)}eq(t){return t instanceof e&&L0e(this.widget,t.widget)&&this.block==t.block&&this.startSide==t.startSide&&this.endSide==t.endSide}range(e,t=e){if(this.isReplace&&(e>t||e==t&&this.startSide>0&&this.endSide<=0))throw RangeError(`Invalid range for replacement decoration`);if(!this.isReplace&&t!=e)throw RangeError(`Widget decorations can only have zero-length ranges`);return super.range(e,t)}},JA.prototype.point=!0,YA=class e extends wA{constructor(){super(...arguments),this.children=[],this.length=0,this.prevAttrs=void 0,this.attrs=null,this.breakAfter=0}merge(t,n,r,i,a,o){if(r){if(!(r instanceof e))return!1;this.dom||r.transferDOM(this)}return i&&this.setDeco(r?r.attrs:null),k0e(this,t,n,r?r.children.slice():[],a,o),!0}split(t){let n=new e;if(n.breakAfter=this.breakAfter,this.length==0)return n;let{i:r,off:i}=this.childPos(t);i&&(n.append(this.children[r].split(i),0),this.children[r].merge(i,this.children[r].length,null,!1,0,0),r++);for(let e=r;e0&&this.children[r-1].length==0;)this.children[--r].destroy();return this.children.length=r,this.markDirty(),this.length=t,n}transferDOM(e){this.dom&&=(this.markDirty(),e.setDOM(this.dom),e.prevAttrs=this.prevAttrs===void 0?this.attrs:this.prevAttrs,this.prevAttrs=void 0,null)}setDeco(e){Qk(this.attrs,e)||(this.dom&&(this.prevAttrs=this.attrs,this.markDirty()),this.attrs=e)}append(e,t){M0e(this,e,t)}addLineDeco(e){let t=e.spec.attributes,n=e.spec.class;t&&(this.attrs=Zk(t,this.attrs||{})),n&&(this.attrs=Zk({class:n},this.attrs||{}))}domAtPos(e){return j0e(this,e)}reuseDOM(e){e.nodeName==`DIV`&&(this.setDOM(e),this.flags|=6)}sync(e,t){this.dom?this.flags&4&&(S0e(this.dom),this.dom.className=`cm-line`,this.prevAttrs=this.attrs?null:void 0):(this.setDOM(document.createElement(`div`)),this.dom.className=`cm-line`,this.prevAttrs=this.attrs?null:void 0),this.prevAttrs!==void 0&&($k(this.dom,this.prevAttrs,this.attrs),this.dom.classList.add(`cm-line`),this.prevAttrs=void 0),super.sync(e,t);let n=this.dom.lastChild;for(;n&&wA.get(n)instanceof zA;)n=n.lastChild;if(!n||!this.length||n.nodeName!=`BR`&&wA.get(n)?.isEditable==0&&(!LA.ios||!this.children.some(e=>e instanceof RA))){let e=document.createElement(`BR`);e.cmIgnore=!0,this.dom.appendChild(e)}}measureTextSize(){if(this.children.length==0||this.length>20)return null;let e=0,t;for(let n of this.children){if(!(n instanceof RA)||/[^ -~]/.test(n.text))return null;let r=Uk(n.dom);if(r.length!=1)return null;e+=r[0].width,t=r[0].height}return e?{lineHeight:this.dom.getBoundingClientRect().height,charWidth:e/this.length,textHeight:t}:null}coordsAt(e,t){let n=N0e(this,e,t);if(!this.children.length&&n&&this.parent){let{heightOracle:e}=this.parent.view.viewState,t=n.bottom-n.top;if(Math.abs(t-e.lineHeight)<2&&e.textHeight=n){if(a instanceof e)return a;if(o>n)break}i=o+a.breakAfter}return null}},XA=class e extends wA{constructor(e,t,n){super(),this.widget=e,this.length=t,this.deco=n,this.breakAfter=0,this.prevWidget=null}merge(t,n,r,i,a,o){return r&&(!(r instanceof e)||!this.widget.compare(r.widget)||t>0&&a<=0||n0}},ZA=class extends UA{constructor(e){super(),this.height=e}toDOM(){let e=document.createElement(`div`);return e.className=`cm-gap`,this.updateDOM(e),e}eq(e){return e.height==this.height}updateDOM(e){return e.style.height=this.height+`px`,!0}get editable(){return!0}get estimatedHeight(){return this.height}ignoreEvent(){return!1}},QA=class e{constructor(e,t,n,r){this.doc=e,this.pos=t,this.end=n,this.disallowBlockEffectsFor=r,this.content=[],this.curLine=null,this.breakAtStart=0,this.pendingBuffer=0,this.bufferMarks=[],this.atCursorPos=!0,this.openStart=-1,this.openEnd=-1,this.text=``,this.textOff=0,this.cursor=e.iter(),this.skip=t}posCovered(){if(this.content.length==0)return!this.breakAtStart&&this.doc.lineAt(this.pos).from!=this.pos;let e=this.content[this.content.length-1];return!(e.breakAfter||e instanceof XA&&e.deco.endSide<0)}getLine(){return this.curLine||(this.content.push(this.curLine=new YA),this.atCursorPos=!0),this.curLine}flushBuffer(e=this.bufferMarks){this.pendingBuffer&&=(this.curLine.append(tA(new VA(-1),e),e.length),0)}addBlockWidget(e){this.flushBuffer(),this.curLine=null,this.content.push(e)}finish(e){this.pendingBuffer&&e<=this.bufferMarks.length?this.flushBuffer():this.pendingBuffer=0,!this.posCovered()&&!(e&&this.content.length&&this.content[this.content.length-1]instanceof XA)&&this.getLine()}buildText(e,t,n){for(;e>0;){if(this.textOff==this.text.length){let{value:t,lineBreak:n,done:r}=this.cursor.next(this.skip);if(this.skip=0,r)throw Error(`Ran out of text content when drawing inline views`);if(n){this.posCovered()||this.getLine(),this.content.length?this.content[this.content.length-1].breakAfter=1:this.breakAtStart=1,this.flushBuffer(),this.curLine=null,this.atCursorPos=!0,e--;continue}else this.text=t,this.textOff=0}let r=Math.min(this.text.length-this.textOff,e,512);this.flushBuffer(t.slice(t.length-n)),this.getLine().append(tA(new RA(this.text.slice(this.textOff,this.textOff+r)),t),n),this.atCursorPos=!0,this.textOff+=r,e-=r,n=0}}span(e,t,n,r){this.buildText(t-e,n,r),this.pos=t,this.openStart<0&&(this.openStart=r)}point(e,t,n,r,i,a){if(this.disallowBlockEffectsFor[a]&&n instanceof JA){if(n.block)throw RangeError(`Block decorations may not be specified via plugins`);if(t>this.doc.lineAt(this.pos).to)throw RangeError(`Decorations that replace line breaks may not be specified via plugins`)}let o=t-e;if(n instanceof JA)if(n.block)n.startSide>0&&!this.posCovered()&&this.getLine(),this.addBlockWidget(new XA(n.widget||$A.block,o,n));else{let a=BA.create(n.widget||$A.inline,o,o?0:n.startSide),s=this.atCursorPos&&!a.isEditable&&i<=r.length&&(e0),c=!a.isEditable&&(er.length||n.startSide<=0),l=this.getLine();this.pendingBuffer==2&&!s&&!a.isEditable&&(this.pendingBuffer=0),this.flushBuffer(r),s&&(l.append(tA(new VA(1),r),i),i=r.length+Math.max(0,i-r.length)),l.append(tA(a,r),i),this.atCursorPos=c,this.pendingBuffer=c?er.length?1:2:0,this.pendingBuffer&&(this.bufferMarks=r.slice())}else this.doc.lineAt(this.pos).from==this.pos&&this.getLine().addLineDeco(n);o&&(this.textOff+o<=this.text.length?this.textOff+=o:(this.skip+=o-(this.text.length-this.textOff),this.text=``,this.textOff=0),this.pos=t),this.openStart<0&&(this.openStart=i)}static build(t,n,r,i,a){let o=new e(t,n,r,a);return o.openEnd=Tk.spans(i,n,r,o),o.openStart<0&&(o.openStart=o.openEnd),o.finish(o.openEnd),o}},$A=class extends UA{constructor(e){super(),this.tag=e}eq(e){return e.tag==this.tag}toDOM(){return document.createElement(this.tag)}updateDOM(e){return e.nodeName.toLowerCase()==this.tag}get isHidden(){return!0}},$A.inline=new $A(`span`),$A.block=new $A(`div`),ej=(function(e){return e[e.LTR=0]=`LTR`,e[e.RTL=1]=`RTL`,e})(ej||={}),tj=ej.LTR,nj=ej.RTL,O4e=R0e(`88888888888888888888888888888888888666888888787833333333337888888000000000000000000000000008888880000000000000000000000000088888888888888888888888888888888888887866668888088888663380888308888800000000000000000000000800000000000000000000000000000008`),k4e=R0e(`4444448826627288999999999992222222222222222222222222222222222222222222222229999999999999999999994444444444644222822222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222999999949999999229989999223333333333`),rj=Object.create(null),ij=[];for(let e of[`()`,`[]`,`{}`]){let t=e.charCodeAt(0),n=e.charCodeAt(1);rj[t]=n,rj[n]=-t}A4e=/[\u0590-\u05f4\u0600-\u06ff\u0700-\u08ac\ufb50-\ufdff]/,aj=class{get dir(){return this.level%2?nj:tj}constructor(e,t,n){this.from=e,this.to=t,this.level=n}side(e,t){return this.dir==t==e?this.to:this.from}forward(e,t){return e==(this.dir==t)}static find(e,t,n,r){let i=-1;for(let a=0;a=t){if(o.level==n)return a;(i<0||(r==0?e[i].level>o.level:r<0?o.fromt))&&(i=a)}}if(i<0)throw RangeError(`Index out of range`);return i}},oj=[],sj=``,cj=ek.define(),lj=ek.define(),uj=ek.define(),dj=ek.define(),fj=ek.define(),pj=ek.define(),mj=ek.define(),hj=ek.define(),gj=ek.define(),_j=ek.define({combine:e=>e.some(e=>e)}),j4e=ek.define({combine:e=>e.some(e=>e)}),vj=ek.define(),yj=class e{constructor(e,t=`nearest`,n=`nearest`,r=5,i=5,a=!1){this.range=e,this.y=t,this.x=n,this.yMargin=r,this.xMargin=i,this.isSnapshot=a}map(t){return t.empty?this:new e(this.range.map(t),this.y,this.x,this.yMargin,this.xMargin,this.isSnapshot)}clip(t){return this.range.to<=t.doc.length?this:new e(QO.cursor(t.doc.length),this.y,this.x,this.yMargin,this.xMargin,this.isSnapshot)}},bj=vk.define({map:(e,t)=>e.map(t)}),xj=vk.define(),Sj=ek.define({combine:e=>!e.length||e[0]}),M4e=0,Cj=ek.define(),wj=class e{constructor(e,t,n,r,i){this.id=e,this.create=t,this.domEventHandlers=n,this.domEventObservers=r,this.extension=i(this)}static define(t,n){let{eventHandlers:r,eventObservers:i,provide:a,decorations:o}=n||{};return new e(M4e++,t,r,i,e=>{let t=[Cj.of(e)];return o&&t.push(Oj.of(t=>{let n=t.plugin(e);return n?o(n):GA.none})),a&&t.push(a(e)),t})}static fromClass(t,n){return e.define(e=>new t(e),n)}},Tj=class{constructor(e){this.spec=e,this.mustUpdate=null,this.value=null}update(e){if(!this.value){if(this.spec)try{this.value=this.spec.create(e)}catch(t){iA(e.state,t,`CodeMirror plugin crashed`),this.deactivate()}}else if(this.mustUpdate){let e=this.mustUpdate;if(this.mustUpdate=null,this.value.update)try{this.value.update(e)}catch(t){if(iA(e.state,t,`CodeMirror plugin crashed`),this.value.destroy)try{this.value.destroy()}catch{}this.deactivate()}}return this}destroy(e){if(this.value?.destroy)try{this.value.destroy()}catch(t){iA(e.state,t,`CodeMirror plugin crashed`)}}deactivate(){this.spec=this.value=null}},Ej=ek.define(),Dj=ek.define(),Oj=ek.define(),kj=ek.define(),Aj=ek.define(),jj=ek.define(),Mj=ek.define(),Nj=ek.define(),Pj=class e{constructor(e,t,n,r){this.fromA=e,this.toA=t,this.fromB=n,this.toB=r}join(t){return new e(Math.min(this.fromA,t.fromA),Math.max(this.toA,t.toA),Math.min(this.fromB,t.fromB),Math.max(this.toB,t.toB))}addToSet(e){let t=e.length,n=this;for(;t>0;t--){let r=e[t-1];if(!(r.fromA>n.toA)){if(r.toAu)break;a+=2}if(!c)return r;new e(c.fromA,c.toA,c.fromB,c.toB).addToSet(r),o=c.toA,s=c.toB}}},Fj=class e{constructor(e,t,n){this.view=e,this.state=t,this.transactions=n,this.flags=0,this.startState=e.state,this.changes=YO.empty(this.startState.doc.length);for(let e of n)this.changes=this.changes.compose(e.changes);let r=[];this.changes.iterChangedRanges((e,t,n,i)=>r.push(new Pj(e,t,n,i))),this.changedRanges=r}static create(t,n,r){return new e(t,n,r)}get viewportChanged(){return(this.flags&4)>0}get heightChanged(){return(this.flags&2)>0}get geometryChanged(){return this.docChanged||(this.flags&10)>0}get focusChanged(){return(this.flags&1)>0}get docChanged(){return!this.changes.empty}get selectionSet(){return this.transactions.some(e=>e.selection)}get empty(){return this.flags==0&&this.transactions.length==0}},Ij=class extends wA{get length(){return this.view.state.doc.length}constructor(e){super(),this.view=e,this.decorations=[],this.dynamicDecorationMap=[!1],this.domChanged=null,this.hasComposition=null,this.markedForComposition=new Set,this.editContextFormatting=GA.none,this.lastCompositionAfterCursor=!1,this.minWidth=0,this.minWidthFrom=0,this.minWidthTo=0,this.impreciseAnchor=null,this.impreciseHead=null,this.forceSelection=!1,this.lastUpdate=Date.now(),this.setDOM(e.contentDOM),this.children=[new YA],this.children[0].setParent(this),this.updateDeco(),this.updateInner([new Pj(0,0,0,e.state.doc.length)],0,null)}update(e){let t=e.changedRanges;this.minWidth>0&&t.length&&(t.every(({fromA:e,toA:t})=>tthis.minWidthTo)?(this.minWidthFrom=e.changes.mapPos(this.minWidthFrom,1),this.minWidthTo=e.changes.mapPos(this.minWidthTo,1)):this.minWidth=this.minWidthFrom=this.minWidthTo=0),this.updateEditContextFormatting(e);let n=-1;this.view.inputState.composing>=0&&!this.view.observer.editContext&&(this.domChanged?.newSel?n=this.domChanged.newSel.head:!t2e(e.changes,this.hasComposition)&&!e.selectionSet&&(n=e.state.selection.main.head));let r=n>-1?Z0e(this.view,e.changes,n):null;if(this.domChanged=null,this.hasComposition){this.markedForComposition.clear();let{from:n,to:r}=this.hasComposition;t=new Pj(n,r,e.changes.mapPos(n,-1),e.changes.mapPos(r,1)).addToSet(t.slice())}this.hasComposition=r?{from:r.range.fromB,to:r.range.toB}:null,(LA.ie||LA.chrome)&&!r&&e&&e.state.doc.lines!=e.startState.doc.lines&&(this.forceSelection=!0);let i=this.decorations,a=$0e(i,this.updateDeco(),e.changes);return t=Pj.extendWithRanges(t,a),!(this.flags&7)&&t.length==0?!1:(this.updateInner(t,e.startState.doc.length,r),e.transactions.length&&(this.lastUpdate=Date.now()),!0)}updateInner(e,t,n){this.view.viewState.mustMeasureContent=!0,this.updateChildren(e,t,n);let{observer:r}=this.view;r.ignore(()=>{this.dom.style.height=this.view.viewState.contentHeight/this.view.scaleY+`px`,this.dom.style.flexBasis=this.minWidth?this.minWidth+`px`:``;let e=LA.chrome||LA.ios?{node:r.selectionRange.focusNode,written:!1}:void 0;this.sync(this.view,e),this.flags&=-8,e&&(e.written||r.selectionRange.focusNode!=e.node)&&(this.forceSelection=!0),this.dom.style.height=``}),this.markedForComposition.forEach(e=>e.flags&=-9);let i=[];if(this.view.viewport.from||this.view.viewport.to=0?r[e]:null;if(!t)break;let{fromA:a,toA:o,fromB:s,toB:c}=t,l,u,d,f;if(n&&n.range.fromBs){let e=QA.build(this.view.state.doc,s,n.range.fromB,this.decorations,this.dynamicDecorationMap),t=QA.build(this.view.state.doc,n.range.toB,c,this.decorations,this.dynamicDecorationMap);u=e.breakAtStart,d=e.openStart,f=t.openEnd;let r=this.compositionView(n);t.breakAtStart?r.breakAfter=1:t.content.length&&r.merge(r.length,r.length,t.content[0],!1,t.openStart,0)&&(r.breakAfter=t.content[0].breakAfter,t.content.shift()),e.content.length&&r.merge(0,0,e.content[e.content.length-1],!0,0,e.openEnd)&&e.content.pop(),l=e.content.concat(r).concat(t.content)}else({content:l,breakAtStart:u,openStart:d,openEnd:f}=QA.build(this.view.state.doc,s,c,this.decorations,this.dynamicDecorationMap));let{i:p,off:m}=i.findPos(o,1),{i:h,off:g}=i.findPos(a,-1);O0e(this,h,g,p,m,l,u,d,f)}n&&this.fixCompositionDOM(n)}updateEditContextFormatting(e){this.editContextFormatting=this.editContextFormatting.map(e.changes);for(let t of e.transactions)for(let e of t.effects)e.is(xj)&&(this.editContextFormatting=e.value)}compositionView(e){let t=new RA(e.text.nodeValue);t.flags|=8;for(let{deco:n}of e.marks)t=new zA(n,[t],t.length);let n=new YA;return n.append(t,0),n}fixCompositionDOM(e){let t=(e,t)=>{t.flags|=8|!!t.children.some(e=>e.flags&7),this.markedForComposition.add(t);let n=wA.get(e);n&&n!=t&&(n.dom=null),t.setDOM(e)},n=this.childPos(e.range.fromB,1),r=this.children[n.i];t(e.line,r);for(let i=e.marks.length-1;i>=-1;i--)n=r.childPos(n.off,1),r=r.children[n.i],t(i>=0?e.marks[i].node:e.text,r)}updateSelection(e=!1,t=!1){(e||!this.view.observer.selectionRange.focusNode)&&this.view.observer.readSelectionRange();let n=this.view.root.activeElement,r=n==this.dom,i=!r&&!(this.view.state.facet(Sj)||this.dom.tabIndex>-1)&&Hk(this.dom,this.view.observer.selectionRange)&&!(n&&this.dom.contains(n));if(!(r||t||i))return;let a=this.forceSelection;this.forceSelection=!1;let o=this.view.state.selection.main,s=this.moveToLine(this.domAtPos(o.anchor)),c=o.empty?s:this.moveToLine(this.domAtPos(o.head));if(LA.gecko&&o.empty&&!this.hasComposition&&Y0e(s)){let e=document.createTextNode(``);this.view.observer.ignore(()=>s.node.insertBefore(e,s.node.childNodes[s.offset]||null)),s=c=new SA(e,0),a=!0}let l=this.view.observer.selectionRange;(a||!l.focusNode||(!Wk(s.node,s.offset,l.anchorNode,l.anchorOffset)||!Wk(c.node,c.offset,l.focusNode,l.focusOffset))&&!this.suppressWidgetCursorChange(l,o))&&(this.view.observer.ignore(()=>{LA.android&&LA.chrome&&this.dom.contains(l.focusNode)&&e2e(l.focusNode,this.dom)&&(this.dom.blur(),this.dom.focus({preventScroll:!0}));let e=Bk(this.view.root);if(e)if(o.empty){if(LA.gecko){let e=Q0e(s.node,s.offset);if(e&&e!=3){let t=(e==1?T0e:E0e)(s.node,s.offset);t&&(s=new SA(t.node,t.offset))}}e.collapse(s.node,s.offset),o.bidiLevel!=null&&e.caretBidiLevel!==void 0&&(e.caretBidiLevel=o.bidiLevel)}else if(e.extend){e.collapse(s.node,s.offset);try{e.extend(c.node,c.offset)}catch{}}else{let t=document.createRange();o.anchor>o.head&&([s,c]=[c,s]),t.setEnd(c.node,c.offset),t.setStart(s.node,s.offset),e.removeAllRanges(),e.addRange(t)}i&&this.view.root.activeElement==this.dom&&(this.dom.blur(),n&&n.focus())}),this.view.observer.setSelectionRange(s,c)),this.impreciseAnchor=s.precise?null:new SA(l.anchorNode,l.anchorOffset),this.impreciseHead=c.precise?null:new SA(l.focusNode,l.focusOffset)}suppressWidgetCursorChange(e,t){return this.hasComposition&&t.empty&&Wk(e.focusNode,e.focusOffset,e.anchorNode,e.anchorOffset)&&this.posFromDOM(e.focusNode,e.focusOffset)==t.head}enforceCursorAssoc(){if(this.hasComposition)return;let{view:e}=this,t=e.state.selection.main,n=Bk(e.root),{anchorNode:r,anchorOffset:i}=e.observer.selectionRange;if(!n||!t.empty||!t.assoc||!n.modify)return;let a=YA.find(this,t.head);if(!a)return;let o=a.posAtStart;if(t.head==o||t.head==o+a.length)return;let s=this.coordsAt(t.head,-1),c=this.coordsAt(t.head,1);if(!s||!c||s.bottom>c.top)return;let l=this.domAtPos(t.head+t.assoc);n.collapse(l.node,l.offset),n.modify(`move`,t.assoc<0?`forward`:`backward`,`lineboundary`),e.observer.readSelectionRange();let u=e.observer.selectionRange;e.docView.posFromDOM(u.anchorNode,u.anchorOffset)!=t.from&&n.collapse(r,i)}moveToLine(e){let t=this.dom,n;if(e.node!=t)return e;for(let r=e.offset;!n&&r=0;r--){let e=wA.get(t.childNodes[r]);e instanceof YA&&(n=e.domAtPos(e.length))}return n?new SA(n.node,n.offset,!0):e}nearest(e){for(let t=e;t;){let e=wA.get(t);if(e&&e.rootView==this)return e;t=t.parentNode}return null}posFromDOM(e,t){let n=this.nearest(e);if(!n)throw RangeError(`Trying to find position for a DOM position outside of the document`);return n.localPosFromDOM(e,t)+n.posAtStart}domAtPos(e){let{i:t,off:n}=this.childCursor().findPos(e,-1);for(;t=0;a--){let o=this.children[a],s=i-o.breakAfter,c=s-o.length;if(se||o.covers(1))&&(!n||o instanceof YA&&!(n instanceof YA&&t>=0)))n=o,r=c;else if(n&&c==e&&s==e&&o instanceof XA&&Math.abs(t)<2){if(o.deco.startSide<0)break;a&&(n=null)}i=c}return n?n.coordsAt(e-r,t):null}coordsForChar(e){let{i:t,off:n}=this.childPos(e,1),r=this.children[t];if(!(r instanceof YA))return null;for(;r.children.length;){let{i:e,off:t}=r.childPos(n,1);for(;;e++){if(e==r.children.length)return null;if((r=r.children[e]).length)break}n=t}if(!(r instanceof RA))return null;let i=yO(r.text,n);if(i==n)return null;let a=Yk(r.dom,n,i).getClientRects();for(let e=0;eMath.max(this.view.scrollDOM.clientWidth,this.minWidth)+1,o=-1,s=this.view.textDirection==ej.LTR;for(let e=0,c=0;cr)break;if(e>=n){let n=l.dom.getBoundingClientRect();if(t.push(n.height),a){let t=l.dom.lastChild,r=t?Uk(t):[];if(r.length){let t=r[r.length-1],a=s?t.right-n.left:n.right-t.left;a>o&&(o=a,this.minWidth=i,this.minWidthFrom=e,this.minWidthTo=u)}}}e=u+l.breakAfter}return t}textDirectionAt(e){let{i:t}=this.childPos(e,1);return getComputedStyle(this.children[t].dom).direction==`rtl`?ej.RTL:ej.LTR}measureTextSize(){for(let e of this.children)if(e instanceof YA){let t=e.measureTextSize();if(t)return t}let e=document.createElement(`div`),t,n,r;return e.className=`cm-line`,e.style.width=`99999px`,e.style.position=`absolute`,e.textContent=`abc def ghi jkl mno pqr stu`,this.view.observer.ignore(()=>{this.dom.appendChild(e);let i=Uk(e.firstChild)[0];t=e.getBoundingClientRect().height,n=i?i.width/27:7,r=i?i.height:t,e.remove()}),{lineHeight:t,charWidth:n,textHeight:r}}childCursor(e=this.length){let t=this.children.length;return t&&(e-=this.children[--t].length),new TA(this.children,e,t)}computeBlockGapDeco(){let e=[],t=this.view.viewState;for(let n=0,r=0;;r++){let i=r==t.viewports.length?null:t.viewports[r],a=i?i.from-1:this.length;if(a>n){let r=(t.lineBlockAt(a).bottom-t.lineBlockAt(n).top)/this.view.scaleY;e.push(GA.replace({widget:new ZA(r),block:!0,inclusive:!0,isBlockGap:!0}).range(n,a))}if(!i)break;n=i.to+1}return GA.set(e)}updateDeco(){let e=1,t=this.view.state.facet(Oj).map(t=>(this.dynamicDecorationMap[e++]=typeof t==`function`)?t(this.view):t),n=!1,r=this.view.state.facet(kj).map((e,t)=>{let r=typeof e==`function`;return r&&(n=!0),r?e(this.view):e});for(r.length&&(this.dynamicDecorationMap[e++]=n,t.push(Tk.join(r))),this.decorations=[this.editContextFormatting,...t,this.computeBlockGapDeco(),this.view.viewState.lineGapDeco];et.anchor?-1:1),r;if(!n)return;!t.empty&&(r=this.coordsAt(t.anchor,t.anchor>t.head?-1:1))&&(n={left:Math.min(n.left,r.left),top:Math.min(n.top,r.top),right:Math.max(n.right,r.right),bottom:Math.max(n.bottom,r.bottom)});let i=aA(this.view),a={left:n.left-i.left,top:n.top-i.top,right:n.right+i.right,bottom:n.bottom+i.bottom},{offsetWidth:o,offsetHeight:s}=this.view.scrollDOM;v0e(this.view.scrollDOM,a,t.heade)&&this.lineBreak(),r=i}return this.findPointBefore(n,t),this}readTextNode(e){let t=e.nodeValue;for(let n of this.points)n.node==e&&(n.pos=this.text.length+Math.min(n.offset,t.length));for(let n=0,r=this.lineSeparator?null:/\r\n?|\n/g;;){let i=-1,a=1,o;if(this.lineSeparator?(i=t.indexOf(this.lineSeparator,n),a=this.lineSeparator.length):(o=r.exec(t))&&(i=o.index,a=o[0].length),this.append(t.slice(n,i<0?t.length:i)),i<0)break;if(this.lineBreak(),a>1)for(let t of this.points)t.node==e&&t.pos>this.text.length&&(t.pos-=a-1);n=i+a}}readNode(e){if(e.cmIgnore)return;let t=wA.get(e),n=t&&t.overrideDOMText;if(n!=null){this.findPointInside(e,n.length);for(let e=n.iter();!e.next().done;)e.lineBreak?this.lineBreak():this.append(e.value)}else e.nodeType==3?this.readTextNode(e):e.nodeName==`BR`?e.nextSibling&&this.lineBreak():e.nodeType==1&&this.readRange(e.firstChild,null)}findPointBefore(e,t){for(let n of this.points)n.node==e&&e.childNodes[n.offset]==t&&(n.pos=this.text.length)}findPointInside(e,t){for(let n of this.points)(e.nodeType==3?n.node==e:e.contains(n.node))&&(n.pos=this.text.length+(_2e(e,n.node,n.offset)?t:0))}},Rj=class{constructor(e,t){this.node=e,this.offset=t,this.pos=-1}},F4e=class{constructor(e,t,n,r){this.typeOver=r,this.bounds=null,this.text=``,this.domChanged=t>-1;let{impreciseHead:i,impreciseAnchor:a}=e.docView;if(e.state.readOnly&&t>-1)this.newSel=null;else if(t>-1&&(this.bounds=e.docView.domBoundsAround(t,n,0))){let t=i||a?[]:x2e(e),n=new P4e(t,e.state);n.readRange(this.bounds.startDOM,this.bounds.endDOM),this.text=n.text,this.newSel=S2e(t,this.bounds.from)}else{let t=e.observer.selectionRange,n=i&&i.node==t.focusNode&&i.offset==t.focusOffset||!Vk(e.contentDOM,t.focusNode)?e.state.selection.main.head:e.docView.posFromDOM(t.focusNode,t.focusOffset),r=a&&a.node==t.anchorNode&&a.offset==t.anchorOffset||!Vk(e.contentDOM,t.anchorNode)?e.state.selection.main.anchor:e.docView.posFromDOM(t.anchorNode,t.anchorOffset),o=e.viewport;if((LA.ios||LA.chrome)&&e.state.selection.main.empty&&n!=r&&(o.from>0||o.tonull),LA.gecko&&U2e(e.contentDOM.ownerDocument)}handleEvent(e){!k2e(this.view,e)||this.ignoreDuringComposition(e)||e.type==`keydown`&&this.keydown(e)||this.runHandlers(e.type,e)}runHandlers(e,t){let n=this.handlers[e];if(n){for(let e of n.observers)e(this.view,t);for(let e of n.handlers){if(t.defaultPrevented)break;if(e(this.view,t)){t.preventDefault();break}}}}ensureHandlers(e){let t=w2e(e),n=this.handlers,r=this.view.contentDOM;for(let e in t)if(e!=`scroll`){let i=!t[e].handlers.length,a=n[e];a&&i!=!a.handlers.length&&(r.removeEventListener(e,this.handleEvent),a=null),a||r.addEventListener(e,this.handleEvent,{passive:i})}for(let e in n)e!=`scroll`&&!t[e]&&r.removeEventListener(e,this.handleEvent);this.handlers=t}keydown(e){if(this.lastKeyCode=e.keyCode,this.lastKeyTime=Date.now(),e.keyCode==9&&this.tabFocusMode>-1&&(!this.tabFocusMode||Date.now()<=this.tabFocusMode))return!0;if(this.tabFocusMode>0&&e.keyCode!=27&&Bj.indexOf(e.keyCode)<0&&(this.tabFocusMode=-1),LA.android&&LA.chrome&&!e.synthetic&&(e.keyCode==13||e.keyCode==8))return this.view.observer.delayAndroidKey(e.key,e.keyCode),!0;let t;return LA.ios&&!e.synthetic&&!e.altKey&&!e.metaKey&&((t=zj.find(t=>t.keyCode==e.keyCode))&&!e.ctrlKey||L4e.indexOf(e.key)>-1&&e.ctrlKey&&!e.shiftKey)?(this.pendingIOSKey=t||e,setTimeout(()=>this.flushIOSKey(),250),!0):(e.keyCode!=229&&this.view.observer.forceFlush(),!1)}flushIOSKey(e){let t=this.pendingIOSKey;return!t||t.key==`Enter`&&e&&e.from0?!0:LA.safari&&!LA.ios&&this.compositionPendingKey&&Date.now()-this.compositionEndedAt<100?(this.compositionPendingKey=!1,!0):!1:!1}startMouseSelection(e){this.mouseSelection&&this.mouseSelection.destroy(),this.mouseSelection=e}update(e){this.view.observer.update(e),this.mouseSelection&&this.mouseSelection.update(e),this.draggedContent&&e.docChanged&&(this.draggedContent=this.draggedContent.map(e.changes)),e.transactions.length&&(this.lastKeyCode=this.lastSelectionTime=0)}destroy(){this.mouseSelection&&this.mouseSelection.destroy()}},zj=[{key:`Backspace`,keyCode:8,inputType:`deleteContentBackward`},{key:`Enter`,keyCode:13,inputType:`insertParagraph`},{key:`Enter`,keyCode:13,inputType:`insertLineBreak`},{key:`Delete`,keyCode:46,inputType:`deleteContentForward`}],L4e=`dthko`,Bj=[16,17,18,20,91,92,224,225],Vj=6,R4e=class{constructor(e,t,n,r){this.view=e,this.startEvent=t,this.style=n,this.mustSelect=r,this.scrollSpeed={x:0,y:0},this.scrolling=-1,this.lastEvent=t,this.scrollParents=y0e(e.contentDOM),this.atoms=e.state.facet(Aj).map(t=>t(e));let i=e.contentDOM.ownerDocument;i.addEventListener(`mousemove`,this.move=this.move.bind(this)),i.addEventListener(`mouseup`,this.up=this.up.bind(this)),this.extend=t.shiftKey,this.multiple=e.state.facet(Sk.allowMultipleSelections)&&E2e(e,t),this.dragging=O2e(e,t)&&F2e(t)==1?null:!1}start(e){this.dragging===!1&&this.select(e)}move(e){if(e.buttons==0)return this.destroy();if(this.dragging||this.dragging==null&&T2e(this.startEvent,e)<10)return;this.select(this.lastEvent=e);let t=0,n=0,r=0,i=0,a=this.view.win.innerWidth,o=this.view.win.innerHeight;this.scrollParents.x&&({left:r,right:a}=this.scrollParents.x.getBoundingClientRect()),this.scrollParents.y&&({top:i,bottom:o}=this.scrollParents.y.getBoundingClientRect());let s=aA(this.view);e.clientX-s.left<=r+Vj?t=-dA(r-e.clientX):e.clientX+s.right>=a-Vj&&(t=dA(e.clientX-a)),e.clientY-s.top<=i+Vj?n=-dA(i-e.clientY):e.clientY+s.bottom>=o-Vj&&(n=dA(e.clientY-o)),this.setScrollSpeed(t,n)}up(e){this.dragging??this.select(this.lastEvent),this.dragging||e.preventDefault(),this.destroy()}destroy(){this.setScrollSpeed(0,0);let e=this.view.contentDOM.ownerDocument;e.removeEventListener(`mousemove`,this.move),e.removeEventListener(`mouseup`,this.up),this.view.inputState.mouseSelection=this.view.inputState.draggedContent=null}setScrollSpeed(e,t){this.scrollSpeed={x:e,y:t},e||t?this.scrolling<0&&(this.scrolling=setInterval(()=>this.scroll(),50)):this.scrolling>-1&&(clearInterval(this.scrolling),this.scrolling=-1)}scroll(){let{x:e,y:t}=this.scrollSpeed;e&&this.scrollParents.x&&(this.scrollParents.x.scrollLeft+=e,e=0),t&&this.scrollParents.y&&(this.scrollParents.y.scrollTop+=t,t=0),(e||t)&&this.view.win.scrollBy(e,t),this.dragging===!1&&this.select(this.lastEvent)}skipAtoms(e){let t=null;for(let n=0;ne.isUserEvent(`input.type`))?this.destroy():this.style.update(e)&&setTimeout(()=>this.select(this.lastEvent),20)}},Hj=Object.create(null),Uj=Object.create(null),Wj=LA.ie&&LA.ie_version<15||LA.ios&&LA.webkit_version<604,Uj.scroll=e=>{e.inputState.lastScrollTop=e.scrollDOM.scrollTop,e.inputState.lastScrollLeft=e.scrollDOM.scrollLeft},Hj.keydown=(e,t)=>(e.inputState.setSelectionOrigin(`select`),t.keyCode==27&&e.inputState.tabFocusMode!=0&&(e.inputState.tabFocusMode=Date.now()+2e3),!1),Uj.touchstart=(e,t)=>{e.inputState.lastTouchTime=Date.now(),e.inputState.setSelectionOrigin(`select.pointer`)},Uj.touchmove=e=>{e.inputState.setSelectionOrigin(`select.pointer`)},Hj.mousedown=(e,t)=>{if(e.observer.flush(),e.inputState.lastTouchTime>Date.now()-2e3)return!1;let n=null;for(let r of e.state.facet(uj))if(n=r(e,t),n)break;if(!n&&t.button==0&&(n=I2e(e,t)),n){let r=!e.hasFocus;e.inputState.startMouseSelection(new R4e(e,t,n,r)),r&&e.observer.ignore(()=>{b0e(e.contentDOM);let t=e.root.activeElement;t&&!t.contains(e.contentDOM)&&t.blur()});let i=e.inputState.mouseSelection;if(i)return i.start(t),i.dragging===!1}return!1},Gj=(e,t,n)=>t>=n.top&&t<=n.bottom&&e>=n.left&&e<=n.right,z4e=LA.ie&&LA.ie_version<=11,Kj=null,qj=0,Jj=0,Hj.dragstart=(e,t)=>{let{selection:{main:n}}=e.state;if(t.target.draggable){let r=e.docView.nearest(t.target);if(r&&r.isWidget){let e=r.posAtStart,t=e+r.length;(e>=n.to||t<=n.from)&&(n=QO.range(e,t))}}let{inputState:r}=e;return r.mouseSelection&&(r.mouseSelection.dragging=!0),r.draggedContent=n,t.dataTransfer&&(t.dataTransfer.setData(`Text`,fA(e.state,gj,e.state.sliceDoc(n.from,n.to))),t.dataTransfer.effectAllowed=`copyMove`),!1},Hj.dragend=e=>(e.inputState.draggedContent=null,!1),Hj.drop=(e,t)=>{if(!t.dataTransfer)return!1;if(e.state.readOnly)return!0;let n=t.dataTransfer.files;if(n&&n.length){let r=Array(n.length),i=0,a=()=>{++i==n.length&&R2e(e,t,r.filter(e=>e!=null).join(e.state.lineBreak),!1)};for(let e=0;e{/[\x00-\x08\x0e-\x1f]{2}/.test(t.result)||(r[e]=t.result),a()},t.readAsText(n[e])}return!0}else{let n=t.dataTransfer.getData(`Text`);if(n)return R2e(e,t,n,!0),!0}return!1},Hj.paste=(e,t)=>{if(e.state.readOnly)return!0;e.observer.flush();let n=Wj?null:t.clipboardData;return n?(j2e(e,n.getData(`text/plain`)||n.getData(`text/uri-list`)),!0):(A2e(e),!1)},Yj=null,Hj.copy=Hj.cut=(e,t)=>{let{text:n,ranges:r,linewise:i}=B2e(e.state);if(!n&&!i)return!1;Yj=i?n:null,t.type==`cut`&&!e.state.readOnly&&e.dispatch({changes:r,scrollIntoView:!0,userEvent:`delete.cut`});let a=Wj?null:t.clipboardData;return a?(a.clearData(),a.setData(`text/plain`,n),!0):(z2e(e,n),!1)},Xj=_k.define(),Uj.focus=e=>{e.inputState.lastFocusTime=Date.now(),!e.scrollDOM.scrollTop&&(e.inputState.lastScrollTop||e.inputState.lastScrollLeft)&&(e.scrollDOM.scrollTop=e.inputState.lastScrollTop,e.scrollDOM.scrollLeft=e.inputState.lastScrollLeft),H2e(e)},Uj.blur=e=>{e.observer.clearSelectionRange(),H2e(e)},Uj.compositionstart=Uj.compositionupdate=e=>{e.observer.editContext||(e.inputState.compositionFirstChange??(e.inputState.compositionFirstChange=!0),e.inputState.composing<0&&(e.inputState.composing=0))},Uj.compositionend=e=>{e.observer.editContext||(e.inputState.composing=-1,e.inputState.compositionEndedAt=Date.now(),e.inputState.compositionPendingKey=!0,e.inputState.compositionPendingChange=e.observer.pendingRecords().length>0,e.inputState.compositionFirstChange=null,LA.chrome&&LA.android?e.observer.flushSoon():e.inputState.compositionPendingChange?Promise.resolve().then(()=>e.observer.flush()):setTimeout(()=>{e.inputState.composing<0&&e.docView.hasComposition&&e.update([])},50))},Uj.contextmenu=e=>{e.inputState.lastContextMenu=Date.now()},Hj.beforeinput=(e,t)=>{if(t.inputType==`insertReplacementText`&&e.observer.editContext){let n=t.dataTransfer?.getData(`text/plain`),r=t.getTargetRanges();if(n&&r.length){let t=r[0];return uA(e,{from:e.posAtDOM(t.startContainer,t.startOffset),to:e.posAtDOM(t.endContainer,t.endOffset),insert:e.state.toText(n)},null),!0}}let n;if(LA.chrome&&LA.android&&(n=zj.find(e=>e.inputType==t.inputType))&&(e.observer.delayAndroidKey(n.key,n.keyCode),n.key==`Backspace`||n.key==`Delete`)){let t=window.visualViewport?.height||0;setTimeout(()=>{(window.visualViewport?.height||0)>t+10&&e.hasFocus&&(e.contentDOM.blur(),e.focus())},100)}return LA.ios&&t.inputType==`deleteContentForward`&&e.observer.flushSoon(),LA.safari&&t.inputType==`insertText`&&e.inputState.composing>=0&&setTimeout(()=>Uj.compositionend(e,t),20),!1},Zj=new Set,Qj=[`pre-wrap`,`normal`,`pre-line`,`break-spaces`],$j=!1,B4e=class{constructor(e){this.lineWrapping=e,this.doc=BO.empty,this.heightSamples={},this.lineHeight=14,this.charWidth=7,this.textHeight=14,this.lineLength=30}heightForGap(e,t){let n=this.doc.lineAt(t).number-this.doc.lineAt(e).number+1;return this.lineWrapping&&(n+=Math.max(0,Math.ceil((t-e-n*this.lineLength*.5)/this.lineLength))),this.lineHeight*n}heightForLine(e){return this.lineWrapping?(1+Math.max(0,Math.ceil((e-this.lineLength)/(this.lineLength-5))))*this.lineHeight:this.lineHeight}setDoc(e){return this.doc=e,this}mustRefreshForWrapping(e){return Qj.indexOf(e)>-1!=this.lineWrapping}mustRefreshForHeights(e){let t=!1;for(let n=0;n-1,s=Math.round(t)!=Math.round(this.lineHeight)||this.lineWrapping!=o;if(this.lineWrapping=o,this.lineHeight=t,this.charWidth=n,this.textHeight=r,this.lineLength=i,s){this.heightSamples={};for(let e=0;e0}set outdated(e){this.flags=(e?2:0)|this.flags&-3}setHeight(e){this.height!=e&&(Math.abs(this.height-e)>nM&&($j=!0),this.height=e)}replace(t,n,r){return e.of(r)}decomposeLeft(e,t){t.push(this)}decomposeRight(e,t){t.push(this)}applyChanges(e,t,n,r){let i=this,a=n.doc;for(let o=r.length-1;o>=0;o--){let{fromA:s,toA:c,fromB:l,toB:u}=r[o],d=i.lineAt(s,tM.ByPosNoHeight,n.setDoc(t),0,0),f=d.to>=c?d:i.lineAt(c,tM.ByPosNoHeight,n,0,0);for(u+=f.to-c,c=f.to;o>0&&d.from<=r[o-1].toA;)s=r[o-1].fromA,l=r[o-1].fromB,o--,sa*2){let e=t[n-1];e.break?t.splice(--n,1,e.left,null,e.right):t.splice(--n,1,e.left,e.right),r+=1+e.break,i-=e.size}else if(a>i*2){let e=t[r];e.break?t.splice(r,1,e.left,null,e.right):t.splice(r,1,e.left,e.right),r+=2+e.break,a-=e.size}else break;else if(i=i&&a(this.blockAt(0,n,r,i))}updateHeight(e,t=0,n=!1,r){return r&&r.from<=t&&r.more&&this.setHeight(r.heights[r.index++]),this.outdated=!1,this}toString(){return`block(${this.length})`}},aM=class e extends iM{constructor(e,t){super(e,t,null),this.collapsed=0,this.widgetHeight=0,this.breaks=0}blockAt(e,t,n,r){return new eM(r,this.length,n,this.height,this.breaks)}replace(t,n,r){let i=r[0];return r.length==1&&(i instanceof e||i instanceof oM&&i.flags&4)&&Math.abs(this.length-i.length)<10?(i instanceof oM?i=new e(i.length,this.height):i.height=this.height,this.outdated||(i.outdated=!1),i):rM.of(r)}updateHeight(e,t=0,n=!1,r){return r&&r.from<=t&&r.more?this.setHeight(r.heights[r.index++]):(n||this.outdated)&&this.setHeight(Math.max(this.widgetHeight,e.heightForLine(this.length-this.collapsed))+this.breaks*e.lineHeight),this.outdated=!1,this}toString(){return`line(${this.length}${this.collapsed?-this.collapsed:``}${this.widgetHeight?`:`+this.widgetHeight:``})`}},oM=class e extends rM{constructor(e){super(e,0)}heightMetrics(e,t){let n=e.doc.lineAt(t).number,r=e.doc.lineAt(t+this.length).number,i=r-n+1,a,o=0;if(e.lineWrapping){let t=Math.min(this.height,e.lineHeight*i);a=t/i,this.length>i+1&&(o=(this.height-t)/(this.length-i-1))}else a=this.height/i;return{firstLine:n,lastLine:r,perLine:a,perChar:o}}blockAt(e,t,n,r){let{firstLine:i,lastLine:a,perLine:o,perChar:s}=this.heightMetrics(t,r);if(t.lineWrapping){let i=r+(e0){let t=r[r.length-1];t instanceof e?r[r.length-1]=new e(t.length+i):r.push(null,new e(i-1))}if(t>0){let n=r[0];n instanceof e?r[0]=new e(t+n.length):r.unshift(new e(t-1),null)}return rM.of(r)}decomposeLeft(t,n){n.push(new e(t-1),null)}decomposeRight(t,n){n.push(null,new e(this.length-t-1))}updateHeight(t,n=0,r=!1,i){let a=n+this.length;if(i&&i.from<=n+this.length&&i.more){let r=[],o=Math.max(n,i.from),s=-1;for(i.from>n&&r.push(new e(i.from-n-1).updateHeight(t,n));o<=a&&i.more;){let e=t.doc.lineAt(o).length;r.length&&r.push(null);let n=i.heights[i.index++];s==-1?s=n:Math.abs(n-s)>=nM&&(s=-2);let a=new aM(e,n);a.outdated=!1,r.push(a),o+=e+1}o<=a&&r.push(null,new e(a-o).updateHeight(t,o));let c=rM.of(r);return(s<0||Math.abs(c.height-this.height)>=nM||Math.abs(s-this.heightMetrics(t,n).perLine)>=nM)&&($j=!0),pA(this,c)}else(r||this.outdated)&&(this.setHeight(t.heightForGap(n,n+this.length)),this.outdated=!1);return this}toString(){return`gap(${this.length})`}},H4e=class extends rM{constructor(e,t,n){super(e.length+t+n.length,e.height+n.height,t|(e.outdated||n.outdated?2:0)),this.left=e,this.right=n,this.size=e.size+n.size}get break(){return this.flags&1}blockAt(e,t,n,r){let i=n+this.left.height;return eo))return c;let l=t==tM.ByPosNoHeight?tM.ByPosNoHeight:tM.ByPos;return s?c.join(this.right.lineAt(o,l,n,a,o)):this.left.lineAt(o,l,n,r,i).join(c)}forEachLine(e,t,n,r,i,a){let o=r+this.left.height,s=i+this.left.length+this.break;if(this.break)e=s&&this.right.forEachLine(e,t,n,o,s,a);else{let c=this.lineAt(s,tM.ByPos,n,r,i);e=e&&c.from<=t&&a(c),t>c.to&&this.right.forEachLine(c.to+1,t,n,o,s,a)}}replace(e,t,n){let r=this.left.length+this.break;if(tthis.left.length)return this.balanced(this.left,this.right.replace(e-r,t-r,n));let i=[];e>0&&this.decomposeLeft(e,i);let a=i.length;for(let e of n)i.push(e);if(e>0&&G2e(i,a-1),t=n&&t.push(null)),e>n&&this.right.decomposeLeft(e-n,t)}decomposeRight(e,t){let n=this.left.length,r=n+this.break;if(e>=r)return this.right.decomposeRight(e-r,t);e2*t.size||t.size>2*e.size?rM.of(this.break?[e,null,t]:[e,t]):(this.left=pA(this.left,e),this.right=pA(this.right,t),this.setHeight(e.height+t.height),this.outdated=e.outdated||t.outdated,this.size=e.size+t.size,this.length=e.length+this.break+t.length,this)}updateHeight(e,t=0,n=!1,r){let{left:i,right:a}=this,o=t+i.length+this.break,s=null;return r&&r.from<=t+i.length&&r.more?s=i=i.updateHeight(e,t,n,r):i.updateHeight(e,t,n),r&&r.from<=o+a.length&&r.more?s=a=a.updateHeight(e,o,n,r):a.updateHeight(e,o,n),s?this.balanced(i,a):(this.height=this.left.height+this.right.height,this.outdated=!1,this)}toString(){return this.left+(this.break?` `:`-`)+this.right}},U4e=5,W4e=class e{constructor(e,t){this.pos=e,this.oracle=t,this.nodes=[],this.lineStart=-1,this.lineEnd=-1,this.covering=null,this.writtenTo=e}get isCovered(){return this.covering&&this.nodes[this.nodes.length-1]==this.covering}span(e,t){if(this.lineStart>-1){let e=Math.min(t,this.lineEnd),n=this.nodes[this.nodes.length-1];n instanceof aM?n.length+=e-this.pos:(e>this.pos||!this.isCovered)&&this.nodes.push(new aM(e-this.pos,-1)),this.writtenTo=e,t>e&&(this.nodes.push(null),this.writtenTo++,this.lineStart=-1)}this.pos=t}point(e,t,n){if(e=U4e)&&this.addLineDeco(r,i,a)}else t>e&&this.span(e,t);this.lineEnd>-1&&this.lineEnd-1)return;let{from:e,to:t}=this.oracle.doc.lineAt(this.pos);this.lineStart=e,this.lineEnd=t,this.writtenToe&&this.nodes.push(new aM(this.pos-e,-1)),this.writtenTo=this.pos}blankContent(e,t){let n=new oM(t-e);return this.oracle.doc.lineAt(e).to==t&&(n.flags|=4),n}ensureLine(){this.enterLine();let e=this.nodes.length?this.nodes[this.nodes.length-1]:null;if(e instanceof aM)return e;let t=new aM(0,-1);return this.nodes.push(t),t}addBlock(e){this.enterLine();let t=e.deco;t&&t.startSide>0&&!this.isCovered&&this.ensureLine(),this.nodes.push(e),this.writtenTo=this.pos+=e.length,t&&t.endSide>0&&(this.covering=e)}addLineDeco(e,t,n){let r=this.ensureLine();r.length+=n,r.collapsed+=n,r.widgetHeight=Math.max(r.widgetHeight,e),r.breaks+=t,this.writtenTo=this.pos+=n}finish(e){let t=this.nodes.length==0?null:this.nodes[this.nodes.length-1];this.lineStart>-1&&!(t instanceof aM)&&!this.isCovered?this.nodes.push(new aM(0,-1)):(this.writtenTotypeof e!=`function`&&e.class==`cm-lineWrapping`);this.heightOracle=new B4e(t),this.stateDeco=e.facet(Oj).filter(e=>typeof e!=`function`),this.heightMap=rM.empty().applyChanges(this.stateDeco,BO.empty,this.heightOracle.setDoc(e.doc),[new Pj(0,0,0,e.doc.length)]);for(let e=0;e<2&&(this.viewport=this.getViewport(0,null),this.updateForViewport());e++);this.updateViewportLines(),this.lineGaps=this.ensureLineGaps([]),this.lineGapDeco=GA.set(this.lineGaps.map(e=>e.draw(this,!1))),this.computeVisibleRanges()}updateForViewport(){let e=[this.viewport],{main:t}=this.state.selection;for(let n=0;n<=1;n++){let r=n?t.head:t.anchor;if(!e.some(({from:e,to:t})=>r>=e&&r<=t)){let{from:t,to:n}=this.lineBlockAt(r);e.push(new lM(t,n))}}return this.viewports=e.sort((e,t)=>e.from-t.from),this.updateScaler()}updateScaler(){let e=this.scaler;return this.scaler=this.heightMap.height<=7e6?uM:new q4e(this.heightOracle,this.heightMap,this.viewports),e.eq(this.scaler)?0:2}updateViewportLines(){this.viewportLines=[],this.heightMap.forEachLine(this.viewport.from,this.viewport.to,this.heightOracle.setDoc(this.state.doc),0,0,e=>{this.viewportLines.push(gA(e,this.scaler))})}update(e,t=null){this.state=e.state;let n=this.stateDeco;this.stateDeco=this.state.facet(Oj).filter(e=>typeof e!=`function`);let r=e.changedRanges,i=Pj.extendWithRanges(r,K2e(n,this.stateDeco,e?e.changes:YO.empty(this.state.doc.length))),a=this.heightMap.height,o=this.scrolledToBottom?null:this.scrollAnchorAt(this.scrollTop);W2e(),this.heightMap=this.heightMap.applyChanges(this.stateDeco,e.startState.doc,this.heightOracle.setDoc(this.state.doc),i),(this.heightMap.height!=a||$j)&&(e.flags|=2),o?(this.scrollAnchorPos=e.changes.mapPos(o.from,-1),this.scrollAnchorHeight=o.top):(this.scrollAnchorPos=-1,this.scrollAnchorHeight=this.heightMap.height);let s=i.length?this.mapViewport(this.viewport,e.changes):this.viewport;(t&&(t.range.heads.to)||!this.viewportIsAppropriate(s))&&(s=this.getViewport(0,t));let c=s.from!=this.viewport.from||s.to!=this.viewport.to;this.viewport=s,e.flags|=this.updateForViewport(),(c||!e.changes.empty||e.flags&2)&&this.updateViewportLines(),(this.lineGaps.length||this.viewport.to-this.viewport.from>4e3)&&this.updateLineGaps(this.ensureLineGaps(this.mapLineGaps(this.lineGaps,e.changes))),e.flags|=this.computeVisibleRanges(),t&&(this.scrollTarget=t),!this.mustEnforceCursorAssoc&&e.selectionSet&&e.view.lineWrapping&&e.state.selection.main.empty&&e.state.selection.main.assoc&&!e.state.facet(j4e)&&(this.mustEnforceCursorAssoc=!0)}measure(e){let t=e.contentDOM,n=window.getComputedStyle(t),r=this.heightOracle,i=n.whiteSpace;this.defaultTextDirection=n.direction==`rtl`?ej.RTL:ej.LTR;let a=this.heightOracle.mustRefreshForWrapping(i),o=t.getBoundingClientRect(),s=a||this.mustMeasureContent||this.contentDOMHeight!=o.height;this.contentDOMHeight=o.height,this.mustMeasureContent=!1;let c=0,l=0;if(o.width&&o.height){let{scaleX:e,scaleY:n}=_0e(t,o);(e>.005&&Math.abs(this.scaleX-e)>.005||n>.005&&Math.abs(this.scaleY-n)>.005)&&(this.scaleX=e,this.scaleY=n,c|=8,a=s=!0)}let u=(parseInt(n.paddingTop)||0)*this.scaleY,d=(parseInt(n.paddingBottom)||0)*this.scaleY;(this.paddingTop!=u||this.paddingBottom!=d)&&(this.paddingTop=u,this.paddingBottom=d,c|=10),this.editorWidth!=e.scrollDOM.clientWidth&&(r.lineWrapping&&(s=!0),this.editorWidth=e.scrollDOM.clientWidth,c|=8);let f=e.scrollDOM.scrollTop*this.scaleY;this.scrollTop!=f&&(this.scrollAnchorHeight=-1,this.scrollTop=f),this.scrolledToBottom=w0e(e.scrollDOM);let p=(this.printing?J2e:q2e)(t,this.paddingTop),m=p.top-this.pixelViewport.top,h=p.bottom-this.pixelViewport.bottom;this.pixelViewport=p;let g=this.pixelViewport.bottom>this.pixelViewport.top&&this.pixelViewport.right>this.pixelViewport.left;if(g!=this.inView&&(this.inView=g,g&&(s=!0)),!this.inView&&!this.scrollTarget)return 0;let _=o.width;if((this.contentDOMWidth!=_||this.editorHeight!=e.scrollDOM.clientHeight)&&(this.contentDOMWidth=o.width,this.editorHeight=e.scrollDOM.clientHeight,c|=8),s){let t=e.docView.measureVisibleLineHeights(this.viewport);if(r.mustRefreshForHeights(t)&&(a=!0),a||r.lineWrapping&&Math.abs(_-this.contentDOMWidth)>r.charWidth){let{lineHeight:n,charWidth:o,textHeight:s}=e.docView.measureTextSize();a=n>0&&r.refresh(i,n,o,s,_/o,t),a&&(e.docView.minWidth=0,c|=8)}m>0&&h>0?l=Math.max(m,h):m<0&&h<0&&(l=Math.min(m,h)),W2e();for(let n of this.viewports){let i=n.from==this.viewport.from?t:e.docView.measureVisibleLineHeights(n);this.heightMap=(a?rM.empty().applyChanges(this.stateDeco,BO.empty,this.heightOracle,[new Pj(0,0,0,e.state.doc.length)]):this.heightMap).updateHeight(r,0,a,new V4e(n.from,i))}$j&&(c|=2)}let v=!this.viewportIsAppropriate(this.viewport,l)||this.scrollTarget&&(this.scrollTarget.range.headthis.viewport.to);return v&&(c&2&&(c|=this.updateScaler()),this.viewport=this.getViewport(l,this.scrollTarget),c|=this.updateForViewport()),(c&2||v)&&this.updateViewportLines(),(this.lineGaps.length||this.viewport.to-this.viewport.from>4e3)&&this.updateLineGaps(this.ensureLineGaps(a?[]:this.lineGaps,e)),c|=this.computeVisibleRanges(),this.mustEnforceCursorAssoc&&(this.mustEnforceCursorAssoc=!1,e.docView.enforceCursorAssoc()),c}get visibleTop(){return this.scaler.fromDOM(this.pixelViewport.top)}get visibleBottom(){return this.scaler.fromDOM(this.pixelViewport.bottom)}getViewport(e,t){let n=.5-Math.max(-.5,Math.min(.5,e/1e3/2)),r=this.heightMap,i=this.heightOracle,{visibleTop:a,visibleBottom:o}=this,s=new lM(r.lineAt(a-n*1e3,tM.ByHeight,i,0,0).from,r.lineAt(o+(1-n)*1e3,tM.ByHeight,i,0,0).to);if(t){let{head:e}=t.range;if(es.to){let n=Math.min(this.editorHeight,this.pixelViewport.bottom-this.pixelViewport.top),a=r.lineAt(e,tM.ByPos,i,0,0),o;o=t.y==`center`?(a.top+a.bottom)/2-n/2:t.y==`start`||t.y==`nearest`&&e=o+Math.max(10,Math.min(n,250)))&&r>a-2*1e3&&i>1,a=r<<1;if(this.defaultTextDirection!=ej.LTR&&!n)return[];let o=[],s=(r,a,c,l)=>{if(a-rr&&ee.from>=c.from&&e.to<=c.to&&Math.abs(e.from-r)e.fromt));if(!f){if(ae.from<=a&&e.to>=a)){let e=t.moveToLineBoundary(QO.cursor(a),!1,!0).head;e>r&&(a=e)}let e=this.gapSize(c,r,a,l);f=new sM(r,a,e,n||e<2e6?e:2e6)}o.push(f)},c=t=>{if(t.length2e6)for(let n of e)n.from>=t.from&&n.fromt.from&&s(t.from,c,t,i),le.draw(this,this.heightOracle.lineWrapping))))}computeVisibleRanges(){let e=this.stateDeco;this.lineGaps.length&&(e=e.concat(this.lineGapDeco));let t=[];Tk.spans(e,this.viewport.from,this.viewport.to,{span(e,n){t.push({from:e,to:n})},point(){}},20);let n=t.length!=this.visibleRanges.length||this.visibleRanges.some((e,n)=>e.from!=t[n].from||e.to!=t[n].to);return this.visibleRanges=t,n?4:0}lineBlockAt(e){return e>=this.viewport.from&&e<=this.viewport.to&&this.viewportLines.find(t=>t.from<=e&&t.to>=e)||gA(this.heightMap.lineAt(e,tM.ByPos,this.heightOracle,0,0),this.scaler)}lineBlockAtHeight(e){return e>=this.viewportLines[0].top&&e<=this.viewportLines[this.viewportLines.length-1].bottom&&this.viewportLines.find(t=>t.top<=e&&t.bottom>=e)||gA(this.heightMap.lineAt(this.scaler.fromDOM(e),tM.ByHeight,this.heightOracle,0,0),this.scaler)}scrollAnchorAt(e){let t=this.lineBlockAtHeight(e+8);return t.from>=this.viewport.from||this.viewportLines[0].top-e>200?t:this.viewportLines[0]}elementAtHeight(e){return gA(this.heightMap.blockAt(this.scaler.fromDOM(e),this.heightOracle,0,0),this.scaler)}get docHeight(){return this.scaler.toDOM(this.heightMap.height)}get contentHeight(){return this.docHeight+this.paddingTop+this.paddingBottom}},lM=class{constructor(e,t){this.from=e,this.to=t}},uM={toDOM(e){return e},fromDOM(e){return e},scale:1,eq(e){return e==this}},q4e=class e{constructor(e,t,n){let r=0,i=0,a=0;this.viewports=n.map(({from:n,to:i})=>{let a=t.lineAt(n,tM.ByPos,e,0,0).top,o=t.lineAt(i,tM.ByPos,e,0,0).bottom;return r+=o-a,{from:n,to:i,top:a,bottom:o,domTop:0,domBottom:0}}),this.scale=(7e6-r)/(t.height-r);for(let e of this.viewports)e.domTop=a+(e.top-i)*this.scale,a=e.domBottom=e.domTop+(e.bottom-e.top),i=e.bottom}toDOM(e){for(let t=0,n=0,r=0;;t++){let i=te.from==t.viewports[n].from&&e.to==t.viewports[n].to)}},dM=ek.define({combine:e=>e.join(` `)}),fM=ek.define({combine:e=>e.indexOf(!0)>-1}),pM=Fk.newName(),mM=Fk.newName(),hM=Fk.newName(),gM={"&light":`.`+mM,"&dark":`.`+hM},J4e=_A(`.`+pM,{"&":{position:`relative !important`,boxSizing:`border-box`,"&.cm-focused":{outline:`1px dotted #212121`},display:`flex !important`,flexDirection:`column`},".cm-scroller":{display:`flex !important`,alignItems:`flex-start !important`,fontFamily:`monospace`,lineHeight:1.4,height:`100%`,overflowX:`auto`,position:`relative`,zIndex:0,overflowAnchor:`none`},".cm-content":{margin:0,flexGrow:2,flexShrink:0,display:`block`,whiteSpace:`pre`,wordWrap:`normal`,boxSizing:`border-box`,minHeight:`100%`,padding:`4px 0`,outline:`none`,"&[contenteditable=true]":{WebkitUserModify:`read-write-plaintext-only`}},".cm-lineWrapping":{whiteSpace_fallback:`pre-wrap`,whiteSpace:`break-spaces`,wordBreak:`break-word`,overflowWrap:`anywhere`,flexShrink:1},"&light .cm-content":{caretColor:`black`},"&dark .cm-content":{caretColor:`white`},".cm-line":{display:`block`,padding:`0 2px 0 6px`},".cm-layer":{position:`absolute`,left:0,top:0,contain:`size style`,"& > *":{position:`absolute`}},"&light .cm-selectionBackground":{background:`#d9d9d9`},"&dark .cm-selectionBackground":{background:`#222`},"&light.cm-focused > .cm-scroller > .cm-selectionLayer .cm-selectionBackground":{background:`#d7d4f0`},"&dark.cm-focused > .cm-scroller > .cm-selectionLayer .cm-selectionBackground":{background:`#233`},".cm-cursorLayer":{pointerEvents:`none`},"&.cm-focused > .cm-scroller > .cm-cursorLayer":{animation:`steps(1) cm-blink 1.2s infinite`},"@keyframes cm-blink":{"0%":{},"50%":{opacity:0},"100%":{}},"@keyframes cm-blink2":{"0%":{},"50%":{opacity:0},"100%":{}},".cm-cursor, .cm-dropCursor":{borderLeft:`1.2px solid black`,marginLeft:`-0.6px`,pointerEvents:`none`},".cm-cursor":{display:`none`},"&dark .cm-cursor":{borderLeftColor:`#ddd`},".cm-dropCursor":{position:`absolute`},"&.cm-focused > .cm-scroller > .cm-cursorLayer .cm-cursor":{display:`block`},".cm-iso":{unicodeBidi:`isolate`},".cm-announced":{position:`fixed`,top:`-10000px`},"@media print":{".cm-announced":{display:`none`}},"&light .cm-activeLine":{backgroundColor:`#cceeff44`},"&dark .cm-activeLine":{backgroundColor:`#99eeff33`},"&light .cm-specialChar":{color:`red`},"&dark .cm-specialChar":{color:`#f78`},".cm-gutters":{flexShrink:0,display:`flex`,height:`100%`,boxSizing:`border-box`,insetInlineStart:0,zIndex:200},"&light .cm-gutters":{backgroundColor:`#f5f5f5`,color:`#6c6c6c`,borderRight:`1px solid #ddd`},"&dark .cm-gutters":{backgroundColor:`#333338`,color:`#ccc`},".cm-gutter":{display:`flex !important`,flexDirection:`column`,flexShrink:0,boxSizing:`border-box`,minHeight:`100%`,overflow:`hidden`},".cm-gutterElement":{boxSizing:`border-box`},".cm-lineNumbers .cm-gutterElement":{padding:`0 3px 0 5px`,minWidth:`20px`,textAlign:`right`,whiteSpace:`nowrap`},"&light .cm-activeLineGutter":{backgroundColor:`#e2f2ff`},"&dark .cm-activeLineGutter":{backgroundColor:`#222227`},".cm-panels":{boxSizing:`border-box`,position:`sticky`,left:0,right:0,zIndex:300},"&light .cm-panels":{backgroundColor:`#f5f5f5`,color:`black`},"&light .cm-panels-top":{borderBottom:`1px solid #ddd`},"&light .cm-panels-bottom":{borderTop:`1px solid #ddd`},"&dark .cm-panels":{backgroundColor:`#333338`,color:`white`},".cm-tab":{display:`inline-block`,overflow:`hidden`,verticalAlign:`bottom`},".cm-widgetBuffer":{verticalAlign:`text-top`,height:`1em`,width:0,display:`inline`},".cm-placeholder":{color:`#888`,display:`inline-block`,verticalAlign:`top`},".cm-highlightSpace":{backgroundImage:`radial-gradient(circle at 50% 55%, #aaa 20%, transparent 5%)`,backgroundPosition:`center`},".cm-highlightTab":{backgroundImage:`url('data:image/svg+xml,')`,backgroundSize:`auto 100%`,backgroundPosition:`right 90%`,backgroundRepeat:`no-repeat`},".cm-trailingSpace":{backgroundColor:`#ff332255`},".cm-button":{verticalAlign:`middle`,color:`inherit`,fontSize:`70%`,padding:`.2em 1em`,borderRadius:`1px`},"&light .cm-button":{backgroundImage:`linear-gradient(#eff1f5, #d9d9df)`,border:`1px solid #888`,"&:active":{backgroundImage:`linear-gradient(#b4b4b4, #d0d3d6)`}},"&dark .cm-button":{backgroundImage:`linear-gradient(#393939, #111)`,border:`1px solid #888`,"&:active":{backgroundImage:`linear-gradient(#111, #333)`}},".cm-textfield":{verticalAlign:`middle`,color:`inherit`,fontSize:`70%`,border:`1px solid silver`,padding:`.2em .5em`},"&light .cm-textfield":{backgroundColor:`white`},"&dark .cm-textfield":{border:`1px solid #555`,backgroundColor:`inherit`}},gM),Y4e={childList:!0,characterData:!0,subtree:!0,attributes:!0,characterDataOldValue:!0},_M=LA.ie&&LA.ie_version<=11,X4e=class{constructor(e){this.view=e,this.active=!1,this.editContext=null,this.selectionRange=new T4e,this.selectionChanged=!1,this.delayedFlush=-1,this.resizeTimeout=-1,this.queue=[],this.delayedAndroidKey=null,this.flushingAndroidKey=-1,this.lastChange=0,this.scrollTargets=[],this.intersection=null,this.resizeScroll=null,this.intersecting=!1,this.gapIntersection=null,this.gaps=[],this.printQuery=null,this.parentCheck=-1,this.dom=e.contentDOM,this.observer=new MutationObserver(t=>{for(let e of t)this.queue.push(e);(LA.ie&&LA.ie_version<=11||LA.ios&&e.composing)&&t.some(e=>e.type==`childList`&&e.removedNodes.length||e.type==`characterData`&&e.oldValue.length>e.target.nodeValue.length)?this.flushSoon():this.flush()}),window.EditContext&&e.constructor.EDIT_CONTEXT!==!1&&!(LA.chrome&&LA.chrome_version<126)&&(this.editContext=new Z4e(e),e.state.facet(Sj)&&(e.contentDOM.editContext=this.editContext.editContext)),_M&&(this.onCharData=e=>{this.queue.push({target:e.target,type:`characterData`,oldValue:e.prevValue}),this.flushSoon()}),this.onSelectionChange=this.onSelectionChange.bind(this),this.onResize=this.onResize.bind(this),this.onPrint=this.onPrint.bind(this),this.onScroll=this.onScroll.bind(this),window.matchMedia&&(this.printQuery=window.matchMedia(`print`)),typeof ResizeObserver==`function`&&(this.resizeScroll=new ResizeObserver(()=>{this.view.docView?.lastUpdate{this.parentCheck<0&&(this.parentCheck=setTimeout(this.listenForScroll.bind(this),1e3)),e.length>0&&e[e.length-1].intersectionRatio>0!=this.intersecting&&(this.intersecting=!this.intersecting,this.intersecting!=this.view.inView&&this.onScrollChanged(document.createEvent(`Event`)))},{threshold:[0,.001]}),this.intersection.observe(this.dom),this.gapIntersection=new IntersectionObserver(e=>{e.length>0&&e[e.length-1].intersectionRatio>0&&this.onScrollChanged(document.createEvent(`Event`))},{})),this.listenForScroll(),this.readSelectionRange()}onScrollChanged(e){this.view.inputState.runHandlers(`scroll`,e),this.intersecting&&this.view.measure()}onScroll(e){this.intersecting&&this.flush(!1),this.editContext&&this.view.requestMeasure(this.editContext.measureReq),this.onScrollChanged(e)}onResize(){this.resizeTimeout<0&&(this.resizeTimeout=setTimeout(()=>{this.resizeTimeout=-1,this.view.requestMeasure()},50))}onPrint(e){(e.type==`change`||!e.type)&&!e.matches||(this.view.viewState.printing=!0,this.view.measure(),setTimeout(()=>{this.view.viewState.printing=!1,this.view.requestMeasure()},500))}updateGaps(e){if(this.gapIntersection&&(e.length!=this.gaps.length||this.gaps.some((t,n)=>t!=e[n]))){this.gapIntersection.disconnect();for(let t of e)this.gapIntersection.observe(t);this.gaps=e}}onSelectionChange(e){let t=this.selectionChanged;if(!this.readSelectionRange()||this.delayedAndroidKey)return;let{view:n}=this,r=this.selectionRange;if(n.state.facet(Sj)?n.root.activeElement!=this.dom:!Hk(this.dom,r))return;let i=r.anchorNode&&n.docView.nearest(r.anchorNode);if(i&&i.ignoreEvent(e)){t||(this.selectionChanged=!1);return}(LA.ie&&LA.ie_version<=11||LA.android&&LA.chrome)&&!n.state.selection.main.empty&&r.focusNode&&Wk(r.focusNode,r.focusOffset,r.anchorNode,r.anchorOffset)?this.flushSoon():this.flush(!1)}readSelectionRange(){let{view:e}=this,t=Bk(e.root);if(!t)return!1;let n=LA.safari&&e.root.nodeType==11&&e.root.activeElement==this.dom&&$2e(this.view,t)||t;if(!n||this.selectionRange.eq(n))return!1;let r=Hk(this.dom,n);return r&&!this.selectionChanged&&e.inputState.lastFocusTime>Date.now()-200&&e.inputState.lastTouchTime{let e=this.delayedAndroidKey;e&&(this.clearDelayedAndroidKey(),this.view.inputState.lastKeyCode=e.keyCode,this.view.inputState.lastKeyTime=Date.now(),!this.flush()&&e.force&&Xk(this.dom,e.key,e.keyCode))};this.flushingAndroidKey=this.view.win.requestAnimationFrame(e)}(!this.delayedAndroidKey||e==`Enter`)&&(this.delayedAndroidKey={key:e,keyCode:t,force:this.lastChange{this.delayedFlush=-1,this.flush()}))}forceFlush(){this.delayedFlush>=0&&(this.view.win.cancelAnimationFrame(this.delayedFlush),this.delayedFlush=-1),this.flush()}pendingRecords(){for(let e of this.observer.takeRecords())this.queue.push(e);return this.queue}processRecords(){let e=this.pendingRecords();e.length&&(this.queue=[]);let t=-1,n=-1,r=!1;for(let i of e){let e=this.readMutation(i);e&&(e.typeOver&&(r=!0),t==-1?{from:t,to:n}=e:(t=Math.min(e.from,t),n=Math.max(e.to,n)))}return{from:t,to:n,typeOver:r}}readChange(){let{from:e,to:t,typeOver:n}=this.processRecords(),r=this.selectionChanged&&Hk(this.dom,this.selectionRange);if(e<0&&!r)return null;e>-1&&(this.lastChange=Date.now()),this.view.inputState.lastFocusTime=0,this.selectionChanged=!1;let i=new F4e(this.view,e,t,n);return this.view.docView.domChanged={newSel:i.newSel?i.newSel.main:null},i}flush(e=!0){if(this.delayedFlush>=0||this.delayedAndroidKey)return!1;e&&this.readSelectionRange();let t=this.readChange();if(!t)return this.view.requestMeasure(),!1;let n=this.view.state,r=v2e(this.view,t);return this.view.state==n&&(t.domChanged||t.newSel&&!t.newSel.main.eq(this.view.state.selection.main))&&this.view.update([]),r}readMutation(e){let t=this.view.docView.nearest(e.target);if(!t||t.ignoreMutation(e))return null;if(t.markDirty(e.type==`attributes`),e.type==`attributes`&&(t.flags|=4),e.type==`childList`){let n=Z2e(t,e.previousSibling||e.target.previousSibling,-1),r=Z2e(t,e.nextSibling||e.target.nextSibling,1);return{from:n?t.posAfter(n):t.posAtStart,to:r?t.posBefore(r):t.posAtEnd,typeOver:!1}}else if(e.type==`characterData`)return{from:t.posAtStart,to:t.posAtEnd,typeOver:e.target.nodeValue==e.oldValue};else return null}setWindow(e){e!=this.win&&(this.removeWindowListeners(this.win),this.win=e,this.addWindowListeners(this.win))}addWindowListeners(e){e.addEventListener(`resize`,this.onResize),this.printQuery?this.printQuery.addEventListener?this.printQuery.addEventListener(`change`,this.onPrint):this.printQuery.addListener(this.onPrint):e.addEventListener(`beforeprint`,this.onPrint),e.addEventListener(`scroll`,this.onScroll),e.document.addEventListener(`selectionchange`,this.onSelectionChange)}removeWindowListeners(e){e.removeEventListener(`scroll`,this.onScroll),e.removeEventListener(`resize`,this.onResize),this.printQuery?this.printQuery.removeEventListener?this.printQuery.removeEventListener(`change`,this.onPrint):this.printQuery.removeListener(this.onPrint):e.removeEventListener(`beforeprint`,this.onPrint),e.document.removeEventListener(`selectionchange`,this.onSelectionChange)}update(e){this.editContext&&(this.editContext.update(e),e.startState.facet(Sj)!=e.state.facet(Sj)&&(e.view.contentDOM.editContext=e.state.facet(Sj)?this.editContext.editContext:null))}destroy(){var e,t,n;this.stop(),(e=this.intersection)==null||e.disconnect(),(t=this.gapIntersection)==null||t.disconnect(),(n=this.resizeScroll)==null||n.disconnect();for(let e of this.scrollTargets)e.removeEventListener(`scroll`,this.onScroll);this.removeWindowListeners(this.win),clearTimeout(this.parentCheck),clearTimeout(this.resizeTimeout),this.win.cancelAnimationFrame(this.delayedFlush),this.win.cancelAnimationFrame(this.flushingAndroidKey),this.editContext&&(this.view.contentDOM.editContext=null,this.editContext.destroy())}},Z4e=class{constructor(e){this.from=0,this.to=0,this.pendingContextChange=null,this.handlers=Object.create(null),this.composing=null,this.resetRange(e.state);let t=this.editContext=new window.EditContext({text:e.state.doc.sliceString(this.from,this.to),selectionStart:this.toContextPos(Math.max(this.from,Math.min(this.to,e.state.selection.main.anchor))),selectionEnd:this.toContextPos(e.state.selection.main.head)});this.handlers.textupdate=t=>{let{anchor:n}=e.state.selection.main,r=this.toEditorPos(t.updateRangeStart),i=this.toEditorPos(t.updateRangeEnd);e.inputState.composing>=0&&!this.composing&&(this.composing={contextBase:t.updateRangeStart,editorBase:r,drifted:!1});let a={from:r,to:i,insert:BO.of(t.text.split(` +`))};if(a.from==this.from&&nthis.to&&(a.to=n),!(a.from==a.to&&!a.insert.length)){if(this.pendingContextChange=a,!e.state.readOnly){let n=this.to-this.from+(a.to-a.from+a.insert.length);uA(e,a,QO.single(this.toEditorPos(t.selectionStart,n),this.toEditorPos(t.selectionEnd,n)))}this.pendingContextChange&&(this.revertPending(e.state),this.setSelection(e.state))}},this.handlers.characterboundsupdate=n=>{let r=[],i=null;for(let t=this.toEditorPos(n.rangeStart),a=this.toEditorPos(n.rangeEnd);t{let n=[];for(let e of t.getTextFormats()){let t=e.underlineStyle,r=e.underlineThickness;if(t!=`None`&&r!=`None`){let i=this.toEditorPos(e.rangeStart),a=this.toEditorPos(e.rangeEnd);if(i{e.inputState.composing<0&&(e.inputState.composing=0,e.inputState.compositionFirstChange=!0)},this.handlers.compositionend=()=>{if(e.inputState.composing=-1,e.inputState.compositionFirstChange=null,this.composing){let{drifted:t}=this.composing;this.composing=null,t&&this.reset(e.state)}};for(let e in this.handlers)t.addEventListener(e,this.handlers[e]);this.measureReq={read:e=>{this.editContext.updateControlBounds(e.contentDOM.getBoundingClientRect());let t=Bk(e.root);t&&t.rangeCount&&this.editContext.updateSelectionBounds(t.getRangeAt(0).getBoundingClientRect())}}}applyEdits(e){let t=0,n=!1,r=this.pendingContextChange;return e.changes.iterChanges((i,a,o,s,c)=>{if(n)return;let l=c.length-(a-i);if(r&&a>=r.to)if(r.from==i&&r.to==a&&r.insert.eq(c)){r=this.pendingContextChange=null,t+=l,this.to+=l;return}else r=null,this.revertPending(e.state);if(i+=t,a+=t,a<=this.from)this.from+=l,this.to+=l;else if(ithis.to||this.to-this.from+c.length>3e4){n=!0;return}this.editContext.updateText(this.toContextPos(i),this.toContextPos(a),c.toString()),this.to+=l}t+=l}),r&&!n&&this.revertPending(e.state),!n}update(e){let t=this.pendingContextChange;this.composing&&(this.composing.drifted||e.transactions.some(e=>!e.isUserEvent(`input.type`)&&e.changes.touchesRange(this.from,this.to)))?(this.composing.drifted=!0,this.composing.editorBase=e.changes.mapPos(this.composing.editorBase)):!this.applyEdits(e)||!this.rangeIsValid(e.state)?(this.pendingContextChange=null,this.reset(e.state)):(e.docChanged||e.selectionSet||t)&&this.setSelection(e.state),(e.geometryChanged||e.docChanged||e.selectionSet)&&e.view.requestMeasure(this.measureReq)}resetRange(e){let{head:t}=e.selection.main;this.from=Math.max(0,t-1e4),this.to=Math.min(e.doc.length,t+1e4)}reset(e){this.resetRange(e),this.editContext.updateText(0,this.editContext.text.length,e.doc.sliceString(this.from,this.to)),this.setSelection(e)}revertPending(e){let t=this.pendingContextChange;this.pendingContextChange=null,this.editContext.updateText(this.toContextPos(t.from),this.toContextPos(t.from+t.insert.length),e.doc.sliceString(t.from,t.to))}setSelection(e){let{main:t}=e.selection,n=this.toContextPos(Math.max(this.from,Math.min(this.to,t.anchor))),r=this.toContextPos(t.head);(this.editContext.selectionStart!=n||this.editContext.selectionEnd!=r)&&this.editContext.updateSelection(n,r)}rangeIsValid(e){let{head:t}=e.selection.main;return!(this.from>0&&t-this.from<500||this.to1e4*3)}toEditorPos(e,t=this.to-this.from){e=Math.min(e,t);let n=this.composing;return n&&n.drifted?n.editorBase+(e-n.contextBase):e+this.from}toContextPos(e){let t=this.composing;return t&&t.drifted?t.contextBase+(e-t.editorBase):e-this.from}destroy(){for(let e in this.handlers)this.editContext.removeEventListener(e,this.handlers[e])}},vM=class e{get state(){return this.viewState.state}get viewport(){return this.viewState.viewport}get visibleRanges(){return this.viewState.visibleRanges}get inView(){return this.viewState.inView}get composing(){return this.inputState.composing>0}get compositionStarted(){return this.inputState.composing>=0}get root(){return this._root}get win(){return this.dom.ownerDocument.defaultView||window}constructor(e={}){this.plugins=[],this.pluginMap=new Map,this.editorAttrs={},this.contentAttrs={},this.bidiCache=[],this.destroyed=!1,this.updateState=2,this.measureScheduled=-1,this.measureRequests=[],this.contentDOM=document.createElement(`div`),this.scrollDOM=document.createElement(`div`),this.scrollDOM.tabIndex=-1,this.scrollDOM.className=`cm-scroller`,this.scrollDOM.appendChild(this.contentDOM),this.announceDOM=document.createElement(`div`),this.announceDOM.className=`cm-announced`,this.announceDOM.setAttribute(`aria-live`,`polite`),this.dom=document.createElement(`div`),this.dom.appendChild(this.announceDOM),this.dom.appendChild(this.scrollDOM),e.parent&&e.parent.appendChild(this.dom);let{dispatch:t}=e;this.dispatchTransactions=e.dispatchTransactions||t&&(e=>e.forEach(e=>t(e,this)))||(e=>this.update(e)),this.dispatch=this.dispatch.bind(this),this._root=e.root||x0e(e.parent)||document,this.viewState=new cM(e.state||Sk.create(e)),e.scrollTo&&e.scrollTo.is(bj)&&(this.viewState.scrollTarget=e.scrollTo.value.clip(this.viewState.state)),this.plugins=this.state.facet(Cj).map(e=>new Tj(e));for(let e of this.plugins)e.update(this);this.observer=new X4e(this),this.inputState=new I4e(this),this.inputState.ensureHandlers(this.plugins),this.docView=new Ij(this),this.mountStyles(),this.updateAttrs(),this.updateState=0,this.requestMeasure(),document.fonts?.ready&&document.fonts.ready.then(()=>this.requestMeasure())}dispatch(...e){let t=e.length==1&&e[0]instanceof yk?e:e.length==1&&Array.isArray(e[0])?e[0]:[this.state.update(...e)];this.dispatchTransactions(t,this)}update(e){if(this.updateState!=0)throw Error(`Calls to EditorView.update are not allowed while an update is in progress`);let t=!1,n=!1,r,i=this.state;for(let t of e){if(t.startState!=i)throw RangeError(`Trying to update state with a transaction that doesn't start from the previous state.`);i=t.state}if(this.destroyed){this.viewState.state=i;return}let a=this.hasFocus,o=0,s=null;e.some(e=>e.annotation(Xj))?(this.inputState.notifiedFocused=a,o=1):a!=this.inputState.notifiedFocused&&(this.inputState.notifiedFocused=a,s=V2e(i,a),s||(o=1));let c=this.observer.delayedAndroidKey,l=null;if(c?(this.observer.clearDelayedAndroidKey(),l=this.observer.readChange(),(l&&!this.state.doc.eq(i.doc)||!this.state.selection.eq(i.selection))&&(l=null)):this.observer.clear(),i.facet(Sk.phrases)!=this.state.facet(Sk.phrases))return this.setState(i);r=Fj.create(this,i,e),r.flags|=o;let u=this.viewState.scrollTarget;try{this.updateState=2;for(let t of e){if(u&&=u.map(t.changes),t.scrollIntoView){let{main:e}=t.state.selection;u=new yj(e.empty?e:QO.cursor(e.head,e.head>e.anchor?-1:1))}for(let e of t.effects)e.is(bj)&&(u=e.value.clip(this.state))}this.viewState.update(r,u),this.bidiCache=bM.update(this.bidiCache,r.changes),r.empty||(this.updatePlugins(r),this.inputState.update(r)),t=this.docView.update(r),this.state.facet(Nj)!=this.styleModules&&this.mountStyles(),n=this.updateAttrs(),this.showAnnouncements(e),this.docView.updateSelection(t,e.some(e=>e.isUserEvent(`select.pointer`)))}finally{this.updateState=0}if(r.startState.facet(dM)!=r.state.facet(dM)&&(this.viewState.mustMeasureContent=!0),(t||n||u||this.viewState.mustEnforceCursorAssoc||this.viewState.mustMeasureContent)&&this.requestMeasure(),t&&this.docViewUpdate(),!r.empty)for(let e of this.state.facet(fj))try{e(r)}catch(e){iA(this.state,e,`update listener`)}(s||l)&&Promise.resolve().then(()=>{s&&this.state==s.startState&&this.dispatch(s),l&&!v2e(this,l)&&c.force&&Xk(this.contentDOM,c.key,c.keyCode)})}setState(e){if(this.updateState!=0)throw Error(`Calls to EditorView.setState are not allowed while an update is in progress`);if(this.destroyed){this.viewState.state=e;return}this.updateState=2;let t=this.hasFocus;try{for(let e of this.plugins)e.destroy(this);this.viewState=new cM(e),this.plugins=e.facet(Cj).map(e=>new Tj(e)),this.pluginMap.clear();for(let e of this.plugins)e.update(this);this.docView.destroy(),this.docView=new Ij(this),this.inputState.ensureHandlers(this.plugins),this.mountStyles(),this.updateAttrs(),this.bidiCache=[]}finally{this.updateState=0}t&&this.focus(),this.requestMeasure()}updatePlugins(e){let t=e.startState.facet(Cj),n=e.state.facet(Cj);if(t!=n){let r=[];for(let i of n){let n=t.indexOf(i);if(n<0)r.push(new Tj(i));else{let t=this.plugins[n];t.mustUpdate=e,r.push(t)}}for(let t of this.plugins)t.mustUpdate!=e&&t.destroy(this);this.plugins=r,this.pluginMap.clear()}else for(let t of this.plugins)t.mustUpdate=e;for(let e=0;e-1&&this.win.cancelAnimationFrame(this.measureScheduled),this.observer.delayedAndroidKey){this.measureScheduled=-1,this.requestMeasure();return}this.measureScheduled=0,e&&this.observer.forceFlush();let t=null,n=this.scrollDOM,r=n.scrollTop*this.scaleY,{scrollAnchorPos:i,scrollAnchorHeight:a}=this.viewState;Math.abs(r-this.viewState.scrollTop)>1&&(a=-1),this.viewState.scrollAnchorHeight=-1;try{for(let e=0;;e++){if(a<0)if(w0e(n))i=-1,a=this.viewState.heightMap.height;else{let e=this.viewState.scrollAnchorAt(r);i=e.from,a=e.top}this.updateState=1;let o=this.viewState.measure(this);if(!o&&!this.measureRequests.length&&this.viewState.scrollTarget==null)break;if(e>5){console.warn(this.measureRequests.length?`Measure loop restarted more than 5 times`:`Viewport failed to stabilize`);break}let s=[];o&4||([this.measureRequests,s]=[s,this.measureRequests]);let c=s.map(e=>{try{return e.read(this)}catch(e){return iA(this.state,e),yM}}),l=Fj.create(this,this.state,[]),u=!1;l.flags|=o,t?t.flags|=o:t=l,this.updateState=2,l.empty||(this.updatePlugins(l),this.inputState.update(l),this.updateAttrs(),u=this.docView.update(l),u&&this.docViewUpdate());for(let e=0;e1||e<-1){r+=e,n.scrollTop=r/this.scaleY,a=-1;continue}}break}}}finally{this.updateState=0,this.measureScheduled=-1}if(t&&!t.empty)for(let e of this.state.facet(fj))e(t)}get themeClasses(){return pM+` `+(this.state.facet(fM)?hM:mM)+` `+this.state.facet(dM)}updateAttrs(){let e=e4e(this,Ej,{class:`cm-editor`+(this.hasFocus?` cm-focused `:` `)+this.themeClasses}),t={spellcheck:`false`,autocorrect:`off`,autocapitalize:`off`,writingsuggestions:`false`,translate:`no`,contenteditable:this.state.facet(Sj)?`true`:`false`,class:`cm-content`,style:`${LA.tabSize}: ${this.state.tabSize}`,role:`textbox`,"aria-multiline":`true`};this.state.readOnly&&(t[`aria-readonly`]=`true`),e4e(this,Dj,t);let n=this.observer.ignore(()=>{let n=$k(this.contentDOM,this.contentAttrs,t),r=$k(this.dom,this.editorAttrs,e);return n||r});return this.editorAttrs=e,this.contentAttrs=t,n}showAnnouncements(t){let n=!0;for(let r of t)for(let t of r.effects)if(t.is(e.announce)){n&&(this.announceDOM.textContent=``),n=!1;let e=this.announceDOM.appendChild(document.createElement(`div`));e.textContent=t.value}}mountStyles(){this.styleModules=this.state.facet(Nj);let t=this.state.facet(e.cspNonce);Fk.mount(this.root,this.styleModules.concat(J4e).reverse(),t?{nonce:t}:void 0)}readMeasured(){if(this.updateState==2)throw Error(`Reading the editor layout isn't allowed during an update`);this.updateState==0&&this.measureScheduled>-1&&this.measure(!1)}requestMeasure(e){if(this.measureScheduled<0&&(this.measureScheduled=this.win.requestAnimationFrame(()=>this.measure())),e){if(this.measureRequests.indexOf(e)>-1)return;if(e.key!=null){for(let t=0;tt.spec==e)||null),t&&t.update(this).value}get documentTop(){return this.contentDOM.getBoundingClientRect().top+this.viewState.paddingTop}get documentPadding(){return{top:this.viewState.paddingTop,bottom:this.viewState.paddingBottom}}get scaleX(){return this.viewState.scaleX}get scaleY(){return this.viewState.scaleY}elementAtHeight(e){return this.readMeasured(),this.viewState.elementAtHeight(e)}lineBlockAtHeight(e){return this.readMeasured(),this.viewState.lineBlockAtHeight(e)}get viewportLineBlocks(){return this.viewState.viewportLines}lineBlockAt(e){return this.viewState.lineBlockAt(e)}get contentHeight(){return this.viewState.contentHeight}moveByChar(e,t,n){return lA(this,e,m2e(this,e,t,n))}moveByGroup(e,t){return lA(this,e,m2e(this,e,t,t=>h2e(this,e.head,t)))}visualLineSide(e,t){let n=this.bidiSpans(e),r=this.textDirectionAt(e.from),i=n[t?n.length-1:0];return QO.cursor(i.side(t,r)+e.from,i.forward(!t,r)?1:-1)}moveToLineBoundary(e,t,n=!0){return p2e(this,e,t,n)}moveVertically(e,t,n){return lA(this,e,g2e(this,e,t,n))}domAtPos(e){return this.docView.domAtPos(e)}posAtDOM(e,t=0){return this.docView.posFromDOM(e,t)}posAtCoords(e,t=!0){return this.readMeasured(),c2e(this,e,t)}coordsAtPos(e,t=1){this.readMeasured();let n=this.docView.coordsAt(e,t);if(!n||n.left==n.right)return n;let r=this.state.doc.lineAt(e),i=this.bidiSpans(r),a=i[aj.find(i,e-r.from,-1,t)];return Jk(n,a.dir==ej.LTR==t>0)}coordsForChar(e){return this.readMeasured(),this.docView.coordsForChar(e)}get defaultCharacterWidth(){return this.viewState.heightOracle.charWidth}get defaultLineHeight(){return this.viewState.heightOracle.lineHeight}get textDirection(){return this.viewState.defaultTextDirection}textDirectionAt(e){return!this.state.facet(_j)||ethis.viewport.to?this.textDirection:(this.readMeasured(),this.docView.textDirectionAt(e))}get lineWrapping(){return this.viewState.heightOracle.lineWrapping}bidiSpans(e){if(e.length>Q4e)return G0e(e.length);let t=this.textDirectionAt(e.from),n;for(let r of this.bidiCache)if(r.from==e.from&&r.dir==t&&(r.fresh||B0e(r.isolates,n=J0e(this,e))))return r.order;n||=J0e(this,e);let r=W0e(e.text,t,n);return this.bidiCache.push(new bM(e.from,e.to,t,n,!0,r)),r}get hasFocus(){return(this.dom.ownerDocument.hasFocus()||LA.safari&&this.inputState?.lastContextMenu>Date.now()-3e4)&&this.root.activeElement==this.contentDOM}focus(){this.observer.ignore(()=>{b0e(this.contentDOM),this.docView.updateSelection()})}setRoot(e){this._root!=e&&(this._root=e,this.observer.setWindow((e.nodeType==9?e:e.ownerDocument).defaultView||window),this.mountStyles())}destroy(){this.root.activeElement==this.contentDOM&&this.contentDOM.blur();for(let e of this.plugins)e.destroy(this);this.plugins=[],this.inputState.destroy(),this.docView.destroy(),this.dom.remove(),this.observer.destroy(),this.measureScheduled>-1&&this.win.cancelAnimationFrame(this.measureScheduled),this.destroyed=!0}static scrollIntoView(e,t={}){return bj.of(new yj(typeof e==`number`?QO.cursor(e):e,t.y,t.x,t.yMargin,t.xMargin))}scrollSnapshot(){let{scrollTop:e,scrollLeft:t}=this.scrollDOM,n=this.viewState.scrollAnchorAt(e);return bj.of(new yj(QO.cursor(n.from),`start`,`start`,n.top-e,t,!0))}setTabFocusMode(e){e==null?this.inputState.tabFocusMode=this.inputState.tabFocusMode<0?0:-1:typeof e==`boolean`?this.inputState.tabFocusMode=e?0:-1:this.inputState.tabFocusMode!=0&&(this.inputState.tabFocusMode=Date.now()+e)}static domEventHandlers(e){return wj.define(()=>({}),{eventHandlers:e})}static domEventObservers(e){return wj.define(()=>({}),{eventObservers:e})}static theme(e,t){let n=Fk.newName(),r=[dM.of(n),Nj.of(_A(`.${n}`,e))];return t&&t.dark&&r.push(fM.of(!0)),r}static baseTheme(e){return ak.lowest(Nj.of(_A(`.`+pM,e,gM)))}static findFromDOM(e){let t=e.querySelector(`.cm-content`);return(t&&wA.get(t)||wA.get(e))?.rootView?.view||null}},vM.styleModule=Nj,vM.inputHandler=pj,vM.clipboardInputFilter=hj,vM.clipboardOutputFilter=gj,vM.scrollHandler=vj,vM.focusChangeEffect=mj,vM.perLineTextDirection=_j,vM.exceptionSink=dj,vM.updateListener=fj,vM.editable=Sj,vM.mouseSelectionStyle=uj,vM.dragMovesSelection=lj,vM.clickAddsSelectionRange=cj,vM.decorations=Oj,vM.outerDecorations=kj,vM.atomicRanges=Aj,vM.bidiIsolatedRanges=jj,vM.scrollMargins=Mj,vM.darkTheme=fM,vM.cspNonce=ek.define({combine:e=>e.length?e[0]:``}),vM.contentAttributes=Dj,vM.editorAttributes=Ej,vM.lineWrapping=vM.contentAttributes.of({class:`cm-lineWrapping`}),vM.announce=vk.define(),Q4e=4096,yM={},bM=class e{constructor(e,t,n,r,i,a){this.from=e,this.to=t,this.dir=n,this.isolates=r,this.fresh=i,this.order=a}static update(t,n){if(n.empty&&!t.some(e=>e.fresh))return t;let r=[],i=t.length?t[t.length-1].dir:ej.LTR;for(let a=Math.max(0,t.length-10);ar(i,n,n+e[0].length,e,t);else if(typeof n==`function`)this.addMatch=(e,t,r,i)=>{let a=n(e,t,r);a&&i(r,r+e[0].length,a)};else if(n)this.addMatch=(e,t,r,i)=>i(r,r+e[0].length,n);else throw RangeError(`Either 'decorate' or 'decoration' should be provided to MatchDecorator`);this.boundary=i,this.maxLength=a}createDeco(e){let t=new Ek,n=t.add.bind(t);for(let{from:t,to:r}of o4e(e,this.maxLength))a4e(e.state.doc,this.regexp,t,r,(t,r)=>this.addMatch(r,e,t,n));return t.finish()}updateDeco(e,t){let n=1e9,r=-1;return e.docChanged&&e.changes.iterChanges((t,i,a,o)=>{o>e.view.viewport.from&&a1e3?this.createDeco(e.view):r>-1?this.updateRange(e.view,t.map(e.changes),n,r):t}updateRange(e,t,n,r){for(let i of e.visibleRanges){let a=Math.max(i.from,n),o=Math.min(i.to,r);if(o>a){let n=e.state.doc.lineAt(a),r=n.ton.from;a--)if(this.boundary.test(n.text[a-1-n.from])){s=a;break}for(;ol.push(n.range(e,t));if(n==r)for(this.regexp.lastIndex=s-n.from;(u=this.regexp.exec(n.text))&&u.indexthis.addMatch(n,e,t,d));t=t.update({filterFrom:s,filterTo:c,filter:(e,t)=>ec,add:l})}}return t}},DM=/x/.unicode==null?`g`:`gu`,r3e=RegExp(`[\0-\b +--Ÿ­؜​‎‏\u2028\u2029‭‮⁦⁧⁩-]`,DM),i3e={0:`null`,7:`bell`,8:`backspace`,10:`newline`,11:`vertical tab`,13:`carriage return`,27:`escape`,8203:`zero width space`,8204:`zero width non-joiner`,8205:`zero width joiner`,8206:`left-to-right mark`,8207:`right-to-left mark`,8232:`line separator`,8237:`left-to-right override`,8238:`right-to-left override`,8294:`left-to-right isolate`,8295:`right-to-left isolate`,8297:`pop directional isolate`,8233:`paragraph separator`,65279:`zero width no-break space`,65532:`object replacement`},OM=null,kM=ek.define({combine(e){let t=NO(e,{render:null,specialChars:r3e,addSpecialChars:null});return(t.replaceTabs=!s4e())&&(t.specialChars=RegExp(` |`+t.specialChars.source,DM)),t.addSpecialChars&&(t.specialChars=RegExp(t.specialChars.source+`|`+t.addSpecialChars.source,DM)),t}}),a3e=null,o3e=`•`,s3e=class extends UA{constructor(e,t){super(),this.options=e,this.code=t}eq(e){return e.code==this.code}toDOM(e){let t=u4e(this.code),n=e.state.phrase(`Control character`)+` `+(i3e[this.code]||`0x`+this.code.toString(16)),r=this.options.render&&this.options.render(this.code,n,t);if(r)return r;let i=document.createElement(`span`);return i.textContent=t,i.title=n,i.setAttribute(`aria-label`,n),i.className=`cm-specialChar`,i}ignoreEvent(){return!1}},c3e=class extends UA{constructor(e){super(),this.width=e}eq(e){return e.width==this.width}toDOM(){let e=document.createElement(`span`);return e.textContent=` `,e.className=`cm-tab`,e.style.width=this.width+`px`,e}ignoreEvent(){return!1}},l3e=class extends UA{constructor(e){super(),this.content=e}toDOM(e){let t=document.createElement(`span`);return t.className=`cm-placeholder`,t.style.pointerEvents=`none`,t.appendChild(typeof this.content==`string`?document.createTextNode(this.content):typeof this.content==`function`?this.content(e):this.content.cloneNode(!0)),typeof this.content==`string`?t.setAttribute(`aria-label`,`placeholder `+this.content):t.setAttribute(`aria-hidden`,`true`),t}coordsAt(e){let t=e.firstChild?Uk(e.firstChild):[];if(!t.length)return null;let n=window.getComputedStyle(e.parentNode),r=Jk(t[0],n.direction!=`rtl`),i=parseInt(n.lineHeight);return r.bottom-r.top>i*1.5?{left:r.left,right:r.right,top:r.top,bottom:r.top+i}:r}ignoreEvent(){return!1}},AM=`-10000px`,jM=class{constructor(e,t,n,r){this.facet=t,this.createTooltipView=n,this.removeTooltipView=r,this.input=e.state.facet(t),this.tooltips=this.input.filter(e=>e);let i=null;this.tooltipViews=this.tooltips.map(e=>i=n(e,i))}update(e,t){var n;let r=e.state.facet(this.facet),i=r.filter(e=>e);if(r===this.input){for(let t of this.tooltipViews)t.update&&t.update(e);return!1}let a=[],o=t?[]:null;for(let n=0;nt[n]=e),t.length=o.length),this.input=r,this.tooltips=i,this.tooltipViews=a,!0}},MM=ek.define({combine:e=>({position:LA.ios?`absolute`:e.find(e=>e.position)?.position||`fixed`,parent:e.find(e=>e.parent)?.parent||null,tooltipSpace:e.find(e=>e.tooltipSpace)?.tooltipSpace||f4e})}),NM=new WeakMap,PM=wj.fromClass(class{constructor(e){this.view=e,this.above=[],this.inView=!0,this.madeAbsolute=!1,this.lastTransaction=0,this.measureTimeout=-1;let t=e.state.facet(MM);this.position=t.position,this.parent=t.parent,this.classes=e.themeClasses,this.createContainer(),this.measureReq={read:this.readMeasure.bind(this),write:this.writeMeasure.bind(this),key:this},this.resizeObserver=typeof ResizeObserver==`function`?new ResizeObserver(()=>this.measureSoon()):null,this.manager=new jM(e,FM,(e,t)=>this.createTooltip(e,t),e=>{this.resizeObserver&&this.resizeObserver.unobserve(e.dom),e.dom.remove()}),this.above=this.manager.tooltips.map(e=>!!e.above),this.intersectionObserver=typeof IntersectionObserver==`function`?new IntersectionObserver(e=>{Date.now()>this.lastTransaction-50&&e.length>0&&e[e.length-1].intersectionRatio<1&&this.measureSoon()},{threshold:[1]}):null,this.observeIntersection(),e.win.addEventListener(`resize`,this.measureSoon=this.measureSoon.bind(this)),this.maybeMeasure()}createContainer(){this.parent?(this.container=document.createElement(`div`),this.container.style.position=`relative`,this.container.className=this.view.themeClasses,this.parent.appendChild(this.container)):this.container=this.view.dom}observeIntersection(){if(this.intersectionObserver){this.intersectionObserver.disconnect();for(let e of this.manager.tooltipViews)this.intersectionObserver.observe(e.dom)}}measureSoon(){this.measureTimeout<0&&(this.measureTimeout=setTimeout(()=>{this.measureTimeout=-1,this.maybeMeasure()},50))}update(e){e.transactions.length&&(this.lastTransaction=Date.now());let t=this.manager.update(e,this.above);t&&this.observeIntersection();let n=t||e.geometryChanged,r=e.state.facet(MM);if(r.position!=this.position&&!this.madeAbsolute){this.position=r.position;for(let e of this.manager.tooltipViews)e.dom.style.position=this.position;n=!0}if(r.parent!=this.parent){this.parent&&this.container.remove(),this.parent=r.parent,this.createContainer();for(let e of this.manager.tooltipViews)this.container.appendChild(e.dom);n=!0}else this.parent&&this.view.themeClasses!=this.classes&&(this.classes=this.container.className=this.view.themeClasses);n&&this.maybeMeasure()}createTooltip(e,t){let n=e.create(this.view),r=t?t.dom:null;if(n.dom.classList.add(`cm-tooltip`),e.arrow&&!n.dom.querySelector(`.cm-tooltip > .cm-tooltip-arrow`)){let e=document.createElement(`div`);e.className=`cm-tooltip-arrow`,n.dom.appendChild(e)}return n.dom.style.position=this.position,n.dom.style.top=AM,n.dom.style.left=`0px`,this.container.insertBefore(n.dom,r),n.mount&&n.mount(this.view),this.resizeObserver&&this.resizeObserver.observe(n.dom),n}destroy(){var e,t,n;this.view.win.removeEventListener(`resize`,this.measureSoon);for(let t of this.manager.tooltipViews)t.dom.remove(),(e=t.destroy)==null||e.call(t);this.parent&&this.container.remove(),(t=this.resizeObserver)==null||t.disconnect(),(n=this.intersectionObserver)==null||n.disconnect(),clearTimeout(this.measureTimeout)}readMeasure(){let e=1,t=1,n=!1;if(this.position==`fixed`&&this.manager.tooltipViews.length){let{dom:e}=this.manager.tooltipViews[0];if(LA.gecko)n=e.offsetParent!=this.container.ownerDocument.body;else if(e.style.top==AM&&e.style.left==`0px`){let t=e.getBoundingClientRect();n=Math.abs(t.top+1e4)>1||Math.abs(t.left)>1}}if(n||this.position==`absolute`)if(this.parent){let n=this.parent.getBoundingClientRect();n.width&&n.height&&(e=n.width/this.parent.offsetWidth,t=n.height/this.parent.offsetHeight)}else({scaleX:e,scaleY:t}=this.view.viewState);let r=this.view.scrollDOM.getBoundingClientRect(),i=aA(this.view);return{visible:{left:r.left+i.left,top:r.top+i.top,right:r.right-i.right,bottom:r.bottom-i.bottom},parent:this.parent?this.container.getBoundingClientRect():this.view.dom.getBoundingClientRect(),pos:this.manager.tooltips.map((e,t)=>{let n=this.manager.tooltipViews[t];return n.getCoords?n.getCoords(e.pos):this.view.coordsAtPos(e.pos)}),size:this.manager.tooltipViews.map(({dom:e})=>e.getBoundingClientRect()),space:this.view.state.facet(MM).tooltipSpace(this.view),scaleX:e,scaleY:t,makeAbsolute:n}}writeMeasure(e){if(e.makeAbsolute){this.madeAbsolute=!0,this.position=`absolute`;for(let e of this.manager.tooltipViews)e.dom.style.position=`absolute`}let{visible:t,space:n,scaleX:r,scaleY:i}=e,a=[];for(let o=0;o=Math.min(t.bottom,n.bottom)||u.rightMath.min(t.right,n.right)+.1)){l.style.top=AM;continue}let f=s.arrow?c.dom.querySelector(`.cm-tooltip-arrow`):null,p=f?7:0,m=d.right-d.left,h=NM.get(c)??d.bottom-d.top,g=c.offset||d3e,_=this.view.textDirection==ej.LTR,v=d.width>n.right-n.left?_?n.left:n.right-d.width:_?Math.max(n.left,Math.min(u.left-(f?14:0)+g.x,n.right-m)):Math.min(Math.max(n.left,u.left-m+(f?14:0)-g.x),n.right-m),y=this.above[o];!s.strictSide&&(y?u.top-h-p-g.yn.bottom)&&y==n.bottom-u.bottom>u.top-n.top&&(y=this.above[o]=!y);let b=(y?u.top-n.top:n.bottom-u.bottom)-p;if(bv&&e.topee&&(ee=y?e.top-h-2-p:e.bottom+p+2);if(this.position==`absolute`?(l.style.top=(ee-e.parent.top)/i+`px`,p4e(l,(v-e.parent.left)/r)):(l.style.top=ee/i+`px`,p4e(l,v/r)),f){let e=u.left+(_?g.x:-g.x)-(v+14-7);f.style.left=e/r+`px`}c.overlap!==!0&&a.push({left:v,top:ee,right:te,bottom:ee+h}),l.classList.toggle(`cm-tooltip-above`,y),l.classList.toggle(`cm-tooltip-below`,!y),c.positioned&&c.positioned(e.space)}}maybeMeasure(){if(this.manager.tooltips.length&&(this.view.inView&&this.view.requestMeasure(this.measureReq),this.inView!=this.view.inView&&(this.inView=this.view.inView,!this.inView)))for(let e of this.manager.tooltipViews)e.dom.style.top=AM}},{eventObservers:{scroll(){this.maybeMeasure()}}}),u3e=vM.baseTheme({".cm-tooltip":{zIndex:500,boxSizing:`border-box`},"&light .cm-tooltip":{border:`1px solid #bbb`,backgroundColor:`#f5f5f5`},"&light .cm-tooltip-section:not(:first-child)":{borderTop:`1px solid #bbb`},"&dark .cm-tooltip":{backgroundColor:`#333338`,color:`white`},".cm-tooltip-arrow":{height:`7px`,width:`14px`,position:`absolute`,zIndex:-1,overflow:`hidden`,"&:before, &:after":{content:`''`,position:`absolute`,width:0,height:0,borderLeft:`7px solid transparent`,borderRight:`7px solid transparent`},".cm-tooltip-above &":{bottom:`-7px`,"&:before":{borderTop:`7px solid #bbb`},"&:after":{borderTop:`7px solid #f5f5f5`,bottom:`1px`}},".cm-tooltip-below &":{top:`-7px`,"&:before":{borderBottom:`7px solid #bbb`},"&:after":{borderBottom:`7px solid #f5f5f5`,top:`1px`}}},"&dark .cm-tooltip .cm-tooltip-arrow":{"&:before":{borderTopColor:`#333338`,borderBottomColor:`#333338`},"&:after":{borderTopColor:`transparent`,borderBottomColor:`transparent`}}}),d3e={x:0,y:0},FM=ek.define({enables:[PM,u3e]}),IM=ek.define({combine:e=>e.reduce((e,t)=>e.concat(t),[])}),LM=class e{static create(t){return new e(t)}constructor(e){this.view=e,this.mounted=!1,this.dom=document.createElement(`div`),this.dom.classList.add(`cm-tooltip-hover`),this.manager=new jM(e,IM,(e,t)=>this.createHostedView(e,t),e=>e.dom.remove())}createHostedView(e,t){let n=e.create(this.view);return n.dom.classList.add(`cm-tooltip-section`),this.dom.insertBefore(n.dom,t?t.dom.nextSibling:this.dom.firstChild),this.mounted&&n.mount&&n.mount(this.view),n}mount(e){for(let t of this.manager.tooltipViews)t.mount&&t.mount(e);this.mounted=!0}positioned(e){for(let t of this.manager.tooltipViews)t.positioned&&t.positioned(e)}update(e){this.manager.update(e)}destroy(){var e;for(let t of this.manager.tooltipViews)(e=t.destroy)==null||e.call(t)}passProp(e){let t;for(let n of this.manager.tooltipViews){let r=n[e];if(r!==void 0){if(t===void 0)t=r;else if(t!==r)return}}return t}get offset(){return this.passProp(`offset`)}get getCoords(){return this.passProp(`getCoords`)}get overlap(){return this.passProp(`overlap`)}get resize(){return this.passProp(`resize`)}},f3e=FM.compute([IM],e=>{let t=e.facet(IM);return t.length===0?null:{pos:Math.min(...t.map(e=>e.pos)),end:Math.max(...t.map(e=>e.end??e.pos)),create:LM.create,above:t[0].above,arrow:t.some(e=>e.arrow)}}),p3e=class{constructor(e,t,n,r,i){this.view=e,this.source=t,this.field=n,this.setHover=r,this.hoverTime=i,this.hoverTimeout=-1,this.restartTimeout=-1,this.pending=null,this.lastMove={x:0,y:0,target:e.dom,time:0},this.checkHover=this.checkHover.bind(this),e.dom.addEventListener(`mouseleave`,this.mouseleave=this.mouseleave.bind(this)),e.dom.addEventListener(`mousemove`,this.mousemove=this.mousemove.bind(this))}update(){this.pending&&(this.pending=null,clearTimeout(this.restartTimeout),this.restartTimeout=setTimeout(()=>this.startHover(),20))}get active(){return this.view.state.field(this.field)}checkHover(){if(this.hoverTimeout=-1,this.active.length)return;let e=Date.now()-this.lastMove.time;en.bottom||t.xn.right+e.defaultCharacterWidth)return;let a=e.bidiSpans(e.state.doc.lineAt(r)).find(e=>e.from<=r&&e.to>=r),o=a&&a.dir==ej.RTL?-1:1;i=t.x{this.pending==t&&(this.pending=null,n&&!(Array.isArray(n)&&!n.length)&&e.dispatch({effects:this.setHover.of(Array.isArray(n)?n:[n])}))},t=>iA(e.state,t,`hover tooltip`))}else a&&!(Array.isArray(a)&&!a.length)&&e.dispatch({effects:this.setHover.of(Array.isArray(a)?a:[a])})}get tooltip(){let e=this.view.plugin(PM),t=e?e.manager.tooltips.findIndex(e=>e.create==LM.create):-1;return t>-1?e.manager.tooltipViews[t]:null}mousemove(e){this.lastMove={x:e.clientX,y:e.clientY,target:e.target,time:Date.now()},this.hoverTimeout<0&&(this.hoverTimeout=setTimeout(this.checkHover,this.hoverTime));let{active:t,tooltip:n}=this;if(t.length&&n&&!m4e(n.dom,e)||this.pending){let{pos:n}=t[0]||this.pending,r=t[0]?.end??n;(n==r?this.view.posAtCoords(this.lastMove)!=n:!h4e(this.view,n,r,e.clientX,e.clientY))&&(this.view.dispatch({effects:this.setHover.of([])}),this.pending=null)}}mouseleave(e){clearTimeout(this.hoverTimeout),this.hoverTimeout=-1;let{active:t}=this;if(t.length){let{tooltip:t}=this;t&&t.dom.contains(e.relatedTarget)?this.watchTooltipLeave(t.dom):this.view.dispatch({effects:this.setHover.of([])})}}watchTooltipLeave(e){let t=n=>{e.removeEventListener(`mouseleave`,t),this.active.length&&!this.view.dom.contains(n.relatedTarget)&&this.view.dispatch({effects:this.setHover.of([])})};e.addEventListener(`mouseleave`,t)}destroy(){clearTimeout(this.hoverTimeout),this.view.dom.removeEventListener(`mouseleave`,this.mouseleave),this.view.dom.removeEventListener(`mousemove`,this.mousemove)}},RM=4,m3e=vk.define(),zM=ek.define({combine(e){let t,n;for(let r of e)t||=r.topContainer,n||=r.bottomContainer;return{topContainer:t,bottomContainer:n}}}),h3e=wj.fromClass(class{constructor(e){this.input=e.state.facet(VM),this.specs=this.input.filter(e=>e),this.panels=this.specs.map(t=>t(e));let t=e.state.facet(zM);this.top=new BM(e,!0,t.topContainer),this.bottom=new BM(e,!1,t.bottomContainer),this.top.sync(this.panels.filter(e=>e.top)),this.bottom.sync(this.panels.filter(e=>!e.top));for(let e of this.panels)e.dom.classList.add(`cm-panel`),e.mount&&e.mount()}update(e){let t=e.state.facet(zM);this.top.container!=t.topContainer&&(this.top.sync([]),this.top=new BM(e.view,!0,t.topContainer)),this.bottom.container!=t.bottomContainer&&(this.bottom.sync([]),this.bottom=new BM(e.view,!1,t.bottomContainer)),this.top.syncClasses(),this.bottom.syncClasses();let n=e.state.facet(VM);if(n!=this.input){let t=n.filter(e=>e),r=[],i=[],a=[],o=[];for(let n of t){let t=this.specs.indexOf(n),s;t<0?(s=n(e.view),o.push(s)):(s=this.panels[t],s.update&&s.update(e)),r.push(s),(s.top?i:a).push(s)}this.specs=t,this.panels=r,this.top.sync(i),this.bottom.sync(a);for(let e of o)e.dom.classList.add(`cm-panel`),e.mount&&e.mount()}else for(let t of this.panels)t.update&&t.update(e)}destroy(){this.top.sync([]),this.bottom.sync([])}},{provide:e=>vM.scrollMargins.of(t=>{let n=t.plugin(e);return n&&{top:n.top.scrollMargin(),bottom:n.bottom.scrollMargin()}})}),BM=class{constructor(e,t,n){this.view=e,this.top=t,this.container=n,this.dom=void 0,this.classes=``,this.panels=[],this.syncClasses()}sync(e){for(let t of this.panels)t.destroy&&e.indexOf(t)<0&&t.destroy();this.panels=e,this.syncDOM()}syncDOM(){if(this.panels.length==0){this.dom&&=(this.dom.remove(),void 0);return}if(!this.dom){this.dom=document.createElement(`div`),this.dom.className=this.top?`cm-panels cm-panels-top`:`cm-panels cm-panels-bottom`,this.dom.style[this.top?`top`:`bottom`]=`0`;let e=this.container||this.view.dom;e.insertBefore(this.dom,this.top?e.firstChild:null)}let e=this.dom.firstChild;for(let t of this.panels)if(t.dom.parentNode==this.dom){for(;e!=t.dom;)e=v4e(e);e=e.nextSibling}else this.dom.insertBefore(t.dom,e);for(;e;)e=v4e(e)}scrollMargin(){return!this.dom||this.container?0:Math.max(0,this.top?this.dom.getBoundingClientRect().bottom-Math.max(0,this.view.scrollDOM.getBoundingClientRect().top):Math.min(innerHeight,this.view.scrollDOM.getBoundingClientRect().bottom)-this.dom.getBoundingClientRect().top)}syncClasses(){if(!(!this.container||this.classes==this.view.themeClasses)){for(let e of this.classes.split(` `))e&&this.container.classList.remove(e);for(let e of(this.classes=this.view.themeClasses).split(` `))e&&this.container.classList.add(e)}}},VM=ek.define({enables:h3e}),HM=class extends Ck{compare(e){return this==e||this.constructor==e.constructor&&this.eq(e)}eq(e){return!1}destroy(e){}},HM.prototype.elementClass=``,HM.prototype.toDOM=void 0,HM.prototype.mapMode=qO.TrackBefore,HM.prototype.startSide=HM.prototype.endSide=-1,HM.prototype.point=!0,UM=ek.define(),g3e=ek.define(),_3e={class:``,renderEmptyElements:!1,elementStyle:``,markers:()=>Tk.empty,lineMarker:()=>null,widgetMarker:()=>null,lineMarkerChange:null,initialSpacer:null,updateSpacer:null,domEventHandlers:{}},WM=ek.define(),GM=ek.define({combine:e=>e.some(e=>e)}),v3e=wj.fromClass(class{constructor(e){this.view=e,this.prevViewport=e.viewport,this.dom=document.createElement(`div`),this.dom.className=`cm-gutters`,this.dom.setAttribute(`aria-hidden`,`true`),this.dom.style.minHeight=this.view.contentHeight/this.view.scaleY+`px`,this.gutters=e.state.facet(WM).map(t=>new KM(e,t));for(let e of this.gutters)this.dom.appendChild(e.dom);this.fixed=!e.state.facet(GM),this.fixed&&(this.dom.style.position=`sticky`),this.syncGutters(!1),e.scrollDOM.insertBefore(this.dom,e.contentDOM)}update(e){if(this.updateGutters(e)){let t=this.prevViewport,n=e.view.viewport,r=Math.min(t.to,n.to)-Math.max(t.from,n.from);this.syncGutters(r<(n.to-n.from)*.8)}e.geometryChanged&&(this.dom.style.minHeight=this.view.contentHeight/this.view.scaleY+`px`),this.view.state.facet(GM)!=!this.fixed&&(this.fixed=!this.fixed,this.dom.style.position=this.fixed?`sticky`:``),this.prevViewport=e.view.viewport}syncGutters(e){let t=this.dom.nextSibling;e&&this.dom.remove();let n=Tk.iter(this.view.state.facet(UM),this.view.viewport.from),r=[],i=this.gutters.map(e=>new y3e(e,this.view.viewport,-this.view.documentPadding.top));for(let e of this.view.viewportLineBlocks)if(r.length&&(r=[]),Array.isArray(e.type)){let t=!0;for(let a of e.type)if(a.type==WA.Text&&t){yA(n,r,a.from);for(let e of i)e.line(this.view,a,r);t=!1}else if(a.widget)for(let e of i)e.widget(this.view,a)}else if(e.type==WA.Text){yA(n,r,e.from);for(let t of i)t.line(this.view,e,r)}else if(e.widget)for(let t of i)t.widget(this.view,e);for(let e of i)e.finish();e&&this.view.scrollDOM.insertBefore(this.dom,t)}updateGutters(e){let t=e.startState.facet(WM),n=e.state.facet(WM),r=e.docChanged||e.heightChanged||e.viewportChanged||!Tk.eq(e.startState.facet(UM),e.state.facet(UM),e.view.viewport.from,e.view.viewport.to);if(t==n)for(let t of this.gutters)t.update(e)&&(r=!0);else{r=!0;let i=[];for(let r of n){let n=t.indexOf(r);n<0?i.push(new KM(this.view,r)):(this.gutters[n].update(e),i.push(this.gutters[n]))}for(let e of this.gutters)e.dom.remove(),i.indexOf(e)<0&&e.destroy();for(let e of i)this.dom.appendChild(e.dom);this.gutters=i}return r}destroy(){for(let e of this.gutters)e.destroy();this.dom.remove()}},{provide:e=>vM.scrollMargins.of(t=>{let n=t.plugin(e);return!n||n.gutters.length==0||!n.fixed?null:t.textDirection==ej.LTR?{left:n.dom.offsetWidth*t.scaleX}:{right:n.dom.offsetWidth*t.scaleX}})}),y3e=class{constructor(e,t,n){this.gutter=e,this.height=n,this.i=0,this.cursor=Tk.iter(e.markers,t.from)}addElement(e,t,n){let{gutter:r}=this,i=(t.top-this.height)/e.scaleY,a=t.height/e.scaleY;if(this.i==r.elements.length){let t=new qM(e,a,i,n);r.elements.push(t),r.dom.appendChild(t.dom)}else r.elements[this.i].update(e,a,i,n);this.height=t.bottom,this.i++}line(e,t,n){let r=[];yA(this.cursor,r,t.from),n.length&&(r=r.concat(n));let i=this.gutter.config.lineMarker(e,t,r);i&&r.unshift(i);let a=this.gutter;r.length==0&&!a.config.renderEmptyElements||this.addElement(e,t,r)}widget(e,t){let n=this.gutter.config.widgetMarker(e,t.widget,t),r=n?[n]:null;for(let n of e.state.facet(g3e)){let i=n(e,t.widget,t);i&&(r||=[]).push(i)}r&&this.addElement(e,t,r)}finish(){let e=this.gutter;for(;e.elements.length>this.i;){let t=e.elements.pop();e.dom.removeChild(t.dom),t.destroy()}}},KM=class{constructor(e,t){this.view=e,this.config=t,this.elements=[],this.spacer=null,this.dom=document.createElement(`div`),this.dom.className=`cm-gutter`+(this.config.class?` `+this.config.class:``);for(let n in t.domEventHandlers)this.dom.addEventListener(n,r=>{let i=r.target,a;if(i!=this.dom&&this.dom.contains(i)){for(;i.parentNode!=this.dom;)i=i.parentNode;let e=i.getBoundingClientRect();a=(e.top+e.bottom)/2}else a=r.clientY;let o=e.lineBlockAtHeight(a-e.documentTop);t.domEventHandlers[n](e,o,r)&&r.preventDefault()});this.markers=x4e(t.markers(e)),t.initialSpacer&&(this.spacer=new qM(e,0,0,[t.initialSpacer(e)]),this.dom.appendChild(this.spacer.dom),this.spacer.dom.style.cssText+=`visibility: hidden; pointer-events: none`)}update(e){let t=this.markers;if(this.markers=x4e(this.config.markers(e.view)),this.spacer&&this.config.updateSpacer){let t=this.config.updateSpacer(this.spacer.markers[0],e);t!=this.spacer.markers[0]&&this.spacer.update(e.view,0,0,[t])}let n=e.view.viewport;return!Tk.eq(this.markers,t,n.from,n.to)||(this.config.lineMarkerChange?this.config.lineMarkerChange(e):!1)}destroy(){for(let e of this.elements)e.destroy()}},qM=class{constructor(e,t,n,r){this.height=-1,this.above=0,this.markers=[],this.dom=document.createElement(`div`),this.dom.className=`cm-gutterElement`,this.update(e,t,n,r)}update(e,t,n,r){this.height!=t&&(this.height=t,this.dom.style.height=t+`px`),this.above!=n&&(this.dom.style.marginTop=(this.above=n)?n+`px`:``),S4e(this.markers,r)||this.setMarkers(e,r)}setMarkers(e,t){let n=`cm-gutterElement`,r=this.dom.firstChild;for(let i=0,a=0;;){let o=a,s=ir(e,t,n)||i(e,t,n):i}return n}})}}),YM=class extends HM{constructor(e){super(),this.number=e}eq(e){return this.number==e.number}toDOM(){return document.createTextNode(this.number)}},S3e=WM.compute([JM],e=>({class:`cm-lineNumbers`,renderEmptyElements:!1,markers(e){return e.state.facet(b3e)},lineMarker(e,t,n){return n.some(e=>e.toDOM)?null:new YM(bA(e,e.state.doc.lineAt(t.from).number))},widgetMarker:(e,t,n)=>{for(let r of e.state.facet(x3e)){let i=r(e,t,n);if(i)return i}return null},lineMarkerChange:e=>e.startState.facet(JM)!=e.state.facet(JM),initialSpacer(e){return new YM(bA(e,w4e(e.state.doc.lines)))},updateSpacer(e,t){let n=bA(t.view,w4e(t.view.state.doc.lines));return n==e.number?e:new YM(n)},domEventHandlers:e.facet(JM).domEventHandlers}))}));function C3e(e,t,n,r){switch(e){case-2:return n=t&&nt;case 1:return n<=t&&r>t;case 2:return r>t;case 4:return!0}}function ZM(e,t,n,r){for(;e.from==e.to||(n<1?e.from>=t:e.from>t)||(n>-1?e.to<=t:e.to=0;r=r.parent){if(!r)return!1;if(!r.type.isAnonymous){if(t[n]&&t[n]!=r.name)return!1;n--}}return!0}function T3e(e){if(!e.length)return null;let t=0,n=e[0];for(let r=1;rn.from||i.to=t){let o=new pN(a.tree,a.overlay[0].from+e.from,-1,e);(i||=[r]).push(ZM(o,t,n,!1))}}return i?T3e(i):r}function $M(e){return e.children.some(e=>e instanceof dN||!e.type.isAnonymous||$M(e))}function D3e(e){let{buffer:t,nodeSet:n,maxBufferLength:r=nN,reused:i=[],minRepeatType:a=n.types.length}=e,o=Array.isArray(t)?new z3e(t,t.length):t,s=n.types,c=0,l=0;function u(e,t,_,v,y,b){let{id:ee,start:te,end:ne,size:x}=o,re=l,ie=c;for(;x<0;)if(o.next(),x==-1){let t=i[ee];_.push(t),v.push(te-e);return}else if(x==-3){c=ee;return}else if(x==-4){l=ee;return}else throw RangeError(`Unrecognized record size: ${x}`);let ae=s[ee],oe,S,C=te-e;if(ne-te<=r&&(S=h(o.pos-t,y))){let t=new Uint16Array(S.size-S.skip),r=o.pos-S.size,i=t.length;for(;o.pos>r;)i=g(S.start,t,i);oe=new dN(t,ne-S.start,n),C=S.start-e}else{let e=o.pos-x;o.next();let t=[],n=[],i=ee>=a?ee:-1,s=0,c=ne;for(;o.pos>e;)i>=0&&o.id==i&&o.size>=0?(o.end<=c-r&&(p(t,n,te,s,o.end,c,i,re,ie),s=t.length,c=o.end),o.next()):b>2500?d(te,e,t,n):u(te,e,t,n,i,b+1);if(i>=0&&s>0&&s-1&&s>0){let e=f(ae,ie);oe=tN(ae,t,n,0,t.length,0,ne-te,e,e)}else oe=m(ae,t,n,ne-te,re-ne,ie)}_.push(oe),v.push(C)}function d(e,t,i,a){let s=[],c=0,l=-1;for(;o.pos>t;){let{id:e,start:t,end:n,size:i}=o;if(i>4)o.next();else if(l>-1&&t=0;e-=3)t[n++]=s[e],t[n++]=s[e+1]-r,t[n++]=s[e+2]-r,t[n++]=n;i.push(new dN(t,s[2]-r,n)),a.push(r-e)}}function f(e,t){return(n,r,i)=>{let a=0,o=n.length-1,s,c;if(o>=0&&(s=n[o])instanceof uN){if(!o&&s.type==e&&s.length==i)return s;(c=s.prop(iN.lookAhead))&&(a=r[o]+s.length+c)}return m(e,n,r,i,a,t)}}function p(e,t,r,i,a,o,s,c,l){let u=[],d=[];for(;e.length>i;)u.push(e.pop()),d.push(t.pop()+r-a);e.push(m(n.types[s],u,d,o-a,c-o,l)),t.push(a-r)}function m(e,t,n,r,i,a,o){if(a){let e=[iN.contextHash,a];o=o?[e].concat(o):[e]}if(i>25){let e=[iN.lookAhead,i];o=o?[e].concat(o):[e]}return new uN(e,t,n,r,o)}function h(e,t){let n=o.fork(),i=0,s=0,c=0,l=n.end-r,u={size:0,start:0,skip:0};scan:for(let r=n.pos-e;n.pos>r;){let e=n.size;if(n.id==t&&e>=0){u.size=i,u.start=s,u.skip=c,c+=4,i+=4,n.next();continue}let o=n.pos-e;if(e<0||o=a?4:0,f=n.start;for(n.next();n.pos>o;){if(n.size<0)if(n.size==-3)d+=4;else break scan;else n.id>=a&&(d+=4);n.next()}s=f,i+=e,c+=d}return(t<0||i==e)&&(u.size=i,u.start=s,u.skip=c),u.size>4?u:void 0}function g(e,t,n){let{id:r,start:i,end:s,size:u}=o;if(o.next(),u>=0&&r4){let r=o.pos-(u-4);for(;o.pos>r;)n=g(e,t,n)}t[--n]=a,t[--n]=s-e,t[--n]=i-e,t[--n]=r}else u==-3?c=r:u==-4&&(l=r);return n}let _=[],v=[];for(;o.pos>0;)u(e.start||0,e.bufferStart||0,_,v,-1,0);let y=e.length??(_.length?v[0]+_[0].length:0);return new uN(s[e.topID],_.reverse(),v.reverse(),y)}function eN(e,t){if(!e.isAnonymous||t instanceof dN||t.type!=e)return 1;let n=gN.get(t);if(n==null){n=1;for(let r of t.children){if(r.type!=e||!(r instanceof uN)){n=1;break}n+=eN(e,r)}gN.set(t,n)}return n}function tN(e,t,n,r,i,a,o,s,c){let l=0;for(let n=r;n=u)break;m+=n}if(s==r+1){if(m>u){let e=t[r];p(e.children,e.positions,0,e.children.length,n[r]+o);continue}d.push(t[r])}else{let i=n[s-1]+t[s-1].length-l;d.push(tN(e,t,n,r,s,l,i,null,c))}f.push(l+o-a)}}return p(t,n,r,i,0),(s||c)(d,f,o)}function O3e(e){return(t,n,r,i)=>new W3e(t,e,n,r,i)}function k3e(e){if(!e.length||e.some(e=>e.from>=e.to))throw RangeError(`Invalid inner parse ranges given: `+JSON.stringify(e))}function A3e(e,t,n){for(let r of e){if(r.from>=n)break;if(r.to>t)return r.from<=t&&r.to>=n?2:1}return 0}function j3e(e,t,n,r,i,a){if(t=s)break;e.to<=o||(n||(r=n=t.slice()),e.froms&&n.splice(a+1,0,new rN(s,e.to))):e.to>s?n[a--]=new rN(s,e.to):n.splice(a--,1))}}return r}function P3e(e,t,n,r){let i=0,a=0,o=!1,s=!1,c=-1e9,l=[];for(;;){let u=i==e.length?1e9:o?e[i].to:e[i].from,d=a==t.length?1e9:s?t[a].to:t[a].from;if(o!=s){let e=Math.max(c,n),t=Math.min(u,d,r);enew rN(e.from+r,e.to+r)),s,c);for(let t=0,r=s;;t++){let s=t==o.length,l=s?c:o[t].from;if(l>r&&n.push(new vN(r,l,i.tree,-e,a.from>=r||a.openStart,a.to<=l||a.openEnd)),s)break;r=o[t].to}}else n.push(new vN(s,c,i.tree,-e,a.from>=e||a.openStart,a.to<=o||a.openEnd))}return n}var nN,I3e,rN,iN,aN,L3e,oN,R3e,sN,cN,lN,uN,z3e,dN,fN,pN,B3e,mN,V3e,hN,gN,_N,vN,yN,H3e,bN,U3e,xN,W3e,SN,G3e,CN=s((()=>{nN=1024,I3e=0,rN=class{constructor(e,t){this.from=e,this.to=t}},iN=class{constructor(e={}){this.id=I3e++,this.perNode=!!e.perNode,this.deserialize=e.deserialize||(()=>{throw Error(`This node type doesn't define a deserialize function`)})}add(e){if(this.perNode)throw RangeError(`Can't add per-node props to node types`);return typeof e!=`function`&&(e=oN.match(e)),t=>{let n=e(t);return n===void 0?null:[this,n]}}},iN.closedBy=new iN({deserialize:e=>e.split(` `)}),iN.openedBy=new iN({deserialize:e=>e.split(` `)}),iN.group=new iN({deserialize:e=>e.split(` `)}),iN.isolate=new iN({deserialize:e=>{if(e&&e!=`rtl`&&e!=`ltr`&&e!=`auto`)throw RangeError(`Invalid value for isolate: `+e);return e||`auto`}}),iN.contextHash=new iN({perNode:!0}),iN.lookAhead=new iN({perNode:!0}),iN.mounted=new iN({perNode:!0}),aN=class{constructor(e,t,n){this.tree=e,this.overlay=t,this.parser=n}static get(e){return e&&e.props&&e.props[iN.mounted.id]}},L3e=Object.create(null),oN=class e{constructor(e,t,n,r=0){this.name=e,this.props=t,this.id=n,this.flags=r}static define(t){let n=t.props&&t.props.length?Object.create(null):L3e,r=!!t.top|(t.skipped?2:0)|(t.error?4:0)|(t.name==null?8:0),i=new e(t.name||``,n,t.id,r);if(t.props){for(let e of t.props)if(Array.isArray(e)||(e=e(i)),e){if(e[0].perNode)throw RangeError(`Can't store a per-node prop on a node type`);n[e[0].id]=e[1]}}return i}prop(e){return this.props[e.id]}get isTop(){return(this.flags&1)>0}get isSkipped(){return(this.flags&2)>0}get isError(){return(this.flags&4)>0}get isAnonymous(){return(this.flags&8)>0}is(e){if(typeof e==`string`){if(this.name==e)return!0;let t=this.prop(iN.group);return t?t.indexOf(e)>-1:!1}return this.id==e}static match(e){let t=Object.create(null);for(let n in e)for(let r of n.split(` `))t[r]=e[n];return e=>{for(let n=e.prop(iN.group),r=-1;r<(n?n.length:0);r++){let i=t[r<0?e.name:n[r]];if(i)return i}}}},oN.none=new oN(``,Object.create(null),0,8),R3e=class e{constructor(e){this.types=e;for(let t=0;t0;for(let e=this.cursor(a|lN.IncludeAnonymous);;){let a=!1;if(e.from<=i&&e.to>=r&&(!o&&e.type.isAnonymous||t(e)!==!1)){if(e.firstChild())continue;a=!0}for(;a&&n&&(o||!e.type.isAnonymous)&&n(e),!e.nextSibling();){if(!e.parent())return;a=!0}}}prop(e){return e.perNode?this.props?this.props[e.id]:void 0:this.type.prop(e)}get propValues(){let e=[];if(this.props)for(let t in this.props)e.push([+t,this.props[t]]);return e}balance(t={}){return this.children.length<=8?this:tN(oN.none,this.children,this.positions,0,this.children.length,0,this.length,(t,n,r)=>new e(this.type,t,n,r,this.propValues),t.makeTree||((t,n,r)=>new e(oN.none,t,n,r)))}static build(e){return D3e(e)}},uN.empty=new uN(oN.none,[],[],0),z3e=class e{constructor(e,t){this.buffer=e,this.index=t}get id(){return this.buffer[this.index-4]}get start(){return this.buffer[this.index-3]}get end(){return this.buffer[this.index-2]}get size(){return this.buffer[this.index-1]}get pos(){return this.index}next(){this.index-=4}fork(){return new e(this.buffer,this.index)}},dN=class e{constructor(e,t,n){this.buffer=e,this.length=t,this.set=n}get type(){return oN.none}toString(){let e=[];for(let t=0;t0));s=a[s+3]);return o}slice(t,n,r){let i=this.buffer,a=new Uint16Array(n-t),o=0;for(let e=t,s=0;e0?s.length:-1;t!=l;t+=n){let l=s[t],u=c[t]+o.from;if(C3e(i,r,u,u+l.length)){if(l instanceof dN){if(a&lN.ExcludeBuffers)continue;let e=l.findChild(0,l.buffer.length,n,r-u,i);if(e>-1)return new mN(new B3e(o,l,t,u),null,e)}else if(a&lN.IncludeAnonymous||!l.type.isAnonymous||$M(l)){let s;if(!(a&lN.IgnoreMounts)&&(s=aN.get(l))&&!s.overlay)return new e(s.tree,u,t,o);let c=new e(l,u,t,o);return a&lN.IncludeAnonymous||!c.type.isAnonymous?c:c.nextChild(n<0?l.children.length-1:0,n,r,i)}}}if(a&lN.IncludeAnonymous||!o.type.isAnonymous||(t=o.index>=0?o.index+n:n<0?-1:o._parent._tree.children.length,o=o._parent,!o))return null}}get firstChild(){return this.nextChild(0,1,0,4)}get lastChild(){return this.nextChild(this._tree.children.length-1,-1,0,4)}childAfter(e){return this.nextChild(0,1,e,2)}childBefore(e){return this.nextChild(this._tree.children.length-1,-1,e,-2)}enter(t,n,r=0){let i;if(!(r&lN.IgnoreOverlays)&&(i=aN.get(this._tree))&&i.overlay){let r=t-this.from;for(let{from:t,to:a}of i.overlay)if((n>0?t<=r:t=r:a>r))return new e(i.tree,i.overlay[0].from+this.from,-1,this)}return this.nextChild(0,1,t,n,r)}nextSignificantParent(){let e=this;for(;e.type.isAnonymous&&e._parent;)e=e._parent;return e}get parent(){return this._parent?this._parent.nextSignificantParent():null}get nextSibling(){return this._parent&&this.index>=0?this._parent.nextChild(this.index+1,1,0,4):null}get prevSibling(){return this._parent&&this.index>=0?this._parent.nextChild(this.index-1,-1,0,4):null}get tree(){return this._tree}toTree(){return this._tree}toString(){return this._tree.toString()}},B3e=class{constructor(e,t,n,r){this.parent=e,this.buffer=t,this.index=n,this.start=r}},mN=class e extends fN{get name(){return this.type.name}get from(){return this.context.start+this.context.buffer.buffer[this.index+1]}get to(){return this.context.start+this.context.buffer.buffer[this.index+2]}constructor(e,t,n){super(),this.context=e,this._parent=t,this.index=n,this.type=e.buffer.set.types[e.buffer.buffer[n]]}child(t,n,r){let{buffer:i}=this.context,a=i.findChild(this.index+4,i.buffer[this.index+3],t,n-this.context.start,r);return a<0?null:new e(this.context,this,a)}get firstChild(){return this.child(1,0,4)}get lastChild(){return this.child(-1,0,4)}childAfter(e){return this.child(1,e,2)}childBefore(e){return this.child(-1,e,-2)}enter(t,n,r=0){if(r&lN.ExcludeBuffers)return null;let{buffer:i}=this.context,a=i.findChild(this.index+4,i.buffer[this.index+3],n>0?1:-1,t-this.context.start,n);return a<0?null:new e(this.context,this,a)}get parent(){return this._parent||this.context.parent.nextSignificantParent()}externalSibling(e){return this._parent?null:this.context.parent.nextChild(this.context.index+e,e,0,4)}get nextSibling(){let{buffer:t}=this.context,n=t.buffer[this.index+3];return n<(this._parent?t.buffer[this._parent.index+3]:t.buffer.length)?new e(this.context,this._parent,n):this.externalSibling(1)}get prevSibling(){let{buffer:t}=this.context,n=this._parent?this._parent.index+4:0;return this.index==n?this.externalSibling(-1):new e(this.context,this._parent,t.findChild(n,this.index,-1,0,4))}get tree(){return null}toTree(){let e=[],t=[],{buffer:n}=this.context,r=this.index+4,i=n.buffer[this.index+3];if(i>r){let a=n.buffer[this.index+1];e.push(n.slice(r,i,a)),t.push(0)}return new uN(this.type,e,t,this.to-this.from)}toString(){return this.context.buffer.childString(this.index)}},V3e=class{constructor(e,t){this.heads=e,this.node=t}get next(){return T3e(this.heads)}},hN=class{get name(){return this.type.name}constructor(e,t=0){if(this.mode=t,this.buffer=null,this.stack=[],this.index=0,this.bufferNode=null,e instanceof pN)this.yieldNode(e);else{this._tree=e.context.parent,this.buffer=e.context;for(let t=e._parent;t;t=t._parent)this.stack.unshift(t.index);this.bufferNode=e,this.yieldBuf(e.index)}}yieldNode(e){return e?(this._tree=e,this.type=e.type,this.from=e.from,this.to=e.to,!0):!1}yieldBuf(e,t){this.index=e;let{start:n,buffer:r}=this.buffer;return this.type=t||r.set.types[r.buffer[e]],this.from=n+r.buffer[e+1],this.to=n+r.buffer[e+2],!0}yield(e){return e?e instanceof pN?(this.buffer=null,this.yieldNode(e)):(this.buffer=e.context,this.yieldBuf(e.index,e.type)):!1}toString(){return this.buffer?this.buffer.buffer.childString(this.index):this._tree.toString()}enterChild(e,t,n){if(!this.buffer)return this.yield(this._tree.nextChild(e<0?this._tree._tree.children.length-1:0,e,t,n,this.mode));let{buffer:r}=this.buffer,i=r.findChild(this.index+4,r.buffer[this.index+3],e,t-this.buffer.start,n);return i<0?!1:(this.stack.push(this.index),this.yieldBuf(i))}firstChild(){return this.enterChild(1,0,4)}lastChild(){return this.enterChild(-1,0,4)}childAfter(e){return this.enterChild(1,e,2)}childBefore(e){return this.enterChild(-1,e,-2)}enter(e,t,n=this.mode){return this.buffer?n&lN.ExcludeBuffers?!1:this.enterChild(1,e,t):this.yield(this._tree.enter(e,t,n))}parent(){if(!this.buffer)return this.yieldNode(this.mode&lN.IncludeAnonymous?this._tree._parent:this._tree.parent);if(this.stack.length)return this.yieldBuf(this.stack.pop());let e=this.mode&lN.IncludeAnonymous?this.buffer.parent:this.buffer.parent.nextSignificantParent();return this.buffer=null,this.yieldNode(e)}sibling(e){if(!this.buffer)return this._tree._parent?this.yield(this._tree.index<0?null:this._tree._parent.nextChild(this._tree.index+e,e,0,4,this.mode)):!1;let{buffer:t}=this.buffer,n=this.stack.length-1;if(e<0){let e=n<0?0:this.stack[n]+4;if(this.index!=e)return this.yieldBuf(t.findChild(e,this.index,-1,0,4))}else{let e=t.buffer[this.index+3];if(e<(n<0?t.buffer.length:t.buffer[this.stack[n]+3]))return this.yieldBuf(e)}return n<0&&this.yield(this.buffer.parent.nextChild(this.buffer.index+e,e,0,4,this.mode))}nextSibling(){return this.sibling(1)}prevSibling(){return this.sibling(-1)}atLastNode(e){let t,n,{buffer:r}=this;if(r){if(e>0){if(this.index-1)for(let r=t+e,i=e<0?-1:n._tree.children.length;r!=i;r+=e){let e=n._tree.children[r];if(this.mode&lN.IncludeAnonymous||e instanceof dN||!e.type.isAnonymous||$M(e))return!1}return!0}move(e,t){if(t&&this.enterChild(e,0,4))return!0;for(;;){if(this.sibling(e))return!0;if(this.atLastNode(e)||!this.parent())return!1}}next(e=!0){return this.move(1,e)}prev(e=!0){return this.move(-1,e)}moveTo(e,t=0){for(;(this.from==this.to||(t<1?this.from>=e:this.from>e)||(t>-1?this.to<=e:this.to=0;){for(let a=e;a;a=a._parent)if(a.index==r){if(r==this.index)return a;t=a,n=i+1;break scan}r=this.stack[--i]}for(let e=n;e=0;i--){if(i<0)return QM(this._tree,e,r);let a=n[t.buffer[this.stack[i]]];if(!a.isAnonymous){if(e[r]&&e[r]!=a.name)return!1;r--}}return!0}},gN=new WeakMap,_N=class{constructor(){this.map=new WeakMap}setBuffer(e,t,n){let r=this.map.get(e);r||this.map.set(e,r=new Map),r.set(t,n)}getBuffer(e,t){let n=this.map.get(e);return n&&n.get(t)}set(e,t){e instanceof mN?this.setBuffer(e.context.buffer,e.index,t):e instanceof pN&&this.map.set(e.tree,t)}get(e){return e instanceof mN?this.getBuffer(e.context.buffer,e.index):e instanceof pN?this.map.get(e.tree):void 0}cursorSet(e,t){e.buffer?this.setBuffer(e.buffer.buffer,e.index,t):this.map.set(e.tree,t)}cursorGet(e){return e.buffer?this.getBuffer(e.buffer.buffer,e.index):this.map.get(e.tree)}},vN=class e{constructor(e,t,n,r,i=!1,a=!1){this.from=e,this.to=t,this.tree=n,this.offset=r,this.open=!!i|(a?2:0)}get openStart(){return(this.open&1)>0}get openEnd(){return(this.open&2)>0}static addTree(t,n=[],r=!1){let i=[new e(0,t.length,t,0,!1,r)];for(let e of n)e.to>t.length&&i.push(e);return i}static applyChanges(t,n,r=128){if(!n.length)return t;let i=[],a=1,o=t.length?t[0]:null;for(let s=0,c=0,l=0;;s++){let u=s=r)for(;o&&o.from=n.from||d<=n.to||l){let t=Math.max(n.from,c)-l,r=Math.min(n.to,d)-l;n=t>=r?null:new e(t,r,n.tree,n.offset+l,s>0,!!u)}if(n&&i.push(n),o.to>d)break;o=anew rN(e.from,e.to)):[new rN(0,0)]:[new rN(0,e.length)],this.createParse(e,t||[],n)}parse(e,t,n){let r=this.startParse(e,t,n);for(;;){let e=r.advance();if(e)return e}}},H3e=class{constructor(e){this.string=e}get length(){return this.string.length}chunk(e){return this.string.slice(e)}get lineChunks(){return!1}read(e,t){return this.string.slice(e,t)}},bN=class{constructor(e,t,n,r,i){this.parser=e,this.parse=t,this.overlay=n,this.target=r,this.from=i}},U3e=class{constructor(e,t,n,r,i,a,o){this.parser=e,this.predicate=t,this.mounts=n,this.index=r,this.start=i,this.target=a,this.prev=o,this.depth=0,this.ranges=[]}},xN=new iN({perNode:!0}),W3e=class{constructor(e,t,n,r,i){this.nest=t,this.input=n,this.fragments=r,this.ranges=i,this.inner=[],this.innerDone=0,this.baseTree=null,this.stoppedAt=null,this.baseParse=e}advance(){if(this.baseParse){let e=this.baseParse.advance();if(!e)return null;if(this.baseParse=null,this.baseTree=e,this.startInner(),this.stoppedAt!=null)for(let e of this.inner)e.parse.stopAt(this.stoppedAt)}if(this.innerDone==this.inner.length){let e=this.baseTree;return this.stoppedAt!=null&&(e=new uN(e.type,e.children,e.positions,e.length,e.propValues.concat([[xN,this.stoppedAt]]))),e}let e=this.inner[this.innerDone],t=e.parse.advance();if(t){this.innerDone++;let n=Object.assign(Object.create(null),e.target.props);n[iN.mounted.id]=new aN(t,e.overlay,e.parser),e.target.props=n}return null}get parsedPos(){if(this.baseParse)return 0;let e=this.input.length;for(let t=this.innerDone;t=this.stoppedAt)o=!1;else if(e.hasNode(r)){if(t){let e=t.mounts.find(e=>e.frag.from<=r.from&&e.frag.to>=r.to&&e.mount.overlay);if(e)for(let n of e.mount.overlay){let i=n.from+e.pos,a=n.to+e.pos;i>=r.from&&a<=r.to&&!t.ranges.some(e=>e.fromi)&&t.ranges.push({from:i,to:a})}}o=!1}else if(n&&(a=A3e(n.ranges,r.from,r.to)))o=a!=2;else if(!r.type.isAnonymous&&(i=this.nest(r,this.input))&&(r.fromnew rN(e.from-r.from,e.to-r.from)):null,r.tree,e.length?e[0].from:r.from)),i.overlay?e.length&&(n={ranges:e,depth:0,prev:n}):o=!1}}else if(t&&(s=t.predicate(r))&&(s===!0&&(s=new rN(r.from,r.to)),s.from=0&&t.ranges[e].to==s.from?t.ranges[e]={from:t.ranges[e].from,to:s.to}:t.ranges.push(s)}if(o&&r.firstChild())t&&t.depth++,n&&n.depth++;else for(;!r.nextSibling();){if(!r.parent())break scan;if(t&&!--t.depth){let e=N3e(this.ranges,t.ranges);e.length&&(k3e(e),this.inner.splice(t.index,0,new bN(t.parser,t.parser.startParse(this.input,F3e(t.mounts,e),e),t.ranges.map(e=>new rN(e.from-t.start,e.to-t.start)),t.target,e[0].from))),t=t.prev}n&&!--n.depth&&(n=n.prev)}}}},SN=class{constructor(e,t){this.offset=t,this.done=!1,this.cursor=e.cursor(lN.IncludeAnonymous|lN.IgnoreMounts)}moveTo(e){let{cursor:t}=this,n=e-this.offset;for(;!this.done&&t.from=e&&t.enter(n,1,lN.IgnoreOverlays|lN.ExcludeBuffers)||t.next(!1)||(this.done=!0)}hasNode(e){if(this.moveTo(e.from),!this.done&&this.cursor.from+this.offset==e.from&&this.cursor.tree)for(let t=this.cursor.tree;;){if(t==e.tree)return!0;if(t.children.length&&t.positions[0]==0&&t.children[0]instanceof uN)t=t.children[0];else break}return!1}},G3e=class{constructor(e){if(this.fragments=e,this.curTo=0,this.fragI=0,e.length){let t=this.curFrag=e[0];this.curTo=t.tree.prop(xN)??t.to,this.inner=new SN(t.tree,-t.offset)}else this.curFrag=this.inner=null}hasNode(e){for(;this.curFrag&&e.from>=this.curTo;)this.nextFrag();return this.curFrag&&this.curFrag.from<=e.from&&this.curTo>=e.to&&this.inner.hasNode(e)}nextFrag(){if(this.fragI++,this.fragI==this.fragments.length)this.curFrag=this.inner=null;else{let e=this.curFrag=this.fragments[this.fragI];this.curTo=e.tree.prop(xN)??e.to,this.inner=new SN(e.tree,-e.offset)}}findMounts(e,t){let n=[];if(this.inner){this.inner.cursor.moveTo(e,1);for(let e=this.inner.cursor.node;e;e=e.parent){let r=e.tree?.prop(iN.mounted);if(r&&r.parser==t)for(let t=this.fragI;t=e.to)break;i.tree==this.curFrag.tree&&n.push({frag:i,pos:e.from-i.offset,mount:r})}}}return n}}}));function K3e(e,t){return e.length==t.length&&e.every((e,n)=>e==t[n])}function q3e(e){let t=[[]];for(let n=0;nt.length-e.length)}function wN(e){let t=Object.create(null);for(let n in e){let r=e[n];Array.isArray(r)||(r=[r]);for(let e of n.split(` `))if(e){let n=[],i=2,a=e;for(let t=0;;){if(a==`...`&&t>0&&t+3==e.length){i=1;break}let r=/^"(?:[^"\\]|\\.)*?"|[^\/!]+/.exec(a);if(!r)throw RangeError(`Invalid path: `+e);if(n.push(r[0]==`*`?``:r[0][0]==`"`?JSON.parse(r[0]):r[0]),t+=r[0].length,t==e.length)break;let o=e[t++];if(t==e.length&&o==`!`){i=0;break}if(o!=`/`)throw RangeError(`Invalid path: `+e);a=e.slice(t)}let o=n.length-1,s=n[o];if(!s)throw RangeError(`Invalid path: `+e);t[s]=new ON(r,i,o>0?n.slice(0,o):null).sort(t[s])}}return DN.add(t)}function J3e(e,t){let n=Object.create(null);for(let t of e)if(!Array.isArray(t.tag))n[t.tag.id]=t.class;else for(let e of t.tag)n[e.id]=t.class;let{scope:r,all:i=null}=t||{};return{style:e=>{let t=i;for(let r of e)for(let e of r.set){let r=n[e.id];if(r){t=t?t+` `+r:r;break}}return t},scope:r}}function Y3e(e,t){let n=null;for(let r of e){let e=r.style(t);e&&(n=n?n+` `+e:e)}return n}function X3e(e,t,n,r=0,i=e.length){let a=new e6e(r,Array.isArray(t)?t:[t],n);a.highlightRange(e.cursor(),r,i,``,a.highlighters),a.flush(i)}function Z3e(e){let t=e.type.prop(DN);for(;t&&t.context&&!e.matchContext(t.context);)t=t.next;return t||null}var Q3e,TN,$3e,EN,DN,ON,e6e,kN,AN,jN,MN,NN,PN,FN,IN,LN,RN,zN,BN,VN,HN,UN,J,WN=s((()=>{CN(),Q3e=0,TN=class e{constructor(e,t,n,r){this.name=e,this.set=t,this.base=n,this.modified=r,this.id=Q3e++}toString(){let{name:e}=this;for(let t of this.modified)t.name&&(e=`${t.name}(${e})`);return e}static define(t,n){let r=typeof t==`string`?t:`?`;if(t instanceof e&&(n=t),n?.base)throw Error(`Can not derive from a modified tag`);let i=new e(r,[],null,[]);if(i.set.push(i),n)for(let e of n.set)i.set.push(e);return i}static defineModifier(e){let t=new EN(e);return e=>e.modified.indexOf(t)>-1?e:EN.get(e.base||e,e.modified.concat(t).sort((e,t)=>e.id-t.id))}},$3e=0,EN=class e{constructor(e){this.name=e,this.instances=[],this.id=$3e++}static get(t,n){if(!n.length)return t;let r=n[0].instances.find(e=>e.base==t&&K3e(n,e.modified));if(r)return r;let i=[],a=new TN(t.name,i,t,n);for(let e of n)e.instances.push(a);let o=q3e(n);for(let n of t.set)if(!n.modified.length)for(let t of o)i.push(e.get(n,t));return a}},DN=new iN,ON=class{constructor(e,t,n,r){this.tags=e,this.mode=t,this.context=n,this.next=r}get opaque(){return this.mode==0}get inherit(){return this.mode==1}sort(e){return!e||e.depththis.at&&(this.at=e),this.class=t)}flush(e){e>this.at&&this.class&&this.span(this.at,e,this.class)}highlightRange(e,t,n,r,i){let{type:a,from:o,to:s}=e;if(o>=n||s<=t)return;a.isTop&&(i=this.highlighters.filter(e=>!e.scope||e.scope(a)));let c=r,l=Z3e(e)||ON.empty,u=Y3e(i,l.tags);if(u&&(c&&(c+=` `),c+=u,l.mode==1&&(r+=(r?` `:``)+u)),this.startSpan(Math.max(t,o),c),l.opaque)return;let d=e.tree&&e.tree.prop(iN.mounted);if(d&&d.overlay){let a=e.node.enter(d.overlay[0].from+o,1),l=this.highlighters.filter(e=>!e.scope||e.scope(d.tree.type)),u=e.firstChild();for(let f=0,p=o;;f++){let m=f=h||!e.nextSibling())););if(!m||h>n)break;p=m.to+o,p>t&&(this.highlightRange(a.cursor(),Math.max(t,m.from+o),Math.min(n,p),``,l),this.startSpan(Math.min(n,p),c))}u&&e.parent()}else if(e.firstChild()){d&&(r=``);do{if(e.to<=t)continue;if(e.from>=n)break;this.highlightRange(e,t,n,r,i),this.startSpan(Math.min(n,e.to),c)}while(e.nextSibling());e.parent()}}},kN=TN.define,AN=kN(),jN=kN(),MN=kN(jN),NN=kN(jN),PN=kN(),FN=kN(PN),IN=kN(PN),LN=kN(),RN=kN(LN),zN=kN(),BN=kN(),VN=kN(),HN=kN(VN),UN=kN(),J={comment:AN,lineComment:kN(AN),blockComment:kN(AN),docComment:kN(AN),name:jN,variableName:kN(jN),typeName:MN,tagName:kN(MN),propertyName:NN,attributeName:kN(NN),className:kN(jN),labelName:kN(jN),namespace:kN(jN),macroName:kN(jN),literal:PN,string:FN,docString:kN(FN),character:kN(FN),attributeValue:kN(FN),number:IN,integer:kN(IN),float:kN(IN),bool:kN(PN),regexp:kN(PN),escape:kN(PN),color:kN(PN),url:kN(PN),keyword:zN,self:kN(zN),null:kN(zN),atom:kN(zN),unit:kN(zN),modifier:kN(zN),operatorKeyword:kN(zN),controlKeyword:kN(zN),definitionKeyword:kN(zN),moduleKeyword:kN(zN),operator:BN,derefOperator:kN(BN),arithmeticOperator:kN(BN),logicOperator:kN(BN),bitwiseOperator:kN(BN),compareOperator:kN(BN),updateOperator:kN(BN),definitionOperator:kN(BN),typeOperator:kN(BN),controlOperator:kN(BN),punctuation:VN,separator:kN(VN),bracket:HN,angleBracket:kN(HN),squareBracket:kN(HN),paren:kN(HN),brace:kN(HN),content:LN,heading:RN,heading1:kN(RN),heading2:kN(RN),heading3:kN(RN),heading4:kN(RN),heading5:kN(RN),heading6:kN(RN),contentSeparator:kN(LN),list:kN(LN),quote:kN(LN),emphasis:kN(LN),strong:kN(LN),link:kN(LN),monospace:kN(LN),strikethrough:kN(LN),inserted:kN(),deleted:kN(),changed:kN(),invalid:kN(),meta:UN,documentMeta:kN(UN),annotation:kN(UN),processingInstruction:kN(UN),definition:TN.defineModifier(`definition`),constant:TN.defineModifier(`constant`),function:TN.defineModifier(`function`),standard:TN.defineModifier(`standard`),local:TN.defineModifier(`local`),special:TN.defineModifier(`special`)};for(let e in J){let t=J[e];t instanceof TN&&(t.name=e)}J3e([{tag:J.link,class:`tok-link`},{tag:J.heading,class:`tok-heading`},{tag:J.emphasis,class:`tok-emphasis`},{tag:J.strong,class:`tok-strong`},{tag:J.keyword,class:`tok-keyword`},{tag:J.atom,class:`tok-atom`},{tag:J.bool,class:`tok-bool`},{tag:J.url,class:`tok-url`},{tag:J.labelName,class:`tok-labelName`},{tag:J.inserted,class:`tok-inserted`},{tag:J.deleted,class:`tok-deleted`},{tag:J.literal,class:`tok-literal`},{tag:J.string,class:`tok-string`},{tag:J.number,class:`tok-number`},{tag:[J.regexp,J.escape,J.special(J.string)],class:`tok-string2`},{tag:J.variableName,class:`tok-variableName`},{tag:J.local(J.variableName),class:`tok-variableName tok-local`},{tag:J.definition(J.variableName),class:`tok-variableName tok-definition`},{tag:J.special(J.variableName),class:`tok-variableName2`},{tag:J.definition(J.propertyName),class:`tok-propertyName tok-definition`},{tag:J.typeName,class:`tok-typeName`},{tag:J.namespace,class:`tok-namespace`},{tag:J.className,class:`tok-className`},{tag:J.macroName,class:`tok-macroName`},{tag:J.propertyName,class:`tok-propertyName`},{tag:J.operator,class:`tok-operator`},{tag:J.comment,class:`tok-comment`},{tag:J.meta,class:`tok-meta`},{tag:J.invalid,class:`tok-invalid`},{tag:J.punctuation,class:`tok-punctuation`}])}));function t6e(e){return ek.define({combine:e?t=>t.concat(e):void 0})}function n6e(e,t,n){let r=e.facet(lP),i=GN(e).topNode;if(!r||r.allowsNesting)for(let e=i;e;e=e.enter(t,n,lN.ExcludeBuffers))e.type.isTop&&(i=e);return i}function GN(e){let t=e.field(rP.state,!1);return t?t.tree:uN.empty}function r6e(e,t,n){return vN.applyChanges(e,[{fromA:t,toA:n,fromB:t,toB:n}])}function i6e(e){let t=e.facet(dP);return t.charCodeAt(0)==9?e.tabSize*t.length:t.length}function a6e(e,t){let n=``,r=e.tabSize,i=e.facet(dP)[0];if(i==` `){for(;t>=r;)n+=` `,t-=r;i=` `}for(let e=0;e=t?s6e(e,n,t):null}function s6e(e,t,n){let r=t.resolveStack(n),i=t.resolveInner(n,-1).resolve(n,0).enterUnfinishedNodesBefore(n);if(i!=r.node){let e=[];for(let t=i;t!=r.node;t=t.parent)e.push(t);for(let t=e.length-1;t>=0;t--)r={node:e[t],next:r}}return c6e(r,e,n)}function c6e(e,t,n){for(let r=e;r;r=r.next){let e=u6e(r.node);if(e)return e(P6e.create(t,n,r))}return 0}function l6e(e){return e.pos==e.options.simulateBreak&&e.options.simulateDoubleBreak}function u6e(e){let t=e.type.prop(pP);if(t)return t;let n=e.firstChild,r;if(n&&(r=n.type.prop(iN.closedBy))){let t=e.lastChild,n=t&&r.indexOf(t.name)>-1;return e=>m6e(e,!0,1,void 0,n&&!l6e(e)?t.from:void 0)}return e.parent==null?d6e:null}function d6e(){return 0}function f6e(e,t){for(let n=t;n;n=n.parent)if(e==n)return!0;return!1}function p6e(e){let t=e.node,n=t.childAfter(t.from),r=t.lastChild;if(!n)return null;let i=e.options.simulateBreak,a=e.state.doc.lineAt(n.from),o=i==null||i<=a.from?a.to:Math.min(a.to,i);for(let e=n.to;;){let i=t.childAfter(e);if(!i||i==r)return null;if(!i.type.isSkipped){if(i.from>=o)return null;let e=/^ */.exec(a.text.slice(n.to-a.from))[0].length;return{from:n.from,to:n.to+e}}e=i.to}}function KN({closing:e,align:t=!0,units:n=1}){return r=>m6e(r,t,n,e)}function m6e(e,t,n,r,i){let a=e.textAfter,o=a.match(/^\s*/)[0].length,s=r&&a.slice(o,o+r.length)==r||i==e.pos+o,c=t?p6e(e):null;return c?s?e.column(c.from):e.column(c.to):e.baseIndent+(s?0:e.unit*n)}function qN({except:e,units:t=1}={}){return n=>{let r=e&&e.test(n.textAfter);return n.baseIndent+(r?0:t*n.unit)}}function h6e(){return Sk.transactionFilter.of(e=>{if(!e.docChanged||!e.isUserEvent(`input.type`)&&!e.isUserEvent(`input.complete`))return e;let t=e.startState.languageDataAt(`indentOnInput`,e.startState.selection.main.head);if(!t.length)return e;let n=e.newDoc,{head:r}=e.newSelection.main,i=n.lineAt(r);if(r>i.from+I6e)return e;let a=n.sliceString(i.from,r);if(!t.some(e=>e.test(a)))return e;let{state:o}=e,s=-1,c=[];for(let{head:e}of o.selection.ranges){let t=o.doc.lineAt(e);if(t.from==s)continue;s=t.from;let n=o6e(o,t.from);if(n==null)continue;let r=/^\s*/.exec(t.text)[0],i=a6e(o,n);r!=i&&c.push({from:t.from,to:t.from+r.length,insert:i})}return c.length?[e,{changes:c,sequential:!0}]:e})}function JN(e){let t=e.firstChild,n=e.lastChild;return t&&t.ton)continue;if(a&&i.from=t&&r.to>n&&(a=r)}}return a}function _6e(e){let t=e.lastChild;return t&&t.to==e.to&&t.type.isError}function v6e(e,t,n){for(let r of e.facet(L6e)){let i=r(e,t,n);if(i)return i}return g6e(e,t,n)}function y6e(e,t){let n=t.mapPos(e.from,1),r=t.mapPos(e.to,-1);return n>=r?void 0:{from:n,to:r}}function YN(e,t,n){var r;let i=null;return(r=e.field(_P,!1))==null||r.between(t,n,(e,t)=>{(!i||i.from>e)&&(i={from:e,to:t})}),i}function b6e(e,t,n){let r=!1;return e.between(t,t,(e,i)=>{e==t&&i==n&&(r=!0)}),r}function x6e(e){let t=[_P,V6e];return e&&t.push(vP.of(e)),t}function S6e(e,t){let{state:n}=e,r=n.facet(vP),i=t=>{let n=e.lineBlockAt(e.posAtDOM(t.target)),r=YN(e.state,n.from,n.to);r&&e.dispatch({effects:gP.of(r)}),t.preventDefault()};if(r.placeholderDOM)return r.placeholderDOM(e,i,t);let a=document.createElement(`span`);return a.textContent=r.placeholderText,a.setAttribute(`aria-label`,n.phrase(`folded code`)),a.title=n.phrase(`unfold`),a.className=`cm-foldPlaceholder`,a.onclick=i,a}function C6e(e={}){let t=Object.assign(Object.assign({},B6e),e),n=new bP(t,!0),r=new bP(t,!1),i=wj.fromClass(class{constructor(e){this.from=e.viewport.from,this.markers=this.buildMarkers(e)}update(e){(e.docChanged||e.viewportChanged||e.startState.facet(lP)!=e.state.facet(lP)||e.startState.field(_P,!1)!=e.state.field(_P,!1)||GN(e.startState)!=GN(e.state)||t.foldingChanged(e))&&(this.markers=this.buildMarkers(e.view))}buildMarkers(e){let t=new Ek;for(let i of e.viewportLineBlocks){let a=YN(e.state,i.from,i.to)?r:v6e(e.state,i.from,i.to)?n:null;a&&t.add(i.from,i.from,a)}return t.finish()}}),{domEventHandlers:a}=t;return[i,y4e({class:`cm-foldGutter`,markers(e){return e.plugin(i)?.markers||Tk.empty},initialSpacer(){return new bP(t,!1)},domEventHandlers:Object.assign(Object.assign({},a),{click:(e,t,n)=>{if(a.click&&a.click(e,t,n))return!0;let r=YN(e.state,t.from,t.to);if(r)return e.dispatch({effects:gP.of(r)}),!0;let i=v6e(e.state,t.from,t.to);return i?(e.dispatch({effects:hP.of(i)}),!0):!1}})}),x6e()]}function XN(e){let t=e.facet(SP);return t.length?t:e.facet(CP)}function w6e(e,t){let n=[U6e],r;return e instanceof xP&&(e.module&&n.push(vM.styleModule.of(e.module)),r=e.themeType),t?.fallback?n.push(CP.of(e)):r?n.push(SP.computeN([vM.darkTheme],t=>t.facet(vM.darkTheme)==(r==`dark`)?[e]:[])):n.push(SP.of(e)),n}function T6e(e){let t=[],n=e.matched?K6e:q6e;return t.push(n.range(e.start.from,e.start.to)),e.end&&t.push(n.range(e.end.from,e.end.to)),t}function E6e(e={}){return[EP.of(e),J6e]}function ZN(e,t,n){let r=e.prop(t<0?iN.openedBy:iN.closedBy);if(r)return r;if(e.name.length==1){let r=n.indexOf(e.name);if(r>-1&&r%2==+(t<0))return[n[r+t]]}return null}function QN(e){let t=e.type.prop(DP);return t?t(e.node):e}function $N(e,t,n,r={}){let i=r.maxScanDistance||wP,a=r.brackets||TP,o=GN(e),s=o.resolveInner(t,n);for(let r=s;r;r=r.parent){let i=ZN(r.type,n,a);if(i&&r.from0?t>=o.from&&to.from&&t<=o.to))return D6e(e,t,n,r,o,i,a)}}return O6e(e,t,n,o,s.type,i,a)}function D6e(e,t,n,r,i,a,o){let s=r.parent,c={from:i.from,to:i.to},l=0,u=s?.cursor();if(u&&(n<0?u.childBefore(r.from):u.childAfter(r.to)))do if(n<0?u.to<=r.from:u.from>=r.to){if(l==0&&a.indexOf(u.type.name)>-1&&u.from0)return null;let l={from:n<0?t-1:t,to:n>0?t+1:t},u=e.doc.iterRange(t,n>0?e.doc.length:0),d=0;for(let e=0;!u.next().done&&e<=a;){let a=u.value;n<0&&(e+=a.length);let s=t+e*n;for(let e=n>0?0:a.length-1,t=n>0?a.length:-1;e!=t;e+=n){let t=o.indexOf(a[e]);if(!(t<0||r.resolveInner(s+e,1).type!=i))if(t%2==0==n>0)d++;else if(d==1)return{start:l,end:{from:s+e,to:s+e+1},matched:t>>1==c>>1};else d--}n>0&&(e+=a.length)}return u.done?{start:l,matched:!1}:null}function eP(e,t){kP.indexOf(e)>-1||(kP.push(e),console.warn(t))}function k6e(e,t){let n=[];for(let r of t.split(` `)){let t=[];for(let n of r.split(`.`)){let r=e[n]||J[n];r?typeof r==`function`?t.length?t=t.map(r):eP(n,`Modifier ${n} used at start of tag`):t.length?eP(n,`Tag ${n} used as modifier`):t=Array.isArray(r)?r:[r]:eP(n,`Unknown highlighting tag ${n}`)}for(let e of t)n.push(e)}if(!n.length)return 0;let r=t.replace(/ /g,`_`),i=r+` `+n.map(e=>e.id),a=AP[i];if(a)return a.id;let o=AP[i]=oN.define({id:OP.length,name:r,props:[wN({[r]:n})]});return OP.push(o),o.id}var tP,nP,rP,iP,A6e,aP,j6e,oP,sP,cP,M6e,lP,uP,N6e,dP,fP,pP,P6e,F6e,I6e,L6e,mP,hP,gP,_P,R6e,vP,yP,z6e,B6e,bP,V6e,xP,SP,CP,H6e,U6e,W6e,G6e,wP,TP,EP,K6e,q6e,J6e,DP,Y6e,OP,kP,AP,X6e,jP=s((()=>{CN(),Ak(),XM(),WN(),u0e(),tP=new iN,nP=new iN,rP=class{constructor(e,t,n=[],r=``){this.data=e,this.name=r,Sk.prototype.hasOwnProperty(`tree`)||Object.defineProperty(Sk.prototype,"tree",{get(){return GN(this)}}),this.parser=t,this.extension=[lP.of(this),Sk.languageData.of((e,t,n)=>{let r=n6e(e,t,n),i=r.type.prop(tP);if(!i)return[];let a=e.facet(i),o=r.type.prop(nP);if(o){let i=r.resolve(t-r.from,n);for(let t of o)if(t.test(i,e)){let n=e.facet(t.facet);return t.type==`replace`?n:n.concat(a)}}return a})].concat(n)}isActiveAt(e,t,n=-1){return n6e(e,t,n).type.prop(tP)==this.data}findRegions(e){let t=e.facet(lP);if(t?.data==this.data)return[{from:0,to:e.doc.length}];if(!t||!t.allowsNesting)return[];let n=[],r=(e,t)=>{if(e.prop(tP)==this.data){n.push({from:t,to:t+e.length});return}let i=e.prop(iN.mounted);if(i){if(i.tree.prop(tP)==this.data){if(i.overlay)for(let e of i.overlay)n.push({from:e.from+t,to:e.to+t});else n.push({from:t,to:t+e.length});return}else if(i.overlay){let e=n.length;if(r(i.tree,i.overlay[0].from+t),n.length>e)return}}for(let n=0;ne.isTop?n:void 0)]}),t.name)}configure(t,n){return new e(this.data,this.parser.configure(t),n||this.name)}get allowsNesting(){return this.parser.hasWrappers()}},A6e=class{constructor(e){this.doc=e,this.cursorPos=0,this.string=``,this.cursor=e.iter()}get length(){return this.doc.length}syncTo(e){return this.string=this.cursor.next(e-this.cursorPos).value,this.cursorPos=e+this.string.length,this.cursorPos-this.string.length}chunk(e){return this.syncTo(e),this.string}get lineChunks(){return!0}read(e,t){let n=this.cursorPos-this.string.length;return e=this.cursorPos?this.doc.sliceString(e,t):this.string.slice(e-n,t-n)}},aP=null,j6e=class e{constructor(e,t,n=[],r,i,a,o,s){this.parser=e,this.state=t,this.fragments=n,this.tree=r,this.treeLen=i,this.viewport=a,this.skipped=o,this.scheduleOn=s,this.parse=null,this.tempSkipped=[]}static create(t,n,r){return new e(t,n,[],uN.empty,0,r,[],null)}startParse(){return this.parser.startParse(new A6e(this.state.doc),this.fragments)}work(e,t){return t!=null&&t>=this.state.doc.length&&(t=void 0),this.tree!=uN.empty&&this.isDone(t??this.state.doc.length)?(this.takeTree(),!0):this.withContext(()=>{if(typeof e==`number`){let t=Date.now()+e;e=()=>Date.now()>t}for(this.parse||=this.startParse(),t!=null&&(this.parse.stoppedAt==null||this.parse.stoppedAt>t)&&t=this.treeLen&&((this.parse.stoppedAt==null||this.parse.stoppedAt>e)&&this.parse.stopAt(e),this.withContext(()=>{for(;!(t=this.parse.advance()););}),this.treeLen=e,this.tree=t,this.fragments=this.withoutTempSkipped(vN.addTree(this.tree,this.fragments,!0)),this.parse=null)}withContext(e){let t=aP;aP=this;try{return e()}finally{aP=t}}withoutTempSkipped(e){for(let t;t=this.tempSkipped.pop();)e=r6e(e,t.from,t.to);return e}changes(t,n){let{fragments:r,tree:i,treeLen:a,viewport:o,skipped:s}=this;if(this.takeTree(),!t.empty){let e=[];if(t.iterChangedRanges((t,n,r,i)=>e.push({fromA:t,toA:n,fromB:r,toB:i})),r=vN.applyChanges(r,e),i=uN.empty,a=0,o={from:t.mapPos(o.from,-1),to:t.mapPos(o.to,1)},this.skipped.length){s=[];for(let e of this.skipped){let n=t.mapPos(e.from,1),r=t.mapPos(e.to,-1);ne.from&&(this.fragments=r6e(this.fragments,n,r),this.skipped.splice(t--,1))}return this.skipped.length>=t?!1:(this.reset(),!0)}reset(){this.parse&&=(this.takeTree(),null)}skipUntilInView(e,t){this.skipped.push({from:e,to:t})}static getSkippingParser(e){return new class extends yN{createParse(t,n,r){let i=r[0].from,a=r[r.length-1].to;return{parsedPos:i,advance(){let t=aP;if(t){for(let e of r)t.tempSkipped.push(e);e&&(t.scheduleOn=t.scheduleOn?Promise.all([t.scheduleOn,e]):e)}return this.parsedPos=a,new uN(oN.none,[],[],a-i)},stoppedAt:null,stopAt(){}}}}}isDone(e){e=Math.min(e,this.state.doc.length);let t=this.fragments;return this.treeLen>=e&&t.length&&t[0].from==0&&t[0].to>=e}static get(){return aP}},oP=class e{constructor(e){this.context=e,this.tree=e.tree}apply(t){if(!t.docChanged&&this.tree==this.context.tree)return this;let n=this.context.changes(t.changes,t.state),r=this.context.treeLen==t.startState.doc.length?void 0:Math.max(t.changes.mapPos(this.context.treeLen),n.viewport.to);return n.work(20,r)||n.takeTree(),new e(n)}static init(t){let n=Math.min(3e3,t.doc.length),r=j6e.create(t.facet(lP).parser,t,{from:0,to:n});return r.work(20,n)||r.takeTree(),new e(r)}},rP.state=rk.define({create:oP.init,update(e,t){for(let e of t.effects)if(e.is(rP.setState))return e.value;return t.startState.facet(lP)==t.state.facet(lP)?e.apply(t):oP.init(t.state)}}),sP=e=>{let t=setTimeout(()=>e(),500);return()=>clearTimeout(t)},typeof requestIdleCallback<`u`&&(sP=e=>{let t=-1,n=setTimeout(()=>{t=requestIdleCallback(e,{timeout:400})},100);return()=>t<0?clearTimeout(n):cancelIdleCallback(t)}),cP=typeof navigator<`u`&&navigator.scheduling?.isInputPending?()=>navigator.scheduling.isInputPending():null,M6e=wj.fromClass(class{constructor(e){this.view=e,this.working=null,this.workScheduled=0,this.chunkEnd=-1,this.chunkBudget=-1,this.work=this.work.bind(this),this.scheduleWork()}update(e){let t=this.view.state.field(rP.state).context;(t.updateViewport(e.view.viewport)||this.view.viewport.to>t.treeLen)&&this.scheduleWork(),(e.docChanged||e.selectionSet)&&(this.view.hasFocus&&(this.chunkBudget+=50),this.scheduleWork()),this.checkAsyncSchedule(t)}scheduleWork(){if(this.working)return;let{state:e}=this.view,t=e.field(rP.state);(t.tree!=t.context.tree||!t.context.isDone(e.doc.length))&&(this.working=sP(this.work))}work(e){this.working=null;let t=Date.now();if(this.chunkEndr+1e3,s=i.context.work(()=>cP&&cP()||Date.now()>a,r+(o?0:1e5));this.chunkBudget-=Date.now()-t,(s||this.chunkBudget<=0)&&(i.context.takeTree(),this.view.dispatch({effects:rP.setState.of(new oP(i.context))})),this.chunkBudget>0&&!(s&&!o)&&this.scheduleWork(),this.checkAsyncSchedule(i.context)}checkAsyncSchedule(e){e.scheduleOn&&=(this.workScheduled++,e.scheduleOn.then(()=>this.scheduleWork()).catch(e=>iA(this.view.state,e)).then(()=>this.workScheduled--),null)}destroy(){this.working&&this.working()}isWorking(){return!!(this.working||this.workScheduled>0)}},{eventHandlers:{focus(){this.scheduleWork()}}}),lP=ek.define({combine(e){return e.length?e[0]:null},enables:e=>[rP.state,M6e,vM.contentAttributes.compute([e],t=>{let n=t.facet(e);return n&&n.name?{"data-language":n.name}:{}})]}),uP=class{constructor(e,t=[]){this.language=e,this.support=t,this.extension=[e,t]}},N6e=ek.define(),dP=ek.define({combine:e=>{if(!e.length)return` `;let t=e[0];if(!t||/\S/.test(t)||Array.from(t).some(e=>e!=t[0]))throw Error(`Invalid indent unit: `+JSON.stringify(e[0]));return t}}),fP=class{constructor(e,t={}){this.state=e,this.options=t,this.unit=i6e(e)}lineAt(e,t=1){let n=this.state.doc.lineAt(e),{simulateBreak:r,simulateDoubleBreak:i}=this.options;return r!=null&&r>=n.from&&r<=n.to?i&&r==e?{text:``,from:e}:(t<0?r-1&&(i+=a-this.countColumn(n,n.search(/\S|$/))),i}countColumn(e,t=e.length){return zO(e,this.state.tabSize,t)}lineIndent(e,t=1){let{text:n,from:r}=this.lineAt(e,t),i=this.options.overrideIndentation;if(i){let e=i(r);if(e>-1)return e}return this.countColumn(n,n.search(/\S|$/))}get simulatedBreak(){return this.options.simulateBreak||null}},pP=new iN,P6e=class e extends fP{constructor(e,t,n){super(e.state,e.options),this.base=e,this.pos=t,this.context=n}get node(){return this.context.node}static create(t,n,r){return new e(t,n,r)}get textAfter(){return this.textAfterPos(this.pos)}get baseIndent(){return this.baseIndentFor(this.node)}baseIndentFor(e){let t=this.state.doc.lineAt(e.from);for(;;){let n=e.resolve(t.from);for(;n.parent&&n.parent.from==n.from;)n=n.parent;if(f6e(n,e))break;t=this.state.doc.lineAt(n.from)}return this.lineIndent(t.from)}continue(){return c6e(this.context.next,this.base,this.pos)}},F6e=e=>e.baseIndent,I6e=200,L6e=ek.define(),mP=new iN,hP=vk.define({map:y6e}),gP=vk.define({map:y6e}),_P=rk.define({create(){return GA.none},update(e,t){e=e.map(t.changes);for(let n of t.effects)if(n.is(hP)&&!b6e(e,n.value.from,n.value.to)){let{preparePlaceholder:r}=t.state.facet(vP),i=r?GA.replace({widget:new z6e(r(t.state,n.value))}):yP;e=e.update({add:[i.range(n.value.from,n.value.to)]})}else n.is(gP)&&(e=e.update({filter:(e,t)=>n.value.from!=e||n.value.to!=t,filterFrom:n.value.from,filterTo:n.value.to}));if(t.selection){let n=!1,{head:r}=t.selection.main;e.between(r,r,(e,t)=>{er&&(n=!0)}),n&&(e=e.update({filterFrom:r,filterTo:r,filter:(e,t)=>t<=r||e>=r}))}return e},provide:e=>vM.decorations.from(e),toJSON(e,t){let n=[];return e.between(0,t.doc.length,(e,t)=>{n.push(e,t)}),n},fromJSON(e){if(!Array.isArray(e)||e.length%2)throw RangeError(`Invalid JSON for fold state`);let t=[];for(let n=0;n!1},bP=class extends HM{constructor(e,t){super(),this.config=e,this.open=t}eq(e){return this.config==e.config&&this.open==e.open}toDOM(e){if(this.config.markerDOM)return this.config.markerDOM(this.open);let t=document.createElement(`span`);return t.textContent=this.open?this.config.openText:this.config.closedText,t.title=e.state.phrase(this.open?`Fold line`:`Unfold line`),t}},V6e=vM.baseTheme({".cm-foldPlaceholder":{backgroundColor:`#eee`,border:`1px solid #ddd`,color:`#888`,borderRadius:`.2em`,margin:`0 1px`,padding:`0 1px`,cursor:`pointer`},".cm-foldGutter span":{padding:`0 1px`,cursor:`pointer`}}),xP=class e{constructor(e,t){this.specs=e;let n;function r(e){let t=Fk.newName();return(n||=Object.create(null))[`.`+t]=e,t}let i=typeof t.all==`string`?t.all:t.all?r(t.all):void 0,a=t.scope;this.scope=a instanceof rP?e=>e.prop(tP)==a.data:a?e=>e==a:void 0,this.style=J3e(e.map(e=>({tag:e.tag,class:e.class||r(Object.assign({},e,{tag:null}))})),{all:i}).style,this.module=n?new Fk(n):null,this.themeType=t.themeType}static define(t,n){return new e(t,n||{})}},SP=ek.define(),CP=ek.define({combine(e){return e.length?[e[0]]:null}}),H6e=class{constructor(e){this.markCache=Object.create(null),this.tree=GN(e.state),this.decorations=this.buildDeco(e,XN(e.state)),this.decoratedTo=e.viewport.to}update(e){let t=GN(e.state),n=XN(e.state),r=n!=XN(e.startState),{viewport:i}=e.view,a=e.changes.mapPos(this.decoratedTo,1);t.length=i.to?(this.decorations=this.decorations.map(e.changes),this.decoratedTo=a):(t!=this.tree||e.viewportChanged||r)&&(this.tree=t,this.decorations=this.buildDeco(e.view,n),this.decoratedTo=i.to)}buildDeco(e,t){if(!t||!this.tree.length)return GA.none;let n=new Ek;for(let{from:r,to:i}of e.visibleRanges)X3e(this.tree,t,(e,t,r)=>{n.add(e,t,this.markCache[r]||(this.markCache[r]=GA.mark({class:r})))},r,i);return n.finish()}},U6e=ak.high(wj.fromClass(H6e,{decorations:e=>e.decorations})),W6e=xP.define([{tag:J.meta,color:`#404740`},{tag:J.link,textDecoration:`underline`},{tag:J.heading,textDecoration:`underline`,fontWeight:`bold`},{tag:J.emphasis,fontStyle:`italic`},{tag:J.strong,fontWeight:`bold`},{tag:J.strikethrough,textDecoration:`line-through`},{tag:J.keyword,color:`#708`},{tag:[J.atom,J.bool,J.url,J.contentSeparator,J.labelName],color:`#219`},{tag:[J.literal,J.inserted],color:`#164`},{tag:[J.string,J.deleted],color:`#a11`},{tag:[J.regexp,J.escape,J.special(J.string)],color:`#e40`},{tag:J.definition(J.variableName),color:`#00f`},{tag:J.local(J.variableName),color:`#30a`},{tag:[J.typeName,J.namespace],color:`#085`},{tag:J.className,color:`#167`},{tag:[J.special(J.variableName),J.macroName],color:`#256`},{tag:J.definition(J.propertyName),color:`#00c`},{tag:J.comment,color:`#940`},{tag:J.invalid,color:`#f00`}]),G6e=vM.baseTheme({"&.cm-focused .cm-matchingBracket":{backgroundColor:`#328c8252`},"&.cm-focused .cm-nonmatchingBracket":{backgroundColor:`#bb555544`}}),wP=1e4,TP=`()[]{}`,EP=ek.define({combine(e){return NO(e,{afterCursor:!0,brackets:TP,maxScanDistance:wP,renderMatch:T6e})}}),K6e=GA.mark({class:`cm-matchingBracket`}),q6e=GA.mark({class:`cm-nonmatchingBracket`}),J6e=[rk.define({create(){return GA.none},update(e,t){if(!t.docChanged&&!t.selection)return e;let n=[],r=t.state.facet(EP);for(let e of t.state.selection.ranges){if(!e.empty)continue;let i=$N(t.state,e.head,-1,r)||e.head>0&&$N(t.state,e.head-1,1,r)||r.afterCursor&&($N(t.state,e.head,1,r)||e.headvM.decorations.from(e)}),G6e],DP=new iN,Y6e=Object.create(null),OP=[oN.none],kP=[],AP=Object.create(null),X6e=Object.create(null);for(let[e,t]of[[`variable`,`variableName`],[`variable-2`,`variableName.special`],[`string-2`,`string.special`],[`def`,`variableName.definition`],[`tag`,`tagName`],[`attribute`,`attributeName`],[`type`,`typeName`],[`builtin`,`variableName.standard`],[`qualifier`,`modifier`],[`error`,`invalid`],[`header`,`heading`],[`property`,`propertyName`]])X6e[e]=k6e(Y6e,t);ej.RTL,ej.LTR}));function Z6e(e,t,n,r,i,a){switch(r){case`AttributeValue`:{let n=e.resolveInner(t,0).tree;if(!n)return null;let r=n.prop(iN.mounted)?.tree;if(r?.type.name!==`Styles`)return null;let a=[];return r.iterate({from:0,to:r.length,enter:({type:n,from:r,to:o})=>{let s=Z6e(e,t+1+r,t+1+o,n.name,i);if(s){if(Array.isArray(s))throw Error(`Unexpected nested overlays`);a.push(s)}}}),a}case`CallExpression`:{let e=Q6e(i.sliceString(t,n));return e?Object.assign(Object.assign({},e),{from:t,to:n}):null}case`ColorLiteral`:{let e=$6e(i.sliceString(t,n));return e?Object.assign(Object.assign({},e),{from:t,to:n}):null}case`ValueName`:{let e=e8e(i.sliceString(t,n));return e?Object.assign(Object.assign({},e),{from:t,to:n}):null}default:return null}}function Q6e(e){switch(e.slice(0,3)){case`rgb`:{let t=u8e.exec(e);if(!t)return null;let[n,r,i,a,o]=t,s=i8e(r,i,a);return{colorType:LP.rgb,color:s,alpha:o||``}}case`hsl`:{let t=d8e.exec(e);if(!t)return null;let[n,r,i,a,o]=t,s=a8e(r,i,a);return{colorType:LP.hsl,color:s,alpha:o||``}}default:return null}}function $6e(e){if(!f8e.exec(e))return null;let[t,n]=n8e(e);return{colorType:LP.hex,color:t,alpha:n}}function e8e(e){let t=FP.get(e);return t?{colorType:LP.named,color:t,alpha:``}:null}function t8e(e,t){let n=[],r=GN(e.state);for(let i of e.visibleRanges)r.iterate({from:i.from,to:i.to,enter:({type:i,from:a,to:o})=>{let s=t(r,a,o,i.name,e.state.doc,e.state.facet(lP)?.name);if(s){if(!Array.isArray(s)){n.push(GA.widget({widget:new zP(s),side:1}).range(s.from));return}for(let e of s)n.push(GA.widget({widget:new zP(e),side:1}).range(e.from))}}});return GA.set(n)}function n8e(e){return e.length===4?[`#${e[1].repeat(2)}${e[2].repeat(2)}${e[3].repeat(2)}`,``]:e.length===5?[`#${e[1].repeat(2)}${e[2].repeat(2)}${e[3].repeat(2)}`,e[4].repeat(2)]:e.length===9?[`#${e.slice(1,-2)}`,e.slice(-2)]:[e,``]}function MP(e){let t;if(e.endsWith(`%`)){let n=Number(e.slice(0,-1));t=Math.round(n/100*255)}else t=Number(e);return NP(t)}function NP(e){let t=e.toString(16);return t.length===1?`0`+t:t}function r8e(e){let t=e.slice(1,3),n=e.slice(3,5),r=e.slice(5,7);return[parseInt(t,16),parseInt(n,16),parseInt(r,16)]}function i8e(e,t,n){return`#${MP(e)}${MP(t)}${MP(n)}`}function a8e(e,t,n){let r=Number(t)/100,i=Number(n)/100,[a,o,s]=o8e(Number(e),r,i);return`#${NP(a)}${NP(o)}${NP(s)}`}function o8e(e,t,n){if(t===0){let e=Math.round(n*255);return[e,e,e]}let r;r=n<.5?n*(1+t):n+t-n*t;let i=2*n-r;e/=360;let a=s8e(e+.333),o=e,s=s8e(e-.333),c=PP(r,i,a),l=PP(r,i,o),u=PP(r,i,s);return[Math.round(c*255),Math.round(l*255),Math.round(u*255)]}function s8e(e){return e<0?e+1:e>1?e-1:e}function PP(e,t,n){return 6*n<1?t+(e-t)*6*n:2*n<1?e:3*n<2?t+(e-t)*(.666-n)*6:t}function c8e(e,t,n){let r=e/255,i=t/255,a=n/255,o=Math.min(r,i,a),s=Math.max(r,i,a),c=(s+o)/2;if(s===o)return[0,0,c];let l;l=c<=.5?(s-o)/(s+o):(s-o)/(2-s-o);let u;for(u=s===r?(i-a)/(s-o):i===s?2+(a-r)/(s-o):4+(r-i)/(s-o),u=Math.round(u*60);u<0;)u+=360;return[u,l,c]}var FP,l8e,IP,LP,u8e,d8e,f8e,RP,zP,p8e,m8e,h8e,g8e=s((()=>{XM(),CN(),jP(),FP=new Map([[`aliceblue`,`#f0f8ff`],[`antiquewhite`,`#faebd7`],[`aqua`,`#00ffff`],[`aquamarine`,`#7fffd4`],[`azure`,`#f0ffff`],[`beige`,`#f5f5dc`],[`bisque`,`#ffe4c4`],[`black`,`#000000`],[`blanchedalmond`,`#ffebcd`],[`blue`,`#0000ff`],[`blueviolet`,`#8a2be2`],[`brown`,`#a52a2a`],[`burlywood`,`#deb887`],[`cadetblue`,`#5f9ea0`],[`chartreuse`,`#7fff00`],[`chocolate`,`#d2691e`],[`coral`,`#ff7f50`],[`cornflowerblue`,`#6495ed`],[`cornsilk`,`#fff8dc`],[`crimson`,`#dc143c`],[`cyan`,`#00ffff`],[`darkblue`,`#00008b`],[`darkcyan`,`#008b8b`],[`darkgoldenrod`,`#b8860b`],[`darkgray`,`#a9a9a9`],[`darkgreen`,`#006400`],[`darkgrey`,`#a9a9a9`],[`darkkhaki`,`#bdb76b`],[`darkmagenta`,`#8b008b`],[`darkolivegreen`,`#556b2f`],[`darkorange`,`#ff8c00`],[`darkorchid`,`#9932cc`],[`darkred`,`#8b0000`],[`darksalmon`,`#e9967a`],[`darkseagreen`,`#8fbc8f`],[`darkslateblue`,`#483d8b`],[`darkslategray`,`#2f4f4f`],[`darkslategrey`,`#2f4f4f`],[`darkturquoise`,`#00ced1`],[`darkviolet`,`#9400d3`],[`deeppink`,`#ff1493`],[`deepskyblue`,`#00bfff`],[`dimgray`,`#696969`],[`dimgrey`,`#696969`],[`dodgerblue`,`#1e90ff`],[`firebrick`,`#b22222`],[`floralwhite`,`#fffaf0`],[`forestgreen`,`#228b22`],[`fuchsia`,`#ff00ff`],[`gainsboro`,`#dcdcdc`],[`ghostwhite`,`#f8f8ff`],[`goldenrod`,`#daa520`],[`gold`,`#ffd700`],[`gray`,`#808080`],[`green`,`#008000`],[`greenyellow`,`#adff2f`],[`grey`,`#808080`],[`honeydew`,`#f0fff0`],[`hotpink`,`#ff69b4`],[`indianred`,`#cd5c5c`],[`indigo`,`#4b0082`],[`ivory`,`#fffff0`],[`khaki`,`#f0e68c`],[`lavenderblush`,`#fff0f5`],[`lavender`,`#e6e6fa`],[`lawngreen`,`#7cfc00`],[`lemonchiffon`,`#fffacd`],[`lightblue`,`#add8e6`],[`lightcoral`,`#f08080`],[`lightcyan`,`#e0ffff`],[`lightgoldenrodyellow`,`#fafad2`],[`lightgray`,`#d3d3d3`],[`lightgreen`,`#90ee90`],[`lightgrey`,`#d3d3d3`],[`lightpink`,`#ffb6c1`],[`lightsalmon`,`#ffa07a`],[`lightseagreen`,`#20b2aa`],[`lightskyblue`,`#87cefa`],[`lightslategray`,`#778899`],[`lightslategrey`,`#778899`],[`lightsteelblue`,`#b0c4de`],[`lightyellow`,`#ffffe0`],[`lime`,`#00ff00`],[`limegreen`,`#32cd32`],[`linen`,`#faf0e6`],[`magenta`,`#ff00ff`],[`maroon`,`#800000`],[`mediumaquamarine`,`#66cdaa`],[`mediumblue`,`#0000cd`],[`mediumorchid`,`#ba55d3`],[`mediumpurple`,`#9370db`],[`mediumseagreen`,`#3cb371`],[`mediumslateblue`,`#7b68ee`],[`mediumspringgreen`,`#00fa9a`],[`mediumturquoise`,`#48d1cc`],[`mediumvioletred`,`#c71585`],[`midnightblue`,`#191970`],[`mintcream`,`#f5fffa`],[`mistyrose`,`#ffe4e1`],[`moccasin`,`#ffe4b5`],[`navajowhite`,`#ffdead`],[`navy`,`#000080`],[`oldlace`,`#fdf5e6`],[`olive`,`#808000`],[`olivedrab`,`#6b8e23`],[`orange`,`#ffa500`],[`orangered`,`#ff4500`],[`orchid`,`#da70d6`],[`palegoldenrod`,`#eee8aa`],[`palegreen`,`#98fb98`],[`paleturquoise`,`#afeeee`],[`palevioletred`,`#db7093`],[`papayawhip`,`#ffefd5`],[`peachpuff`,`#ffdab9`],[`peru`,`#cd853f`],[`pink`,`#ffc0cb`],[`plum`,`#dda0dd`],[`powderblue`,`#b0e0e6`],[`purple`,`#800080`],[`rebeccapurple`,`#663399`],[`red`,`#ff0000`],[`rosybrown`,`#bc8f8f`],[`royalblue`,`#4169e1`],[`saddlebrown`,`#8b4513`],[`salmon`,`#fa8072`],[`sandybrown`,`#f4a460`],[`seagreen`,`#2e8b57`],[`seashell`,`#fff5ee`],[`sienna`,`#a0522d`],[`silver`,`#c0c0c0`],[`skyblue`,`#87ceeb`],[`slateblue`,`#6a5acd`],[`slategray`,`#708090`],[`slategrey`,`#708090`],[`snow`,`#fffafa`],[`springgreen`,`#00ff7f`],[`steelblue`,`#4682b4`],[`tan`,`#d2b48c`],[`teal`,`#008080`],[`thistle`,`#d8bfd8`],[`tomato`,`#ff6347`],[`turquoise`,`#40e0d0`],[`violet`,`#ee82ee`],[`wheat`,`#f5deb3`],[`white`,`#ffffff`],[`whitesmoke`,`#f5f5f5`],[`yellow`,`#ffff00`],[`yellowgreen`,`#9acd32`]]),l8e=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(e!=null&&typeof Object.getOwnPropertySymbols==`function`)for(var i=0,r=Object.getOwnPropertySymbols(e);iwj.fromClass(class{constructor(t){this.decorations=t8e(t,e.discoverColors)}update(t){(t.docChanged||t.viewportChanged)&&(this.decorations=t8e(t.view,e.discoverColors))}},{decorations:e=>e.decorations,eventHandlers:{change:(e,t)=>{let n=e.target;if(n.nodeName!==`INPUT`||!n.parentElement||!n.parentElement.classList.contains(`cm-css-color-picker-wrapper`))return!1;let r=IP.get(n),i=n.value+r.alpha;if(r.colorType===LP.rgb)i=`rgb(${r8e(n.value).join(`, `)}${r.alpha})`;else if(r.colorType===LP.named)for(let[e,t]of FP.entries())t===n.value&&(i=e);else if(r.colorType===LP.hsl){let[e,t,a]=r8e(n.value),[o,s,c]=c8e(e,t,a);i=`hsl(${o}, ${Math.round(s*100)}%, ${Math.round(c*100)}%${r.alpha})`}return t.dispatch({changes:{from:r.from,to:r.to,insert:i}}),!0}}}),h8e=[m8e({discoverColors:Z6e}),p8e]}));function _8e(e){let t=Object.keys(e).join(``),n=/\w/.test(t);return n&&(t=t.replace(/\w/g,``)),`[${n?`\\w`:``}${t.replace(/[^\w\s]/g,`\\$&`)}]`}function v8e(e){let t=Object.create(null),n=Object.create(null);for(let{label:r}of e){t[r[0]]=!0;for(let e=1;etypeof e==`string`?{label:e}:e),[n,r]=t.every(e=>/^\w+$/.test(e.label))?[/\w*$/,/\w+$/]:v8e(t);return e=>{let i=e.matchBefore(r);return i||e.explicit?{from:i?i.from:e.pos,options:t,validFor:n}:null}}function b8e(e,t){return n=>{for(let t=GN(n.state).resolveInner(n.pos,-1);t;t=t.parent){if(e.indexOf(t.name)>-1)return null;if(t.type.isTop)break}return t(n)}}function BP(e){return e.selection.main.from}function x8e(e,t){let{source:n}=e,r=t&&n[0]!=`^`,i=n[n.length-1]!=`$`;return!r&&!i?e:RegExp(`${r?`^`:``}(?:${n})${i?`$`:``}`,e.flags??(e.ignoreCase?`i`:``))}function S8e(e,t,n,r){let{main:i}=e.selection,a=n-i.from,o=r-i.from;return Object.assign(Object.assign({},e.changeByRange(s=>{if(s!=i&&n!=r&&e.sliceDoc(s.from+a,s.from+o)!=e.sliceDoc(n,r))return{range:s};let c=e.toText(t);return{changes:{from:s.from+a,to:r==i.from?s.to:s.from+o,insert:c},range:QO.cursor(s.from+a+c.length)}})),{scrollIntoView:!0,userEvent:`input.complete`})}function C8e(e){if(!Array.isArray(e))return e;let t=XP.get(e);return t||XP.set(e,t=y8e(e)),t}function w8e(e,t){return e?t?e+` `+t:e:t}function T8e(e,t,n,r,i,a){let o=e.textDirection==ej.RTL,s=o,c=!1,l=`top`,u,d,f=t.left-i.left,p=i.right-t.right,m=r.right-r.left,h=r.bottom-r.top;if(s&&f=h||e>t.top?u=n.bottom-t.top:(l=`bottom`,u=t.bottom-n.top)}let g=(t.bottom-t.top)/a.offsetHeight,_=(t.right-t.left)/a.offsetWidth;return{style:`${l}: ${u/g}px; max-width: ${d/_}px`,class:`cm-completionInfo-`+(c?o?`left-narrow`:`right-narrow`:s?`left`:`right`)}}function E8e(e){let t=e.addToOptions.slice();return e.icons&&t.push({render(e){let t=document.createElement(`div`);return t.classList.add(`cm-completionIcon`),e.type&&t.classList.add(...e.type.split(/\s+/g).map(e=>`cm-completionIcon-`+e)),t.setAttribute(`aria-hidden`,`true`),t},position:20}),t.push({render(e,t,n,r){let i=document.createElement(`span`);i.className=`cm-completionLabel`;let a=e.displayLabel||e.label,o=0;for(let e=0;eo&&i.appendChild(document.createTextNode(a.slice(o,t)));let s=i.appendChild(document.createElement(`span`));s.appendChild(document.createTextNode(a.slice(t,n))),s.className=`cm-completionMatchedText`,o=n}return oe.position-t.position).map(e=>e.render)}function VP(e,t,n){if(e<=n)return{from:0,to:e};if(t<0&&(t=0),t<=e>>1){let e=Math.floor(t/n);return{from:e*n,to:(e+1)*n}}let r=Math.floor((e-t)/n);return{from:e-(r+1)*n,to:e-r*n}}function D8e(e,t){return n=>new Q8e(n,e,t)}function O8e(e,t){let n=e.getBoundingClientRect(),r=t.getBoundingClientRect(),i=n.height/e.offsetHeight;r.topn.bottom&&(e.scrollTop+=(r.bottom-n.bottom)/i)}function k8e(e){return(e.boost||0)*100+(e.apply?10:0)+(e.info?5:0)+ +!!e.type}function A8e(e,t){let n=[],r=null,i=e=>{n.push(e);let{section:t}=e.completion;if(t){r||=[];let e=typeof t==`string`?t:t.name;r.some(t=>t.name==e)||r.push(typeof t==`string`?{name:e}:t)}},a=t.facet($P);for(let r of e)if(r.hasResult()){let e=r.result.getMatch;if(r.result.filter===!1)for(let t of r.result.options)i(new JP(t,r.source,e?e(t):[],1e9-n.length));else{let n=t.sliceDoc(r.from,r.to),o,s=a.filterStrict?new Z8e(n):new X8e(n);for(let t of r.result.options)if(o=s.match(t.label)){let n=t.displayLabel?e?e(t,o.matched):[]:o.matched;i(new JP(t,r.source,n,o.score+(t.boost||0)))}}}if(r){let e=Object.create(null),t=0,i=(e,t)=>(e.rank??1e9)-(t.rank??1e9)||(e.namet.score-e.score||c(e.completion,t.completion))){let t=e.completion;!s||s.label!=t.label||s.detail!=t.detail||s.type!=null&&t.type!=null&&s.type!=t.type||s.apply!=t.apply||s.boost!=t.boost?o.push(e):k8e(e.completion)>k8e(s)&&(o[o.length-1]=e),s=e.completion}return o}function j8e(e,t){if(e==t)return!0;for(let n=0,r=0;;){for(;n-1&&(n[`aria-activedescendant`]=e+`-`+t),n}function N8e(e,t){if(e.isUserEvent(`input.complete`)){let n=e.annotation(YP);if(n&&t.activateOnCompletion(n))return 12}let n=e.isUserEvent(`input.type`);return n&&t.activateOnTyping?5:n?1:e.isUserEvent(`delete.backward`)?2:e.selection?8:e.docChanged?16:0}function P8e(e,t,n,r){if(!e)return!1;let i=t.sliceDoc(n,r);return typeof e==`function`?e(i,n,r,t):x8e(e,!0).test(i)}function HP(e,t){let n=t.completion.apply||t.completion.label,r=e.state.field(iF).active.find(e=>e.source==t.source);return r instanceof tF?(typeof n==`string`?e.dispatch(Object.assign(Object.assign({},S8e(e.state,n,r.from,r.to)),{annotations:YP.of(t.completion)})):n(e,t.completion,r.from,r.to),!0):!1}function UP(e,t=`option`){return n=>{let r=n.state.field(iF,!1);if(!r||!r.open||r.open.disabled||Date.now()-r.open.timestamp-1?r.open.selected+i*(e?1:-1):e?0:o-1;return s<0?s=t==`page`?0:o-1:s>=o&&(s=t==`page`?o-1:0),n.dispatch({effects:rF.of(s)}),!0}}function WP(e,t){return QO.create(e.filter(e=>e.field==t).map(e=>QO.range(e.from,e.to)))}function F8e(e){let t=h5e.parse(e);return(e,n,r,i)=>{let{text:a,ranges:o}=t.instantiate(e.state,r),s={changes:{from:r,to:i,insert:BO.of(a)},scrollIntoView:!0,annotations:n?[YP.of(n),yk.userEvent.of(`input.complete`)]:void 0};if(o.length&&(s.selection=WP(o,0)),o.some(e=>e.field>0)){let t=new sF(o,0),n=s.effects=[cF.of(t)];e.state.field(lF,!1)===void 0&&n.push(vk.appendConfig.of([lF,C5e,w5e,oF]))}e.dispatch(e.state.update(s))}}function I8e(e){return({state:t,dispatch:n})=>{let r=t.field(lF,!1);if(!r||e<0&&r.active==0)return!1;let i=r.active+e,a=e>0&&!r.ranges.some(t=>t.field==i+e);return n(t.update({selection:WP(r.ranges,i),effects:cF.of(a?null:new sF(r.ranges,i)),scrollIntoView:!0})),!0}}function GP(e,t){return Object.assign(Object.assign({},t),{apply:F8e(e)})}function L8e(){return[E5e,mF]}function R8e(e){for(let t=0;t<8;t+=2)if(hF.charCodeAt(t)==e)return hF.charAt(t+1);return z1e(e<128?e:e+1)}function z8e(e,t){return e.languageDataAt(`closeBrackets`,t)[0]||dF}function B8e(e,t){let n=z8e(e,e.selection.main.head),r=n.brackets||dF.brackets;for(let i of r){let a=R8e(bO(i,0));if(t==i)return a==i?G8e(e,i,r.indexOf(i+i+i)>-1,n):U8e(e,i,a,n.before||dF.before);if(t==a&&V8e(e,e.selection.main.from))return W8e(e,i,a)}return null}function V8e(e,t){let n=!1;return e.field(mF).between(0,e.doc.length,e=>{e==t&&(n=!0)}),n}function KP(e,t){let n=e.sliceString(t,t+2);return n.slice(0,xO(bO(n,0)))}function H8e(e,t){let n=e.sliceString(t-2,t);return xO(bO(n,0))==n.length?n:n.slice(1)}function U8e(e,t,n,r){let i=null,a=e.changeByRange(a=>{if(!a.empty)return{changes:[{insert:t,from:a.from},{insert:n,from:a.to}],effects:fF.of(a.to+t.length),range:QO.range(a.anchor+t.length,a.head+t.length)};let o=KP(e.doc,a.head);return!o||/\s/.test(o)||r.indexOf(o)>-1?{changes:{insert:t+n,from:a.head},effects:fF.of(a.head+t.length),range:QO.cursor(a.head+t.length)}:{range:i=a}});return i?null:e.update(a,{scrollIntoView:!0,userEvent:`input.type`})}function W8e(e,t,n){let r=null,i=e.changeByRange(t=>t.empty&&KP(e.doc,t.head)==n?{changes:{from:t.head,to:t.head+n.length,insert:n},range:QO.cursor(t.head+n.length)}:r={range:t});return r?null:e.update(i,{scrollIntoView:!0,userEvent:`input.type`})}function G8e(e,t,n,r){let i=r.stringPrefixes||dF.stringPrefixes,a=null,o=e.changeByRange(r=>{if(!r.empty)return{changes:[{insert:t,from:r.from},{insert:t,from:r.to}],effects:fF.of(r.to+t.length),range:QO.range(r.anchor+t.length,r.head+t.length)};let o=r.head,s=KP(e.doc,o),c;if(s==t){if(K8e(e,o))return{changes:{insert:t+t,from:o},effects:fF.of(o+t.length),range:QO.cursor(o+t.length)};if(V8e(e,o)){let r=n&&e.sliceDoc(o,o+t.length*3)==t+t+t?t+t+t:t;return{changes:{from:o,to:o+r.length,insert:r},range:QO.cursor(o+r.length)}}}else if(n&&e.sliceDoc(o-2*t.length,o)==t+t&&(c=J8e(e,o-2*t.length,i))>-1&&K8e(e,c))return{changes:{insert:t+t+t+t,from:o},effects:fF.of(o+t.length),range:QO.cursor(o+t.length)};else if(e.charCategorizer(o)(s)!=bk.Word&&J8e(e,o,i)>-1&&!q8e(e,o,t,i))return{changes:{insert:t+t,from:o},effects:fF.of(o+t.length),range:QO.cursor(o+t.length)};return{range:a=r}});return a?null:e.update(o,{scrollIntoView:!0,userEvent:`input.type`})}function K8e(e,t){let n=GN(e).resolveInner(t+1);return n.parent&&n.from==t}function q8e(e,t,n,r){let i=GN(e).resolveInner(t,-1),a=r.reduce((e,t)=>Math.max(e,t.length),0);for(let o=0;o<5;o++){let o=e.sliceDoc(i.from,Math.min(i.to,i.from+n.length+a)),s=o.indexOf(n);if(!s||s>-1&&r.indexOf(o.slice(0,s))>-1){let t=i.firstChild;for(;t&&t.from==i.from&&t.to-t.from>n.length+s;){if(e.sliceDoc(t.to-n.length,t.to)==n)return!1;t=t.firstChild}return!0}let c=i.to==t&&i.parent;if(!c)break;i=c}return!1}function J8e(e,t,n){let r=e.charCategorizer(t);if(r(e.sliceDoc(t-1,t))!=bk.Word)return t;for(let i of n){let n=t-i.length;if(e.sliceDoc(n,t)==i&&r(e.sliceDoc(n-1,n))!=bk.Word)return n}return-1}function Y8e(e={}){return[f5e,iF,$P.of(e),u5e,k5e,oF]}var qP,JP,YP,XP,ZP,QP,X8e,Z8e,$P,Q8e,$8e,e5e,t5e,n5e,r5e,eF,tF,nF,rF,iF,i5e,a5e,aF,o5e,s5e,c5e,l5e,u5e,d5e,f5e,oF,p5e,m5e,h5e,g5e,_5e,sF,cF,v5e,lF,y5e,b5e,x5e,S5e,uF,C5e,w5e,dF,fF,pF,mF,hF,T5e,E5e,D5e,O5e,gF,k5e,A5e=s((()=>{Ak(),XM(),jP(),qP=class{constructor(e,t,n,r){this.state=e,this.pos=t,this.explicit=n,this.view=r,this.abortListeners=[],this.abortOnDocChange=!1}tokenBefore(e){let t=GN(this.state).resolveInner(this.pos,-1);for(;t&&e.indexOf(t.name)<0;)t=t.parent;return t?{from:t.from,to:this.pos,text:this.state.sliceDoc(t.from,this.pos),type:t.type}:null}matchBefore(e){let t=this.state.doc.lineAt(this.pos),n=Math.max(t.from,this.pos-250),r=t.text.slice(n-t.from,this.pos-t.from),i=r.search(x8e(e,!1));return i<0?null:{from:n+i,to:this.pos,text:r.slice(i)}}get aborted(){return this.abortListeners==null}addEventListener(e,t,n){e==`abort`&&this.abortListeners&&(this.abortListeners.push(t),n&&n.onDocChange&&(this.abortOnDocChange=!0))}},JP=class{constructor(e,t,n,r){this.completion=e,this.source=t,this.match=n,this.score=r}},YP=_k.define(),XP=new WeakMap,ZP=vk.define(),QP=vk.define(),X8e=class{constructor(e){this.pattern=e,this.chars=[],this.folded=[],this.any=[],this.precise=[],this.byWord=[],this.score=0,this.matched=[];for(let t=0;t=48&&c<=57||c>=97&&c<=122?2:+(c>=65&&c<=90):(v=z1e(c))==v.toLowerCase()?v==v.toUpperCase()?0:2:1;(!r||y==1&&h||_==0&&y!=0)&&(t[u]==c||n[u]==c&&(d=!0)?a[u++]=r:a.length&&(g=!1)),_=y,r+=xO(c)}return u==s&&a[0]==0&&g?this.result(-100+(d?-200:0),a,e):f==s&&p==0?this.ret(-200-e.length+(m==e.length?0:-100),[0,m]):o>-1?this.ret(-700-e.length,[o,o+this.pattern.length]):f==s?this.ret(-900-e.length,[p,m]):u==s?this.result(-100+(d?-200:0)+-700+(g?0:-1100),a,e):t.length==2?null:this.result((r[0]?-700:0)+-200+-1100,r,e)}result(e,t,n){let r=[],i=0;for(let e of t){let t=e+(this.astral?xO(bO(n,e)):1);i&&r[i-1]==e?r[i-1]=t:(r[i++]=e,r[i++]=t)}return this.ret(e-n.length,r)}},Z8e=class{constructor(e){this.pattern=e,this.matched=[],this.score=0,this.folded=e.toLowerCase()}match(e){if(e.length!1,activateOnTypingDelay:100,selectOnOpen:!0,override:null,closeOnBlur:!0,maxRenderedOptions:100,defaultKeymap:!0,tooltipClass:()=>``,optionClass:()=>``,aboveCursor:!1,icons:!0,addToOptions:[],positionInfo:T8e,filterStrict:!1,compareCompletions:(e,t)=>e.label.localeCompare(t.label),interactionDelay:75,updateSyncTime:100},{defaultKeymap:(e,t)=>e&&t,closeOnBlur:(e,t)=>e&&t,icons:(e,t)=>e&&t,tooltipClass:(e,t)=>n=>w8e(e(n),t(n)),optionClass:(e,t)=>n=>w8e(e(n),t(n)),addToOptions:(e,t)=>e.concat(t),filterStrict:(e,t)=>e||t})}}),Q8e=class{constructor(e,t,n){this.view=e,this.stateField=t,this.applyCompletion=n,this.info=null,this.infoDestroy=null,this.placeInfoReq={read:()=>this.measureInfo(),write:e=>this.placeInfo(e),key:this},this.space=null,this.currentClass=``;let r=e.state.field(t),{options:i,selected:a}=r.open,o=e.state.facet($P);this.optionContent=E8e(o),this.optionClass=o.optionClass,this.tooltipClass=o.tooltipClass,this.range=VP(i.length,a,o.maxRenderedOptions),this.dom=document.createElement(`div`),this.dom.className=`cm-tooltip-autocomplete`,this.updateTooltipClass(e.state),this.dom.addEventListener(`mousedown`,n=>{let{options:r}=e.state.field(t).open;for(let t=n.target,i;t&&t!=this.dom;t=t.parentNode)if(t.nodeName==`LI`&&(i=/-(\d+)$/.exec(t.id))&&+i[1]{let n=e.state.field(this.stateField,!1);n&&n.tooltip&&e.state.facet($P).closeOnBlur&&t.relatedTarget!=e.contentDOM&&e.dispatch({effects:QP.of(null)})}),this.showOptions(i,r.id)}mount(){this.updateSel()}showOptions(e,t){this.list&&this.list.remove(),this.list=this.dom.appendChild(this.createListBox(e,t,this.range)),this.list.addEventListener(`scroll`,()=>{this.info&&this.view.requestMeasure(this.placeInfoReq)})}update(e){let t=e.state.field(this.stateField),n=e.startState.field(this.stateField);if(this.updateTooltipClass(e.state),t!=n){let{options:r,selected:i,disabled:a}=t.open;(!n.open||n.open.options!=r)&&(this.range=VP(r.length,i,e.state.facet($P).maxRenderedOptions),this.showOptions(r,t.id)),this.updateSel(),a!=n.open?.disabled&&this.dom.classList.toggle(`cm-tooltip-autocomplete-disabled`,!!a)}}updateTooltipClass(e){let t=this.tooltipClass(e);if(t!=this.currentClass){for(let e of this.currentClass.split(` `))e&&this.dom.classList.remove(e);for(let e of t.split(` `))e&&this.dom.classList.add(e);this.currentClass=t}}positioned(e){this.space=e,this.info&&this.view.requestMeasure(this.placeInfoReq)}updateSel(){let e=this.view.state.field(this.stateField),t=e.open;if((t.selected>-1&&t.selected=this.range.to)&&(this.range=VP(t.options.length,t.selected,this.view.state.facet($P).maxRenderedOptions),this.showOptions(t.options,e.id)),this.updateSelectedOption(t.selected)){this.destroyInfo();let{completion:n}=t.options[t.selected],{info:r}=n;if(!r)return;let i=typeof r==`string`?document.createTextNode(r):r(n);if(!i)return;`then`in i?i.then(t=>{t&&this.view.state.field(this.stateField,!1)==e&&this.addInfoPane(t,n)}).catch(e=>iA(this.view.state,e,`completion info`)):this.addInfoPane(i,n)}}addInfoPane(e,t){this.destroyInfo();let n=this.info=document.createElement(`div`);if(n.className=`cm-tooltip cm-completionInfo`,e.nodeType!=null)n.appendChild(e),this.infoDestroy=null;else{let{dom:t,destroy:r}=e;n.appendChild(t),this.infoDestroy=r||null}this.dom.appendChild(n),this.view.requestMeasure(this.placeInfoReq)}updateSelectedOption(e){let t=null;for(let n=this.list.firstChild,r=this.range.from;n;n=n.nextSibling,r++)n.nodeName!=`LI`||!n.id?r--:r==e?n.hasAttribute(`aria-selected`)||(n.setAttribute(`aria-selected`,`true`),t=n):n.hasAttribute(`aria-selected`)&&n.removeAttribute(`aria-selected`);return t&&O8e(this.list,t),t}measureInfo(){let e=this.dom.querySelector(`[aria-selected]`);if(!e||!this.info)return null;let t=this.dom.getBoundingClientRect(),n=this.info.getBoundingClientRect(),r=e.getBoundingClientRect(),i=this.space;if(!i){let e=this.dom.ownerDocument.defaultView||window;i={left:0,top:0,right:e.innerWidth,bottom:e.innerHeight}}return r.top>Math.min(i.bottom,t.bottom)-10||r.bottomn.from||n.from==0))if(i=e,typeof c!=`string`&&c.header)r.appendChild(c.header(c));else{let t=r.appendChild(document.createElement(`completion-section`));t.textContent=e}}let l=r.appendChild(document.createElement(`li`));l.id=t+`-`+a,l.setAttribute(`role`,`option`);let u=this.optionClass(o);u&&(l.className=u);for(let e of this.optionContent){let t=e(o,this.view.state,this.view,s);t&&l.appendChild(t)}}return n.from&&r.classList.add(`cm-completionListIncompleteTop`),n.to=this.options.length?this:new e(this.options,M8e(n,t),this.tooltip,this.timestamp,t,this.disabled)}static build(t,n,r,i,a,o){if(i&&!o&&t.some(e=>e.isPending))return i.setDisabled();let s=A8e(t,n);if(!s.length)return i&&t.some(e=>e.isPending)?i.setDisabled():null;let c=n.facet($P).selectOnOpen?0:-1;if(i&&i.selected!=c&&i.selected!=-1){let e=i.options[i.selected].completion;for(let t=0;tt.hasResult()?Math.min(e,t.from):e,1e8),create:i5e,above:a.aboveCursor},i?i.timestamp:Date.now(),c,!1)}map(t){return new e(this.options,this.attrs,Object.assign(Object.assign({},this.tooltip),{pos:t.mapPos(this.tooltip.pos)}),this.timestamp,this.selected,this.disabled)}setDisabled(){return new e(this.options,this.attrs,this.tooltip,this.timestamp,this.selected,!0)}},e5e=class e{constructor(e,t,n){this.active=e,this.id=t,this.open=n}static start(){return new e(r5e,`cm-ac-`+Math.floor(Math.random()*2e6).toString(36),null)}update(t){let{state:n}=t,r=n.facet($P),i=(r.override||n.languageDataAt(`autocomplete`,BP(n)).map(C8e)).map(e=>(this.active.find(t=>t.source==e)||new eF(e,+!!this.active.some(e=>e.state!=0))).update(t,r));i.length==this.active.length&&i.every((e,t)=>e==this.active[t])&&(i=this.active);let a=this.open,o=t.effects.some(e=>e.is(nF));a&&t.docChanged&&(a=a.map(t.changes)),t.selection||i.some(e=>e.hasResult()&&t.changes.touchesRange(e.from,e.to))||!j8e(i,this.active)||o?a=$8e.build(i,n,this.id,a,r,o):a&&a.disabled&&!i.some(e=>e.isPending)&&(a=null),!a&&i.every(e=>!e.isPending)&&i.some(e=>e.hasResult())&&(i=i.map(e=>e.hasResult()?new eF(e.source,0):e));for(let e of t.effects)e.is(rF)&&(a&&=a.setSelected(e.value,this.id));return i==this.active&&a==this.open?this:new e(i,this.id,a)}get tooltip(){return this.open?this.open.tooltip:null}get attrs(){return this.open?this.open.attrs:this.active.length?t5e:n5e}},t5e={"aria-autocomplete":`list`},n5e={},r5e=[],eF=class e{constructor(e,t,n=!1){this.source=e,this.state=t,this.explicit=n}hasResult(){return!1}get isPending(){return this.state==1}update(t,n){let r=N8e(t,n),i=this;(r&8||r&16&&this.touches(t))&&(i=new e(i.source,0)),r&4&&i.state==0&&(i=new e(this.source,1)),i=i.updateFor(t,r);for(let n of t.effects)if(n.is(ZP))i=new e(i.source,1,n.value);else if(n.is(QP))i=new e(i.source,0);else if(n.is(nF))for(let e of n.value)e.source==i.source&&(i=e);return i}updateFor(e,t){return this.map(e.changes)}map(e){return this}touches(e){return e.changes.touchesRange(BP(e.state))}},tF=class e extends eF{constructor(e,t,n,r,i,a){super(e,3,t),this.limit=n,this.result=r,this.from=i,this.to=a}hasResult(){return!0}updateFor(t,n){if(!(n&3))return this.map(t.changes);let r=this.result;r.map&&!t.changes.empty&&(r=r.map(r,t.changes));let i=t.changes.mapPos(this.from),a=t.changes.mapPos(this.to,1),o=BP(t.state);if(o>a||!r||n&2&&(BP(t.startState)==this.from||oe.map(t))}}),rF=vk.define(),iF=rk.define({create(){return e5e.start()},update(e,t){return e.update(t)},provide:e=>[FM.from(e,e=>e.tooltip),vM.contentAttributes.from(e,e=>e.attrs)]}),i5e=D8e(iF,HP),a5e=e=>{let t=e.state.field(iF,!1);return e.state.readOnly||!t||!t.open||t.open.selected<0||t.open.disabled||Date.now()-t.open.timestampe.state.field(iF,!1)?(e.dispatch({effects:ZP.of(!0)}),!0):!1,o5e=e=>{let t=e.state.field(iF,!1);return!t||!t.active.some(e=>e.state!=0)?!1:(e.dispatch({effects:QP.of(null)}),!0)},s5e=class{constructor(e,t){this.active=e,this.context=t,this.time=Date.now(),this.updates=[],this.done=void 0}},c5e=50,l5e=1e3,u5e=wj.fromClass(class{constructor(e){this.view=e,this.debounceUpdate=-1,this.running=[],this.debounceAccept=-1,this.pendingStart=!1,this.composing=0;for(let t of e.state.field(iF).active)t.isPending&&this.startQuery(t)}update(e){let t=e.state.field(iF),n=e.state.facet($P);if(!e.selectionSet&&!e.docChanged&&e.startState.field(iF)==t)return;let r=e.transactions.some(e=>{let t=N8e(e,n);return t&8||(e.selection||e.docChanged)&&!(t&3)});for(let t=0;tc5e&&Date.now()-n.time>l5e){for(let e of n.context.abortListeners)try{e()}catch(e){iA(this.view.state,e)}n.context.abortListeners=null,this.running.splice(t--,1)}else n.updates.push(...e.transactions)}this.debounceUpdate>-1&&clearTimeout(this.debounceUpdate),e.transactions.some(e=>e.effects.some(e=>e.is(ZP)))&&(this.pendingStart=!0);let i=this.pendingStart?50:n.activateOnTypingDelay;if(this.debounceUpdate=t.active.some(e=>e.isPending&&!this.running.some(t=>t.active.source==e.source))?setTimeout(()=>this.startUpdate(),i):-1,this.composing!=0)for(let t of e.transactions)t.isUserEvent(`input.type`)?this.composing=2:this.composing==2&&t.selection&&(this.composing=3)}startUpdate(){this.debounceUpdate=-1,this.pendingStart=!1;let{state:e}=this.view,t=e.field(iF);for(let e of t.active)e.isPending&&!this.running.some(t=>t.active.source==e.source)&&this.startQuery(e);this.running.length&&t.open&&t.open.disabled&&(this.debounceAccept=setTimeout(()=>this.accept(),this.view.state.facet($P).updateSyncTime))}startQuery(e){let{state:t}=this.view,n=BP(t),r=new qP(t,n,e.explicit,this.view),i=new s5e(e,r);this.running.push(i),Promise.resolve(e.source(r)).then(e=>{i.context.aborted||(i.done=e||null,this.scheduleAccept())},e=>{this.view.dispatch({effects:QP.of(null)}),iA(this.view.state,e)})}scheduleAccept(){this.running.every(e=>e.done!==void 0)?this.accept():this.debounceAccept<0&&(this.debounceAccept=setTimeout(()=>this.accept(),this.view.state.facet($P).updateSyncTime))}accept(){this.debounceAccept>-1&&clearTimeout(this.debounceAccept),this.debounceAccept=-1;let e=[],t=this.view.state.facet($P),n=this.view.state.field(iF);for(let r=0;re.source==i.active.source);if(a&&a.isPending)if(i.done==null){let n=new eF(i.active.source,0);for(let e of i.updates)n=n.update(e,t);n.isPending||e.push(n)}else this.startQuery(a)}(e.length||n.open&&n.open.disabled)&&this.view.dispatch({effects:nF.of(e)})}},{eventHandlers:{blur(e){let t=this.view.state.field(iF,!1);if(t&&t.tooltip&&this.view.state.facet($P).closeOnBlur){let n=t.open&&_4e(this.view,t.open.tooltip);(!n||!n.dom.contains(e.relatedTarget))&&setTimeout(()=>this.view.dispatch({effects:QP.of(null)}),10)}},compositionstart(){this.composing=1},compositionend(){this.composing==3&&setTimeout(()=>this.view.dispatch({effects:ZP.of(!1)}),20),this.composing=0}}}),d5e=typeof navigator==`object`&&/Win/.test(navigator.platform),f5e=ak.highest(vM.domEventHandlers({keydown(e,t){let n=t.state.field(iF,!1);if(!n||!n.open||n.open.disabled||n.open.selected<0||e.key.length>1||e.ctrlKey&&!(d5e&&e.altKey)||e.metaKey)return!1;let r=n.open.options[n.open.selected],i=n.active.find(e=>e.source==r.source),a=r.completion.commitCharacters||i.result.commitCharacters;return a&&a.indexOf(e.key)>-1&&HP(t,r),!1}})),oF=vM.baseTheme({".cm-tooltip.cm-tooltip-autocomplete":{"& > ul":{fontFamily:`monospace`,whiteSpace:`nowrap`,overflow:`hidden auto`,maxWidth_fallback:`700px`,maxWidth:`min(700px, 95vw)`,minWidth:`250px`,maxHeight:`10em`,height:`100%`,listStyle:`none`,margin:0,padding:0,"& > li, & > completion-section":{padding:`1px 3px`,lineHeight:1.2},"& > li":{overflowX:`hidden`,textOverflow:`ellipsis`,cursor:`pointer`},"& > completion-section":{display:`list-item`,borderBottom:`1px solid silver`,paddingLeft:`0.5em`,opacity:.7}}},"&light .cm-tooltip-autocomplete ul li[aria-selected]":{background:`#17c`,color:`white`},"&light .cm-tooltip-autocomplete-disabled ul li[aria-selected]":{background:`#777`},"&dark .cm-tooltip-autocomplete ul li[aria-selected]":{background:`#347`,color:`white`},"&dark .cm-tooltip-autocomplete-disabled ul li[aria-selected]":{background:`#444`},".cm-completionListIncompleteTop:before, .cm-completionListIncompleteBottom:after":{content:`"···"`,opacity:.5,display:`block`,textAlign:`center`},".cm-tooltip.cm-completionInfo":{position:`absolute`,padding:`3px 9px`,width:`max-content`,maxWidth:`400px`,boxSizing:`border-box`,whiteSpace:`pre-line`},".cm-completionInfo.cm-completionInfo-left":{right:`100%`},".cm-completionInfo.cm-completionInfo-right":{left:`100%`},".cm-completionInfo.cm-completionInfo-left-narrow":{right:`30px`},".cm-completionInfo.cm-completionInfo-right-narrow":{left:`30px`},"&light .cm-snippetField":{backgroundColor:`#00000022`},"&dark .cm-snippetField":{backgroundColor:`#ffffff22`},".cm-snippetFieldPosition":{verticalAlign:`text-top`,width:0,height:`1.15em`,display:`inline-block`,margin:`0 -0.7px -.7em`,borderLeft:`1.4px dotted #888`},".cm-completionMatchedText":{textDecoration:`underline`},".cm-completionDetail":{marginLeft:`0.5em`,fontStyle:`italic`},".cm-completionIcon":{fontSize:`90%`,width:`.8em`,display:`inline-block`,textAlign:`center`,paddingRight:`.6em`,opacity:`0.6`,boxSizing:`content-box`},".cm-completionIcon-function, .cm-completionIcon-method":{"&:after":{content:`'ƒ'`}},".cm-completionIcon-class":{"&:after":{content:`'○'`}},".cm-completionIcon-interface":{"&:after":{content:`'◌'`}},".cm-completionIcon-variable":{"&:after":{content:`'𝑥'`}},".cm-completionIcon-constant":{"&:after":{content:`'𝐶'`}},".cm-completionIcon-type":{"&:after":{content:`'𝑡'`}},".cm-completionIcon-enum":{"&:after":{content:`'∪'`}},".cm-completionIcon-property":{"&:after":{content:`'□'`}},".cm-completionIcon-keyword":{"&:after":{content:`'🔑︎'`}},".cm-completionIcon-namespace":{"&:after":{content:`'▢'`}},".cm-completionIcon-text":{"&:after":{content:`'abc'`,fontSize:`50%`,verticalAlign:`middle`}}}),p5e=class{constructor(e,t,n,r){this.field=e,this.line=t,this.from=n,this.to=r}},m5e=class e{constructor(e,t,n){this.field=e,this.from=t,this.to=n}map(t){let n=t.mapPos(this.from,-1,qO.TrackDel),r=t.mapPos(this.to,1,qO.TrackDel);return n==null||r==null?null:new e(this.field,n,r)}},h5e=class e{constructor(e,t){this.lines=e,this.fieldPositions=t}instantiate(e,t){let n=[],r=[t],i=e.doc.lineAt(t),a=/^\s*/.exec(i.text)[0];for(let i of this.lines){if(n.length){let n=a,o=/^\t*/.exec(i)[0].length;for(let t=0;tnew m5e(e.field,r[e.line]+e.from,r[e.line]+e.to))}}static parse(t){let n=[],r=[],i=[],a;for(let e of t.split(/\r\n?|\n/)){for(;a=/[#$]\{(?:(\d+)(?::([^}]*))?|((?:\\[{}]|[^}])*))\}/.exec(e);){let t=a[1]?+a[1]:null,o=a[2]||a[3]||``,s=-1,c=o.replace(/\\[{}]/g,e=>e[1]);for(let e=0;e=s&&e.field++}i.push(new p5e(s,r.length,a.index,a.index+c.length)),e=e.slice(0,a.index)+o+e.slice(a.index+a[0].length)}e=e.replace(/\\([{}])/g,(e,t,n)=>{for(let e of i)e.line==r.length&&e.from>n&&(e.from--,e.to--);return t}),r.push(e)}return new e(r,i)}},g5e=GA.widget({widget:new class extends UA{toDOM(){let e=document.createElement(`span`);return e.className=`cm-snippetFieldPosition`,e}ignoreEvent(){return!1}}}),_5e=GA.mark({class:`cm-snippetField`}),sF=class e{constructor(e,t){this.ranges=e,this.active=t,this.deco=GA.set(e.map(e=>(e.from==e.to?g5e:_5e).range(e.from,e.to)))}map(t){let n=[];for(let e of this.ranges){let r=e.map(t);if(!r)return null;n.push(r)}return new e(n,this.active)}selectionInsideField(e){return e.ranges.every(e=>this.ranges.some(t=>t.field==this.active&&t.from<=e.from&&t.to>=e.to))}},cF=vk.define({map(e,t){return e&&e.map(t)}}),v5e=vk.define(),lF=rk.define({create(){return null},update(e,t){for(let n of t.effects){if(n.is(cF))return n.value;if(n.is(v5e)&&e)return new sF(e.ranges,n.value)}return e&&t.docChanged&&(e=e.map(t.changes)),e&&t.selection&&!e.selectionInsideField(t.selection)&&(e=null),e},provide:e=>vM.decorations.from(e,e=>e?e.deco:GA.none)}),y5e=({state:e,dispatch:t})=>e.field(lF,!1)?(t(e.update({effects:cF.of(null)})),!0):!1,b5e=I8e(1),x5e=I8e(-1),S5e=[{key:`Tab`,run:b5e,shift:x5e},{key:`Escape`,run:y5e}],uF=ek.define({combine(e){return e.length?e[0]:S5e}}),C5e=ak.highest(xM.compute([uF],e=>e.facet(uF))),w5e=vM.domEventHandlers({mousedown(e,t){let n=t.state.field(lF,!1),r;if(!n||(r=t.posAtCoords({x:e.clientX,y:e.clientY}))==null)return!1;let i=n.ranges.find(e=>e.from<=r&&e.to>=r);return!i||i.field==n.active?!1:(t.dispatch({selection:WP(n.ranges,i.field),effects:cF.of(n.ranges.some(e=>e.field>i.field)?new sF(n.ranges,i.field):null),scrollIntoView:!0}),!0)}}),dF={brackets:[`(`,`[`,`{`,`'`,`"`],before:`)]}:;>`,stringPrefixes:[]},fF=vk.define({map(e,t){return t.mapPos(e,-1,qO.TrackAfter)??void 0}}),pF=new class extends Ck{},pF.startSide=1,pF.endSide=-1,mF=rk.define({create(){return Tk.empty},update(e,t){if(e=e.map(t.changes),t.selection){let n=t.state.doc.lineAt(t.selection.main.head);e=e.update({filter:e=>e>=n.from&&e<=n.to})}for(let n of t.effects)n.is(fF)&&(e=e.update({add:[pF.range(n.value,n.value+1)]}));return e}}),hF=`()[]{}<>`,T5e=typeof navigator==`object`&&/Android\b/.test(navigator.userAgent),E5e=vM.inputHandler.of((e,t,n,r)=>{if((T5e?e.composing:e.compositionStarted)||e.state.readOnly)return!1;let i=e.state.selection.main;if(r.length>2||r.length==2&&xO(bO(r,0))==1||t!=i.from||n!=i.to)return!1;let a=B8e(e.state,r);return a?(e.dispatch(a),!0):!1}),D5e=({state:e,dispatch:t})=>{if(e.readOnly)return!1;let n=z8e(e,e.selection.main.head).brackets||dF.brackets,r=null,i=e.changeByRange(t=>{if(t.empty){let r=H8e(e.doc,t.head);for(let i of n)if(i==r&&KP(e.doc,t.head)==R8e(bO(i,0)))return{changes:{from:t.head-i.length,to:t.head+i.length},range:QO.cursor(t.head-i.length)}}return{range:r=t}});return r||t(e.update(i,{scrollIntoView:!0,userEvent:`delete.backward`})),!r},O5e=[{key:`Backspace`,run:D5e}],gF=[{key:`Ctrl-Space`,run:aF},{mac:"Alt-`",run:aF},{key:`Escape`,run:o5e},{key:`ArrowDown`,run:UP(!0)},{key:`ArrowUp`,run:UP(!1)},{key:`PageDown`,run:UP(!0,`page`)},{key:`PageUp`,run:UP(!1,`page`)},{key:`Enter`,run:a5e}],k5e=ak.highest(xM.computeN([$P],e=>e.facet($P).defaultKeymap?[gF]:[]))}));function j5e(e={}){return[SF,xF.of(e),vM.domEventHandlers({beforeinput(e,t){let n=e.inputType==`historyUndo`?CF:e.inputType==`historyRedo`?wF:null;return n?(e.preventDefault(),n(t)):!1}})]}function _F(e,t){return function({state:n,dispatch:r}){if(!t&&n.readOnly)return!1;let i=n.field(SF,!1);if(!i)return!1;let a=i.pop(e,n,t);return a?(r(a),!0):!1}}function vF(e,t,n,r){let i=t+1>n+20?t-n-1:0,a=e.slice(i,t);return a.push(r),a}function M5e(e,t){let n=[],r=!1;return e.iterChangedRanges((e,t)=>n.push(e,t)),t.iterChangedRanges((e,t,i,a)=>{for(let e=0;e=t&&i<=o&&(r=!0)}}),r}function N5e(e,t){return e.ranges.length==t.ranges.length&&e.ranges.filter((e,n)=>e.empty!=t.ranges[n].empty).length===0}function P5e(e,t){return e.length?t.length?e.concat(t):e:t}function F5e(e,t){if(e.length){let n=e[e.length-1],r=n.selectionsAfter.slice(Math.max(0,n.selectionsAfter.length-U5e));return r.length&&r[r.length-1].eq(t)?e:(r.push(t),vF(e,e.length-1,1e9,n.setSelAfter(r)))}else return[TF.selection([t])]}function I5e(e){let t=e[e.length-1],n=e.slice();return n[e.length-1]=t.setSelAfter(t.selectionsAfter.slice(0,t.selectionsAfter.length-1)),n}function yF(e,t){if(!e.length)return e;let n=e.length,r=EF;for(;n;){let i=L5e(e[n-1],t,r);if(i.changes&&!i.changes.empty||i.effects.length){let t=e.slice(0,n);return t[n-1]=i,t}else t=i.mapped,n--,r=i.selectionsAfter}return r.length?[TF.selection(r)]:EF}function L5e(e,t,n){let r=P5e(e.selectionsAfter.length?e.selectionsAfter.map(e=>e.map(t)):EF,n);if(!e.changes)return TF.selection(r);let i=e.changes.map(t),a=t.mapDesc(e.changes,!0),o=e.mapped?e.mapped.composeDesc(a):a;return new TF(i,vk.mapEffects(e.effects,t),o,e.startSelection.map(a),r)}function R5e(e,t){let n=-1;return e.changeByRange(r=>{let i=[];for(let a=r.from;a<=r.to;){let o=e.doc.lineAt(a);o.number>n&&(r.empty||r.to>o.from)&&(t(o,i,r),n=o.number),a=o.to+1}let a=e.changes(i);return{changes:i,range:QO.range(a.mapPos(r.anchor,1),a.mapPos(r.head,1))}})}var bF,z5e,B5e,xF,SF,CF,wF,V5e,H5e,TF,EF,U5e,W5e,DF,G5e,K5e,q5e,J5e,Y5e,X5e=s((()=>{Ak(),XM(),jP(),bF=_k.define(),z5e=_k.define(),B5e=ek.define(),xF=ek.define({combine(e){return NO(e,{minDepth:100,newGroupDelay:500,joinToEvent:(e,t)=>t},{minDepth:Math.max,newGroupDelay:Math.min,joinToEvent:(e,t)=>(n,r)=>e(n,r)||t(n,r)})}}),SF=rk.define({create(){return DF.empty},update(e,t){let n=t.state.facet(xF),r=t.annotation(bF);if(r){let i=TF.fromTransaction(t,r.selection),a=r.side,o=a==0?e.undone:e.done;return o=i?vF(o,o.length,n.minDepth,i):F5e(o,t.startState.selection),new DF(a==0?r.rest:o,a==0?o:r.rest)}let i=t.annotation(z5e);if((i==`full`||i==`before`)&&(e=e.isolate()),t.annotation(yk.addToHistory)===!1)return t.changes.empty?e:e.addMapping(t.changes.desc);let a=TF.fromTransaction(t),o=t.annotation(yk.time),s=t.annotation(yk.userEvent);return a?e=e.addChanges(a,o,s,n,t):t.selection&&(e=e.addSelection(t.startState.selection,o,s,n.newGroupDelay)),(i==`full`||i==`after`)&&(e=e.isolate()),e},toJSON(e){return{done:e.done.map(e=>e.toJSON()),undone:e.undone.map(e=>e.toJSON())}},fromJSON(e){return new DF(e.done.map(TF.fromJSON),e.undone.map(TF.fromJSON))}}),CF=_F(0,!1),wF=_F(1,!1),V5e=_F(0,!0),H5e=_F(1,!0),TF=class e{constructor(e,t,n,r,i){this.changes=e,this.effects=t,this.mapped=n,this.startSelection=r,this.selectionsAfter=i}setSelAfter(t){return new e(this.changes,this.effects,this.mapped,this.startSelection,t)}toJSON(){return{changes:this.changes?.toJSON(),mapped:this.mapped?.toJSON(),startSelection:this.startSelection?.toJSON(),selectionsAfter:this.selectionsAfter.map(e=>e.toJSON())}}static fromJSON(t){return new e(t.changes&&YO.fromJSON(t.changes),[],t.mapped&&JO.fromJSON(t.mapped),t.startSelection&&QO.fromJSON(t.startSelection),t.selectionsAfter.map(QO.fromJSON))}static fromTransaction(t,n){let r=EF;for(let e of t.startState.facet(B5e)){let n=e(t);n.length&&(r=r.concat(n))}return!r.length&&t.changes.empty?null:new e(t.changes.invert(t.startState.doc),r,void 0,n||t.startState.selection,EF)}static selection(t){return new e(void 0,EF,void 0,void 0,t)}},EF=[],U5e=200,W5e=/^(input\.type|delete)($|\.)/,DF=class e{constructor(e,t,n=0,r=void 0){this.done=e,this.undone=t,this.prevTime=n,this.prevUserEvent=r}isolate(){return this.prevTime?new e(this.done,this.undone):this}addChanges(t,n,r,i,a){let o=this.done,s=o[o.length-1];return o=s&&s.changes&&!s.changes.empty&&t.changes&&(!r||W5e.test(r))&&(!s.selectionsAfter.length&&n-this.prevTime0&&n-this.prevTime(t(e.update(e.replaceSelection(e.lineBreak),{scrollIntoView:!0,userEvent:`input`})),!0),q5e=({state:e,dispatch:t})=>e.readOnly?!1:(t(e.update(R5e(e,(t,n)=>{n.push({from:t.from,insert:e.facet(dP)})}),{userEvent:`input.indent`})),!0),J5e=({state:e,dispatch:t})=>e.readOnly?!1:(t(e.update(R5e(e,(t,n)=>{let r=/^\s*/.exec(t.text)[0];if(!r)return;let i=zO(r,e.tabSize),a=0,o=a6e(e,Math.max(0,i-i6e(e)));for(;a=92&&t--,t>=34&&t--;let i=t-32;if(i>=46&&(i-=46,n=!0),a+=i,n)break;a*=46}n?n[i++]=a:n=new t(a)}return n}function Z5e(e,t,n,r,i,a){let o=0,s=1<0){let n=e[r];if(c.allows(n)&&(t.token.value==-1||t.token.value==n||$5e(n,t.token.value,i,a))){t.acceptToken(n);break}}let r=t.next,l=0,u=e[o+2];if(t.next<0&&u>l&&e[n+u*3-3]==65535){o=e[n+u*3-1];continue scan}for(;l>1,a=n+i+(i<<1),s=e[a],c=e[a+1]||65536;if(r=c)l=i+1;else{o=e[a+2],t.advance();continue scan}}break}}function Q5e(e,t,n){for(let r=t,i;(i=e[r])!=65535;r++)if(i==n)return r-t;return-1}function $5e(e,t,n,r){let i=Q5e(n,r,t);return i<0||Q5e(n,r,e)t)&&!r.type.isError)return n<0?Math.max(0,Math.min(r.to-1,t-25)):Math.min(e.length,Math.max(r.from+1,t+25));if(n<0?r.prevSibling():r.nextSibling())break;if(!r.parent())return n<0?0:e.length}}function t7e(e,t){for(let n=0;ne)&&n.p.parser.stateFlag(n.state,2)&&(!t||t.scoree.external(n,r)<<1|t}return e.get}var i7e,AF,a7e,o7e,jF,MF,s7e,NF,PF,FF,IF,LF,c7e,l7e,u7e,d7e,RF,zF,BF,VF=s((()=>{CN(),i7e=class e{constructor(e,t,n,r,i,a,o,s,c,l=0,u){this.p=e,this.stack=t,this.state=n,this.reducePos=r,this.pos=i,this.score=a,this.buffer=o,this.bufferBase=s,this.curContext=c,this.lookAhead=l,this.parent=u}toString(){return`[${this.stack.filter((e,t)=>t%3==0).concat(this.state)}]@${this.pos}${this.score?`!`+this.score:``}`}static start(t,n,r=0){let i=t.parser.context;return new e(t,[],n,r,r,0,[],0,i?new AF(i,i.start):null,0,null)}get context(){return this.curContext?this.curContext.context:null}pushState(e,t){this.stack.push(this.state,t,this.bufferBase+this.buffer.length),this.state=e}reduce(e){let t=e>>19,n=e&65535,{parser:r}=this.p,i=this.reducePos=2e3&&!this.p.parser.nodeSet.types[n]?.isAnonymous&&(s==this.p.lastBigReductionStart?(this.p.bigReductionCount++,this.p.lastBigReductionSize=c):this.p.lastBigReductionSizeo;)this.stack.pop();this.reduceContext(n,s)}storeNode(e,t,n,r=4,i=!1){if(e==0&&(!this.stack.length||this.stack[this.stack.length-1]0&&e.buffer[r-4]==0&&e.buffer[r-1]>-1){if(t==n)return;if(e.buffer[r-2]>=t){e.buffer[r-2]=n;return}}}if(!i||this.pos==n)this.buffer.push(e,t,n,r);else{let i=this.buffer.length;if(i>0&&this.buffer[i-4]!=0){let e=!1;for(let t=i;t>0&&this.buffer[t-2]>n;t-=4)if(this.buffer[t-1]>=0){e=!0;break}if(e)for(;i>0&&this.buffer[i-2]>n;)this.buffer[i]=this.buffer[i-4],this.buffer[i+1]=this.buffer[i-3],this.buffer[i+2]=this.buffer[i-2],this.buffer[i+3]=this.buffer[i-1],i-=4,r>4&&(r-=4)}this.buffer[i]=e,this.buffer[i+1]=t,this.buffer[i+2]=n,this.buffer[i+3]=r}}shift(e,t,n,r){if(e&131072)this.pushState(e&65535,this.pos);else if(e&262144)this.pos=r,this.shiftContext(t,n),t<=this.p.parser.maxNode&&this.buffer.push(t,n,r,4);else{let i=e,{parser:a}=this.p;(r>this.pos||t<=a.maxNode)&&(this.pos=r,a.stateFlag(i,1)||(this.reducePos=r)),this.pushState(i,n),this.shiftContext(t,n),t<=a.maxNode&&this.buffer.push(t,n,r,4)}}apply(e,t,n,r){e&65536?this.reduce(e):this.shift(e,t,n,r)}useNode(e,t){let n=this.p.reused.length-1;(n<0||this.p.reused[n]!=e)&&(this.p.reused.push(e),n++);let r=this.pos;this.reducePos=this.pos=r+e.length,this.pushState(t,r),this.buffer.push(n,r,this.reducePos,-1),this.curContext&&this.updateContext(this.curContext.tracker.reuse(this.curContext.context,e,this,this.p.stream.reset(this.pos-e.length)))}split(){let t=this,n=t.buffer.length;for(;n>0&&t.buffer[n-2]>t.reducePos;)n-=4;let r=t.buffer.slice(n),i=t.bufferBase+n;for(;t&&i==t.bufferBase;)t=t.parent;return new e(this.p,this.stack.slice(),this.state,this.reducePos,this.pos,this.score,r,i,this.curContext,this.lookAhead,t)}recoverByDelete(e,t){let n=e<=this.p.parser.maxNode;n&&this.storeNode(e,this.pos,t,4),this.storeNode(0,this.pos,t,n?8:4),this.pos=this.reducePos=t,this.score-=190}canShift(e){for(let t=new a7e(this);;){let n=this.p.parser.stateSlot(t.state,4)||this.p.parser.hasAction(t.state,e);if(n==0)return!1;if(!(n&65536))return!0;t.reduce(n)}}recoverByInsert(e){if(this.stack.length>=300)return[];let t=this.p.parser.nextStates(this.state);if(t.length>8||this.stack.length>=120){let n=[];for(let r=0,i;rt&1&&e==r)||n.push(t[e],r)}t=n}let n=[];for(let e=0;e>19,r=t&65535,i=this.stack.length-n*3;if(i<0||e.getGoto(this.stack[i],r,!1)<0){let e=this.findForcedReduction();if(e==null)return!1;t=e}this.storeNode(0,this.pos,this.pos,4,!0),this.score-=100}return this.reducePos=this.pos,this.reduce(t),!0}findForcedReduction(){let{parser:e}=this.p,t=[],n=(r,i)=>{if(!t.includes(r))return t.push(r),e.allActions(r,t=>{if(!(t&393216))if(t&65536){let n=(t>>19)-i;if(n>1){let r=t&65535,i=this.stack.length-n*3;if(i>=0&&e.getGoto(this.stack[i],r,!1)>=0)return n<<19|65536|r}}else{let e=n(t,i+1);if(e!=null)return e}})};return n(this.state,0)}forceAll(){for(;!this.p.parser.stateFlag(this.state,2);)if(!this.forceReduce()){this.storeNode(0,this.pos,this.pos,4,!0);break}return this}get deadEnd(){if(this.stack.length!=3)return!1;let{parser:e}=this.p;return e.data[e.stateSlot(this.state,1)]==65535&&!e.stateSlot(this.state,4)}restart(){this.storeNode(0,this.pos,this.pos,4,!0),this.state=this.stack[0],this.stack.length=0}sameState(e){if(this.state!=e.state||this.stack.length!=e.stack.length)return!1;for(let t=0;tthis.lookAhead&&(this.emitLookAhead(),this.lookAhead=e)}close(){this.curContext&&this.curContext.tracker.strict&&this.emitContext(),this.lookAhead>0&&this.emitLookAhead()}},AF=class{constructor(e,t){this.tracker=e,this.context=t,this.hash=e.strict?e.hash(t):0}},a7e=class{constructor(e){this.start=e,this.state=e.state,this.stack=e.stack,this.base=this.stack.length}reduce(e){let t=e&65535,n=e>>19;n==0?(this.stack==this.start.stack&&(this.stack=this.stack.slice()),this.stack.push(this.state,0,0),this.base+=3):this.base-=(n-1)*3;let r=this.start.p.parser.getGoto(this.stack[this.base-3],t,!0);this.state=r}},o7e=class e{constructor(e,t,n){this.stack=e,this.pos=t,this.index=n,this.buffer=e.buffer,this.index==0&&this.maybeNext()}static create(t,n=t.bufferBase+t.buffer.length){return new e(t,n,n-t.bufferBase)}maybeNext(){let e=this.stack.parent;e!=null&&(this.index=this.stack.bufferBase-e.bufferBase,this.stack=e,this.buffer=e.buffer)}get id(){return this.buffer[this.index-4]}get start(){return this.buffer[this.index-3]}get end(){return this.buffer[this.index-2]}get size(){return this.buffer[this.index-1]}next(){this.index-=4,this.pos-=4,this.index==0&&this.maybeNext()}fork(){return new e(this.stack,this.pos,this.index)}},jF=class{constructor(){this.start=-1,this.value=-1,this.end=-1,this.extended=-1,this.lookAhead=0,this.mask=0,this.context=0}},MF=new jF,s7e=class{constructor(e,t){this.input=e,this.ranges=t,this.chunk=``,this.chunkOff=0,this.chunk2=``,this.chunk2Pos=0,this.next=-1,this.token=MF,this.rangeIndex=0,this.pos=this.chunkPos=t[0].from,this.range=t[0],this.end=t[t.length-1].to,this.readNext()}resolveOffset(e,t){let n=this.range,r=this.rangeIndex,i=this.pos+e;for(;in.to:i>=n.to;){if(r==this.ranges.length-1)return null;let e=this.ranges[++r];i+=e.from-n.to,n=e}return i}clipPos(e){if(e>=this.range.from&&ee)return Math.max(e,t.from);return this.end}peek(e){let t=this.chunkOff+e,n,r;if(t>=0&&t=this.chunk2Pos&&nt.to&&(this.chunk2=this.chunk2.slice(0,t.to-n)),r=this.chunk2.charCodeAt(0)}}return n>=this.token.lookAhead&&(this.token.lookAhead=n+1),r}acceptToken(e,t=0){let n=t?this.resolveOffset(t,-1):this.pos;if(n==null||n=this.chunk2Pos&&this.posthis.range.to?e.slice(0,this.range.to-this.pos):e,this.chunkPos=this.pos,this.chunkOff=0}}readNext(){return this.chunkOff>=this.chunk.length&&(this.getChunk(),this.chunkOff==this.chunk.length)?this.next=-1:this.next=this.chunk.charCodeAt(this.chunkOff)}advance(e=1){for(this.chunkOff+=e;this.pos+e>=this.range.to;){if(this.rangeIndex==this.ranges.length-1)return this.setDone();e-=this.range.to-this.pos,this.range=this.ranges[++this.rangeIndex],this.pos=this.range.from}return this.pos+=e,this.pos>=this.token.lookAhead&&(this.token.lookAhead=this.pos+1),this.readNext()}setDone(){return this.pos=this.chunkPos=this.end,this.range=this.ranges[this.rangeIndex=this.ranges.length-1],this.chunk=``,this.next=-1}reset(e,t){if(t?(this.token=t,t.start=e,t.lookAhead=e+1,t.value=t.extended=-1):this.token=MF,this.pos!=e){if(this.pos=e,e==this.end)return this.setDone(),this;for(;e=this.range.to;)this.range=this.ranges[++this.rangeIndex];e>=this.chunkPos&&e=this.chunkPos&&t<=this.chunkPos+this.chunk.length)return this.chunk.slice(e-this.chunkPos,t-this.chunkPos);if(e>=this.chunk2Pos&&t<=this.chunk2Pos+this.chunk2.length)return this.chunk2.slice(e-this.chunk2Pos,t-this.chunk2Pos);if(e>=this.range.from&&t<=this.range.to)return this.input.read(e,t);let n=``;for(let r of this.ranges){if(r.from>=t)break;r.to>e&&(n+=this.input.read(Math.max(r.from,e),Math.min(r.to,t)))}return n}},NF=class{constructor(e,t){this.data=e,this.id=t}token(e,t){let{parser:n}=t.p;Z5e(this.data,e,t,this.id,n.data,n.tokenPrecTable)}},NF.prototype.contextual=NF.prototype.fallback=NF.prototype.extend=!1,PF=class{constructor(e,t,n){this.precTable=t,this.elseToken=n,this.data=typeof e==`string`?OF(e):e}token(e,t){let n=e.pos,r=0;for(;;){let n=e.next<0,i=e.resolveOffset(1,1);if(Z5e(this.data,e,t,0,this.data,this.precTable),e.token.value>-1)break;if(this.elseToken==null)return;if(n||r++,i==null)break;e.reset(i,e.token)}r&&(e.reset(n,e.token),e.acceptToken(this.elseToken,r))}},PF.prototype.contextual=NF.prototype.fallback=NF.prototype.extend=!1,FF=class{constructor(e,t={}){this.token=e,this.contextual=!!t.contextual,this.fallback=!!t.fallback,this.extend=!!t.extend}},IF=typeof process<`u`&&process.env&&/\bparse\b/.test(process.env.LOG),LF=null,c7e=class{constructor(e,t){this.fragments=e,this.nodeSet=t,this.i=0,this.fragment=null,this.safeFrom=-1,this.safeTo=-1,this.trees=[],this.start=[],this.index=[],this.nextFragment()}nextFragment(){let e=this.fragment=this.i==this.fragments.length?null:this.fragments[this.i++];if(e){for(this.safeFrom=e.openStart?e7e(e.tree,e.from+e.offset,1)-e.offset:e.from,this.safeTo=e.openEnd?e7e(e.tree,e.to+e.offset,-1)-e.offset:e.to;this.trees.length;)this.trees.pop(),this.start.pop(),this.index.pop();this.trees.push(e.tree),this.start.push(-e.offset),this.index.push(0),this.nextStart=this.safeFrom}else this.nextStart=1e9}nodeAt(e){if(ee)return this.nextStart=a,null;if(i instanceof uN){if(a==e){if(a=Math.max(this.safeFrom,e)&&(this.trees.push(i),this.start.push(a),this.index.push(0))}else this.index[t]++,this.nextStart=a+i.length}}},l7e=class{constructor(e,t){this.stream=t,this.tokens=[],this.mainToken=null,this.actions=[],this.tokens=e.tokenizers.map(e=>new jF)}getActions(e){let t=0,n=null,{parser:r}=e.p,{tokenizers:i}=r,a=r.stateSlot(e.state,3),o=e.curContext?e.curContext.hash:0,s=0;for(let r=0;rl.end+25&&(s=Math.max(l.lookAhead,s)),l.value!=0)){let r=t;if(l.extended>-1&&(t=this.addActions(e,l.extended,l.end,t)),t=this.addActions(e,l.value,l.end,t),!c.extend&&(n=l,t>r))break}}for(;this.actions.length>t;)this.actions.pop();return s&&e.setLookAhead(s),!n&&e.pos==this.stream.end&&(n=new jF,n.value=e.p.parser.eofTerm,n.start=n.end=e.pos,t=this.addActions(e,n.value,n.end,t)),this.mainToken=n,this.actions}getMainToken(e){if(this.mainToken)return this.mainToken;let t=new jF,{pos:n,p:r}=e;return t.start=n,t.end=Math.min(n+1,r.stream.end),t.value=n==r.stream.end?r.parser.eofTerm:0,t}updateCachedToken(e,t,n){let r=this.stream.clipPos(n.pos);if(t.token(this.stream.reset(r,e),n),e.value>-1){let{parser:t}=n.p;for(let r=0;r=0&&n.p.parser.dialect.allows(i>>1)){i&1?e.extended=i>>1:e.value=i>>1;break}}}else e.value=0,e.end=this.stream.clipPos(r+1)}putAction(e,t,n,r){for(let t=0;te.bufferLength*4?new c7e(n,e.nodeSet):null}get parsedPos(){return this.minStackPos}advance(){let e=this.stacks,t=this.minStackPos,n=this.stacks=[],r,i;if(this.bigReductionCount>300&&e.length==1){let[t]=e;for(;t.forceReduce()&&t.stack.length&&t.stack[t.stack.length-2]>=this.lastBigReductionStart;);this.bigReductionCount=this.lastBigReductionSize=0}for(let a=0;at)n.push(o);else if(this.advanceStack(o,n,e))continue;else{r||(r=[],i=[]),r.push(o);let e=this.tokens.getMainToken(o);i.push(e.value,e.end)}break}}if(!n.length){let e=r&&n7e(r);if(e)return IF&&console.log(`Finish with `+this.stackID(e)),this.stackToTree(e);if(this.parser.strict)throw IF&&r&&console.log(`Stuck with token `+(this.tokens.mainToken?this.parser.getName(this.tokens.mainToken.value):`none`)),SyntaxError(`No parse at `+t);this.recovering||=5}if(this.recovering&&r){let e=this.stoppedAt!=null&&r[0].pos>this.stoppedAt?r[0]:this.runRecovery(r,i,n);if(e)return IF&&console.log(`Force-finish `+this.stackID(e)),this.stackToTree(e.forceAll())}if(this.recovering){let e=this.recovering==1?1:this.recovering*3;if(n.length>e)for(n.sort((e,t)=>t.score-e.score);n.length>e;)n.pop();n.some(e=>e.reducePos>t)&&this.recovering--}else if(n.length>1){outer:for(let e=0;e500&&i.buffer.length>500)if((t.score-i.score||t.buffer.length-i.buffer.length)>0)n.splice(r--,1);else{n.splice(e--,1);continue outer}}}n.length>12&&n.splice(12,n.length-12)}this.minStackPos=n[0].pos;for(let e=1;e `:``;if(this.stoppedAt!=null&&r>this.stoppedAt)return e.forceReduce()?e:null;if(this.fragments){let t=e.curContext&&e.curContext.tracker.strict,n=t?e.curContext.hash:0;for(let o=this.fragments.nodeAt(r);o;){let r=this.parser.nodeSet.types[o.type.id]==o.type?i.getGoto(e.state,o.type.id):-1;if(r>-1&&o.length&&(!t||(o.prop(iN.contextHash)||0)==n))return e.useNode(o,r),IF&&console.log(a+this.stackID(e)+` (via reuse of ${i.getName(o.type.id)})`),!0;if(!(o instanceof uN)||o.children.length==0||o.positions[0]>0)break;let s=o.children[0];if(s instanceof uN&&o.positions[0]==0)o=s;else break}}let o=i.stateSlot(e.state,4);if(o>0)return e.reduce(o),IF&&console.log(a+this.stackID(e)+` (via always-reduce ${i.getName(o&65535)})`),!0;if(e.stack.length>=8400)for(;e.stack.length>6e3&&e.forceReduce(););let s=this.tokens.getActions(e);for(let o=0;or?t.push(f):n.push(f)}return!1}advanceFully(e,t){let n=e.pos;for(;;){if(!this.advanceStack(e,null,null))return!1;if(e.pos>n)return t7e(e,t),!0}}runRecovery(e,t,n){let r=null,i=!1;for(let a=0;a `:``;if(o.deadEnd&&(i||(i=!0,o.restart(),IF&&console.log(l+this.stackID(o)+` (restarted)`),this.advanceFully(o,n))))continue;let u=o.split(),d=l;for(let e=0;u.forceReduce()&&e<10&&(IF&&console.log(d+this.stackID(u)+` (via force-reduce)`),!this.advanceFully(u,n));e++)IF&&(d=this.stackID(u)+` -> `);for(let e of o.recoverByInsert(s))IF&&console.log(l+this.stackID(e)+` (via recover-insert)`),this.advanceFully(e,n);this.stream.end>o.pos?(c==o.pos&&(c++,s=0),o.recoverByDelete(s,c),IF&&console.log(l+this.stackID(o)+` (via recover-delete ${this.parser.getName(s)})`),t7e(o,n)):(!r||r.scoree,zF=class{constructor(e){this.start=e.start,this.shift=e.shift||RF,this.reduce=e.reduce||RF,this.reuse=e.reuse||RF,this.hash=e.hash||(()=>0),this.strict=e.strict!==!1}},BF=class e extends yN{constructor(e){if(super(),this.wrappers=[],e.version!=14)throw RangeError(`Parser version (${e.version}) doesn't match runtime version (14)`);let t=e.nodeNames.split(` `);this.minRepeatTerm=t.length;for(let n=0;ne.topRules[t][1]),r=[];for(let e=0;e=0)i(r,e,t[n++]);else{let a=t[n+-r];for(let o=-r;o>0;o--)i(t[n++],e,a);n++}}}this.nodeSet=new R3e(t.map((t,i)=>oN.define({name:i>=this.minRepeatTerm?void 0:t,id:i,props:r[i],top:n.indexOf(i)>-1,error:i==0,skipped:e.skippedNodes&&e.skippedNodes.indexOf(i)>-1}))),e.propSources&&(this.nodeSet=this.nodeSet.extend(...e.propSources)),this.strict=!1,this.bufferLength=nN;let a=OF(e.tokenData);this.context=e.context,this.specializerSpecs=e.specialized||[],this.specialized=new Uint16Array(this.specializerSpecs.length);for(let e=0;etypeof e==`number`?new NF(a,e):e),this.topRules=e.topRules,this.dialects=e.dialects||{},this.dynamicPrecedences=e.dynamicPrecedences||null,this.tokenPrecTable=e.tokenPrec,this.termNames=e.termNames||null,this.maxNode=this.nodeSet.types.length-1,this.dialect=this.parseDialect(),this.top=this.topRules[Object.keys(this.topRules)[0]]}createParse(e,t,n){let r=new u7e(this,e,t,n);for(let i of this.wrappers)r=i(r,e,t,n);return r}getGoto(e,t,n=!1){let r=this.goto;if(t>=r[0])return-1;for(let i=r[t+1];;){let t=r[i++],a=t&1,o=r[i++];if(a&&n)return o;for(let n=i+(t>>1);i0}validAction(e,t){return!!this.allActions(e,e=>e==t||null)}allActions(e,t){let n=this.stateSlot(e,4),r=n?t(n):void 0;for(let n=this.stateSlot(e,1);r==null;n+=3){if(this.data[n]==65535)if(this.data[n+1]==1)n=kF(this.data,n+2);else break;r=t(kF(this.data,n+1))}return r}nextStates(e){let t=[];for(let n=this.stateSlot(e,1);;n+=3){if(this.data[n]==65535)if(this.data[n+1]==1)n=kF(this.data,n+2);else break;if(!(this.data[n+2]&1)){let e=this.data[n+1];t.some((t,n)=>n&1&&t==e)||t.push(this.data[n],e)}}return t}configure(t){let n=Object.assign(Object.create(e.prototype),this);if(t.props&&(n.nodeSet=this.nodeSet.extend(...t.props)),t.top){let e=this.topRules[t.top];if(!e)throw RangeError(`Invalid top rule name ${t.top}`);n.top=e}return t.tokenizers&&(n.tokenizers=this.tokenizers.map(e=>{let n=t.tokenizers.find(t=>t.from==e);return n?n.to:e})),t.specializers&&(n.specializers=this.specializers.slice(),n.specializerSpecs=this.specializerSpecs.map((e,r)=>{let i=t.specializers.find(t=>t.from==e.external);if(!i)return e;let a=Object.assign(Object.assign({},e),{external:i.to});return n.specializers[r]=r7e(a),a})),t.contextTracker&&(n.context=t.contextTracker),t.dialect&&(n.dialect=this.parseDialect(t.dialect)),t.strict!=null&&(n.strict=t.strict),t.wrap&&(n.wrappers=n.wrappers.concat(t.wrap)),t.bufferLength!=null&&(n.bufferLength=t.bufferLength),n}hasWrappers(){return this.wrappers.length>0}getName(e){return this.termNames?this.termNames[e]:String(e<=this.maxNode&&this.nodeSet.types[e].name||e)}get eofTerm(){return this.maxNode+1}get topNode(){return this.nodeSet.types[this.top[1]]}dynamicPrecedence(e){let t=this.dynamicPrecedences;return t==null?0:t[e]||0}parseDialect(e){let t=Object.keys(this.dialects),n=t.map(()=>!1);if(e)for(let r of e.split(` `)){let e=t.indexOf(r);e>=0&&(n[e]=!0)}let r=null;for(let e=0;e=65&&e<=90||e>=97&&e<=122||e>=161}function f7e(e){return e>=48&&e<=57}var p7e,UF,m7e,h7e,WF,GF,g7e,_7e,KF,v7e,qF,y7e,b7e,x7e,S7e,C7e,w7e,T7e,E7e,D7e,O7e,k7e,A7e,j7e,M7e,N7e=s((()=>{VF(),WN(),p7e=99,UF=1,m7e=100,h7e=101,WF=2,GF=[9,10,11,12,13,32,133,160,5760,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8232,8233,8239,8287,12288],g7e=58,_7e=40,KF=95,v7e=91,qF=45,y7e=46,b7e=35,x7e=37,S7e=38,C7e=92,w7e=10,T7e=new FF((e,t)=>{for(let n=!1,r=0,i=0;;i++){let{next:a}=e;if(HF(a)||a==qF||a==KF||n&&f7e(a))!n&&(a!=qF||i>0)&&(n=!0),r===i&&a==qF&&r++,e.advance();else if(a==C7e&&e.peek(1)!=w7e)e.advance(),e.next>-1&&e.advance(),n=!0;else{n&&e.acceptToken(a==_7e?m7e:r==2&&t.canShift(WF)?WF:h7e);break}}}),E7e=new FF(e=>{if(GF.includes(e.peek(-1))){let{next:t}=e;(HF(t)||t==KF||t==b7e||t==y7e||t==v7e||t==g7e&&HF(e.peek(1))||t==qF||t==S7e)&&e.acceptToken(p7e)}}),D7e=new FF(e=>{if(!GF.includes(e.peek(-1))){let{next:t}=e;if(t==x7e&&(e.advance(),e.acceptToken(UF)),HF(t)){do e.advance();while(HF(e.next)||f7e(e.next));e.acceptToken(UF)}}}),O7e=wN({"AtKeyword import charset namespace keyframes media supports":J.definitionKeyword,"from to selector":J.keyword,NamespaceName:J.namespace,KeyframeName:J.labelName,KeyframeRangeName:J.operatorKeyword,TagName:J.tagName,ClassName:J.className,PseudoClassName:J.constant(J.className),IdName:J.labelName,"FeatureName PropertyName":J.propertyName,AttributeName:J.attributeName,NumberLiteral:J.number,KeywordQuery:J.keyword,UnaryQueryOp:J.operatorKeyword,"CallTag ValueName":J.atom,VariableName:J.variableName,Callee:J.operatorKeyword,Unit:J.unit,"UniversalSelector NestingSelector":J.definitionOperator,MatchOp:J.compareOperator,"ChildOp SiblingOp, LogicOp":J.logicOperator,BinOp:J.arithmeticOperator,Important:J.modifier,Comment:J.blockComment,ColorLiteral:J.color,"ParenthesizedContent StringLiteral":J.string,":":J.punctuation,"PseudoOp #":J.derefOperator,"; ,":J.separator,"( )":J.paren,"[ ]":J.squareBracket,"{ }":J.brace}),k7e={__proto__:null,lang:32,"nth-child":32,"nth-last-child":32,"nth-of-type":32,"nth-last-of-type":32,dir:32,"host-context":32,url:60,"url-prefix":60,domain:60,regexp:60,selector:138},A7e={__proto__:null,"@import":118,"@media":142,"@charset":146,"@namespace":150,"@keyframes":156,"@supports":168},j7e={__proto__:null,not:132,only:132},M7e=BF.deserialize({version:14,states:":^QYQ[OOO#_Q[OOP#fOWOOOOQP'#Cd'#CdOOQP'#Cc'#CcO#kQ[O'#CfO$_QXO'#CaO$fQ[O'#ChO$qQ[O'#DTO$vQ[O'#DWOOQP'#Em'#EmO${QdO'#DgO%jQ[O'#DtO${QdO'#DvO%{Q[O'#DxO&WQ[O'#D{O&`Q[O'#ERO&nQ[O'#ETOOQS'#El'#ElOOQS'#EW'#EWQYQ[OOO&uQXO'#CdO'jQWO'#DcO'oQWO'#EsO'zQ[O'#EsQOQWOOP(UO#tO'#C_POOO)C@[)C@[OOQP'#Cg'#CgOOQP,59Q,59QO#kQ[O,59QO(aQ[O'#E[O({QWO,58{O)TQ[O,59SO$qQ[O,59oO$vQ[O,59rO(aQ[O,59uO(aQ[O,59wO(aQ[O,59xO)`Q[O'#DbOOQS,58{,58{OOQP'#Ck'#CkOOQO'#DR'#DROOQP,59S,59SO)gQWO,59SO)lQWO,59SOOQP'#DV'#DVOOQP,59o,59oOOQO'#DX'#DXO)qQ`O,59rOOQS'#Cp'#CpO${QdO'#CqO)yQvO'#CsO+ZQtO,5:ROOQO'#Cx'#CxO)lQWO'#CwO+oQWO'#CyO+tQ[O'#DOOOQS'#Ep'#EpOOQO'#Dj'#DjO+|Q[O'#DqO,[QWO'#EtO&`Q[O'#DoO,jQWO'#DrOOQO'#Eu'#EuO)OQWO,5:`O,oQpO,5:bOOQS'#Dz'#DzO,wQWO,5:dO,|Q[O,5:dOOQO'#D}'#D}O-UQWO,5:gO-ZQWO,5:mO-cQWO,5:oOOQS-E8U-E8UO${QdO,59}O-kQ[O'#E^O-xQWO,5;_O-xQWO,5;_POOO'#EV'#EVP.TO#tO,58yPOOO,58y,58yOOQP1G.l1G.lO.zQXO,5:vOOQO-E8Y-E8YOOQS1G.g1G.gOOQP1G.n1G.nO)gQWO1G.nO)lQWO1G.nOOQP1G/Z1G/ZO/XQ`O1G/^O/rQXO1G/aO0YQXO1G/cO0pQXO1G/dO1WQWO,59|O1]Q[O'#DSO1dQdO'#CoOOQP1G/^1G/^O${QdO1G/^O1kQpO,59]OOQS,59_,59_O${QdO,59aO1sQWO1G/mOOQS,59c,59cO1xQ!bO,59eOOQS'#DP'#DPOOQS'#EY'#EYO2QQ[O,59jOOQS,59j,59jO2YQWO'#DjO2eQWO,5:VO2jQWO,5:]O&`Q[O,5:XO&`Q[O'#E_O2rQWO,5;`O2}QWO,5:ZO(aQ[O,5:^OOQS1G/z1G/zOOQS1G/|1G/|OOQS1G0O1G0OO3`QWO1G0OO3eQdO'#EOOOQS1G0R1G0ROOQS1G0X1G0XOOQS1G0Z1G0ZO3pQtO1G/iOOQO,5:x,5:xO4WQ[O,5:xOOQO-E8[-E8[O4eQWO1G0yPOOO-E8T-E8TPOOO1G.e1G.eOOQP7+$Y7+$YOOQP7+$x7+$xO${QdO7+$xOOQS1G/h1G/hO4pQXO'#ErO4wQWO,59nO4|QtO'#EXO5tQdO'#EoO6OQWO,59ZO6TQpO7+$xOOQS1G.w1G.wOOQS1G.{1G.{OOQS7+%X7+%XO6]QWO1G/POOQS-E8W-E8WOOQS1G/U1G/UO${QdO1G/qOOQO1G/w1G/wOOQO1G/s1G/sO6bQWO,5:yOOQO-E8]-E8]O6pQXO1G/xOOQS7+%j7+%jO6wQYO'#CsOOQO'#EQ'#EQO7SQ`O'#EPOOQO'#EP'#EPO7_QWO'#E`O7gQdO,5:jOOQS,5:j,5:jO7rQtO'#E]O${QdO'#E]O8sQdO7+%TOOQO7+%T7+%TOOQO1G0d1G0dO9WQpO<OAN>OO:xQdO,5:uOOQO-E8X-E8XOOQO<T![;'S%^;'S;=`%o<%lO%^l;TUo`Oy%^z!Q%^!Q![;g![;'S%^;'S;=`%o<%lO%^l;nYo`#e[Oy%^z!Q%^!Q![;g![!g%^!g!h<^!h#X%^#X#Y<^#Y;'S%^;'S;=`%o<%lO%^l[[o`#e[Oy%^z!O%^!O!P;g!P!Q%^!Q![>T![!g%^!g!h<^!h#X%^#X#Y<^#Y;'S%^;'S;=`%o<%lO%^n?VSt^Oy%^z;'S%^;'S;=`%o<%lO%^l?hWjWOy%^z!O%^!O!P;O!P!Q%^!Q![>T![;'S%^;'S;=`%o<%lO%^n@VU#bQOy%^z!Q%^!Q![;g![;'S%^;'S;=`%o<%lO%^~@nTjWOy%^z{@}{;'S%^;'S;=`%o<%lO%^~AUSo`#[~Oy%^z;'S%^;'S;=`%o<%lO%^lAg[#e[Oy%^z!O%^!O!P;g!P!Q%^!Q![>T![!g%^!g!h<^!h#X%^#X#Y<^#Y;'S%^;'S;=`%o<%lO%^bBbU]QOy%^z![%^![!]Bt!];'S%^;'S;=`%o<%lO%^bB{S^Qo`Oy%^z;'S%^;'S;=`%o<%lO%^nC^S!Y^Oy%^z;'S%^;'S;=`%o<%lO%^dCoS|SOy%^z;'S%^;'S;=`%o<%lO%^bDQU!OQOy%^z!`%^!`!aDd!a;'S%^;'S;=`%o<%lO%^bDkS!OQo`Oy%^z;'S%^;'S;=`%o<%lO%^bDzWOy%^z!c%^!c!}Ed!}#T%^#T#oEd#o;'S%^;'S;=`%o<%lO%^bEk[![Qo`Oy%^z}%^}!OEd!O!Q%^!Q![Ed![!c%^!c!}Ed!}#T%^#T#oEd#o;'S%^;'S;=`%o<%lO%^nFfSq^Oy%^z;'S%^;'S;=`%o<%lO%^nFwSp^Oy%^z;'S%^;'S;=`%o<%lO%^bGWUOy%^z#b%^#b#cGj#c;'S%^;'S;=`%o<%lO%^bGoUo`Oy%^z#W%^#W#XHR#X;'S%^;'S;=`%o<%lO%^bHYS!bQo`Oy%^z;'S%^;'S;=`%o<%lO%^bHiUOy%^z#f%^#f#gHR#g;'S%^;'S;=`%o<%lO%^fIQS!TUOy%^z;'S%^;'S;=`%o<%lO%^nIcS!S^Oy%^z;'S%^;'S;=`%o<%lO%^fItU!RQOy%^z!_%^!_!`6y!`;'S%^;'S;=`%o<%lO%^`JZP;=`<%l$}",tokenizers:[E7e,D7e,T7e,1,2,3,4,new PF(`m~RRYZ[z{a~~g~aO#^~~dP!P!Qg~lO#_~~`,28,105)],topRules:{StyleSheet:[0,4],Styles:[1,86]},specialized:[{term:100,get:e=>k7e[e]||-1},{term:58,get:e=>A7e[e]||-1},{term:101,get:e=>j7e[e]||-1}],tokenPrec:1200})}));function JF(){if(!YF&&typeof document==`object`&&document.body){let{style:e}=document.body,t=[],n=new Set;for(let r in e)r!=`cssText`&&r!=`cssFloat`&&typeof e[r]==`string`&&(/[A-Z]/.test(r)&&(r=r.replace(/[A-Z]/g,e=>`-`+e.toLowerCase())),n.has(r)||(t.push(r),n.add(r)));YF=t.sort().map(e=>({type:`property`,label:e,apply:e+`: `}))}return YF||[]}function P7e(e,t){if((e.name==`(`||e.type.isError)&&(e=e.parent||e),e.name!=`ArgList`)return!1;let n=e.parent?.firstChild;return n?.name==`Callee`&&t.sliceString(n.from,n.to)==`var`}function F7e(e){for(let t=e;;){if(t.type.isTop)return t;if(!(t=t.parent))return e}}function I7e(e,t,n){if(t.to-t.from>4096){let r=$F.get(t);if(r)return r;let i=[],a=new Set,o=t.cursor(lN.IncludeAnonymous);if(o.firstChild())do for(let t of I7e(e,o.node,n))a.has(t.label)||(a.add(t.label),i.push(t));while(o.nextSibling());return $F.set(t,i),i}else{let r=[],i=new Set;return t.cursor().iterate(t=>{if(n(t)&&t.matchContext(V7e)&&t.node.nextSibling?.name==`:`){let n=e.sliceString(t.from,t.to);i.has(n)||(i.add(n),r.push({label:n,type:`variable`}))}}),r}}function L7e(){return new uP(eI,eI.data.of({autocomplete:U7e}))}var YF,XF,ZF,R7e,z7e,QF,B7e,$F,V7e,H7e,U7e,eI,W7e=s((()=>{N7e(),jP(),CN(),YF=null,XF=`active.after.any-link.autofill.backdrop.before.checked.cue.default.defined.disabled.empty.enabled.file-selector-button.first.first-child.first-letter.first-line.first-of-type.focus.focus-visible.focus-within.fullscreen.has.host.host-context.hover.in-range.indeterminate.invalid.is.lang.last-child.last-of-type.left.link.marker.modal.not.nth-child.nth-last-child.nth-last-of-type.nth-of-type.only-child.only-of-type.optional.out-of-range.part.placeholder.placeholder-shown.read-only.read-write.required.right.root.scope.selection.slotted.target.target-text.valid.visited.where`.split(`.`).map(e=>({type:`class`,label:e})),ZF=`above.absolute.activeborder.additive.activecaption.after-white-space.ahead.alias.all.all-scroll.alphabetic.alternate.always.antialiased.appworkspace.asterisks.attr.auto.auto-flow.avoid.avoid-column.avoid-page.avoid-region.axis-pan.background.backwards.baseline.below.bidi-override.blink.block.block-axis.bold.bolder.border.border-box.both.bottom.break.break-all.break-word.bullets.button.button-bevel.buttonface.buttonhighlight.buttonshadow.buttontext.calc.capitalize.caps-lock-indicator.caption.captiontext.caret.cell.center.checkbox.circle.cjk-decimal.clear.clip.close-quote.col-resize.collapse.color.color-burn.color-dodge.column.column-reverse.compact.condensed.contain.content.contents.content-box.context-menu.continuous.copy.counter.counters.cover.crop.cross.crosshair.currentcolor.cursive.cyclic.darken.dashed.decimal.decimal-leading-zero.default.default-button.dense.destination-atop.destination-in.destination-out.destination-over.difference.disc.discard.disclosure-closed.disclosure-open.document.dot-dash.dot-dot-dash.dotted.double.down.e-resize.ease.ease-in.ease-in-out.ease-out.element.ellipse.ellipsis.embed.end.ethiopic-abegede-gez.ethiopic-halehame-aa-er.ethiopic-halehame-gez.ew-resize.exclusion.expanded.extends.extra-condensed.extra-expanded.fantasy.fast.fill.fill-box.fixed.flat.flex.flex-end.flex-start.footnotes.forwards.from.geometricPrecision.graytext.grid.groove.hand.hard-light.help.hidden.hide.higher.highlight.highlighttext.horizontal.hsl.hsla.hue.icon.ignore.inactiveborder.inactivecaption.inactivecaptiontext.infinite.infobackground.infotext.inherit.initial.inline.inline-axis.inline-block.inline-flex.inline-grid.inline-table.inset.inside.intrinsic.invert.italic.justify.keep-all.landscape.large.larger.left.level.lighter.lighten.line-through.linear.linear-gradient.lines.list-item.listbox.listitem.local.logical.loud.lower.lower-hexadecimal.lower-latin.lower-norwegian.lowercase.ltr.luminosity.manipulation.match.matrix.matrix3d.medium.menu.menutext.message-box.middle.min-intrinsic.mix.monospace.move.multiple.multiple_mask_images.multiply.n-resize.narrower.ne-resize.nesw-resize.no-close-quote.no-drop.no-open-quote.no-repeat.none.normal.not-allowed.nowrap.ns-resize.numbers.numeric.nw-resize.nwse-resize.oblique.opacity.open-quote.optimizeLegibility.optimizeSpeed.outset.outside.outside-shape.overlay.overline.padding.padding-box.painted.page.paused.perspective.pinch-zoom.plus-darker.plus-lighter.pointer.polygon.portrait.pre.pre-line.pre-wrap.preserve-3d.progress.push-button.radial-gradient.radio.read-only.read-write.read-write-plaintext-only.rectangle.region.relative.repeat.repeating-linear-gradient.repeating-radial-gradient.repeat-x.repeat-y.reset.reverse.rgb.rgba.ridge.right.rotate.rotate3d.rotateX.rotateY.rotateZ.round.row.row-resize.row-reverse.rtl.run-in.running.s-resize.sans-serif.saturation.scale.scale3d.scaleX.scaleY.scaleZ.screen.scroll.scrollbar.scroll-position.se-resize.self-start.self-end.semi-condensed.semi-expanded.separate.serif.show.single.skew.skewX.skewY.skip-white-space.slide.slider-horizontal.slider-vertical.sliderthumb-horizontal.sliderthumb-vertical.slow.small.small-caps.small-caption.smaller.soft-light.solid.source-atop.source-in.source-out.source-over.space.space-around.space-between.space-evenly.spell-out.square.start.static.status-bar.stretch.stroke.stroke-box.sub.subpixel-antialiased.svg_masks.super.sw-resize.symbolic.symbols.system-ui.table.table-caption.table-cell.table-column.table-column-group.table-footer-group.table-header-group.table-row.table-row-group.text.text-bottom.text-top.textarea.textfield.thick.thin.threeddarkshadow.threedface.threedhighlight.threedlightshadow.threedshadow.to.top.transform.translate.translate3d.translateX.translateY.translateZ.transparent.ultra-condensed.ultra-expanded.underline.unidirectional-pan.unset.up.upper-latin.uppercase.url.var.vertical.vertical-text.view-box.visible.visibleFill.visiblePainted.visibleStroke.visual.w-resize.wait.wave.wider.window.windowframe.windowtext.words.wrap.wrap-reverse.x-large.x-small.xor.xx-large.xx-small`.split(`.`).map(e=>({type:`keyword`,label:e})).concat(`aliceblue.antiquewhite.aqua.aquamarine.azure.beige.bisque.black.blanchedalmond.blue.blueviolet.brown.burlywood.cadetblue.chartreuse.chocolate.coral.cornflowerblue.cornsilk.crimson.cyan.darkblue.darkcyan.darkgoldenrod.darkgray.darkgreen.darkkhaki.darkmagenta.darkolivegreen.darkorange.darkorchid.darkred.darksalmon.darkseagreen.darkslateblue.darkslategray.darkturquoise.darkviolet.deeppink.deepskyblue.dimgray.dodgerblue.firebrick.floralwhite.forestgreen.fuchsia.gainsboro.ghostwhite.gold.goldenrod.gray.grey.green.greenyellow.honeydew.hotpink.indianred.indigo.ivory.khaki.lavender.lavenderblush.lawngreen.lemonchiffon.lightblue.lightcoral.lightcyan.lightgoldenrodyellow.lightgray.lightgreen.lightpink.lightsalmon.lightseagreen.lightskyblue.lightslategray.lightsteelblue.lightyellow.lime.limegreen.linen.magenta.maroon.mediumaquamarine.mediumblue.mediumorchid.mediumpurple.mediumseagreen.mediumslateblue.mediumspringgreen.mediumturquoise.mediumvioletred.midnightblue.mintcream.mistyrose.moccasin.navajowhite.navy.oldlace.olive.olivedrab.orange.orangered.orchid.palegoldenrod.palegreen.paleturquoise.palevioletred.papayawhip.peachpuff.peru.pink.plum.powderblue.purple.rebeccapurple.red.rosybrown.royalblue.saddlebrown.salmon.sandybrown.seagreen.seashell.sienna.silver.skyblue.slateblue.slategray.snow.springgreen.steelblue.tan.teal.thistle.tomato.turquoise.violet.wheat.white.whitesmoke.yellow.yellowgreen`.split(`.`).map(e=>({type:`constant`,label:e}))),R7e=`a.abbr.address.article.aside.b.bdi.bdo.blockquote.body.br.button.canvas.caption.cite.code.col.colgroup.dd.del.details.dfn.dialog.div.dl.dt.em.figcaption.figure.footer.form.header.hgroup.h1.h2.h3.h4.h5.h6.hr.html.i.iframe.img.input.ins.kbd.label.legend.li.main.meter.nav.ol.output.p.pre.ruby.section.select.small.source.span.strong.sub.summary.sup.table.tbody.td.template.textarea.tfoot.th.thead.tr.u.ul`.split(`.`).map(e=>({type:`type`,label:e})),z7e=[`@charset`,`@color-profile`,`@container`,`@counter-style`,`@font-face`,`@font-feature-values`,`@font-palette-values`,`@import`,`@keyframes`,`@layer`,`@media`,`@namespace`,`@page`,`@position-try`,`@property`,`@scope`,`@starting-style`,`@supports`,`@view-transition`].map(e=>({type:`keyword`,label:e})),QF=/^(\w[\w-]*|-\w[\w-]*|)$/,B7e=/^-(-[\w-]*)?$/,$F=new _N,V7e=[`Declaration`],H7e=e=>t=>{let{state:n,pos:r}=t,i=GN(n).resolveInner(r,-1),a=i.type.isError&&i.from==i.to-1&&n.doc.sliceString(i.from,i.to)==`-`;if(i.name==`PropertyName`||(a||i.name==`TagName`)&&/^(Block|Styles)$/.test(i.resolve(i.to).name))return{from:i.from,options:JF(),validFor:QF};if(i.name==`ValueName`)return{from:i.from,options:ZF,validFor:QF};if(i.name==`PseudoClassName`)return{from:i.from,options:XF,validFor:QF};if(e(i)||(t.explicit||a)&&P7e(i,n.doc))return{from:e(i)||a?i.from:r,options:I7e(n.doc,F7e(i),e),validFor:B7e};if(i.name==`TagName`){for(let{parent:e}=i;e;e=e.parent)if(e.name==`Block`)return{from:i.from,options:JF(),validFor:QF};return{from:i.from,options:R7e,validFor:QF}}if(i.name==`AtKeyword`)return{from:i.from,options:z7e,validFor:QF};if(!t.explicit)return null;let o=i.resolve(r),s=o.childBefore(r);return s&&s.name==`:`&&o.name==`PseudoClassSelector`?{from:r,options:XF,validFor:QF}:s&&s.name==`:`&&o.name==`Declaration`||o.name==`ArgList`?{from:r,options:ZF,validFor:QF}:o.name==`Block`||o.name==`Styles`?{from:r,options:JF(),validFor:QF}:null},U7e=H7e(e=>e.name==`VariableName`),eI=iP.define({name:`css`,parser:M7e.configure({props:[pP.add({Declaration:qN()}),mP.add({"Block KeyframeList":JN})]}),languageData:{commentTokens:{block:{open:`/*`,close:`*/`}},indentOnInput:/^\s*\}$/,wordChars:`-`}})}));function G7e(e){return e==45||e==46||e==58||e>=65&&e<=90||e==95||e>=97&&e<=122||e>=161}function K7e(e){return e==9||e==10||e==13||e==32}function tI(e,t){let n=e.pos+t;if(yI==n&&vI==e)return _I;let r=e.peek(t);for(;K7e(r);)r=e.peek(++t);let i=``;for(;G7e(r);)i+=String.fromCharCode(r),r=e.peek(++t);return vI=e,yI=n,_I=i?i.toLowerCase():r==b9e||r==x9e?void 0:null}function q7e(e,t){this.name=e,this.parent=t}function J7e(e){for(;e;e=e.parent)if(e.name==`svg`||e.name==`math`)return!0;return!1}function nI(e,t,n){let r=2+e.length;return new FF(i=>{for(let a=0,o=0,s=0;;s++){if(i.next<0){s&&i.acceptToken(t);break}if(a==0&&i.next==bI||a==1&&i.next==SI||a>=2&&ao?i.acceptToken(t,-o):i.acceptToken(n,-(o-2));break}else if((i.next==10||i.next==13)&&s){i.acceptToken(t,1);break}else a=o=0;i.advance()}})}function Y7e(e,t){let n=Object.create(null);for(let r of e.getChildren(pI)){let e=r.getChild(u9e),i=r.getChild(mI)||r.getChild(hI);e&&(n[t.read(e.from,e.to)]=i?i.type.id==mI?t.read(i.from+1,i.to-1):t.read(i.from,i.to):``)}return n}function X7e(e,t){let n=e.getChild(l9e);return n?t.read(n.from,n.to):` `}function rI(e,t,n){let r;for(let i of n)if(!i.attrs||i.attrs(r||=Y7e(e.node.parent.firstChild,t)))return{parser:i.parser};return null}function Z7e(e=[],t=[]){let n=[],r=[],i=[],a=[];for(let t of e)(t.tag==`script`?n:t.tag==`style`?r:t.tag==`textarea`?i:a).push(t);let o=t.length?Object.create(null):null;for(let e of t)(o[e.name]||(o[e.name]=[])).push(e);return O3e((e,t)=>{let s=e.type.id;if(s==d9e)return rI(e,t,n);if(s==f9e)return rI(e,t,r);if(s==p9e)return rI(e,t,i);if(s==fI&&a.length){let n=e.node,r=n.firstChild,i=r&&X7e(r,t),o;if(i){for(let e of a)if(e.tag==i&&(!e.attrs||e.attrs(o||=Y7e(r,t)))){let t=n.lastChild,i=t.type.id==h9e?t.from:n.to;if(i>r.to)return{parser:e.parser,overlay:[{from:r.to,to:i}]}}}}if(o&&s==pI){let n=e.node,r;if(r=n.firstChild){let e=o[t.read(r.from,r.to)];if(e)for(let r of e){if(r.tagName&&r.tagName!=X7e(n.parent,t))continue;let e=n.lastChild;if(e.type.id==mI){let t=e.from+1,n=e.lastChild,i=e.to-(n&&n.isError?0:1);if(i>t)return{parser:r.parser,overlay:[{from:t,to:i}]}}else if(e.type.id==hI)return{parser:r.parser,overlay:[{from:e.from,to:e.to}]}}}}return null})}var Q7e,$7e,e9e,t9e,n9e,r9e,iI,i9e,aI,oI,sI,cI,lI,a9e,o9e,s9e,uI,c9e,dI,fI,l9e,pI,u9e,mI,hI,d9e,f9e,p9e,m9e,h9e,g9e,_9e,v9e,y9e,gI,_I,vI,yI,bI,xI,SI,b9e,x9e,S9e,C9e,w9e,T9e,E9e,D9e,O9e,k9e,A9e,j9e,M9e,N9e=s((()=>{VF(),WN(),CN(),Q7e=54,$7e=1,e9e=55,t9e=2,n9e=56,r9e=3,iI=4,i9e=5,aI=6,oI=7,sI=8,cI=9,lI=10,a9e=11,o9e=12,s9e=13,uI=57,c9e=14,dI=58,fI=20,l9e=22,pI=23,u9e=24,mI=26,hI=27,d9e=28,f9e=31,p9e=34,m9e=36,h9e=37,g9e=0,_9e=1,v9e={area:!0,base:!0,br:!0,col:!0,command:!0,embed:!0,frame:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0,menuitem:!0},y9e={dd:!0,li:!0,optgroup:!0,option:!0,p:!0,rp:!0,rt:!0,tbody:!0,td:!0,tfoot:!0,th:!0,tr:!0},gI={dd:{dd:!0,dt:!0},dt:{dd:!0,dt:!0},li:{li:!0},option:{option:!0,optgroup:!0},optgroup:{optgroup:!0},p:{address:!0,article:!0,aside:!0,blockquote:!0,dir:!0,div:!0,dl:!0,fieldset:!0,footer:!0,form:!0,h1:!0,h2:!0,h3:!0,h4:!0,h5:!0,h6:!0,header:!0,hgroup:!0,hr:!0,menu:!0,nav:!0,ol:!0,p:!0,pre:!0,section:!0,table:!0,ul:!0},rp:{rp:!0,rt:!0},rt:{rp:!0,rt:!0},tbody:{tbody:!0,tfoot:!0},td:{td:!0,th:!0},tfoot:{tbody:!0},th:{td:!0,th:!0},thead:{tbody:!0,tfoot:!0},tr:{tr:!0}},_I=null,vI=null,yI=0,bI=60,xI=62,SI=47,b9e=63,x9e=33,S9e=45,C9e=[aI,lI,oI,sI,cI],w9e=new zF({start:null,shift(e,t,n,r){return C9e.indexOf(t)>-1?new q7e(tI(r,1)||``,e):e},reduce(e,t){return t==fI&&e?e.parent:e},reuse(e,t,n,r){let i=t.type.id;return i==aI||i==m9e?new q7e(tI(r,1)||``,e):e},strict:!1}),T9e=new FF((e,t)=>{if(e.next!=bI){e.next<0&&t.context&&e.acceptToken(uI);return}e.advance();let n=e.next==SI;n&&e.advance();let r=tI(e,0);if(r===void 0)return;if(!r)return e.acceptToken(n?c9e:aI);let i=t.context?t.context.name:null;if(n){if(r==i)return e.acceptToken(a9e);if(i&&y9e[i])return e.acceptToken(uI,-2);if(t.dialectEnabled(g9e))return e.acceptToken(o9e);for(let e=t.context;e;e=e.parent)if(e.name==r)return;e.acceptToken(s9e)}else{if(r==`script`)return e.acceptToken(oI);if(r==`style`)return e.acceptToken(sI);if(r==`textarea`)return e.acceptToken(cI);if(v9e.hasOwnProperty(r))return e.acceptToken(lI);i&&gI[i]&&gI[i][r]?e.acceptToken(uI,-1):e.acceptToken(aI)}},{contextual:!0}),E9e=new FF(e=>{for(let t=0,n=0;;n++){if(e.next<0){n&&e.acceptToken(dI);break}if(e.next==S9e)t++;else if(e.next==xI&&t>=2){n>=3&&e.acceptToken(dI,-2);break}else t=0;e.advance()}}),D9e=new FF((e,t)=>{if(e.next==SI&&e.peek(1)==xI){let n=t.dialectEnabled(_9e)||J7e(t.context);e.acceptToken(n?i9e:iI,2)}else e.next==xI&&e.acceptToken(iI,1)}),O9e=nI(`script`,Q7e,$7e),k9e=nI(`style`,e9e,t9e),A9e=nI(`textarea`,n9e,r9e),j9e=wN({"Text RawText":J.content,"StartTag StartCloseTag SelfClosingEndTag EndTag":J.angleBracket,TagName:J.tagName,"MismatchedCloseTag/TagName":[J.tagName,J.invalid],AttributeName:J.attributeName,"AttributeValue UnquotedAttributeValue":J.attributeValue,Is:J.definitionOperator,"EntityReference CharacterReference":J.character,Comment:J.blockComment,ProcessingInst:J.processingInstruction,DoctypeDecl:J.documentMeta}),M9e=BF.deserialize({version:14,states:",xOVO!rOOO!WQ#tO'#CqO!]Q#tO'#CzO!bQ#tO'#C}O!gQ#tO'#DQO!lQ#tO'#DSO!qOaO'#CpO!|ObO'#CpO#XOdO'#CpO$eO!rO'#CpOOO`'#Cp'#CpO$lO$fO'#DTO$tQ#tO'#DVO$yQ#tO'#DWOOO`'#Dk'#DkOOO`'#DY'#DYQVO!rOOO%OQ&rO,59]O%ZQ&rO,59fO%fQ&rO,59iO%qQ&rO,59lO%|Q&rO,59nOOOa'#D^'#D^O&XOaO'#CxO&dOaO,59[OOOb'#D_'#D_O&lObO'#C{O&wObO,59[OOOd'#D`'#D`O'POdO'#DOO'[OdO,59[OOO`'#Da'#DaO'dO!rO,59[O'kQ#tO'#DROOO`,59[,59[OOOp'#Db'#DbO'pO$fO,59oOOO`,59o,59oO'xQ#|O,59qO'}Q#|O,59rOOO`-E7W-E7WO(SQ&rO'#CsOOQW'#DZ'#DZO(bQ&rO1G.wOOOa1G.w1G.wOOO`1G/Y1G/YO(mQ&rO1G/QOOOb1G/Q1G/QO(xQ&rO1G/TOOOd1G/T1G/TO)TQ&rO1G/WOOO`1G/W1G/WO)`Q&rO1G/YOOOa-E7[-E7[O)kQ#tO'#CyOOO`1G.v1G.vOOOb-E7]-E7]O)pQ#tO'#C|OOOd-E7^-E7^O)uQ#tO'#DPOOO`-E7_-E7_O)zQ#|O,59mOOOp-E7`-E7`OOO`1G/Z1G/ZOOO`1G/]1G/]OOO`1G/^1G/^O*PQ,UO,59_OOQW-E7X-E7XOOOa7+$c7+$cOOO`7+$t7+$tOOOb7+$l7+$lOOOd7+$o7+$oOOO`7+$r7+$rO*[Q#|O,59eO*aQ#|O,59hO*fQ#|O,59kOOO`1G/X1G/XO*kO7[O'#CvO*|OMhO'#CvOOQW1G.y1G.yOOO`1G/P1G/POOO`1G/S1G/SOOO`1G/V1G/VOOOO'#D['#D[O+_O7[O,59bOOQW,59b,59bOOOO'#D]'#D]O+pOMhO,59bOOOO-E7Y-E7YOOQW1G.|1G.|OOOO-E7Z-E7Z",stateData:",]~O!^OS~OUSOVPOWQOXROYTO[]O][O^^O`^Oa^Ob^Oc^Ox^O{_O!dZO~OfaO~OfbO~OfcO~OfdO~OfeO~O!WfOPlP!ZlP~O!XiOQoP!ZoP~O!YlORrP!ZrP~OUSOVPOWQOXROYTOZqO[]O][O^^O`^Oa^Ob^Oc^Ox^O!dZO~O!ZrO~P#dO![sO!euO~OfvO~OfwO~OS|OT}OhyO~OS!POT}OhyO~OS!ROT}OhyO~OS!TOT}OhyO~OS}OT}OhyO~O!WfOPlX!ZlX~OP!WO!Z!XO~O!XiOQoX!ZoX~OQ!ZO!Z!XO~O!YlORrX!ZrX~OR!]O!Z!XO~O!Z!XO~P#dOf!_O~O![sO!e!aO~OS!bO~OS!cO~Oi!dOSgXTgXhgX~OS!fOT!gOhyO~OS!hOT!gOhyO~OS!iOT!gOhyO~OS!jOT!gOhyO~OS!gOT!gOhyO~Of!kO~Of!lO~Of!mO~OS!nO~Ok!qO!`!oO!b!pO~OS!rO~OS!sO~OS!tO~Oa!uOb!uOc!uO!`!wO!a!uO~Oa!xOb!xOc!xO!b!wO!c!xO~Oa!uOb!uOc!uO!`!{O!a!uO~Oa!xOb!xOc!xO!b!{O!c!xO~OT~bac!dx{!d~",goto:"%p!`PPPPPPPPPPPPPPPPPPPP!a!gP!mPP!yP!|#P#S#Y#]#`#f#i#l#r#x!aP!a!aP$O$U$l$r$x%O%U%[%bPPPPPPPP%hX^OX`pXUOX`pezabcde{!O!Q!S!UR!q!dRhUR!XhXVOX`pRkVR!XkXWOX`pRnWR!XnXXOX`pQrXR!XpXYOX`pQ`ORx`Q{aQ!ObQ!QcQ!SdQ!UeZ!e{!O!Q!S!UQ!v!oR!z!vQ!y!pR!|!yQgUR!VgQjVR!YjQmWR![mQpXR!^pQtZR!`tS_O`ToXp",nodeNames:`⚠ StartCloseTag StartCloseTag StartCloseTag EndTag SelfClosingEndTag StartTag StartTag StartTag StartTag StartTag StartCloseTag StartCloseTag StartCloseTag IncompleteCloseTag Document Text EntityReference CharacterReference InvalidEntity Element OpenTag TagName Attribute AttributeName Is AttributeValue UnquotedAttributeValue ScriptText CloseTag OpenTag StyleText CloseTag OpenTag TextareaText CloseTag OpenTag CloseTag SelfClosingTag Comment ProcessingInst MismatchedCloseTag CloseTag DoctypeDecl`,maxTerm:67,context:w9e,nodeProps:[[`closedBy`,-10,1,2,3,7,8,9,10,11,12,13,`EndTag`,6,`EndTag SelfClosingEndTag`,-4,21,30,33,36,`CloseTag`],[`openedBy`,4,`StartTag StartCloseTag`,5,`StartTag`,-4,29,32,35,37,`OpenTag`],[`group`,-9,14,17,18,19,20,39,40,41,42,`Entity`,16,`Entity TextContent`,-3,28,31,34,`TextContent Entity`],[`isolate`,-11,21,29,30,32,33,35,36,37,38,41,42,`ltr`,-3,26,27,39,``]],propSources:[j9e],skippedNodes:[0],repeatNodeCount:9,tokenData:"!]tw8twx7Sx!P8t!P!Q5u!Q!]8t!]!^/^!^!a7S!a#S8t#S#T;{#T#s8t#s$f5u$f;'S8t;'S;=`>V<%l?Ah8t?Ah?BY5u?BY?Mn8t?MnO5u!Z5zbkWOX5uXZ7SZ[5u[^7S^p5uqr5urs7Sst+Ptw5uwx7Sx!]5u!]!^7w!^!a7S!a#S5u#S#T7S#T;'S5u;'S;=`8n<%lO5u!R7VVOp7Sqs7St!]7S!]!^7l!^;'S7S;'S;=`7q<%lO7S!R7qOa!R!R7tP;=`<%l7S!Z8OYkWa!ROX+PZ[+P^p+Pqr+Psw+Px!^+P!a#S+P#T;'S+P;'S;=`+t<%lO+P!Z8qP;=`<%l5u!_8{ihSkWOX5uXZ7SZ[5u[^7S^p5uqr8trs7Sst/^tw8twx7Sx!P8t!P!Q5u!Q!]8t!]!^:j!^!a7S!a#S8t#S#T;{#T#s8t#s$f5u$f;'S8t;'S;=`>V<%l?Ah8t?Ah?BY5u?BY?Mn8t?MnO5u!_:sbhSkWa!ROX+PZ[+P^p+Pqr/^sw/^x!P/^!P!Q+P!Q!^/^!a#S/^#S#T0m#T#s/^#s$f+P$f;'S/^;'S;=`1e<%l?Ah/^?Ah?BY+P?BY?Mn/^?MnO+P!VP<%l?Ah;{?Ah?BY7S?BY?Mn;{?MnO7S!V=dXhSa!Rqr0msw0mx!P0m!Q!^0m!a#s0m$f;'S0m;'S;=`1_<%l?Ah0m?BY?Mn0m!V>SP;=`<%l;{!_>YP;=`<%l8t!_>dhhSkWOX@OXZAYZ[@O[^AY^p@OqrBwrsAYswBwwxAYx!PBw!P!Q@O!Q!]Bw!]!^/^!^!aAY!a#SBw#S#TE{#T#sBw#s$f@O$f;'SBw;'S;=`HS<%l?AhBw?Ah?BY@O?BY?MnBw?MnO@O!Z@TakWOX@OXZAYZ[@O[^AY^p@Oqr@OrsAYsw@OwxAYx!]@O!]!^Az!^!aAY!a#S@O#S#TAY#T;'S@O;'S;=`Bq<%lO@O!RA]UOpAYq!]AY!]!^Ao!^;'SAY;'S;=`At<%lOAY!RAtOb!R!RAwP;=`<%lAY!ZBRYkWb!ROX+PZ[+P^p+Pqr+Psw+Px!^+P!a#S+P#T;'S+P;'S;=`+t<%lO+P!ZBtP;=`<%l@O!_COhhSkWOX@OXZAYZ[@O[^AY^p@OqrBwrsAYswBwwxAYx!PBw!P!Q@O!Q!]Bw!]!^Dj!^!aAY!a#SBw#S#TE{#T#sBw#s$f@O$f;'SBw;'S;=`HS<%l?AhBw?Ah?BY@O?BY?MnBw?MnO@O!_DsbhSkWb!ROX+PZ[+P^p+Pqr/^sw/^x!P/^!P!Q+P!Q!^/^!a#S/^#S#T0m#T#s/^#s$f+P$f;'S/^;'S;=`1e<%l?Ah/^?Ah?BY+P?BY?Mn/^?MnO+P!VFQbhSOpAYqrE{rsAYswE{wxAYx!PE{!P!QAY!Q!]E{!]!^GY!^!aAY!a#sE{#s$fAY$f;'SE{;'S;=`G|<%l?AhE{?Ah?BYAY?BY?MnE{?MnOAY!VGaXhSb!Rqr0msw0mx!P0m!Q!^0m!a#s0m$f;'S0m;'S;=`1_<%l?Ah0m?BY?Mn0m!VHPP;=`<%lE{!_HVP;=`<%lBw!ZHcW!bx`P!a`Or(trs'ksv(tw!^(t!^!_)e!_;'S(t;'S;=`*P<%lO(t!aIYlhS`PkW!a`!cpOX$qXZ&XZ[$q[^&X^p$qpq&Xqr-_rs&}sv-_vw/^wx(tx}-_}!OKQ!O!P-_!P!Q$q!Q!^-_!^!_*V!_!a&X!a#S-_#S#T1k#T#s-_#s$f$q$f;'S-_;'S;=`3X<%l?Ah-_?Ah?BY$q?BY?Mn-_?MnO$q!aK_khS`PkW!a`!cpOX$qXZ&XZ[$q[^&X^p$qpq&Xqr-_rs&}sv-_vw/^wx(tx!P-_!P!Q$q!Q!^-_!^!_*V!_!`&X!`!aMS!a#S-_#S#T1k#T#s-_#s$f$q$f;'S-_;'S;=`3X<%l?Ah-_?Ah?BY$q?BY?Mn-_?MnO$q!TM_X`P!a`!cp!eQOr&Xrs&}sv&Xwx(tx!^&X!^!_*V!_;'S&X;'S;=`*y<%lO&X!aNZ!ZhSfQ`PkW!a`!cpOX$qXZ&XZ[$q[^&X^p$qpq&Xqr-_rs&}sv-_vw/^wx(tx}-_}!OMz!O!PMz!P!Q$q!Q![Mz![!]Mz!]!^-_!^!_*V!_!a&X!a!c-_!c!}Mz!}#R-_#R#SMz#S#T1k#T#oMz#o#s-_#s$f$q$f$}-_$}%OMz%O%W-_%W%oMz%o%p-_%p&aMz&a&b-_&b1pMz1p4UMz4U4dMz4d4e-_4e$ISMz$IS$I`-_$I`$IbMz$Ib$Je-_$Je$JgMz$Jg$Kh-_$Kh%#tMz%#t&/x-_&/x&EtMz&Et&FV-_&FV;'SMz;'S;:j!#|;:j;=`3X<%l?&r-_?&r?AhMz?Ah?BY$q?BY?MnMz?MnO$q!a!$PP;=`<%lMz!R!$ZY!a`!cpOq*Vqr!$yrs(Vsv*Vwx)ex!a*V!a!b!4t!b;'S*V;'S;=`*s<%lO*V!R!%Q]!a`!cpOr*Vrs(Vsv*Vwx)ex}*V}!O!%y!O!f*V!f!g!']!g#W*V#W#X!0`#X;'S*V;'S;=`*s<%lO*V!R!&QX!a`!cpOr*Vrs(Vsv*Vwx)ex}*V}!O!&m!O;'S*V;'S;=`*s<%lO*V!R!&vV!a`!cp!dPOr*Vrs(Vsv*Vwx)ex;'S*V;'S;=`*s<%lO*V!R!'dX!a`!cpOr*Vrs(Vsv*Vwx)ex!q*V!q!r!(P!r;'S*V;'S;=`*s<%lO*V!R!(WX!a`!cpOr*Vrs(Vsv*Vwx)ex!e*V!e!f!(s!f;'S*V;'S;=`*s<%lO*V!R!(zX!a`!cpOr*Vrs(Vsv*Vwx)ex!v*V!v!w!)g!w;'S*V;'S;=`*s<%lO*V!R!)nX!a`!cpOr*Vrs(Vsv*Vwx)ex!{*V!{!|!*Z!|;'S*V;'S;=`*s<%lO*V!R!*bX!a`!cpOr*Vrs(Vsv*Vwx)ex!r*V!r!s!*}!s;'S*V;'S;=`*s<%lO*V!R!+UX!a`!cpOr*Vrs(Vsv*Vwx)ex!g*V!g!h!+q!h;'S*V;'S;=`*s<%lO*V!R!+xY!a`!cpOr!+qrs!,hsv!+qvw!-Swx!.[x!`!+q!`!a!/j!a;'S!+q;'S;=`!0Y<%lO!+qq!,mV!cpOv!,hvx!-Sx!`!,h!`!a!-q!a;'S!,h;'S;=`!.U<%lO!,hP!-VTO!`!-S!`!a!-f!a;'S!-S;'S;=`!-k<%lO!-SP!-kO{PP!-nP;=`<%l!-Sq!-xS!cp{POv(Vx;'S(V;'S;=`(h<%lO(Vq!.XP;=`<%l!,ha!.aX!a`Or!.[rs!-Ssv!.[vw!-Sw!`!.[!`!a!.|!a;'S!.[;'S;=`!/d<%lO!.[a!/TT!a`{POr)esv)ew;'S)e;'S;=`)y<%lO)ea!/gP;=`<%l!.[!R!/sV!a`!cp{POr*Vrs(Vsv*Vwx)ex;'S*V;'S;=`*s<%lO*V!R!0]P;=`<%l!+q!R!0gX!a`!cpOr*Vrs(Vsv*Vwx)ex#c*V#c#d!1S#d;'S*V;'S;=`*s<%lO*V!R!1ZX!a`!cpOr*Vrs(Vsv*Vwx)ex#V*V#V#W!1v#W;'S*V;'S;=`*s<%lO*V!R!1}X!a`!cpOr*Vrs(Vsv*Vwx)ex#h*V#h#i!2j#i;'S*V;'S;=`*s<%lO*V!R!2qX!a`!cpOr*Vrs(Vsv*Vwx)ex#m*V#m#n!3^#n;'S*V;'S;=`*s<%lO*V!R!3eX!a`!cpOr*Vrs(Vsv*Vwx)ex#d*V#d#e!4Q#e;'S*V;'S;=`*s<%lO*V!R!4XX!a`!cpOr*Vrs(Vsv*Vwx)ex#X*V#X#Y!+q#Y;'S*V;'S;=`*s<%lO*V!R!4{Y!a`!cpOr!4trs!5ksv!4tvw!6Vwx!8]x!a!4t!a!b!:]!b;'S!4t;'S;=`!;r<%lO!4tq!5pV!cpOv!5kvx!6Vx!a!5k!a!b!7W!b;'S!5k;'S;=`!8V<%lO!5kP!6YTO!a!6V!a!b!6i!b;'S!6V;'S;=`!7Q<%lO!6VP!6lTO!`!6V!`!a!6{!a;'S!6V;'S;=`!7Q<%lO!6VP!7QOxPP!7TP;=`<%l!6Vq!7]V!cpOv!5kvx!6Vx!`!5k!`!a!7r!a;'S!5k;'S;=`!8V<%lO!5kq!7yS!cpxPOv(Vx;'S(V;'S;=`(h<%lO(Vq!8YP;=`<%l!5ka!8bX!a`Or!8]rs!6Vsv!8]vw!6Vw!a!8]!a!b!8}!b;'S!8];'S;=`!:V<%lO!8]a!9SX!a`Or!8]rs!6Vsv!8]vw!6Vw!`!8]!`!a!9o!a;'S!8];'S;=`!:V<%lO!8]a!9vT!a`xPOr)esv)ew;'S)e;'S;=`)y<%lO)ea!:YP;=`<%l!8]!R!:dY!a`!cpOr!4trs!5ksv!4tvw!6Vwx!8]x!`!4t!`!a!;S!a;'S!4t;'S;=`!;r<%lO!4t!R!;]V!a`!cpxPOr*Vrs(Vsv*Vwx)ex;'S*V;'S;=`*s<%lO*V!R!;uP;=`<%l!4t!V!=65&&e<=90||e>=97&&e<=122||e==95||e>=192||!t&&e>=48&&e<=57}var P9e,wI,F9e,I9e,L9e,R9e,z9e,B9e,V9e,H9e,U9e,TI,EI,W9e,DI,G9e,K9e,q9e,J9e,Y9e,X9e,Z9e,Q9e,$9e,eet,tet,net,ret,iet,aet,oet,set,cet=s((()=>{VF(),WN(),P9e=312,wI=1,F9e=2,I9e=3,L9e=4,R9e=313,z9e=315,B9e=316,V9e=5,H9e=6,U9e=0,TI=[9,10,11,12,13,32,133,160,5760,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8232,8233,8239,8287,12288],EI=125,W9e=59,DI=47,G9e=42,K9e=43,q9e=45,J9e=60,Y9e=44,X9e=63,Z9e=46,Q9e=new zF({start:!1,shift(e,t){return t==V9e||t==H9e||t==z9e?e:t==B9e},strict:!1}),$9e=new FF((e,t)=>{let{next:n}=e;(n==EI||n==-1||t.context)&&e.acceptToken(R9e)},{contextual:!0,fallback:!0}),eet=new FF((e,t)=>{let{next:n}=e,r;TI.indexOf(n)>-1||n==DI&&((r=e.peek(1))==DI||r==G9e)||n!=EI&&n!=W9e&&n!=-1&&!t.context&&e.acceptToken(P9e)},{contextual:!0}),tet=new FF((e,t)=>{let{next:n}=e;if(n==K9e||n==q9e){if(e.advance(),n==e.next){e.advance();let n=!t.context&&t.canShift(wI);e.acceptToken(n?wI:F9e)}}else n==X9e&&e.peek(1)==Z9e&&(e.advance(),e.advance(),(e.next<48||e.next>57)&&e.acceptToken(I9e))},{contextual:!0}),net=new FF((e,t)=>{if(e.next!=J9e||!t.dialectEnabled(U9e)||(e.advance(),e.next==DI))return;let n=0;for(;TI.indexOf(e.next)>-1;)e.advance(),n++;if(CI(e.next,!0)){for(e.advance(),n++;CI(e.next,!1);)e.advance(),n++;for(;TI.indexOf(e.next)>-1;)e.advance(),n++;if(e.next==Y9e)return;for(let t=0;;t++){if(t==7){if(!CI(e.next,!0))return;break}if(e.next!=`extends`.charCodeAt(t))break;e.advance(),n++}}e.acceptToken(L9e,-n)}),ret=wN({"get set async static":J.modifier,"for while do if else switch try catch finally return throw break continue default case":J.controlKeyword,"in of await yield void typeof delete instanceof":J.operatorKeyword,"let var const using function class extends":J.definitionKeyword,"import export from":J.moduleKeyword,"with debugger as new":J.keyword,TemplateString:J.special(J.string),super:J.atom,BooleanLiteral:J.bool,this:J.self,null:J.null,Star:J.modifier,VariableName:J.variableName,"CallExpression/VariableName TaggedTemplateExpression/VariableName":J.function(J.variableName),VariableDefinition:J.definition(J.variableName),Label:J.labelName,PropertyName:J.propertyName,PrivatePropertyName:J.special(J.propertyName),"CallExpression/MemberExpression/PropertyName":J.function(J.propertyName),"FunctionDeclaration/VariableDefinition":J.function(J.definition(J.variableName)),"ClassDeclaration/VariableDefinition":J.definition(J.className),PropertyDefinition:J.definition(J.propertyName),PrivatePropertyDefinition:J.definition(J.special(J.propertyName)),UpdateOp:J.updateOperator,"LineComment Hashbang":J.lineComment,BlockComment:J.blockComment,Number:J.number,String:J.string,Escape:J.escape,ArithOp:J.arithmeticOperator,LogicOp:J.logicOperator,BitOp:J.bitwiseOperator,CompareOp:J.compareOperator,RegExp:J.regexp,Equals:J.definitionOperator,Arrow:J.function(J.punctuation),": Spread":J.punctuation,"( )":J.paren,"[ ]":J.squareBracket,"{ }":J.brace,"InterpolationStart InterpolationEnd":J.special(J.brace),".":J.derefOperator,", ;":J.separator,"@":J.meta,TypeName:J.typeName,TypeDefinition:J.definition(J.typeName),"type enum interface implements namespace module declare":J.definitionKeyword,"abstract global Privacy readonly override":J.modifier,"is keyof unique infer":J.operatorKeyword,JSXAttributeValue:J.attributeValue,JSXText:J.content,"JSXStartTag JSXStartCloseTag JSXSelfCloseEndTag JSXEndTag":J.angleBracket,"JSXIdentifier JSXNameSpacedName":J.tagName,"JSXAttribute/JSXIdentifier JSXAttribute/JSXNameSpacedName":J.attributeName,"JSXBuiltin/JSXIdentifier":J.standard(J.tagName)}),iet={__proto__:null,export:20,as:25,from:33,default:36,async:41,function:42,extends:54,this:58,true:66,false:66,null:78,void:82,typeof:86,super:102,new:136,delete:148,yield:157,await:161,class:166,public:229,private:229,protected:229,readonly:231,instanceof:250,satisfies:253,in:254,const:256,import:290,keyof:345,unique:349,infer:355,is:391,abstract:411,implements:413,type:415,let:418,var:420,using:423,interface:429,enum:433,namespace:439,module:441,declare:445,global:449,for:468,of:477,while:480,with:484,do:488,if:492,else:494,switch:498,case:504,try:510,catch:514,finally:518,return:522,throw:526,break:530,continue:534,debugger:538},aet={__proto__:null,async:123,get:125,set:127,declare:189,public:191,private:191,protected:191,static:193,abstract:195,override:197,readonly:203,accessor:205,new:395},oet={__proto__:null,"<":187},set=BF.deserialize({version:14,states:"$@QO%TQ^OOO%[Q^OOO'_Q`OOP(lOWOOO*zQ?NdO'#CiO+RO!bO'#CjO+aO#tO'#CjO+oO!0LbO'#D^O.QQ^O'#DdO.bQ^O'#DoO%[Q^O'#DwO0fQ^O'#EPOOQ?Mr'#EX'#EXO1PQWO'#EUOOQO'#Em'#EmOOQO'#Ih'#IhO1XQWO'#GpO1dQWO'#ElO1iQWO'#ElO3hQ?NdO'#JmO6[Q?NdO'#JnO6uQWO'#F[O6zQ&jO'#FsOOQ?Mr'#Fe'#FeO7VO,YO'#FeO7eQ7[O'#FzO9RQWO'#FyOOQ?Mr'#Jn'#JnOOQ?Mp'#Jm'#JmO9WQWO'#GtOOQU'#KZ'#KZO9cQWO'#IUO9hQ?MxO'#IVOOQU'#JZ'#JZOOQU'#IZ'#IZQ`Q^OOO`Q^OOO9pQMnO'#DsO9wQ^O'#D{O:OQ^O'#D}O9^QWO'#GpO:VQ7[O'#CoO:eQWO'#EkO:pQWO'#EvO:uQ7[O'#FdO;dQWO'#GpOOQO'#K['#K[O;iQWO'#K[O;wQWO'#GxO;wQWO'#GyO;wQWO'#G{O9^QWO'#HOOVQWO'#CeO>gQWO'#H_O>oQWO'#HeO>oQWO'#HgO`Q^O'#HiO>oQWO'#HkO>oQWO'#HnO>tQWO'#HtO>yQ?MyO'#HzO%[Q^O'#H|O?UQ?MyO'#IOO?aQ?MyO'#IQO9hQ?MxO'#ISO?lQ?NdO'#CiO@nQ`O'#DiQOQWOOO%[Q^O'#D}OAUQWO'#EQO:VQ7[O'#EkOAaQWO'#EkOAlQpO'#FdOOQU'#Cg'#CgOOQ?Mp'#Dn'#DnOOQ?Mp'#Jq'#JqO%[Q^O'#JqOOQO'#Jt'#JtOOQO'#Id'#IdOBlQ`O'#EdOOQ?Mp'#Ec'#EcOOQ?Mp'#Jx'#JxOChQ?NQO'#EdOCrQ`O'#ETOOQO'#Js'#JsODWQ`O'#JtOEeQ`O'#ETOCrQ`O'#EdPErO#@ItO'#CbPOOO)CDx)CDxOOOO'#I['#I[OE}O!bO,59UOOQ?Mr,59U,59UOOOO'#I]'#I]OF]O#tO,59UO%[Q^O'#D`OOOO'#I_'#I_OFkO!0LbO,59xOOQ?Mr,59x,59xOFyQ^O'#I`OG^QWO'#JoOI]QrO'#JoO+}Q^O'#JoOIdQWO,5:OOIzQWO'#EmOJXQWO'#KOOJdQWO'#J}OJdQWO'#J}OJlQWO,5;ZOJqQWO'#J|OOQ?Mv,5:Z,5:ZOJxQ^O,5:ZOLvQ?NdO,5:cOMgQWO,5:kONQQ?MxO'#J{ONXQWO'#JzO9WQWO'#JzONmQWO'#JzONuQWO,5;YONzQWO'#JzO!#PQrO'#JnOOQ?Mr'#Ci'#CiO%[Q^O'#EPO!#oQrO,5:pOOQQ'#Ju'#JuOOQO-EpOOQU'#Jc'#JcOOQU,5>q,5>qOOQU-EtQWO'#HTO9^QWO'#HVO!DgQWO'#HVO:VQ7[O'#HXO!DlQWO'#HXOOQU,5=m,5=mO!DqQWO'#HYO!ESQWO'#CoO!EXQWO,59PO!EcQWO,59PO!GhQ^O,59POOQU,59P,59PO!GxQ?MxO,59PO%[Q^O,59PO!JTQ^O'#HaOOQU'#Hb'#HbOOQU'#Hc'#HcO`Q^O,5=yO!JkQWO,5=yO`Q^O,5>PO`Q^O,5>RO!JpQWO,5>TO`Q^O,5>VO!JuQWO,5>YO!JzQ^O,5>`OOQU,5>f,5>fO%[Q^O,5>fO9hQ?MxO,5>hOOQU,5>j,5>jO# UQWO,5>jOOQU,5>l,5>lO# UQWO,5>lOOQU,5>n,5>nO# rQ`O'#D[O%[Q^O'#JqO# |Q`O'#JqO#!kQ`O'#DjO#!|Q`O'#DjO#%_Q^O'#DjO#%fQWO'#JpO#%nQWO,5:TO#%sQWO'#EqO#&RQWO'#KPO#&ZQWO,5;[O#&`Q`O'#DjO#&mQ`O'#ESOOQ?Mr,5:l,5:lO%[Q^O,5:lO#&tQWO,5:lO>tQWO,5;VO!A}Q`O,5;VO!BVQ7[O,5;VO:VQ7[O,5;VO#&|QWO,5@]O#'RQ(CYO,5:pOOQO-EzO+}Q^O,5>zOOQO,5?Q,5?QO#*ZQ^O'#I`OOQO-E<^-E<^O#*hQWO,5@ZO#*pQrO,5@ZO#*wQWO,5@iOOQ?Mr1G/j1G/jO%[Q^O,5@jO#+PQWO'#IfOOQO-EuQ?NdO1G0|O#>|Q?NdO1G0|O#AZQ07bO'#CiO#CUQ07bO1G1_O#C]Q07bO'#JnO#CpQ?NdO,5?WOOQ?Mp-EoQWO1G3oO$3VQ^O1G3qO$7ZQ^O'#HpOOQU1G3t1G3tO$7hQWO'#HvO>tQWO'#HxOOQU1G3z1G3zO$7pQ^O1G3zO9hQ?MxO1G4QOOQU1G4S1G4SOOQ?Mp'#G]'#G]O9hQ?MxO1G4UO9hQ?MxO1G4WO$;wQWO,5@]O!(oQ^O,5;]O9WQWO,5;]O>tQWO,5:UO!(oQ^O,5:UO!A}Q`O,5:UO$;|Q07bO,5:UOOQO,5;],5;]O$tQWO1G0qO!A}Q`O1G0qO!BVQ7[O1G0qOOQ?Mp1G5w1G5wO!ArQ?MxO1G0ZOOQO1G0j1G0jO%[Q^O1G0jO$=aQ?MxO1G0jO$=lQ?MxO1G0jO!A}Q`O1G0ZOCrQ`O1G0ZO$=zQ?MxO1G0jOOQO1G0Z1G0ZO$>`Q?NdO1G0jPOOO-EjQpO,5rQrO1G4fOOQO1G4l1G4lO%[Q^O,5>zO$>|QWO1G5uO$?UQWO1G6TO$?^QrO1G6UO9WQWO,5?QO$?hQ?NdO1G6RO%[Q^O1G6RO$?xQ?MxO1G6RO$@ZQWO1G6QO$@ZQWO1G6QO9WQWO1G6QO$@cQWO,5?TO9WQWO,5?TOOQO,5?T,5?TO$@wQWO,5?TO$(PQWO,5?TOOQO-E[OOQU,5>[,5>[O%[Q^O'#HqO%8mQWO'#HsOOQU,5>b,5>bO9WQWO,5>bOOQU,5>d,5>dOOQU7+)f7+)fOOQU7+)l7+)lOOQU7+)p7+)pOOQU7+)r7+)rO%8rQ`O1G5wO%9WQ07bO1G0wO%9bQWO1G0wOOQO1G/p1G/pO%9mQ07bO1G/pO>tQWO1G/pO!(oQ^O'#DjOOQO,5>{,5>{OOQO-E<_-E<_OOQO,5?R,5?ROOQO-EtQWO7+&]O!A}Q`O7+&]OOQO7+%u7+%uO$>`Q?NdO7+&UOOQO7+&U7+&UO%[Q^O7+&UO%9wQ?MxO7+&UO!ArQ?MxO7+%uO!A}Q`O7+%uO%:SQ?MxO7+&UO%:bQ?NdO7++mO%[Q^O7++mO%:rQWO7++lO%:rQWO7++lOOQO1G4o1G4oO9WQWO1G4oO%:zQWO1G4oOOQQ7+%z7+%zO#&wQWO<|O%[Q^O,5>|OOQO-E<`-E<`O%FwQWO1G5xOOQ?Mr<]OOQU,5>_,5>_O&8uQWO1G3|O9WQWO7+&cO!(oQ^O7+&cOOQO7+%[7+%[O&8zQ07bO1G6UO>tQWO7+%[OOQ?Mr<tQWO<`Q?NdO<pQ?NdO,5?_O&@xQ?NdO7+'zO&CWQrO1G4hO&CbQ07bO7+&^O&EcQ07bO,5=UO&GgQ07bO,5=WO&GwQ07bO,5=UO&HXQ07bO,5=WO&HiQ07bO,59rO&JlQ07bO,5tQWO7+)hO'(OQWO<`Q?NdOAN?[OOQOAN>{AN>{O%[Q^OAN?[OOQO<`Q?NdOG24vO#&wQWOLD,nOOQULD,nLD,nO!&_Q7[OLD,nO'5TQrOLD,nO'5[Q07bO7+'xO'6}Q07bO,5?]O'8}Q07bO,5?_O':}Q07bO7+'zO'kOh%VOk+aO![']O%f+`O~O!d+cOa(WX![(WX'u(WX!Y(WX~Oa%lO![XO'u%lO~Oh%VO!i%cO~Oh%VO!i%cO(O%eO~O!d#vO#h(tO~Ob+nO%g+oO(O+kO(QTO(TUO!Z)TP~O!Y+pO`)SX~O[+tO~O`+uO~O![%}O(O%eO(P!lO`)SP~Oh%VO#]+zO~Oh%VOk+}O![$|O~O![,PO~O},RO![XO~O%k%tO~O!u,WO~Oe,]O~Ob,^O(O#nO(QTO(TUO!Z)RP~Oe%{O~O%g!QO(O&WO~P=RO[,cO`,bO~OPYOQYOSfOdzOeyOmkOoYOpkOqkOwkOyYO{YO!PWO!TkO!UkO!fuO!iZO!lYO!mYO!nYO!pvO!uxO!y]O%e}O(QTO(TUO([VO(j[O(yiO~O![!eO!r!gO$V!kO(O!dO~P!EkO`,bOa%lO'u%lO~OPYOQYOSfOd!jOe!iOmkOoYOpkOqkOwkOyYO{YO!PWO!TkO!UkO![!eO!fuO!iZO!lYO!mYO!nYO!pvO!u!hO$V!kO(O!dO(QTO(TUO([VO(j[O(yiO~Oa,hO!rwO#t!OO%i!OO%j!OO%k!OO~P!HTO!i&lO~O&Y,nO~O![,pO~O&k,rO&m,sOP&haQ&haS&haY&haa&had&hae&ham&hao&hap&haq&haw&hay&ha{&ha!P&ha!T&ha!U&ha![&ha!f&ha!i&ha!l&ha!m&ha!n&ha!p&ha!r&ha!u&ha!y&ha#t&ha$V&ha%e&ha%g&ha%i&ha%j&ha%k&ha%n&ha%p&ha%s&ha%t&ha%v&ha&S&ha&Y&ha&[&ha&^&ha&`&ha&c&ha&i&ha&o&ha&q&ha&s&ha&u&ha&w&ha's&ha(O&ha(Q&ha(T&ha([&ha(j&ha(y&ha!Z&ha&a&hab&ha&f&ha~O(O,xO~Oh!bX!Y!OX!Z!OX!d!OX!d!bX!i!bX#]!OX~O!Y!bX!Z!bX~P# ZO!d,}O#],|Oh(eX!Y#eX!Y(eX!Z#eX!Z(eX!d(eX!i(eX~Oh%VO!d-PO!i%cO!Y!^X!Z!^X~Op!nO!P!oO(QTO(TUO(`!mO~OP;POQ;POSfOdkOg'XX!Y'XX~P!+hO!Y.wOg(ka~OSfO![3uO$c3vO~O!Z3zO~Os3{O~P#.aOa$lq!Y$lq'u$lq's$lq!V$lq!h$lqs$lq![$lq%f$lq!d$lq~P!9mO!V3|O~P#.aO})zO!P){O(u%POk'ea(t'ea!Y'ea#]'ea~Og'ea#}'ea~P%)nO})zO!P){Ok'ga(t'ga(u'ga!Y'ga#]'ga~Og'ga#}'ga~P%*aO(m$YO~P#.aO!VfX!V$xX!YfX!Y$xX!d%PX#]fX~P!/gO(OQ#>g#@V#@e#@l#BR#Ba#C|#D[#Db#Dh#Dn#Dx#EO#EU#E`#Er#ExPPPPPPPPPP#FOPPPPPPP#Fs#Iz#KZ#Kb#KjPPP$!sP$!|$%t$,^$,a$,d$-P$-S$-Z$-cP$-i$-lP$.Y$.^$/U$0d$0i$1PPP$1U$1[$1`P$1c$1g$1k$2a$2x$3a$3e$3h$3k$3q$3t$3x$3|R!|RoqOXst!Z#d%k&o&q&r&t,k,p1|2PY!vQ']-]1a5eQ%rvQ%zyQ&R|Q&g!VS'T!e-TQ'c!iS'i!r!yU*e$|*V*jQ+i%{Q+v&TQ,[&aQ-Z'[Q-e'dQ-m'jQ0R*lQ1k,]R;v;T%QdOPWXYZstuvw!Z!`!g!o#S#W#Z#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$_$a$e%k%r&P&h&k&o&q&r&t&x'Q'_'o(P(R(X(`(t(v(z)y+R+V,h,k,p-a-i-w-}.l.s/f0a0g0v1d1t1u1w1y1|2P2R2r2x3^5b5m5}6O6R6f8R8X8h8rS#q];Q!r)Z$Z$n'U)o,|-P.}2b3u5`6]9h9y;P;S;T;W;X;Y;Z;[;];^;_;`;a;b;c;d;f;i;v;x;y;{ < TypeParamList TypeDefinition extends ThisType this LiteralType ArithOp Number BooleanLiteral TemplateType InterpolationEnd Interpolation InterpolationStart NullType null VoidType void TypeofType typeof MemberExpression . PropertyName [ TemplateString Escape Interpolation super RegExp ] ArrayExpression Spread , } { ObjectExpression Property async get set PropertyDefinition Block : NewTarget new NewExpression ) ( ArgList UnaryExpression delete LogicOp BitOp YieldExpression yield AwaitExpression await ParenthesizedExpression ClassExpression class ClassBody MethodDeclaration Decorator @ MemberExpression PrivatePropertyName CallExpression TypeArgList CompareOp < declare Privacy static abstract override PrivatePropertyDefinition PropertyDeclaration readonly accessor Optional TypeAnnotation Equals StaticBlock FunctionExpression ArrowFunction ParamList ParamList ArrayPattern ObjectPattern PatternProperty Privacy readonly Arrow MemberExpression BinaryExpression ArithOp ArithOp ArithOp ArithOp BitOp CompareOp instanceof satisfies in const CompareOp BitOp BitOp BitOp LogicOp LogicOp ConditionalExpression LogicOp LogicOp AssignmentExpression UpdateOp PostfixExpression CallExpression InstantiationExpression TaggedTemplateExpression DynamicImport import ImportMeta JSXElement JSXSelfCloseEndTag JSXSelfClosingTag JSXIdentifier JSXBuiltin JSXIdentifier JSXNamespacedName JSXMemberExpression JSXSpreadAttribute JSXAttribute JSXAttributeValue JSXEscape JSXEndTag JSXOpenTag JSXFragmentTag JSXText JSXEscape JSXStartCloseTag JSXCloseTag PrefixCast ArrowFunction TypeParamList SequenceExpression InstantiationExpression KeyofType keyof UniqueType unique ImportType InferredType infer TypeName ParenthesizedType FunctionSignature ParamList NewSignature IndexedType TupleType Label ArrayType ReadonlyType ObjectType MethodType PropertyType IndexSignature PropertyDefinition CallSignature TypePredicate is NewSignature new UnionType LogicOp IntersectionType LogicOp ConditionalType ParameterizedType ClassDeclaration abstract implements type VariableDeclaration let var using TypeAliasDeclaration InterfaceDeclaration interface EnumDeclaration enum EnumBody NamespaceDeclaration namespace module AmbientDeclaration declare GlobalDeclaration global ClassDeclaration ClassBody AmbientFunctionDeclaration ExportGroup VariableName VariableName ImportDeclaration ImportGroup ForStatement for ForSpec ForInSpec ForOfSpec of WhileStatement while WithStatement with DoStatement do IfStatement if else SwitchStatement switch SwitchBody CaseLabel case DefaultLabel TryStatement try CatchClause catch FinallyClause finally ReturnStatement return ThrowStatement throw BreakStatement break ContinueStatement continue DebuggerStatement debugger LabeledStatement ExpressionStatement SingleExpression SingleClassItem`,maxTerm:376,context:Q9e,nodeProps:[[`isolate`,-8,5,6,14,34,36,48,50,52,``],[`group`,-26,9,17,19,65,204,208,212,213,215,218,221,231,233,239,241,243,245,248,254,260,262,264,266,268,270,271,`Statement`,-34,13,14,29,32,33,39,48,51,52,54,59,67,69,73,77,79,81,82,107,108,117,118,135,138,140,141,142,143,144,146,147,166,167,169,`Expression`,-23,28,30,34,38,40,42,171,173,175,176,178,179,180,182,183,184,186,187,188,198,200,202,203,`Type`,-3,85,100,106,`ClassItem`],[`openedBy`,23,`<`,35,`InterpolationStart`,53,`[`,57,`{`,70,`(`,159,`JSXStartCloseTag`],[`closedBy`,24,`>`,37,`InterpolationEnd`,47,`]`,58,`}`,71,`)`,164,`JSXEndTag`]],propSources:[ret],skippedNodes:[0,5,6,274],repeatNodeCount:37,tokenData:"$Fq07[R!bOX%ZXY+gYZ-yZ[+g[]%Z]^.c^p%Zpq+gqr/mrs3cst:_tuEruvJSvwLkwx! Yxy!'iyz!(sz{!)}{|!,q|}!.O}!O!,q!O!P!/Y!P!Q!9j!Q!R#:O!R![#<_![!]#I_!]!^#Jk!^!_#Ku!_!`$![!`!a$$v!a!b$*T!b!c$,r!c!}Er!}#O$-|#O#P$/W#P#Q$4o#Q#R$5y#R#SEr#S#T$7W#T#o$8b#o#p$x#r#s$@U#s$f%Z$f$g+g$g#BYEr#BY#BZ$A`#BZ$ISEr$IS$I_$A`$I_$I|Er$I|$I}$Dk$I}$JO$Dk$JO$JTEr$JT$JU$A`$JU$KVEr$KV$KW$A`$KW&FUEr&FU&FV$A`&FV;'SEr;'S;=`I|<%l?HTEr?HT?HU$A`?HUOEr(n%d_$h&j(Rp(U!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z&j&hT$h&jO!^&c!_#o&c#p;'S&c;'S;=`&w<%lO&c&j&zP;=`<%l&c'|'U]$h&j(U!bOY&}YZ&cZw&}wx&cx!^&}!^!_'}!_#O&}#O#P&c#P#o&}#o#p'}#p;'S&};'S;=`(l<%lO&}!b(SU(U!bOY'}Zw'}x#O'}#P;'S'};'S;=`(f<%lO'}!b(iP;=`<%l'}'|(oP;=`<%l&}'[(y]$h&j(RpOY(rYZ&cZr(rrs&cs!^(r!^!_)r!_#O(r#O#P&c#P#o(r#o#p)r#p;'S(r;'S;=`*a<%lO(rp)wU(RpOY)rZr)rs#O)r#P;'S)r;'S;=`*Z<%lO)rp*^P;=`<%l)r'[*dP;=`<%l(r#S*nX(Rp(U!bOY*gZr*grs'}sw*gwx)rx#O*g#P;'S*g;'S;=`+Z<%lO*g#S+^P;=`<%l*g(n+dP;=`<%l%Z07[+rq$h&j(Rp(U!b'w0/lOX%ZXY+gYZ&cZ[+g[p%Zpq+gqr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p$f%Z$f$g+g$g#BY%Z#BY#BZ+g#BZ$IS%Z$IS$I_+g$I_$JT%Z$JT$JU+g$JU$KV%Z$KV$KW+g$KW&FU%Z&FU&FV+g&FV;'S%Z;'S;=`+a<%l?HT%Z?HT?HU+g?HUO%Z07[.ST(S#S$h&j'x0/lO!^&c!_#o&c#p;'S&c;'S;=`&w<%lO&c07[.n_$h&j(Rp(U!b'x0/lOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z)3p/x`$h&j!m),Q(Rp(U!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_!`0z!`#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z(KW1V`#u(Ch$h&j(Rp(U!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_!`2X!`#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z(KW2d_#u(Ch$h&j(Rp(U!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'At3l_(Q':f$h&j(U!bOY4kYZ5qZr4krs7nsw4kwx5qx!^4k!^!_8p!_#O4k#O#P5q#P#o4k#o#p8p#p;'S4k;'S;=`:X<%lO4k(^4r_$h&j(U!bOY4kYZ5qZr4krs7nsw4kwx5qx!^4k!^!_8p!_#O4k#O#P5q#P#o4k#o#p8p#p;'S4k;'S;=`:X<%lO4k&z5vX$h&jOr5qrs6cs!^5q!^!_6y!_#o5q#o#p6y#p;'S5q;'S;=`7h<%lO5q&z6jT$c`$h&jO!^&c!_#o&c#p;'S&c;'S;=`&w<%lO&c`6|TOr6yrs7]s;'S6y;'S;=`7b<%lO6y`7bO$c``7eP;=`<%l6y&z7kP;=`<%l5q(^7w]$c`$h&j(U!bOY&}YZ&cZw&}wx&cx!^&}!^!_'}!_#O&}#O#P&c#P#o&}#o#p'}#p;'S&};'S;=`(l<%lO&}!r8uZ(U!bOY8pYZ6yZr8prs9hsw8pwx6yx#O8p#O#P6y#P;'S8p;'S;=`:R<%lO8p!r9oU$c`(U!bOY'}Zw'}x#O'}#P;'S'};'S;=`(f<%lO'}!r:UP;=`<%l8p(^:[P;=`<%l4k%9[:hh$h&j(Rp(U!bOY%ZYZ&cZq%Zqr`#P#o`x!^=^!^!_?q!_#O=^#O#P>`#P#o=^#o#p?q#p;'S=^;'S;=`@h<%lO=^&n>gXWS$h&jOY>`YZ&cZ!^>`!^!_?S!_#o>`#o#p?S#p;'S>`;'S;=`?k<%lO>`S?XSWSOY?SZ;'S?S;'S;=`?e<%lO?SS?hP;=`<%l?S&n?nP;=`<%l>`!f?xWWS(U!bOY?qZw?qwx?Sx#O?q#O#P?S#P;'S?q;'S;=`@b<%lO?q!f@eP;=`<%l?q(Q@kP;=`<%l=^'`@w]WS$h&j(RpOY@nYZ&cZr@nrs>`s!^@n!^!_Ap!_#O@n#O#P>`#P#o@n#o#pAp#p;'S@n;'S;=`Bg<%lO@ntAwWWS(RpOYApZrAprs?Ss#OAp#O#P?S#P;'SAp;'S;=`Ba<%lOAptBdP;=`<%lAp'`BjP;=`<%l@n#WBvYWS(Rp(U!bOYBmZrBmrs?qswBmwxApx#OBm#O#P?S#P;'SBm;'S;=`Cf<%lOBm#WCiP;=`<%lBm(rCoP;=`<%l^!Q^$h&j!U7`OY!=yYZ&cZ!P!=y!P!Q!>|!Q!^!=y!^!_!@c!_!}!=y!}#O!CW#O#P!Dy#P#o!=y#o#p!@c#p;'S!=y;'S;=`!Ek<%lO!=y|#X#Z&c#Z#[!>|#[#]&c#]#^!>|#^#a&c#a#b!>|#b#g&c#g#h!>|#h#i&c#i#j!>|#j#k!>|#k#m&c#m#n!>|#n#o&c#p;'S&c;'S;=`&w<%lO&c7`!@hX!U7`OY!@cZ!P!@c!P!Q!AT!Q!}!@c!}#O!Ar#O#P!Bq#P;'S!@c;'S;=`!CQ<%lO!@c7`!AYW!U7`#W#X!AT#Z#[!AT#]#^!AT#a#b!AT#g#h!AT#i#j!AT#j#k!AT#m#n!AT7`!AuVOY!ArZ#O!Ar#O#P!B[#P#Q!@c#Q;'S!Ar;'S;=`!Bk<%lO!Ar7`!B_SOY!ArZ;'S!Ar;'S;=`!Bk<%lO!Ar7`!BnP;=`<%l!Ar7`!BtSOY!@cZ;'S!@c;'S;=`!CQ<%lO!@c7`!CTP;=`<%l!@c^!Ezl$h&j(U!b!U7`OY&}YZ&cZw&}wx&cx!^&}!^!_'}!_#O&}#O#P&c#P#W&}#W#X!Eq#X#Z&}#Z#[!Eq#[#]&}#]#^!Eq#^#a&}#a#b!Eq#b#g&}#g#h!Eq#h#i&}#i#j!Eq#j#k!Eq#k#m&}#m#n!Eq#n#o&}#o#p'}#p;'S&};'S;=`(l<%lO&}8r!GyZ(U!b!U7`OY!GrZw!Grwx!@cx!P!Gr!P!Q!Hl!Q!}!Gr!}#O!JU#O#P!Bq#P;'S!Gr;'S;=`!J|<%lO!Gr8r!Hse(U!b!U7`OY'}Zw'}x#O'}#P#W'}#W#X!Hl#X#Z'}#Z#[!Hl#[#]'}#]#^!Hl#^#a'}#a#b!Hl#b#g'}#g#h!Hl#h#i'}#i#j!Hl#j#k!Hl#k#m'}#m#n!Hl#n;'S'};'S;=`(f<%lO'}8r!JZX(U!bOY!JUZw!JUwx!Arx#O!JU#O#P!B[#P#Q!Gr#Q;'S!JU;'S;=`!Jv<%lO!JU8r!JyP;=`<%l!JU8r!KPP;=`<%l!Gr>^!KZ^$h&j(U!bOY!KSYZ&cZw!KSwx!CWx!^!KS!^!_!JU!_#O!KS#O#P!DR#P#Q!^!LYP;=`<%l!KS>^!L`P;=`<%l!_#c#d#Bq#d#l%Z#l#m#Es#m#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#_#c#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#>j_$h&j(Rp(U!bp'9tOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#?rd$h&j(Rp(U!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q!R#AQ!R!S#AQ!S!^%Z!^!_*g!_#O%Z#O#P&c#P#R%Z#R#S#AQ#S#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#A]f$h&j(Rp(U!bp'9tOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q!R#AQ!R!S#AQ!S!^%Z!^!_*g!_#O%Z#O#P&c#P#R%Z#R#S#AQ#S#b%Z#b#c#>_#c#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#Bzc$h&j(Rp(U!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q!Y#DV!Y!^%Z!^!_*g!_#O%Z#O#P&c#P#R%Z#R#S#DV#S#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#Dbe$h&j(Rp(U!bp'9tOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q!Y#DV!Y!^%Z!^!_*g!_#O%Z#O#P&c#P#R%Z#R#S#DV#S#b%Z#b#c#>_#c#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#E|g$h&j(Rp(U!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q![#Ge![!^%Z!^!_*g!_!c%Z!c!i#Ge!i#O%Z#O#P&c#P#R%Z#R#S#Ge#S#T%Z#T#Z#Ge#Z#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#Gpi$h&j(Rp(U!bp'9tOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q![#Ge![!^%Z!^!_*g!_!c%Z!c!i#Ge!i#O%Z#O#P&c#P#R%Z#R#S#Ge#S#T%Z#T#Z#Ge#Z#b%Z#b#c#>_#c#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z*)x#Il_!d$b$h&j#})Lv(Rp(U!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z)[#Jv_al$h&j(Rp(U!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z04f#LS^h#)`#O-iet[e]||-1},{term:338,get:e=>aet[e]||-1},{term:92,get:e=>oet[e]||-1}],tokenPrec:14749})}));function OI(e){return(t,n)=>{let r=t.node.getChild(`VariableDefinition`);return r&&n(r,e),!0}}function uet(e,t){let n=AI.get(t);if(n)return n;let r=[],i=!0;function a(t,n){let i=e.sliceString(t.from,t.to);r.push({label:i,type:n})}return t.cursor(lN.IncludeAnonymous).iterate(t=>{if(i)i=!1;else if(t.name){let e=_et[t.name];if(e&&e(t,a)||jI.has(t.name))return!1}else if(t.to-t.from>8192){for(let n of uet(e,t.node))r.push(n);return!1}}),AI.set(t,r),r}function det(e){let t=GN(e.state).resolveInner(e.pos,-1);if(NI.indexOf(t.name)>-1)return null;let n=t.name==`VariableName`||t.to-t.from<20&&MI.test(e.state.sliceDoc(t.from,t.to));if(!n&&!e.explicit)return null;let r=[];for(let n=t;n;n=n.parent)jI.has(n.name)&&(r=r.concat(uet(e.state.doc,n)));return{options:r,from:n?t.from:e.pos,validFor:MI}}function fet(e={}){let t=e.jsx?e.typescript?RI:LI:e.typescript?II:PI,n=e.typescript?het.concat(vet):kI.concat(BI);return new uP(t,[PI.data.of({autocomplete:b8e(NI,y8e(n))}),PI.data.of({autocomplete:det}),e.jsx?bet:[]])}function pet(e){for(;;){if(e.name==`JSXOpenTag`||e.name==`JSXSelfClosingTag`||e.name==`JSXFragmentTag`)return e;if(e.name==`JSXEscape`||!e.parent)return null;e=e.parent}}function met(e,t,n=e.length){for(let r=t?.firstChild;r;r=r.nextSibling)if(r.name==`JSXIdentifier`||r.name==`JSXBuiltin`||r.name==`JSXNamespacedName`||r.name==`JSXMemberExpression`)return e.sliceString(r.from,Math.min(r.to,n));return``}var kI,het,AI,jI,get,_et,MI,NI,PI,FI,II,LI,RI,zI,BI,vet,yet,bet,xet=s((()=>{cet(),jP(),Ak(),XM(),A5e(),CN(),kI=[GP("function ${name}(${params}) {\n ${}\n}",{label:`function`,detail:`definition`,type:`keyword`}),GP("for (let ${index} = 0; ${index} < ${bound}; ${index}++) {\n ${}\n}",{label:`for`,detail:`loop`,type:`keyword`}),GP("for (let ${name} of ${collection}) {\n ${}\n}",{label:`for`,detail:`of loop`,type:`keyword`}),GP(`do { + \${} +} while (\${})`,{label:`do`,detail:`loop`,type:`keyword`}),GP(`while (\${}) { + \${} +}`,{label:`while`,detail:`loop`,type:`keyword`}),GP(`try { + \${} +} catch (\${error}) { + \${} +}`,{label:`try`,detail:`/ catch block`,type:`keyword`}),GP(`if (\${}) { + \${} +}`,{label:`if`,detail:`block`,type:`keyword`}),GP(`if (\${}) { + \${} +} else { + \${} +}`,{label:`if`,detail:`/ else block`,type:`keyword`}),GP(`class \${name} { + constructor(\${params}) { + \${} + } +}`,{label:`class`,detail:`definition`,type:`keyword`}),GP('import {${names}} from "${module}"\n${}',{label:`import`,detail:`named`,type:`keyword`}),GP('import ${name} from "${module}"\n${}',{label:`import`,detail:`default`,type:`keyword`})],het=kI.concat([GP(`interface \${name} { + \${} +}`,{label:`interface`,detail:`definition`,type:`keyword`}),GP("type ${name} = ${type}",{label:`type`,detail:`definition`,type:`keyword`}),GP(`enum \${name} { + \${} +}`,{label:`enum`,detail:`definition`,type:`keyword`})]),AI=new _N,jI=new Set([`Script`,`Block`,`FunctionExpression`,`FunctionDeclaration`,`ArrowFunction`,`MethodDeclaration`,`ForStatement`]),get=[`FunctionDeclaration`],_et={FunctionDeclaration:OI(`function`),ClassDeclaration:OI(`class`),ClassExpression:()=>!0,EnumDeclaration:OI(`constant`),TypeAliasDeclaration:OI(`type`),NamespaceDeclaration:OI(`namespace`),VariableDefinition(e,t){e.matchContext(get)||t(e,`variable`)},TypeDefinition(e,t){t(e,`type`)},__proto__:null},MI=/^[\w$\xa1-\uffff][\w$\d\xa1-\uffff]*$/,NI=[`TemplateString`,`String`,`RegExp`,`LineComment`,`BlockComment`,`VariableDefinition`,`TypeDefinition`,`Label`,`PropertyDefinition`,`PropertyName`,`PrivatePropertyDefinition`,`PrivatePropertyName`,`JSXText`,`JSXAttributeValue`,`JSXOpenTag`,`JSXCloseTag`,`JSXSelfClosingTag`,`.`,`?.`],PI=iP.define({name:`javascript`,parser:set.configure({props:[pP.add({IfStatement:qN({except:/^\s*({|else\b)/}),TryStatement:qN({except:/^\s*({|catch\b|finally\b)/}),LabeledStatement:F6e,SwitchBody:e=>{let t=e.textAfter,n=/^\s*\}/.test(t),r=/^\s*(case|default)\b/.test(t);return e.baseIndent+(n?0:r?1:2)*e.unit},Block:KN({closing:`}`}),ArrowFunction:e=>e.baseIndent+e.unit,"TemplateString BlockComment":()=>null,"Statement Property":qN({except:/^\s*{/}),JSXElement(e){let t=/^\s*<\//.test(e.textAfter);return e.lineIndent(e.node.from)+(t?0:e.unit)},JSXEscape(e){let t=/\s*\}/.test(e.textAfter);return e.lineIndent(e.node.from)+(t?0:e.unit)},"JSXOpenTag JSXSelfClosingTag"(e){return e.column(e.node.from)+e.unit}}),mP.add({"Block ClassBody SwitchBody EnumBody ObjectExpression ArrayExpression ObjectType":JN,BlockComment(e){return{from:e.from+2,to:e.to-2}},JSXElement(e){let t=e.firstChild;if(!t||t.name==`JSXSelfClosingTag`)return null;let n=e.lastChild;return{from:t.to,to:n.type.isError?e.to:n.from}},"JSXSelfClosingTag JSXOpenTag"(e){let t=e.firstChild?.nextSibling,n=e.lastChild;return!t||t.type.isError?null:{from:t.to,to:n.type.isError?e.to:n.from}}})]}),languageData:{closeBrackets:{brackets:[`(`,`[`,`{`,`'`,`"`,"`"]},commentTokens:{line:`//`,block:{open:`/*`,close:`*/`}},indentOnInput:/^\s*(?:case |default:|\{|\}|<\/)$/,wordChars:`$`}}),FI={test:e=>/^JSX/.test(e.name),facet:t6e({commentTokens:{block:{open:`{/*`,close:`*/}`}}})},II=PI.configure({dialect:`ts`},`typescript`),LI=PI.configure({dialect:`jsx`,props:[nP.add(e=>e.isTop?[FI]:void 0)]}),RI=PI.configure({dialect:`jsx ts`,props:[nP.add(e=>e.isTop?[FI]:void 0)]},`typescript`),zI=e=>({label:e,type:`keyword`}),BI=`break case const continue default delete export extends false finally in instanceof let new return static super switch this throw true typeof var yield`.split(` `).map(zI),vet=BI.concat([`declare`,`implements`,`private`,`protected`,`public`].map(zI)),yet=typeof navigator==`object`&&/Android\b/.test(navigator.userAgent),bet=vM.inputHandler.of((e,t,n,r,i)=>{if((yet?e.composing:e.compositionStarted)||e.state.readOnly||t!=n||r!=`>`&&r!=`/`||!PI.isActiveAt(e.state,t,-1))return!1;let a=i(),{state:o}=a,s=o.changeByRange(e=>{let{head:t}=e,n=GN(o).resolveInner(t-1,-1),i;if(n.name==`JSXStartTag`&&(n=n.parent),!(o.doc.sliceString(t-1,t)!=r||n.name==`JSXAttributeValue`&&n.to>t)){if(r==`>`&&n.name==`JSXFragmentTag`)return{range:e,changes:{from:t,insert:``}};if(r==`/`&&n.name==`JSXStartCloseTag`){let e=n.parent,r=e.parent;if(r&&e.from==t-2&&((i=met(o.doc,r.firstChild,t))||r.firstChild?.name==`JSXFragmentTag`)){let e=`${i}>`;return{range:QO.cursor(t+e.length,-1),changes:{from:t,insert:e}}}}else if(r==`>`){let r=pet(n);if(r&&r.name==`JSXOpenTag`&&!/^\/?>|^<\//.test(o.doc.sliceString(t,t+2))&&(i=met(o.doc,r,t)))return{range:e,changes:{from:t,insert:``}}}}return{range:e}});return s.changes.empty?!1:(e.dispatch([a,o.update(s,{userEvent:`input.complete`,scrollIntoView:!0})]),!0)})}));function VI(e,t,n=e.length){if(!t)return``;let r=t.firstChild,i=r&&r.getChild(`TagName`);return i?e.sliceString(i.from,Math.min(i.to,n)):``}function HI(e,t=!1){for(;e;e=e.parent)if(e.name==`Element`)if(t)t=!1;else return e;return null}function Cet(e,t,n){return n.tags[VI(e,HI(t))]?.children||n.allTags}function UI(e,t){let n=[];for(let r=HI(t);r&&!r.type.isTop;r=HI(r.parent)){let i=VI(e,r);if(i&&r.lastChild.name==`CloseTag`)break;i&&n.indexOf(i)<0&&(t.name==`EndTag`||t.from>=r.firstChild.to)&&n.push(i)}return n}function wet(e,t,n,r,i){let a=/\s*>/.test(e.sliceDoc(i,i+5))?``:`>`,o=HI(n,!0);return{from:r,to:i,options:Cet(e.doc,o,t).map(e=>({label:e,type:`type`})).concat(UI(e.doc,n).map((e,t)=>({label:`/`+e,apply:`/`+e+a,type:`type`,boost:99-t}))),validFor:/^\/?[:\-\.\w\u00b7-\uffff]*$/}}function Tet(e,t,n,r){let i=/\s*>/.test(e.sliceDoc(r,r+5))?``:`>`;return{from:n,to:r,options:UI(e.doc,t).map((e,t)=>({label:e,apply:e+i,type:`type`,boost:99-t})),validFor:$I}}function Eet(e,t,n,r){let i=[],a=0;for(let r of Cet(e.doc,n,t))i.push({label:`<`+r,type:`type`});for(let t of UI(e.doc,n))i.push({label:``,type:`type`,boost:99-a++});return{from:r,to:r,options:i,validFor:/^<\/?[:\-\.\w\u00b7-\uffff]*$/}}function Det(e,t,n,r,i){let a=HI(n),o=a?t.tags[VI(e.doc,a)]:null,s=o&&o.attrs?Object.keys(o.attrs):[];return{from:r,to:i,options:(o&&o.globalAttrs===!1?s:s.length?s.concat(t.globalAttrNames):t.globalAttrNames).map(e=>({label:e,type:`property`})),validFor:$I}}function Oet(e,t,n,r,i){let a=n.parent?.getChild(`AttributeName`),o=[],s;if(a){let c=e.sliceDoc(a.from,a.to),l=t.globalAttrs[c];if(!l){let r=HI(n),i=r?t.tags[VI(e.doc,r)]:null;l=i?.attrs&&i.attrs[c]}if(l){let t=e.sliceDoc(r,i).toLowerCase(),n=`"`,a=`"`;/^['"]/.test(t)?(s=t[0]==`"`?/^[^"]*$/:/^[^']*$/,n=``,a=e.sliceDoc(i,i+1)==t[0]?``:t[0],t=t.slice(1),r++):s=/^[^\s<>='"]*$/;for(let e of l)o.push({label:e,apply:n+e+a,type:`constant`})}}return{from:r,to:i,options:o,validFor:s}}function ket(e,t){let{state:n,pos:r}=t,i=GN(n).resolveInner(r,-1),a=i.resolve(r);for(let e=r,t;a==i&&(t=i.childBefore(e));){let n=t.lastChild;if(!n||!n.type.isError||n.fromket(r,e)}function jet(e={}){let t=``,n;return e.matchClosingTags===!1&&(t=`noMatch`),e.selfClosingTags===!0&&(t=(t?t+` `:``)+`selfClosing`),(e.nestedLanguages&&e.nestedLanguages.length||e.nestedAttributes&&e.nestedAttributes.length)&&(n=Z7e((e.nestedLanguages||[]).concat(eL),(e.nestedAttributes||[]).concat(tL))),new uP(n?nL.configure({wrap:n,dialect:t}):t?rL.configure({dialect:t}):rL,[rL.data.of({autocomplete:Aet(e)}),e.autoCloseTags===!1?[]:Pet,fet().support,L7e().support])}var WI,GI,KI,qI,JI,YI,Met,XI,ZI,QI,$I,Net,eL,tL,nL,rL,iL,Pet,Fet=s((()=>{N9e(),W7e(),xet(),XM(),Ak(),jP(),WI=[`_blank`,`_self`,`_top`,`_parent`],GI=[`ascii`,`utf-8`,`utf-16`,`latin1`,`latin1`],KI=[`get`,`post`,`put`,`delete`],qI=[`application/x-www-form-urlencoded`,`multipart/form-data`,`text/plain`],JI=[`true`,`false`],YI={},Met={a:{attrs:{href:null,ping:null,type:null,media:null,target:WI,hreflang:null}},abbr:YI,address:YI,area:{attrs:{alt:null,coords:null,href:null,target:null,ping:null,media:null,hreflang:null,type:null,shape:[`default`,`rect`,`circle`,`poly`]}},article:YI,aside:YI,audio:{attrs:{src:null,mediagroup:null,crossorigin:[`anonymous`,`use-credentials`],preload:[`none`,`metadata`,`auto`],autoplay:[`autoplay`],loop:[`loop`],controls:[`controls`]}},b:YI,base:{attrs:{href:null,target:WI}},bdi:YI,bdo:YI,blockquote:{attrs:{cite:null}},body:YI,br:YI,button:{attrs:{form:null,formaction:null,name:null,value:null,autofocus:[`autofocus`],disabled:[`autofocus`],formenctype:qI,formmethod:KI,formnovalidate:[`novalidate`],formtarget:WI,type:[`submit`,`reset`,`button`]}},canvas:{attrs:{width:null,height:null}},caption:YI,center:YI,cite:YI,code:YI,col:{attrs:{span:null}},colgroup:{attrs:{span:null}},command:{attrs:{type:[`command`,`checkbox`,`radio`],label:null,icon:null,radiogroup:null,command:null,title:null,disabled:[`disabled`],checked:[`checked`]}},data:{attrs:{value:null}},datagrid:{attrs:{disabled:[`disabled`],multiple:[`multiple`]}},datalist:{attrs:{data:null}},dd:YI,del:{attrs:{cite:null,datetime:null}},details:{attrs:{open:[`open`]}},dfn:YI,div:YI,dl:YI,dt:YI,em:YI,embed:{attrs:{src:null,type:null,width:null,height:null}},eventsource:{attrs:{src:null}},fieldset:{attrs:{disabled:[`disabled`],form:null,name:null}},figcaption:YI,figure:YI,footer:YI,form:{attrs:{action:null,name:null,"accept-charset":GI,autocomplete:[`on`,`off`],enctype:qI,method:KI,novalidate:[`novalidate`],target:WI}},h1:YI,h2:YI,h3:YI,h4:YI,h5:YI,h6:YI,head:{children:[`title`,`base`,`link`,`style`,`meta`,`script`,`noscript`,`command`]},header:YI,hgroup:YI,hr:YI,html:{attrs:{manifest:null}},i:YI,iframe:{attrs:{src:null,srcdoc:null,name:null,width:null,height:null,sandbox:[`allow-top-navigation`,`allow-same-origin`,`allow-forms`,`allow-scripts`],seamless:[`seamless`]}},img:{attrs:{alt:null,src:null,ismap:null,usemap:null,width:null,height:null,crossorigin:[`anonymous`,`use-credentials`]}},input:{attrs:{alt:null,dirname:null,form:null,formaction:null,height:null,list:null,max:null,maxlength:null,min:null,name:null,pattern:null,placeholder:null,size:null,src:null,step:null,value:null,width:null,accept:[`audio/*`,`video/*`,`image/*`],autocomplete:[`on`,`off`],autofocus:[`autofocus`],checked:[`checked`],disabled:[`disabled`],formenctype:qI,formmethod:KI,formnovalidate:[`novalidate`],formtarget:WI,multiple:[`multiple`],readonly:[`readonly`],required:[`required`],type:[`hidden`,`text`,`search`,`tel`,`url`,`email`,`password`,`datetime`,`date`,`month`,`week`,`time`,`datetime-local`,`number`,`range`,`color`,`checkbox`,`radio`,`file`,`submit`,`image`,`reset`,`button`]}},ins:{attrs:{cite:null,datetime:null}},kbd:YI,keygen:{attrs:{challenge:null,form:null,name:null,autofocus:[`autofocus`],disabled:[`disabled`],keytype:[`RSA`]}},label:{attrs:{for:null,form:null}},legend:YI,li:{attrs:{value:null}},link:{attrs:{href:null,type:null,hreflang:null,media:null,sizes:[`all`,`16x16`,`16x16 32x32`,`16x16 32x32 64x64`]}},map:{attrs:{name:null}},mark:YI,menu:{attrs:{label:null,type:[`list`,`context`,`toolbar`]}},meta:{attrs:{content:null,charset:GI,name:[`viewport`,`application-name`,`author`,`description`,`generator`,`keywords`],"http-equiv":[`content-language`,`content-type`,`default-style`,`refresh`]}},meter:{attrs:{value:null,min:null,low:null,high:null,max:null,optimum:null}},nav:YI,noscript:YI,object:{attrs:{data:null,type:null,name:null,usemap:null,form:null,width:null,height:null,typemustmatch:[`typemustmatch`]}},ol:{attrs:{reversed:[`reversed`],start:null,type:[`1`,`a`,`A`,`i`,`I`]},children:[`li`,`script`,`template`,`ul`,`ol`]},optgroup:{attrs:{disabled:[`disabled`],label:null}},option:{attrs:{disabled:[`disabled`],label:null,selected:[`selected`],value:null}},output:{attrs:{for:null,form:null,name:null}},p:YI,param:{attrs:{name:null,value:null}},pre:YI,progress:{attrs:{value:null,max:null}},q:{attrs:{cite:null}},rp:YI,rt:YI,ruby:YI,samp:YI,script:{attrs:{type:[`text/javascript`],src:null,async:[`async`],defer:[`defer`],charset:GI}},section:YI,select:{attrs:{form:null,name:null,size:null,autofocus:[`autofocus`],disabled:[`disabled`],multiple:[`multiple`]}},slot:{attrs:{name:null}},small:YI,source:{attrs:{src:null,type:null,media:null}},span:YI,strong:YI,style:{attrs:{type:[`text/css`],media:null,scoped:null}},sub:YI,summary:YI,sup:YI,table:YI,tbody:YI,td:{attrs:{colspan:null,rowspan:null,headers:null}},template:YI,textarea:{attrs:{dirname:null,form:null,maxlength:null,name:null,placeholder:null,rows:null,cols:null,autofocus:[`autofocus`],disabled:[`disabled`],readonly:[`readonly`],required:[`required`],wrap:[`soft`,`hard`]}},tfoot:YI,th:{attrs:{colspan:null,rowspan:null,headers:null,scope:[`row`,`col`,`rowgroup`,`colgroup`]}},thead:YI,time:{attrs:{datetime:null}},title:YI,tr:YI,track:{attrs:{src:null,label:null,default:null,kind:[`subtitles`,`captions`,`descriptions`,`chapters`,`metadata`],srclang:null}},ul:{children:[`li`,`script`,`template`,`ul`,`ol`]},var:YI,video:{attrs:{src:null,poster:null,width:null,height:null,crossorigin:[`anonymous`,`use-credentials`],preload:[`auto`,`metadata`,`none`],autoplay:[`autoplay`],mediagroup:[`movie`],muted:[`muted`],controls:[`controls`]}},wbr:YI},XI={accesskey:null,class:null,contenteditable:JI,contextmenu:null,dir:[`ltr`,`rtl`,`auto`],draggable:[`true`,`false`,`auto`],dropzone:[`copy`,`move`,`link`,`string:`,`file:`],hidden:[`hidden`],id:null,inert:[`inert`],itemid:null,itemprop:null,itemref:null,itemscope:[`itemscope`],itemtype:null,lang:[`ar`,`bn`,`de`,`en-GB`,`en-US`,`es`,`fr`,`hi`,`id`,`ja`,`pa`,`pt`,`ru`,`tr`,`zh`],spellcheck:JI,autocorrect:JI,autocapitalize:JI,style:null,tabindex:null,title:null,translate:[`yes`,`no`],rel:[`stylesheet`,`alternate`,`author`,`bookmark`,`help`,`license`,`next`,`nofollow`,`noreferrer`,`prefetch`,`prev`,`search`,`tag`],role:`alert application article banner button cell checkbox complementary contentinfo dialog document feed figure form grid gridcell heading img list listbox listitem main navigation region row rowgroup search switch tab table tabpanel textbox timer`.split(` `),"aria-activedescendant":null,"aria-atomic":JI,"aria-autocomplete":[`inline`,`list`,`both`,`none`],"aria-busy":JI,"aria-checked":[`true`,`false`,`mixed`,`undefined`],"aria-controls":null,"aria-describedby":null,"aria-disabled":JI,"aria-dropeffect":null,"aria-expanded":[`true`,`false`,`undefined`],"aria-flowto":null,"aria-grabbed":[`true`,`false`,`undefined`],"aria-haspopup":JI,"aria-hidden":JI,"aria-invalid":[`true`,`false`,`grammar`,`spelling`],"aria-label":null,"aria-labelledby":null,"aria-level":null,"aria-live":[`off`,`polite`,`assertive`],"aria-multiline":JI,"aria-multiselectable":JI,"aria-owns":null,"aria-posinset":null,"aria-pressed":[`true`,`false`,`mixed`,`undefined`],"aria-readonly":JI,"aria-relevant":null,"aria-required":JI,"aria-selected":[`true`,`false`,`undefined`],"aria-setsize":null,"aria-sort":[`ascending`,`descending`,`none`,`other`],"aria-valuemax":null,"aria-valuemin":null,"aria-valuenow":null,"aria-valuetext":null},ZI=`beforeunload copy cut dragstart dragover dragleave dragenter dragend drag paste focus blur change click load mousedown mouseenter mouseleave mouseup keydown keyup resize scroll unload`.split(` `).map(e=>`on`+e);for(let e of ZI)XI[e]=null;QI=class{constructor(e,t){this.tags=Object.assign(Object.assign({},Met),e),this.globalAttrs=Object.assign(Object.assign({},XI),t),this.allTags=Object.keys(this.tags),this.globalAttrNames=Object.keys(this.globalAttrs)}},QI.default=new QI,$I=/^[:\-\.\w\u00b7-\uffff]*$/,Net=PI.parser.configure({top:`SingleExpression`}),eL=[{tag:`script`,attrs:e=>e.type==`text/typescript`||e.lang==`ts`,parser:II.parser},{tag:`script`,attrs:e=>e.type==`text/babel`||e.type==`text/jsx`,parser:LI.parser},{tag:`script`,attrs:e=>e.type==`text/typescript-jsx`,parser:RI.parser},{tag:`script`,attrs(e){return/^(importmap|speculationrules|application\/(.+\+)?json)$/i.test(e.type)},parser:Net},{tag:`script`,attrs(e){return!e.type||/^(?:text|application)\/(?:x-)?(?:java|ecma)script$|^module$|^$/i.test(e.type)},parser:PI.parser},{tag:`style`,attrs(e){return(!e.lang||e.lang==`css`)&&(!e.type||/^(text\/)?(x-)?(stylesheet|css)$/i.test(e.type))},parser:eI.parser}],tL=[{name:`style`,parser:eI.parser.configure({top:`Styles`})}].concat(ZI.map(e=>({name:e,parser:PI.parser}))),nL=iP.define({name:`html`,parser:M9e.configure({props:[pP.add({Element(e){let t=/^(\s*)(<\/)?/.exec(e.textAfter);return e.node.to<=e.pos+t[0].length?e.continue():e.lineIndent(e.node.from)+(t[2]?0:e.unit)},"OpenTag CloseTag SelfClosingTag"(e){return e.column(e.node.from)+e.unit},Document(e){if(e.pos+/\s*/.exec(e.textAfter)[0].lengthe.getChild(`TagName`)})]}),languageData:{commentTokens:{block:{open:``}},indentOnInput:/^\s*<\/\w+\W$/,wordChars:`-._`}}),rL=nL.configure({wrap:Z7e(eL,tL)}),iL=new Set(`area base br col command embed frame hr img input keygen link meta param source track wbr menuitem`.split(` `)),Pet=vM.inputHandler.of((e,t,n,r,i)=>{if(e.composing||e.state.readOnly||t!=n||r!=`>`&&r!=`/`||!rL.isActiveAt(e.state,t,-1))return!1;let a=i(),{state:o}=a,s=o.changeByRange(e=>{let t=o.doc.sliceString(e.from-1,e.to)==r,{head:n}=e,i=GN(o).resolveInner(n,-1),a;if(t&&r==`>`&&i.name==`EndTag`){let t=i.parent;if(t.parent?.lastChild?.name!=`CloseTag`&&(a=VI(o.doc,t.parent,n))&&!iL.has(a))return{range:e,changes:{from:n,to:n+ +(o.doc.sliceString(n,n+1)===`>`),insert:``}}}else if(t&&r==`/`&&i.name==`IncompleteCloseTag`){let e=i.parent;if(i.from==n-2&&e.lastChild?.name!=`CloseTag`&&(a=VI(o.doc,e,n))&&!iL.has(a)){let e=n+ +(o.doc.sliceString(n,n+1)===`>`),t=`${a}>`;return{range:QO.cursor(n+t.length,-1),changes:{from:n,to:e,insert:t}}}}return{range:e}});return s.changes.empty?!1:(e.dispatch([a,o.update(s,{userEvent:`input.complete`,scrollIntoView:!0})]),!0)})})),Iet,Let,Ret=s((()=>{VF(),WN(),Iet=wN({String:J.string,Number:J.number,"True False":J.bool,PropertyName:J.propertyName,Null:J.null,",":J.separator,"[ ]":J.squareBracket,"{ }":J.brace}),Let=BF.deserialize({version:14,states:`$bOVQPOOOOQO'#Cb'#CbOnQPO'#CeOvQPO'#CjOOQO'#Cp'#CpQOQPOOOOQO'#Cg'#CgO}QPO'#CfO!SQPO'#CrOOQO,59P,59PO![QPO,59PO!aQPO'#CuOOQO,59U,59UO!iQPO,59UOVQPO,59QOqQPO'#CkO!nQPO,59^OOQO1G.k1G.kOVQPO'#ClO!vQPO,59aOOQO1G.p1G.pOOQO1G.l1G.lOOQO,59V,59VOOQO-E6i-E6iOOQO,59W,59WOOQO-E6j-E6j`,stateData:`#O~OcOS~OQSORSOSSOTSOWQO]ROePO~OVXOeUO~O[[O~PVOg^O~Oh_OVfX~OVaO~OhbO[iX~O[dO~Oh_OVfa~OhbO[ia~O`,goto:"!kjPPPPPPkPPkqwPPk{!RPPP!XP!ePP!hXSOR^bQWQRf_TVQ_Q`WRg`QcZRicQTOQZRQe^RhbRYQR]R",nodeNames:`⚠ JsonText True False Null Number String } { Object Property PropertyName ] [ Array`,maxTerm:25,nodeProps:[[`isolate`,-2,6,11,``],[`openedBy`,7,`{`,12,`[`],[`closedBy`,8,`}`,13,`]`]],propSources:[Iet],skippedNodes:[0],repeatNodeCount:2,tokenData:"(|~RaXY!WYZ!W]^!Wpq!Wrs!]|}$u}!O$z!Q!R%T!R![&c![!]&t!}#O&y#P#Q'O#Y#Z'T#b#c'r#h#i(Z#o#p(r#q#r(w~!]Oc~~!`Wpq!]qr!]rs!xs#O!]#O#P!}#P;'S!];'S;=`$o<%lO!]~!}Oe~~#QXrs!]!P!Q!]#O#P!]#U#V!]#Y#Z!]#b#c!]#f#g!]#h#i!]#i#j#m~#pR!Q![#y!c!i#y#T#Z#y~#|R!Q![$V!c!i$V#T#Z$V~$YR!Q![$c!c!i$c#T#Z$c~$fR!Q![!]!c!i!]#T#Z!]~$rP;=`<%l!]~$zOh~~$}Q!Q!R%T!R![&c~%YRT~!O!P%c!g!h%w#X#Y%w~%fP!Q![%i~%nRT~!Q![%i!g!h%w#X#Y%w~%zR{|&T}!O&T!Q![&Z~&WP!Q![&Z~&`PT~!Q![&Z~&hST~!O!P%c!Q![&c!g!h%w#X#Y%w~&yOg~~'OO]~~'TO[~~'WP#T#U'Z~'^P#`#a'a~'dP#g#h'g~'jP#X#Y'm~'rOR~~'uP#i#j'x~'{P#`#a(O~(RP#`#a(U~(ZOS~~(^P#f#g(a~(dP#i#j(g~(jP#X#Y(m~(rOQ~~(wOW~~(|OV~",tokenizers:[0],topRules:{JsonText:[0,1]},tokenPrec:0})}));function zet(){return new uP(Bet)}var Bet,Vet=s((()=>{Ret(),jP(),Bet=iP.define({name:`json`,parser:Let.configure({props:[pP.add({Object:qN({except:/^\s*\}/}),Array:qN({except:/^\s*\]/})}),mP.add({"Object Array":JN})]}),languageData:{closeBrackets:{brackets:[`[`,`{`,`"`]},indentOnInput:/^\s*[\}\]]$/}})}));function Het(e){return e==45||e==46||e==58||e>=65&&e<=90||e==95||e>=97&&e<=122||e>=161}function Uet(e){return e==9||e==10||e==13||e==32}function aL(e,t){let n=e.pos+t;if(lL==e&&uL==n)return cL;for(;Uet(e.peek(t));)t++;let r=``;for(;;){let n=e.peek(t);if(!Het(n))break;r+=String.fromCharCode(n),t++}return lL=e,uL=n,cL=r||null}function Wet(e,t){this.name=e,this.parent=t,this.hash=t?t.hash:0;for(let t=0;t{let r=0,i=t.charCodeAt(0);scan:for(;!(n.next<0);n.advance(),r++)if(n.next==i){for(let e=1;e{VF(),WN(),sL=1,Get=2,Ket=3,qet=4,Jet=5,Yet=35,Xet=36,Zet=37,Qet=11,$et=13,cL=null,lL=null,uL=0,ett=new zF({start:null,shift(e,t,n,r){return t==sL?new Wet(aL(r,1)||``,e):e},reduce(e,t){return t==Qet&&e?e.parent:e},reuse(e,t,n,r){let i=t.type.id;return i==sL||i==$et?new Wet(aL(r,1)||``,e):e},hash(e){return e?e.hash:0},strict:!1}),ttt=new FF((e,t)=>{if(e.next==60){if(e.advance(),e.next==47){e.advance();let n=aL(e,0);if(!n)return e.acceptToken(Jet);if(t.context&&n==t.context.name)return e.acceptToken(Get);for(let r=t.context;r;r=r.parent)if(r.name==n)return e.acceptToken(Ket,-2);e.acceptToken(qet)}else if(e.next!=33&&e.next!=63)return e.acceptToken(sL)}},{contextual:!0}),ntt=oL(Yet,`-->`),rtt=oL(Xet,`?>`),itt=oL(Zet,`]]>`),att=wN({Text:J.content,"StartTag StartCloseTag EndTag SelfCloseEndTag":J.angleBracket,TagName:J.tagName,"MismatchedCloseTag/TagName":[J.tagName,J.invalid],AttributeName:J.attributeName,AttributeValue:J.attributeValue,Is:J.definitionOperator,"EntityReference CharacterReference":J.character,Comment:J.blockComment,ProcessingInst:J.processingInstruction,DoctypeDecl:J.documentMeta,Cdata:J.special(J.string)}),ott=BF.deserialize({version:14,states:",SOQOaOOOrOxO'#CfOzOpO'#CiO!tOaO'#CgOOOP'#Cg'#CgO!{OrO'#CrO#TOtO'#CsO#]OpO'#CtOOOP'#DS'#DSOOOP'#Cv'#CvQQOaOOOOOW'#Cw'#CwO#eOxO,59QOOOP,59Q,59QOOOO'#Cx'#CxO#mOpO,59TO#uO!bO,59TOOOP'#C{'#C{O$TOaO,59RO$[OpO'#CoOOOP,59R,59ROOOQ'#C|'#C|O$dOrO,59^OOOP,59^,59^OOOS'#C}'#C}O$lOtO,59_OOOP,59_,59_O$tOpO,59`O$|OpO,59`OOOP-E6t-E6tOOOW-E6u-E6uOOOP1G.l1G.lOOOO-E6v-E6vO%UO!bO1G.oO%UO!bO1G.oO%dOpO'#CkO%lO!bO'#CyO%zO!bO1G.oOOOP1G.o1G.oOOOP1G.w1G.wOOOP-E6y-E6yOOOP1G.m1G.mO&VOpO,59ZO&_OpO,59ZOOOQ-E6z-E6zOOOP1G.x1G.xOOOS-E6{-E6{OOOP1G.y1G.yO&gOpO1G.zO&gOpO1G.zOOOP1G.z1G.zO&oO!bO7+$ZO&}O!bO7+$ZOOOP7+$Z7+$ZOOOP7+$c7+$cO'YOpO,59VO'bOpO,59VO'jO!bO,59eOOOO-E6w-E6wO'xOpO1G.uO'xOpO1G.uOOOP1G.u1G.uO(QOpO7+$fOOOP7+$f7+$fO(YO!bO<d!d;'S%y;'S;=`&_<%lO%yX>iV{WOr%ysv%yw!}%y!}#O?O#O;'S%y;'S;=`&_<%lO%yX?VT{WxPOr%ysv%yw;'S%y;'S;=`&_<%lO%yX?kV{WOr%ysv%yw#W%y#W#X@Q#X;'S%y;'S;=`&_<%lO%yX@VV{WOr%ysv%yw#T%y#T#U@l#U;'S%y;'S;=`&_<%lO%yX@qV{WOr%ysv%yw#h%y#h#iAW#i;'S%y;'S;=`&_<%lO%yXA]V{WOr%ysv%yw#T%y#T#U>d#U;'S%y;'S;=`&_<%lO%yXAwV{WOr%ysv%yw#c%y#c#dB^#d;'S%y;'S;=`&_<%lO%yXBcV{WOr%ysv%yw#V%y#V#WBx#W;'S%y;'S;=`&_<%lO%yXB}V{WOr%ysv%yw#h%y#h#iCd#i;'S%y;'S;=`&_<%lO%yXCiV{WOr%ysv%yw#m%y#m#nDO#n;'S%y;'S;=`&_<%lO%yXDTV{WOr%ysv%yw#d%y#d#eDj#e;'S%y;'S;=`&_<%lO%yXDoV{WOr%ysv%yw#X%y#X#Y9i#Y;'S%y;'S;=`&_<%lO%yXE]T!PP{WOr%ysv%yw;'S%y;'S;=`&_<%lO%yZEuWaQVP{WOr$nrs%_sv$nw!^$n!^!_%y!_;'S$n;'S;=`&e<%lO$n_FhW[UVP{WOr$nrs%_sv$nw!^$n!^!_%y!_;'S$n;'S;=`&e<%lO$nZGXYVP{WOr$nrs%_sv$nw!^$n!^!_%y!_!`$n!`!aGw!a;'S$n;'S;=`&e<%lO$nZHQW!OQVP{WOr$nrs%_sv$nw!^$n!^!_%y!_;'S$n;'S;=`&e<%lO$nZHqYVP{WOr$nrs%_sv$nw!^$n!^!_%y!_#P$n#P#QIa#Q;'S$n;'S;=`&e<%lO$nZIhYVP{WOr$nrs%_sv$nw!^$n!^!_%y!_!`$n!`!aJW!a;'S$n;'S;=`&e<%lO$nZJaWwQVP{WOr$nrs%_sv$nw!^$n!^!_%y!_;'S$n;'S;=`&e<%lO$n",tokenizers:[ttt,ntt,rtt,itt,0,1,2,3],topRules:{Document:[0,6]},tokenPrec:0})}));function dL(e,t){let n=t&&t.getChild(`TagName`);return n?e.sliceString(n.from,n.to):``}function fL(e,t){let n=t&&t.firstChild;return!n||n.name!=`OpenTag`?``:dL(e,n)}function ctt(e,t,n){let r=t&&t.getChildren(`Attribute`).find(e=>e.from<=n&&e.to>=n),i=r&&r.getChild(`AttributeName`);return i?e.sliceString(i.from,i.to):``}function pL(e){for(let t=e&&e.parent;t;t=t.parent)if(t.name==`Element`)return t;return null}function ltt(e,t){let n=GN(e).resolveInner(t,-1),r=null;for(let e=n;!r&&e.parent;e=e.parent)(e.name==`OpenTag`||e.name==`CloseTag`||e.name==`SelfClosingTag`||e.name==`MismatchedCloseTag`)&&(r=e);if(r&&(r.to>t||r.lastChild.type.isError)){let e=r.parent;if(n.name==`TagName`)return r.name==`CloseTag`||r.name==`MismatchedCloseTag`?{type:`closeTag`,from:n.from,context:e}:{type:`openTag`,from:n.from,context:pL(e)};if(n.name==`AttributeName`)return{type:`attrName`,from:n.from,context:r};if(n.name==`AttributeValue`)return{type:`attrValue`,from:n.from,context:r};let i=n==r||n.name==`Attribute`?n.childBefore(t):n;return i?.name==`StartTag`?{type:`openTag`,from:t,context:pL(e)}:i?.name==`StartCloseTag`&&i.to<=t?{type:`closeTag`,from:t,context:e}:i?.name==`Is`?{type:`attrValue`,from:t,context:r}:i?{type:`attrName`,from:t,context:r}:null}else if(n.name==`StartCloseTag`)return{type:`closeTag`,from:t,context:n.parent};for(;n.parent&&n.to==t&&!n.lastChild?.type.isError;)n=n.parent;return n.name==`Element`||n.name==`Text`||n.name==`Document`?{type:`tag`,from:t,context:n.name==`Element`?n:pL(n)}:null}function utt(e){return Object.assign(Object.assign({type:`property`},e.completion||{}),{label:e.name})}function dtt(e){return typeof e==`string`?{label:`"${e}"`,type:`constant`}:/^"/.test(e.label)?e:Object.assign(Object.assign({},e),{label:`"${e.label}"`})}function ftt(e,t){let n=[],r=[],i=Object.create(null);for(let e of t){let t=utt(e);n.push(t),e.global&&r.push(t),e.values&&(i[e.name]=e.values.map(dtt))}let a=[],o=[],s=Object.create(null);for(let t of e){let e=r,c=i;t.attributes&&(e=e.concat(t.attributes.map(e=>typeof e==`string`?n.find(t=>t.label==e)||{label:e,type:`property`}:(e.values&&(c==i&&(c=Object.create(c)),c[e.name]=e.values.map(dtt)),utt(e)))));let l=new htt(t,e,c);s[l.name]=l,a.push(l),t.top&&o.push(l)}o.length||(o=a);for(let t=0;t{let{doc:t}=e.state,n=ltt(e.state,e.pos);if(!n||n.type==`tag`&&!e.explicit)return null;let{type:c,from:l,context:u}=n;if(c==`openTag`){let e=o,n=fL(t,u);return n&&(e=s[n]?.children||a),{from:l,options:e.map(e=>e.completion),validFor:mL}}else if(c==`closeTag`){let n=fL(t,u);return n?{from:l,to:e.pos+ +(t.sliceString(e.pos,e.pos+1)==`>`),options:[s[n]?.closeNameCompletion||{label:n+`>`,type:`type`}],validFor:mL}:null}else if(c==`attrName`)return{from:l,options:s[dL(t,u)]?.attrs||r,validFor:mL};else if(c==`attrValue`){let n=ctt(t,u,l);if(!n)return null;let r=(s[dL(t,u)]?.attrValues||i)[n];return!r||!r.length?null:{from:l,to:e.pos+ +(t.sliceString(e.pos,e.pos+1)==`"`),options:r,validFor:/^"[^"]*"?$/}}else if(c==`tag`){let n=fL(t,u),r=s[n],i=[],c=u&&u.lastChild;n&&(!c||c.name!=`CloseTag`||dL(t,c)!=n)&&i.push(r?r.closeCompletion:{label:``,type:`type`,boost:2});let d=i.concat((r?.children||(u?a:o)).map(e=>e.openCompletion));if(u&&r?.text.length){let t=u.firstChild;t.to>e.pos-20&&!/\S/.test(e.state.sliceDoc(t.to,e.pos))&&(d=d.concat(r.text))}return{from:l,options:d,validFor:/^<\/?[:\-\.\w\u00b7-\uffff]*$/}}else return null}}function ptt(e={}){let t=[hL.data.of({autocomplete:ftt(e.elements||[],e.attributes||[])})];return e.autoCloseTags!==!1&&t.push(gtt),new uP(hL,t)}function mtt(e,t,n=e.length){if(!t)return``;let r=t.firstChild,i=r&&r.getChild(`TagName`);return i?e.sliceString(i.from,Math.min(i.to,n)):``}var htt,mL,hL,gtt,_tt=s((()=>{stt(),jP(),Ak(),XM(),htt=class{constructor(e,t,n){this.attrs=t,this.attrValues=n,this.children=[],this.name=e.name,this.completion=Object.assign(Object.assign({type:`type`},e.completion||{}),{label:this.name}),this.openCompletion=Object.assign(Object.assign({},this.completion),{label:`<`+this.name}),this.closeCompletion=Object.assign(Object.assign({},this.completion),{label:``,boost:2}),this.closeNameCompletion=Object.assign(Object.assign({},this.completion),{label:this.name+`>`}),this.text=e.textContent?e.textContent.map(e=>({label:e,type:`text`})):[]}},mL=/^[:\-\.\w\u00b7-\uffff]*$/,hL=iP.define({name:`xml`,parser:ott.configure({props:[pP.add({Element(e){let t=/^\s*<\//.test(e.textAfter);return e.lineIndent(e.node.from)+(t?0:e.unit)},"OpenTag CloseTag SelfClosingTag"(e){return e.column(e.node.from)+e.unit}}),mP.add({Element(e){let t=e.firstChild,n=e.lastChild;return!t||t.name!=`OpenTag`?null:{from:t.to,to:n.name==`CloseTag`?n.from:e.to}}}),DP.add({"OpenTag CloseTag":e=>e.getChild(`TagName`)})]}),languageData:{commentTokens:{block:{open:``}},indentOnInput:/^\s*<\/$/}}),gtt=vM.inputHandler.of((e,t,n,r,i)=>{if(e.composing||e.state.readOnly||t!=n||r!=`>`&&r!=`/`||!hL.isActiveAt(e.state,t,-1))return!1;let a=i(),{state:o}=a,s=o.changeByRange(e=>{let{head:t}=e,n=o.doc.sliceString(t-1,t)==r,i=GN(o).resolveInner(t,-1),a;if(n&&r==`>`&&i.name==`EndTag`){let n=i.parent;if(n.parent?.lastChild?.name!=`CloseTag`&&(a=mtt(o.doc,n.parent,t)))return{range:e,changes:{from:t,to:t+ +(o.doc.sliceString(t,t+1)===`>`),insert:``}}}else if(n&&r==`/`&&i.name==`StartCloseTag`){let e=i.parent;if(i.from==t-2&&e.lastChild?.name!=`CloseTag`&&(a=mtt(o.doc,e,t))){let e=t+ +(o.doc.sliceString(t,t+1)===`>`),n=`${a}>`;return{range:QO.cursor(t+n.length,-1),changes:{from:t,to:e,insert:n}}}}return{range:e}});return s.changes.empty?!1:(e.dispatch([a,o.update(s,{userEvent:`input.complete`,scrollIntoView:!0})]),!0)})}));function gL(e,t){for(let n=0,r=t-e.pos-1;;r--,n++){let t=e.peek(r);if(vL(t)||t==-1)return n}}function _L(e){return e==32||e==9}function vL(e){return e==10||e==13}function vtt(e){return _L(e)||vL(e)}function yL(e){return e<0||vtt(e)}function bL(e,t,n=0){return e.peek(n)==t&&e.peek(n+1)==t&&e.peek(n+2)==t&&yL(e.peek(n+3))}function ytt(e){return e>32&&e<127&&e!=34&&e!=37&&e!=44&&e!=60&&e!=62&&e!=92&&e!=94&&e!=96&&e!=123&&e!=124&&e!=125}function btt(e){return e>=48&&e<=57||e>=97&&e<=102||e>=65&&e<=70}function xtt(e,t){return e.next==37?(e.advance(),btt(e.next)&&e.advance(),btt(e.next)&&e.advance(),!0):ytt(e.next)||t&&e.next==44?(e.advance(),!0):!1}function Stt(e){if(e.advance(),e.next==60){for(e.advance();;)if(!xtt(e,!0)){e.next==62&&e.advance();break}}else for(;xtt(e,!1););}function xL(e){for(e.advance();!yL(e.next)&&CL(e.tag)!=`f`;)e.advance()}function SL(e,t){let n=e.next,r=!1,i=e.pos;for(e.advance();;){let a=e.next;if(a<0)break;if(e.advance(),a==n)if(a==39)if(e.next==39)e.advance();else break;else break;else if(a==92&&n==34)e.next>=0&&e.advance();else if(vL(a)){if(t)return!1;r=!0}else if(t&&e.pos>=i+1024)return!1}return!r}function Ctt(e){for(let t=[],n=e.pos+1024;;)if(e.next==91||e.next==123)t.push(e.next),e.advance();else if(e.next==39||e.next==34){if(!SL(e,!0))return!1}else if(e.next==93||e.next==125){if(t[t.length-1]!=e.next-2)return!1;if(t.pop(),e.advance(),!t.length)return!0}else if(e.next<0||e.pos>n||vL(e.next))return!1;else e.advance()}function CL(e){return e<33?`u`:e>125?`s`:Ktt[e-33]}function wL(e,t){let n=CL(e);return n!=`u`&&!(t&&n==`f`)}function wtt(e,t,n,r){if(CL(e.next)==`s`||(e.next==63||e.next==58||e.next==45)&&wL(e.peek(1),n))e.advance();else return!1;let i=e.pos;for(;;){let a=e.next,o=0,s=r+1;for(;vtt(a);){if(vL(a)){if(t)return!1;s=0}else s++;a=e.peek(++o)}if(!(a>=0&&(a==58?wL(e.peek(o+1),n):a==35?e.peek(o-1)!=32:wL(a,n)))||!n&&s<=r||s==0&&!n&&(bL(e,45,o)||bL(e,46,o)))break;if(t&&CL(a)==`f`)return!1;for(let t=o;t>=0;t--)e.advance();if(t&&e.pos>i+1024)return!1}return!0}var TL,EL,Ttt,Ett,DL,Dtt,OL,Ott,ktt,kL,Att,jtt,Mtt,Ntt,Ptt,Ftt,AL,Itt,Ltt,Rtt,ztt,Btt,Vtt,Htt,jL,ML,NL,PL,FL,Utt,Wtt,Gtt,Ktt,qtt,Jtt,Ytt,Xtt,Ztt=s((()=>{VF(),WN(),TL=63,EL=64,Ttt=1,Ett=2,DL=3,Dtt=4,OL=5,Ott=6,ktt=7,kL=65,Att=66,jtt=8,Mtt=9,Ntt=10,Ptt=11,Ftt=12,AL=13,Itt=19,Ltt=20,Rtt=29,ztt=33,Btt=34,Vtt=47,Htt=0,jL=1,ML=2,NL=3,PL=4,FL=class{constructor(e,t,n){this.parent=e,this.depth=t,this.type=n,this.hash=(e?e.hash+e.hash<<8:0)+t+(t<<4)+n}},FL.top=new FL(null,-1,Htt),Utt=new zF({start:FL.top,reduce(e,t){return e.type==NL&&(t==Ltt||t==Btt)?e.parent:e},shift(e,t,n,r){if(t==DL)return new FL(e,gL(r,r.pos),jL);if(t==kL||t==OL)return new FL(e,gL(r,r.pos),ML);if(t==TL)return e.parent;if(t==Itt||t==ztt)return new FL(e,0,NL);if(t==AL&&e.type==PL)return e.parent;if(t==Vtt){let t=/[1-9]/.exec(r.read(r.pos,n.pos));if(t)return new FL(e,e.depth+ +t[0],PL)}return e},hash(e){return e.hash}}),Wtt=new FF((e,t)=>{if(e.next==-1&&t.canShift(EL))return e.acceptToken(EL);let n=e.peek(-1);if((vL(n)||n<0)&&t.context.type!=NL){if(bL(e,45))if(t.canShift(TL))e.acceptToken(TL);else return e.acceptToken(Ttt,3);if(bL(e,46))if(t.canShift(TL))e.acceptToken(TL);else return e.acceptToken(Ett,3);let n=0;for(;e.next==32;)n++,e.advance();(n{if(t.context.type==NL){e.next==63&&(e.advance(),yL(e.next)&&e.acceptToken(ktt));return}if(e.next==45)e.advance(),yL(e.next)&&e.acceptToken(t.context.type==jL&&t.context.depth==gL(e,e.pos-1)?Dtt:DL);else if(e.next==63)e.advance(),yL(e.next)&&e.acceptToken(t.context.type==ML&&t.context.depth==gL(e,e.pos-1)?Ott:OL);else{let n=e.pos;for(;;)if(_L(e.next)){if(e.pos==n)return;e.advance()}else if(e.next==33)Stt(e);else if(e.next==38)xL(e);else if(e.next==42){xL(e);break}else if(e.next==39||e.next==34){if(SL(e,!0))break;return}else if(e.next==91||e.next==123){if(!Ctt(e))return;break}else{wtt(e,!0,!1,0);break}for(;_L(e.next);)e.advance();if(e.next==58){if(e.pos==n&&t.canShift(Rtt))return;yL(e.peek(1))&&e.acceptTokenTo(t.context.type==ML&&t.context.depth==gL(e,n)?Att:kL,n)}}},{contextual:!0}),Ktt=`iiisiiissisfissssssssssssisssiiissssssssssssssssssssssssssfsfssissssssssssssssssssssssssssfif`,qtt=new FF((e,t)=>{if(e.next==33)Stt(e),e.acceptToken(Ftt);else if(e.next==38||e.next==42){let t=e.next==38?Ntt:Ptt;xL(e),e.acceptToken(t)}else e.next==39||e.next==34?(SL(e,!1),e.acceptToken(Mtt)):wtt(e,!1,t.context.type==NL,t.context.depth)&&e.acceptToken(jtt)}),Jtt=new FF((e,t)=>{let n=t.context.type==PL?t.context.depth:-1,r=e.pos;scan:for(;;){let i=0,a=e.next;for(;a==32;)a=e.peek(++i);if(!i&&(bL(e,45,i)||bL(e,46,i))||!vL(a)&&(n<0&&(n=Math.max(t.context.depth+1,i)),iYAN>Y",stateData:";S~O!fOS!gOS^OS~OP_OQbORSOTUOWROXROYYOZZO[XOcPOqQO!PVO!V[O!cTO~O`cO~P]OVkOWROXROYeOZfO[dOcPOmhOqQO~OboO~P!bOVtOWROXROYeOZfO[dOcPOmrOqQO~OpwO~P#WORSOTUOWROXROYYOZZO[XOcPOqQO!PVO!cTO~OSvP!avP!bvP~P#|OWROXROYeOZfO[dOcPOqQO~OmzO~P%OOm!OOUzP!azP!bzP!dzP~P#|O^!SO!b!QO!f!TO!g!RO~ORSOTUOWROXROcPOqQO!PVO!cTO~OY!UOP!QXQ!QX!V!QX!`!QXS!QX!a!QX!b!QXU!QXm!QX!d!QX~P&aO[!WOP!SXQ!SX!V!SX!`!SXS!SX!a!SX!b!SXU!SXm!SX!d!SX~P&aO^!ZO!W![O!b!YO!f!]O!g!YO~OP!_O!V[OQaX!`aX~OPaXQaX!VaX!`aX~P#|OP!bOQ!cO!V[O~OP_O!V[O~P#|OWROXROY!fOcPOqQObfXmfXofXpfX~OWROXRO[!hOcPOqQObhXmhXohXphX~ObeXmlXoeX~ObkXokX~P%OOm!kO~Om!lObnPonP~P%OOb!pOo!oO~Ob!pO~P!bOm!sOosXpsX~OosXpsX~P%OOm!uOotPptP~P%OOo!xOp!yO~Op!yO~P#WOS!|O!a#OO!b#OO~OUyX!ayX!byX!dyX~P#|Om#QO~OU#SO!a#UO!b#UO!d#RO~Om#WOUzX!azX!bzX!dzX~O]#XO~O!b#XO!g#YO~O^#ZO!b#XO!g#YO~OP!RXQ!RX!V!RX!`!RXS!RX!a!RX!b!RXU!RXm!RX!d!RX~P&aOP!TXQ!TX!V!TX!`!TXS!TX!a!TX!b!TXU!TXm!TX!d!TX~P&aO!b#^O!g#^O~O^#_O!b#^O!f#`O!g#^O~O^#_O!W#aO!b#^O!g#^O~OPaaQaa!Vaa!`aa~P#|OP#cO!V[OQ!XX!`!XX~OP!XXQ!XX!V!XX!`!XX~P#|OP_O!V[OQ!_X!`!_X~P#|OWROXROcPOqQObgXmgXogXpgX~OWROXROcPOqQObiXmiXoiXpiX~Obkaoka~P%OObnXonX~P%OOm#kO~Ob#lOo!oO~Oosapsa~P%OOotXptX~P%OOm#pO~Oo!xOp#qO~OSwP!awP!bwP~P#|OS!|O!a#vO!b#vO~OUya!aya!bya!dya~P#|Om#xO~P%OOm#{OU}P!a}P!b}P!d}P~P#|OU#SO!a$OO!b$OO!d#RO~O]$QO~O!b$QO!g$RO~O!b$SO!g$SO~O^$TO!b$SO!g$SO~O^$TO!b$SO!f$UO!g$SO~OP!XaQ!Xa!V!Xa!`!Xa~P#|Obnaona~P%OOotapta~P%OOo!xO~OU|X!a|X!b|X!d|X~P#|Om$ZO~Om$]OU}X!a}X!b}X!d}X~O]$^O~O!b$_O!g$_O~O^$`O!b$_O!g$_O~OU|a!a|a!b|a!d|a~P#|O!b$cO!g$cO~O",goto:",]!mPPPPPPPPPPPPPPPPP!nPP!v#v#|$`#|$c$f$j$nP%VPPP!v%Y%^%a%{&O%a&R&U&X&_&b%aP&e&{&e'O'RPP']'a'g'm's'y(XPPPPPPPP(_)e*X+c,VUaObcR#e!c!{ROPQSTUXY_bcdehknrtvz!O!U!W!_!b!c!f!h!k!l!s!u!|#Q#R#S#W#c#k#p#x#{$Z$]QmPR!qnqfPQThknrtv!k!l!s!u#R#k#pR!gdR!ieTlPnTjPnSiPnSqQvQ{TQ!mkQ!trQ!vtR#y#RR!nkTsQvR!wt!RWOSUXY_bcz!O!U!W!_!b!c!|#Q#S#W#c#x#{$Z$]RySR#t!|R|TR|UQ!PUR#|#SR#z#RR#z#SyZOSU_bcz!O!_!b!c!|#Q#S#W#c#x#{$Z$]R!VXR!XYa]O^abc!a!c!eT!da!eQnPR!rnQvQR!{vQ!}yR#u!}Q#T|R#}#TW^Obc!cS!^^!aT!aa!eQ!eaR#f!eW`Obc!cQxSS}U#SQ!`_Q#PzQ#V!OQ#b!_Q#d!bQ#s!|Q#w#QQ$P#WQ$V#cQ$Y#xQ$[#{Q$a$ZR$b$]xZOSU_bcz!O!_!b!c!|#Q#S#W#c#x#{$Z$]Q!VXQ!XYQ#[!UR#]!W!QWOSUXY_bcz!O!U!W!_!b!c!|#Q#S#W#c#x#{$Z$]pfPQThknrtv!k!l!s!u#R#k#pQ!gdQ!ieQ#g!fR#h!hSgPn^pQTkrtv#RQ!jhQ#i!kQ#j!lQ#n!sQ#o!uQ$W#kR$X#pQuQR!zv",nodeNames:`⚠ DirectiveEnd DocEnd - - ? ? ? Literal QuotedLiteral Anchor Alias Tag BlockLiteralContent Comment Stream BOM Document ] [ FlowSequence Item Tagged Anchored Anchored Tagged FlowMapping Pair Key : Pair , } { FlowMapping Pair Pair BlockSequence Item Item BlockMapping Pair Pair Key Pair Pair BlockLiteral BlockLiteralHeader Tagged Anchored Anchored Tagged Directive DirectiveName DirectiveContent Document`,maxTerm:74,context:Utt,nodeProps:[[`isolate`,-3,8,9,14,``],[`openedBy`,18,`[`,32,`{`],[`closedBy`,19,`]`,33,`}`]],propSources:[Ytt],skippedNodes:[0],repeatNodeCount:6,tokenData:"-Y~RnOX#PXY$QYZ$]Z]#P]^$]^p#Ppq$Qqs#Pst$btu#Puv$yv|#P|}&e}![#P![!]'O!]!`#P!`!a'i!a!}#P!}#O*g#O#P#P#P#Q+Q#Q#o#P#o#p+k#p#q'i#q#r,U#r;'S#P;'S;=`#z<%l?HT#P?HT?HU,o?HUO#PQ#UU!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PQ#kTOY#PZs#Pt;'S#P;'S;=`#z<%lO#PQ#}P;=`<%l#P~$VQ!f~XY$Qpq$Q~$bO!g~~$gS^~OY$bZ;'S$b;'S;=`$s<%lO$b~$vP;=`<%l$bR%OX!WQOX%kXY#PZ]%k]^#P^p%kpq#hq;'S%k;'S;=`&_<%lO%kR%rX!WQ!VPOX%kXY#PZ]%k]^#P^p%kpq#hq;'S%k;'S;=`&_<%lO%kR&bP;=`<%l%kR&lUoP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR'VUmP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR'p[!PP!WQOY#PZp#Ppq#hq{#P{|(f|}#P}!O(f!O!R#P!R![)p![;'S#P;'S;=`#z<%lO#PR(mW!PP!WQOY#PZp#Ppq#hq!R#P!R![)V![;'S#P;'S;=`#z<%lO#PR)^U!PP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR)wY!PP!WQOY#PZp#Ppq#hq{#P{|)V|}#P}!O)V!O;'S#P;'S;=`#z<%lO#PR*nUcP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR+XUbP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR+rUqP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR,]UpP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR,vU`P!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#P",tokenizers:[Wtt,Gtt,qtt,Jtt,0,1],topRules:{Stream:[0,15]},tokenPrec:0})}));function Qtt(){return new uP($tt)}var $tt,ent=s((()=>{Ztt(),jP(),WN(),VF(),$tt=iP.define({name:`yaml`,parser:Xtt.configure({props:[pP.add({Stream:e=>{for(let t=e.node.resolve(e.pos,-1);t&&t.to>=e.pos;t=t.parent){if(t.name==`BlockLiteralContent`&&t.frome.pos)return null}}return null},FlowMapping:KN({closing:`}`}),FlowSequence:KN({closing:`]`})}),mP.add({"FlowMapping FlowSequence":JN,"Item Pair BlockLiteral":(e,t)=>({from:t.doc.lineAt(e.from).to,to:e.to})})]}),languageData:{commentTokens:{line:`#`},indentOnInput:/^\s*[\]\}]$/}}),J.meta}));function IL(){var e=arguments[0];typeof e==`string`&&(e=document.createElement(e));var t=1,n=arguments[1];if(n&&typeof n==`object`&&n.nodeType==null&&!Array.isArray(n)){for(var r in n)if(Object.prototype.hasOwnProperty.call(n,r)){var i=n[r];typeof i==`string`?e.setAttribute(r,i):i!=null&&(e[r]=i)}t++}for(;t{}));function LL(e,t=null,n=0){let r=null;return e.between(n,1e9,(e,n,{spec:i})=>{if(!(t&&i.diagnostics.indexOf(t)<0))if(!r)r=new zL(e,n,t||i.diagnostics[0]);else if(i.diagnostics.indexOf(r.diagnostic)<0)return!1;else r=new zL(r.from,n,r.diagnostic)}),r}function rnt(e,t){let n=t.pos,r=t.end||n,i=e.state.facet(KL).hideOn(e,n,r);if(i!=null)return i;let a=e.startState.doc.lineAt(t.pos);return!!(e.effects.some(e=>e.is(VL))||e.changes.touchesRange(a.from,Math.max(a.to,r)))}function int(e,t){return e.field(WL,!1)?t:t.concat(vk.appendConfig.of(YL))}function ant(e,t){return{effects:int(e,[VL.of(t)])}}function ont(e,t,n){let{diagnostics:r}=e.state.field(WL),i,a=-1,o=-1;r.between(t-+(n<0),t+ +(n>0),(e,r,{spec:s})=>{if(t>=e&&t<=r&&(e==r||(t>e||n>0)&&(tdnt(e,t,!1)))}function cnt(e,t,n){let r=[],i=-1;for(let a of e)a.then(n=>{r.push(n),clearTimeout(i),r.length==e.length?t(r):i=setTimeout(()=>t(r),200)},n)}function lnt(e,t={}){return[KL.of({source:e,config:t}),gnt,YL]}function unt(e){let t=[];if(e)actions:for(let{name:n}of e){for(let e=0;ee.toLowerCase()==r.toLowerCase())){t.push(r);continue actions}}t.push(``)}return t}function dnt(e,t,n){let r=n?unt(t.actions):[];return IL(`li`,{class:`cm-diagnostic cm-diagnostic-`+t.severity},IL(`span`,{class:`cm-diagnosticText`},t.renderMessage?t.renderMessage(e):t.message),t.actions?.map((n,i)=>{let a=!1,o=r=>{if(r.preventDefault(),a)return;a=!0;let i=LL(e.state.field(WL).diagnostics,t);i&&n.apply(e,i.from,i.to)},{name:s}=n,c=r[i]?s.indexOf(r[i]):-1,l=c<0?s:[s.slice(0,c),IL(`u`,s.slice(c,c+1)),s.slice(c+1)];return IL(`button`,{type:`button`,class:`cm-diagnosticAction`,onclick:o,onmousedown:o,"aria-label":` Action: ${s}${c<0?``:` (access key "${r[i]})"`}.`},l)}),t.source&&IL(`div`,{class:`cm-diagnosticSource`},t.source))}function fnt(e,t=`viewBox="0 0 40 40"`){return`url('data:image/svg+xml,${encodeURIComponent(e)}')`}function RL(e){return fnt(``,`width="6" height="3"`)}function pnt(e){return e==`error`?4:e==`warning`?3:e==`info`?2:1}function mnt(e){let t=`hint`,n=1;for(let r of e){let e=pnt(r.severity);e>n&&(n=e,t=r.severity)}return t}var zL,BL,VL,HL,UL,WL,hnt,GL,gnt,KL,_nt,qL,JL,vnt,YL,ynt=s((()=>{XM(),Ak(),nnt(),zL=class{constructor(e,t,n){this.from=e,this.to=t,this.diagnostic=n}},BL=class e{constructor(e,t,n){this.diagnostics=e,this.panel=t,this.selected=n}static init(t,n,r){let i=t,a=r.facet(KL).markerFilter;a&&(i=a(i,r));let o=t.slice().sort((e,t)=>e.from-t.from||e.to-t.to),s=new Ek,c=[],l=0;for(let e=0;;){let t=e==o.length?null:o[e];if(!t&&!c.length)break;let n,i;for(c.length?(n=l,i=c.reduce((e,t)=>Math.min(e,t.to),t&&t.from>n?t.from:1e8)):(n=t.from,i=t.to,c.push(t),e++);et.from||t.to==n))c.push(t),e++,i=Math.min(t.to,i);else{i=Math.min(t.from,i);break}}let a=mnt(c);if(c.some(e=>e.from==e.to||e.from==e.to-1&&r.doc.lineAt(e.from).to==e.from))s.add(n,n,GA.widget({widget:new _nt(a),diagnostics:c.slice()}));else{let e=c.reduce((e,t)=>t.markClass?e+` `+t.markClass:e,``);s.add(n,i,GA.mark({class:`cm-lintRange cm-lintRange-`+a+e,diagnostics:c.slice(),inclusiveEnd:c.some(e=>e.to>i)}))}l=i;for(let e=0;e[VM.from(e,e=>e.panel),vM.decorations.from(e,e=>e.diagnostics)]}),hnt=GA.mark({class:`cm-lintRange cm-lintRange-active`}),GL=e=>{let t=e.state.field(WL,!1);return!t||!t.panel?!1:(e.dispatch({effects:HL.of(!1)}),!0)},gnt=wj.fromClass(class{constructor(e){this.view=e,this.timeout=-1,this.set=!0;let{delay:t}=e.state.facet(KL);this.lintTime=Date.now()+t,this.run=this.run.bind(this),this.timeout=setTimeout(this.run,t)}run(){clearTimeout(this.timeout);let e=Date.now();if(ePromise.resolve(e(this.view))),t=>{this.view.state.doc==e.doc&&this.view.dispatch(ant(this.view.state,t.reduce((e,t)=>e.concat(t))))},e=>{iA(this.view.state,e)})}}update(e){let t=e.state.facet(KL);(e.docChanged||t!=e.startState.facet(KL)||t.needsRefresh&&t.needsRefresh(e))&&(this.lintTime=Date.now()+t.delay,this.set||(this.set=!0,this.timeout=setTimeout(this.run,t.delay)))}force(){this.set&&(this.lintTime=Date.now(),this.run())}destroy(){clearTimeout(this.timeout)}}),KL=ek.define({combine(e){return Object.assign({sources:e.map(e=>e.source).filter(e=>e!=null)},NO(e.map(e=>e.config),{delay:750,markerFilter:null,tooltipFilter:null,needsRefresh:null,hideOn:()=>null},{needsRefresh:(e,t)=>e?t?n=>e(n)||t(n):e:t}))}}),_nt=class extends UA{constructor(e){super(),this.sev=e}eq(e){return e.sev==this.sev}toDOM(){return IL(`span`,{class:`cm-lintPoint cm-lintPoint-`+this.sev})}},qL=class{constructor(e,t){this.diagnostic=t,this.id=`item_`+Math.floor(Math.random()*4294967295).toString(16),this.dom=dnt(e,t,!0),this.dom.id=this.id,this.dom.setAttribute(`role`,`option`)}},JL=class e{constructor(e){this.view=e,this.items=[];let t=t=>{if(t.keyCode==27)GL(this.view),this.view.focus();else if(t.keyCode==38||t.keyCode==33)this.moveSelection((this.selectedIndex-1+this.items.length)%this.items.length);else if(t.keyCode==40||t.keyCode==34)this.moveSelection((this.selectedIndex+1)%this.items.length);else if(t.keyCode==36)this.moveSelection(0);else if(t.keyCode==35)this.moveSelection(this.items.length-1);else if(t.keyCode==13)this.view.focus();else if(t.keyCode>=65&&t.keyCode<=90&&this.selectedIndex>=0){let{diagnostic:n}=this.items[this.selectedIndex],r=unt(n.actions);for(let i=0;i{for(let t=0;tGL(this.view)},`×`)),this.update()}get selectedIndex(){let e=this.view.state.field(WL).selected;if(!e)return-1;for(let t=0;t{for(let e of s.diagnostics){if(a.has(e))continue;a.add(e);let o=-1,s;for(let t=n;tn&&(this.items.splice(n,o-n),r=!0)),t&&s.diagnostic==t.diagnostic?s.dom.hasAttribute(`aria-selected`)||(s.dom.setAttribute(`aria-selected`,`true`),i=s):s.dom.hasAttribute(`aria-selected`)&&s.dom.removeAttribute(`aria-selected`),n++}});n({sel:i.dom.getBoundingClientRect(),panel:this.list.getBoundingClientRect()}),write:({sel:e,panel:t})=>{let n=t.height/this.list.offsetHeight;e.topt.bottom&&(this.list.scrollTop+=(e.bottom-t.bottom)/n)}})):this.selectedIndex<0&&this.list.removeAttribute(`aria-activedescendant`),r&&this.sync()}sync(){let e=this.list.firstChild;function t(){let t=e;e=t.nextSibling,t.remove()}for(let n of this.items)if(n.dom.parentNode==this.list){for(;e!=n.dom;)t();e=n.dom.nextSibling}else this.list.insertBefore(n.dom,e);for(;e;)t()}moveSelection(e){if(this.selectedIndex<0)return;let t=LL(this.view.state.field(WL).diagnostics,this.items[e].diagnostic);t&&this.view.dispatch({selection:{anchor:t.from,head:t.to},scrollIntoView:!0,effects:UL.of(t)})}static open(t){return new e(t)}},vnt=vM.baseTheme({".cm-diagnostic":{padding:`3px 6px 3px 8px`,marginLeft:`-1px`,display:`block`,whiteSpace:`pre-wrap`},".cm-diagnostic-error":{borderLeft:`5px solid #d11`},".cm-diagnostic-warning":{borderLeft:`5px solid orange`},".cm-diagnostic-info":{borderLeft:`5px solid #999`},".cm-diagnostic-hint":{borderLeft:`5px solid #66d`},".cm-diagnosticAction":{font:`inherit`,border:`none`,padding:`2px 4px`,backgroundColor:`#444`,color:`white`,borderRadius:`3px`,marginLeft:`8px`,cursor:`pointer`},".cm-diagnosticSource":{fontSize:`70%`,opacity:.7},".cm-lintRange":{backgroundPosition:`left bottom`,backgroundRepeat:`repeat-x`,paddingBottom:`0.7px`},".cm-lintRange-error":{backgroundImage:RL(`#d11`)},".cm-lintRange-warning":{backgroundImage:RL(`orange`)},".cm-lintRange-info":{backgroundImage:RL(`#999`)},".cm-lintRange-hint":{backgroundImage:RL(`#66d`)},".cm-lintRange-active":{backgroundColor:`#ffdd9980`},".cm-tooltip-lint":{padding:0,margin:0},".cm-lintPoint":{position:`relative`,"&:after":{content:`""`,position:`absolute`,bottom:0,left:`-2px`,borderLeft:`3px solid transparent`,borderRight:`3px solid transparent`,borderBottom:`4px solid #d11`}},".cm-lintPoint-warning":{"&:after":{borderBottomColor:`orange`}},".cm-lintPoint-info":{"&:after":{borderBottomColor:`#999`}},".cm-lintPoint-hint":{"&:after":{borderBottomColor:`#66d`}},".cm-panel.cm-panel-lint":{position:`relative`,"& ul":{maxHeight:`100px`,overflowY:`auto`,"& [aria-selected]":{backgroundColor:`#ddd`,"& u":{textDecoration:`underline`}},"&:focus [aria-selected]":{background_fallback:`#bdf`,backgroundColor:`Highlight`,color_fallback:`white`,color:`HighlightText`},"& u":{textDecoration:`none`},padding:0,margin:0},"& [name=close]":{position:`absolute`,top:`0`,right:`2px`,background:`inherit`,border:`none`,font:`inherit`,padding:0,margin:0}}}),YL=[WL,vM.decorations.compute([WL],e=>{let{selected:t,panel:n}=e.field(WL);return!t||!n||t.from==t.to?GA.none:GA.set([hnt.range(t.from,t.to)])}),g4e(ont,{hideOn:rnt}),vnt]})),bnt,xnt=s((()=>{jP(),XM(),bnt=({theme:e,settings:t={},styles:n=[]})=>{let r={".cm-gutters":{}},i={};t.background&&(i.backgroundColor=t.background),t.backgroundImage&&(i.backgroundImage=t.backgroundImage),t.foreground&&(i.color=t.foreground),t.fontSize&&(i.fontSize=t.fontSize),(t.background||t.foreground)&&(r[`&`]=i),t.fontFamily&&(r[`&.cm-editor .cm-scroller`]={fontFamily:t.fontFamily}),t.gutterBackground&&r[`.cm-gutters`]&&(r[`.cm-gutters`].backgroundColor=t.gutterBackground),t.gutterForeground&&r[`.cm-gutters`]&&(r[`.cm-gutters`].color=t.gutterForeground),t.gutterBorder&&r[`.cm-gutters`]&&(r[`.cm-gutters`].borderRightColor=t.gutterBorder),t.caret&&(r[`.cm-content`]={caretColor:t.caret},r[`.cm-cursor, .cm-dropCursor`]={borderLeftColor:t.caret});let a={};return t.gutterActiveForeground&&(a.color=t.gutterActiveForeground),t.lineHighlight&&(r[`.cm-activeLine`]={backgroundColor:t.lineHighlight},a.backgroundColor=t.lineHighlight),r[`.cm-activeLineGutter`]=a,t.selection&&(r[`&.cm-focused .cm-selectionBackground, & .cm-line::selection, & .cm-selectionLayer .cm-selectionBackground, .cm-content ::selection`]={background:t.selection+` !important`}),t.selectionMatch&&(r[`& .cm-selectionMatch`]={backgroundColor:t.selectionMatch}),[vM.theme(r,{dark:e===`dark`}),w6e(xP.define(n))]}})),Snt,Cnt=s((()=>{WN(),xnt(),Snt=bnt({theme:`light`,settings:{background:`var(--scalar-background-2)`,foreground:`var(--scalar-color-1)`,caret:`var(--scalar-color-1)`,selectionMatch:`#e3dcce`,gutterBackground:`var(--scalar-background-2)`,gutterForeground:`var(--scalar-color-3)`,gutterBorder:`transparent`,lineHighlight:`var(--scalar-background-3)`,fontFamily:`var(--scalar-font-code)`},styles:[{tag:[J.standard(J.tagName),J.tagName],color:`var(--scalar-color-purple)`},{tag:[J.comment],color:`var(--scalar-color-3)`},{tag:[J.className],color:`var(--scalar-color-orange)`},{tag:[J.variableName,J.propertyName,J.attributeName],color:`var(--scalar-color-1)`},{tag:[J.operator],color:`var(--scalar-color-2)`},{tag:[J.keyword,J.typeName,J.typeOperator],color:`var(--scalar-color-green)`},{tag:[J.string],color:`var(--scalar-color-blue)`},{tag:[J.bracket,J.regexp,J.meta],color:`var(--scalar-color-3)`},{tag:[J.number],color:`var(--scalar-color-orange)`},{tag:[J.name,J.quote],color:`var(--scalar-color-3)`},{tag:[J.heading],color:`var(--scalar-color-3)`,fontWeight:`bold`},{tag:[J.emphasis],color:`var(--scalar-color-3)`,fontStyle:`italic`},{tag:[J.deleted],color:`var(--scalar-color-3)`,backgroundColor:`transparent`},{tag:[J.atom,J.bool,J.special(J.variableName)],color:`var(--scalar-color-3)`},{tag:[J.url,J.escape,J.regexp,J.link],color:`var(--scalar-color-1)`},{tag:J.link,textDecoration:`underline`},{tag:J.strikethrough,textDecoration:`line-through`},{tag:J.invalid,color:`var(--scalar-color-3)`}]})})),XL,wnt,Tnt=s((()=>{XM(),XL=new EM({regexp:/(\{[^}]+\})/g,decoration:()=>GA.mark({attributes:{class:`api-client-url-variable`}})}),wnt=()=>wj.fromClass(class{variables;constructor(e){this.variables=XL.createDeco(e)}update(e){this.variables=XL.updateDeco(e,this.variables)}},{decorations:e=>e.variables,provide:e=>vM.atomicRanges.of(t=>t.plugin(e)?.variables||GA.none)})}));function Ent({onChange:e,onBlur:t,onFocus:n,provider:r,language:i,classes:a=[],readOnly:o=!1,lineNumbers:s=!1,withVariables:c=!1,forceFoldGutter:l=!1,disableEnter:u=!1,disableCloseBrackets:d=!1,disableTabIndent:f=!1,withoutTheme:p=!1,lint:m=!1,additionalExtensions:h=[],placeholder:g}){let _=[c4e(),j5e(),xM.of(G5e),w6e(W6e,{fallback:!0}),vM.theme({".cm-line":{lineHeight:`22px`,padding:`0 2px 0 4px`},".cm-gutterElement":{lineHeight:`22px`},".cm-foldGutter .cm-gutterElement":{display:`flex`,alignItems:`center`,paddingLeft:`4px`},".cm-foldMarker":{display:`flex`,alignItems:`center`,justifyContent:`center`,height:`22px`,color:`var(--scalar-color-3)`,cursor:`pointer`},".cm-foldMarker:hover":{color:`var(--scalar-color-1)`},".cm-foldMarker svg":{width:`16px`,height:`16px`},".cm-tooltip":{background:`var(--scalar-background-1)`,border:`1px solid var(--scalar-border-color)`,borderRadius:`var(--scalar-radius)`,boxShadow:`var(--scalar-shadow-2)`,fontSize:`12px`,overflow:`hidden`},".cm-tooltip-autocomplete ul":{padding:`6px`},".cm-tooltip-autocomplete ul li":{padding:`3px 6px`,color:`var(--scalar-color-1)`,borderRadius:`3px`},".cm-tooltip-autocomplete ul li[aria-selected]":{background:`var(--scalar-background-2)`,color:`var(--scalar-color-1)`},".cm-tooltip-autocomplete ul li:hover":{background:`var(--scalar-background-3)`,color:`var(--scalar-color-1)`},".cm-completionLabel":{color:`var(--scalar-color-1)`},".cm-completionDetail":{color:`var(--scalar-color-3)`},".cm-tooltip-lint":{backgroundColor:`var(--scalar-background-1)`},".cm-diagnostic-error":{borderLeft:`0`,color:`#dc1b19`},".cm-foldPlaceholder":{background:`var(--scalar-background-1)`,border:`none`,fontFamily:`var(--scalar-font)`}}),vM.updateListener.of(t=>{t.docChanged&&e?.(t.state.doc.toString())}),vM.domEventHandlers({blur:(e,n)=>{t?.(n.state.doc.toString(),e)},focus:(e,t)=>{n?.(t.state.doc.toString(),e)}}),vM.editorAttributes.of({class:a.join(` `)}),...h];if(r&&_.push(r),p||_.push(Snt),o?_.push(vM.editable.of(!1)):(_.push(h6e(),E6e(),Y8e(),xM.of([...gF,Dnt]),E6e()),d||_.push(L8e(),xM.of([...O5e])),f?_.push(xM.of([{key:`Tab`,run:()=>!1,shift:()=>!1}])):_.push(xM.of([Y5e]))),g&&_.push(d4e(g)),s&&_.push(C4e()),l&&_.push(C6e({markerDOM:e=>{let t=document.createElement(`div`);return t.classList.add(`cm-foldMarker`),t.innerHTML=e?ZL:QL,t}})),i&&tR[i]&&(_.push(tR[i]()),l||_.push(C6e({markerDOM:e=>{let t=document.createElement(`div`);return t.classList.add(`cm-foldMarker`),t.innerHTML=e?ZL:QL,t}}))),m&&i===`json`){let e=lnt(e=>{let t=[],n=e.state.doc.toString();if(n.trim())try{JSON.parse(n)}catch(n){n instanceof Error&&t.push({from:0,to:e.state.doc.length,severity:`error`,message:n.message})}return t});_.push(e)}return c&&_.push(wnt()),u?_.push(xM.of([{key:`Enter`,run:()=>!0},{key:`Ctrl-Enter`,mac:`Cmd-Enter`,run:()=>!0},{key:`Shift-Enter`,run:()=>!0}])):_.push(xM.of([{key:`Enter`,run:K5e}])),_}var ZL,QL,$L,Dnt,eR,tR,Ont=s((()=>{A5e(),X5e(),W7e(),Fet(),Vet(),_tt(),ent(),jP(),ynt(),Ak(),XM(),G(),Cnt(),Tnt(),ZL=``,QL=``,vM.EDIT_CONTEXT=!1,$L=e=>`provider`in e&&!!Sn(e.provider),Dnt={key:`Mod-a`,run:e=>(e.dispatch({selection:{anchor:0,head:e.state.doc.length},scrollIntoView:!1}),!0)},eR=e=>{let t=A(null),n=(e=``)=>{t.value&&t.value.state.doc.toString()!==e&&t.value.dispatch({changes:{from:0,to:t.value.state.doc.length,insert:e},selection:{anchor:Math.min(t.value.state.selection.main.anchor,e.length)}})},r=W(()=>({onChange:e.onChange,onBlur:e.onBlur,onFocus:e.onFocus,disableTabIndent:Sn(e.disableTabIndent),language:Sn(e.language),classes:Sn(e.classes),readOnly:Sn(e.readOnly),lineNumbers:Sn(e.lineNumbers),withVariables:Sn(e.withVariables),forceFoldGutter:Sn(e.forceFoldGutter),disableEnter:Sn(e.disableEnter),disableCloseBrackets:Sn(e.disableCloseBrackets),withoutTheme:Sn(e.withoutTheme),lint:Sn(e.lint),additionalExtensions:Sn(e.extensions),placeholder:Sn(e.placeholder)}));pr(e.codeMirrorRef,()=>{t.value?.destroy(),i()},{immediate:!0}),Ui(()=>t.value?.destroy());function i(){if(e.codeMirrorRef.value){let i=$L(e)?Sn(e.provider):null,a=Ent({...r.value,provider:i});t.value=new vM({parent:e.codeMirrorRef.value,extensions:a}),$L(e)||n(Sn(e.content))}}return pr(()=>$L(e)?Sn(e.provider):null,()=>{$L(e)&&(t.value?.destroy(),i())}),pr(r,()=>{if(!t.value)return;let n=$L(e)?Sn(e.provider):null,i=Ent({...r.value,provider:n});requestAnimationFrame(()=>{t.value?.dispatch({effects:vk.reconfigure.of(i)})})},{immediate:!0}),pr(()=>Sn(e.content),()=>{$L(e)||n(Sn(e.content))},{immediate:!0}),{setCodeMirrorContent:n,codeMirror:t}},tR={html:jet,json:zet,yaml:Qtt,css:L7e,xml:ptt}}));function knt(e){let{codeMirror:t,query:n,showDropdown:r,dropdownPosition:i}=e;function a(){return t.value?.state.selection.main.head||0}function o(e){return t.value?.coordsAtPos(e)}function s(){let e=a();requestAnimationFrame(()=>{let t=o(e-n.value.length-2);t&&(i.value={left:t.left,top:Math.max(t.bottom)})})}pr(n,s);function c(e){let i=`{{${e}}}`,o=a(),s=Math.max(0,o-n.value.length-2),c=o;t.value?.dispatch({changes:{from:s,to:c,insert:i}}),r.value=!1}function l(){let e=a(),c=t.value?.state.doc.sliceString(0,e)||``,l=c.lastIndexOf(`{{`);l>c.lastIndexOf(`}}`)?(n.value=c.slice(l+2),r.value=!0,i.value=o(e)||{left:0,top:0},n.value===``&&s()):r.value=!1}return pr(()=>t.value?.state.doc.toString(),l),{handleDropdownSelect:c,updateDropdownVisibility:l}}var Ant=s((()=>{G()})),nR=s((()=>{Ak(),XM(),g8e(),Ont(),Ant()})),jnt,Mnt,Nnt,Pnt=s((()=>{T1e(),G(),nR(),xS(),fl(),jnt=class e extends UA{variableName;app;pillColor;variableInfo;constructor(e,t,n){if(super(),this.variableName=e,n===`contextFunction`){this.pillColor=`var(--scalar-color-3)`,this.variableInfo={type:`contextFunction`,identifier:e,details:Lb(e)};return}this.pillColor=t?.color||`var(--scalar-color-1)`;let r=t?.variables?.find(t=>t.name===e),i=r?typeof r.value==`string`?r.value:r.value?.default:void 0;this.variableInfo={type:`environment`,name:e,value:i||`No value`,isDefined:!!i}}toDOM(){let e=document.createElement(`span`);return e.className=this.variableInfo.type===`contextFunction`?`cm-pill cm-pill--context-fn`:`cm-pill`,e.textContent=this.variableName,e.style.setProperty(`--tw-bg-base`,this.pillColor),this.variableInfo.type===`environment`&&(e.style.opacity=this.variableInfo.isDefined?`1`:`0.5`),this.app=go(fO,{context:this.variableInfo,target:e}),this.app.mount(document.createElement(`div`)),e}destroy(){this.app&&=(this.app.unmount(),null)}eq(t){if(!(t instanceof e)||t.variableName!==this.variableName||t.pillColor!==this.pillColor||t.variableInfo.type!==this.variableInfo.type)return!1;let n=t.variableInfo,r=this.variableInfo;return n.type===r.type?n.type===`environment`&&r.type===`environment`?n.name===r.name&&n.value===r.value&&n.isDefined===r.isDefined:n.type===`contextFunction`&&r.type===`contextFunction`&&n.identifier===r.identifier&&n.details===r.details:!1}ignoreEvent(){return!1}},Mnt=e=>wj.fromClass(class{decorations;lastEnvironment;constructor(t){this.lastEnvironment=e.environment,this.decorations=this.buildDecorations(t)}update(t){if(e.environment!==this.lastEnvironment){this.lastEnvironment=e.environment,this.decorations=this.buildDecorations(t.view);return}(t.docChanged||t.viewportChanged)&&(this.decorations=this.buildDecorations(t.view))}buildDecorations(t){let n=new Ek,r=e.isContextFunctionName??(()=>!1);for(let{from:i,to:a}of t.visibleRanges){let o=t.state.doc.sliceString(i,a),s=new RegExp(dl.VARIABLES.source,dl.VARIABLES.flags),c;for(;(c=s.exec(o))!==null;){let a=i+c.index,o=a+c[0].length,s=c[1]??``;if(t.state.doc.sliceString(a,o).includes(` +`))continue;let l=r(s)?`contextFunction`:`environment`;n.add(a,o,GA.widget({widget:new jnt(s,e.environment,l),side:1}))}}return n.finish()}},{decorations:e=>e.decorations}),Nnt=vM.domEventHandlers({keydown(e,t){if(e.key!==`Backspace`)return!1;let{state:n}=t,{from:r,to:i}=n.selection.main;return r===0&&i===n.doc.length?(t.dispatch({changes:{from:0,to:n.doc.length},selection:{anchor:0}}),e.preventDefault(),!0):r===i&&r>=2&&n.doc.sliceString(r-2,r)===`}}`?(t.dispatch({changes:{from:r-2,to:r},selection:{anchor:r-2}}),e.preventDefault(),!0):!1}})})),Fnt,Int=s((()=>{Fnt=`useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict`})),rR,iR=s((()=>{Int(),rR=(e=21)=>{let t=``,n=crypto.getRandomValues(new Uint8Array(e|=0));for(;e--;)t+=Fnt[n[e]&63];return t}})),Lnt,Rnt,znt,Bnt,Vnt,Hnt,Unt,Wnt=s((()=>{gD(),Y$e(),Pnt(),G(),qu(),nR(),xS(),iR(),Lnt={class:`whitespace-nowrap`},Rnt=[`id`],znt={key:0,class:`z-context text-c-2 absolute right-1.5 bottom-1 hidden font-sans group-has-[:focus-visible]/input:block`,role:`alert`},Bnt={key:5,class:`centered-y text-orange absolute right-7 text-xs`},Vnt={key:6,class:`centered-y absolute right-0 flex h-full items-center p-1.5 group-has-[.cm-focused]:z-1`},Hnt={key:7,class:`required centered-y text-xxs text-c-3 group-[.error]:text-red bg-b-1 pointer-events-none absolute right-0 mr-0.5 pt-px pr-2 opacity-100 shadow-[-8px_0_4px_var(--scalar-background-1)] transition-opacity duration-150 group-[.alert]:bg-transparent group-[.alert]:shadow-none group-[.error]:bg-transparent group-[.error]:shadow-none peer-has-[.cm-focused]:opacity-0`},Unt=N({inheritAttrs:!1,__name:`CodeInput`,props:{modelValue:{type:[String,Number,Boolean,Array,Object]},environment:{},type:{},disabled:{type:Boolean,default:!1},error:{type:Boolean,default:!1},layout:{default:`desktop`},enum:{},examples:{},default:{type:[String,Number,Boolean,Array,Object]},nullable:{type:Boolean,default:!1},placeholder:{},required:{type:Boolean},colorPicker:{type:Boolean,default:!1},lineNumbers:{type:Boolean,default:!1},lint:{type:Boolean,default:!1},lineWrapping:{type:Boolean,default:!1},language:{},extensions:{default:()=>[]},disableTabIndent:{type:Boolean,default:!1},disableEnter:{type:Boolean,default:!1},disableCloseBrackets:{type:Boolean,default:!1},emitOnBlur:{type:Boolean,default:!0},withVariables:{type:Boolean,default:!0},withFakeData:{type:Boolean,default:!1},alwaysEmitChange:{type:Boolean,default:!1},handleFieldChange:{type:Function},handleFieldSubmit:{type:Function},linethrough:{type:Boolean}},emits:[`update:modelValue`,`submit`,`navigate`,`blur`],setup(e,{expose:t,emit:n}){let r=n,i=Fr(),a=i.id||`id-${rR()}`,o=A(!1),s=W(()=>e.enum?.length?!1:e.type===`boolean`||Array.isArray(e.type)&&e.type.includes(`boolean`)),c=W(()=>e.nullable?[`true`,`false`,`null`]:[`true`,`false`]),l=W(()=>Array.isArray(e.type)?e.type.find(e=>e!==`null`)??`string`:e.type),u=t=>{!e.alwaysEmitChange&&t===y(e.modelValue)||(e.handleFieldChange?e.handleFieldChange(t):r(`update:modelValue`,t))},d=(t,n)=>{e.handleFieldSubmit?e.handleFieldSubmit(t):r(`submit`,t,n)},f=(t,n)=>{o.value=!1,e.emitOnBlur&&e.modelValue&&d(t,n),r(`blur`,t,n)},p=e=>r(`update:modelValue`,e),m=()=>{let t=[...e.extensions];return e.colorPicker&&t.push(h8e),t},h=W(()=>e.withFakeData?Rb.map(e=>({key:e,description:Lb(e)})):[]),g=W(()=>Mnt({environment:e.environment,isContextFunctionName:zb,isReadOnly:e.layout===`modal`})),_=W(()=>[...m(),g.value,Nnt]),v=A(null),y=e=>typeof e==`string`?e:JSON.stringify(e),{codeMirror:b,setCodeMirrorContent:ee}=eR({content:Cn(()=>y(e.modelValue)),onChange:e=>{u(e),ae()},onFocus:()=>{o.value=!0},onBlur:f,codeMirrorRef:v,disableTabIndent:Cn(()=>e.disableTabIndent),disableEnter:Cn(()=>e.disableEnter),disableCloseBrackets:Cn(()=>e.disableCloseBrackets),lineNumbers:Cn(()=>e.lineNumbers),language:Cn(()=>e.language),lint:Cn(()=>e.lint),extensions:_,placeholder:Cn(()=>e.placeholder)});pr(b,()=>{b.value&&Object.hasOwn(i,`autofocus`)&&b.value.focus()});let te=A(!1),ne=A(``),x=A({left:0,top:0}),re=A(null),{handleDropdownSelect:ie,updateDropdownVisibility:ae}=knt({codeMirror:b,query:ne,showDropdown:te,dropdownPosition:x}),oe=W(()=>te.value&&e.withVariables&&e.layout!==`modal`&&(!!e.environment||e.withFakeData)),S=(t,n)=>{if(te.value){t===`down`||t===`up`?(n.preventDefault(),re.value?.handleArrowKey(t)):t===`enter`&&(n.preventDefault(),re.value?.handleSelect());return}t===`escape`&&!e.disableTabIndent&&n.stopPropagation(),t===`enter`&&n.target instanceof HTMLDivElement&&d(b.value?.state.doc.toString()??``,n)};return t({focus:e=>{if(!b.value||(b.value.focus(),!Ku(e)))return;let t=e===`start`?0:e===`end`?b.value.state.doc.length:e;b.value.dispatch({selection:{anchor:t},scrollIntoView:!0})},isFocused:o,handleChange:u,handleSubmit:d,handleBlur:f,booleanOptions:c,codeMirror:b,codeMirrorRef:v,modelValue:e.modelValue,setCodeMirrorContent:ee,cursorPosition:()=>b.value?.state.selection.main.head,serializeValue:y}),(t,n)=>(F(),I(H,null,[e.disabled?(F(),I(`div`,{key:0,class:O([`text-c-2 flex cursor-default items-center justify-center`,{"font-code pr-2 pl-1 text-base":e.layout===`modal`,"px-2":e.layout!==`modal`,"line-through":e.linethrough}]),"data-testid":`code-input-disabled`},[R(`span`,Lnt,k(e.modelValue),1)],2)):e.enum?.length?(F(),L(hD,{key:1,default:e.default,modelValue:e.modelValue,type:l.value,value:e.enum,"onUpdate:modelValue":p},null,8,[`default`,`modelValue`,`type`,`value`])):s.value?(F(),L(hD,{key:2,default:e.default,modelValue:e.modelValue,value:c.value,"onUpdate:modelValue":p},null,8,[`default`,`modelValue`,`value`])):e.examples?.length?(F(),L(hD,{key:3,default:e.default,modelValue:e.modelValue,value:e.examples,"onUpdate:modelValue":p},null,8,[`default`,`modelValue`,`value`])):(F(),I(`div`,V({key:4,id:j(a)},t.$attrs,{ref_key:`codeMirrorRef`,ref:v,class:[`group/input group-[.alert]:outline-orange group-[.error]:outline-red font-code peer relative w-full overflow-hidden text-xs leading-[1.44] whitespace-nowrap -outline-offset-1 has-[:focus-visible]:rounded-[4px] has-[:focus-visible]:outline`,{"line-wrapping has-[:focus-visible]:bg-b-1 has-[:focus-visible]:absolute has-[:focus-visible]:z-1":e.lineWrapping,"flow-code-input--error":e.error,"line-through":e.linethrough}],onKeydown:[n[0]||=fo(uo(e=>S(`down`,e),[`stop`]),[`down`]),n[1]||=fo(e=>S(`enter`,e),[`enter`]),n[2]||=fo(e=>S(`escape`,e),[`escape`]),n[3]||=fo(uo(e=>S(`up`,e),[`stop`]),[`up`])]}),[e.disableTabIndent?B(``,!0):(F(),I(`div`,znt,[...n[6]||=[z(` Press `,-1),R(`kbd`,{class:`-mx-0.25 rounded border px-0.5 font-mono`},`Esc`,-1),z(` then `,-1),R(`kbd`,{class:`-mx-0.25 rounded border px-0.5 font-mono`},`Tab`,-1),z(` to exit `,-1)]]))],16,Rnt)),t.$slots.warning?(F(),I(`div`,Bnt,[P(t.$slots,`warning`,{},void 0,!0)])):B(``,!0),t.$slots.icon?(F(),I(`div`,Vnt,[P(t.$slots,`icon`,{},void 0,!0)])):B(``,!0),e.required?(F(),I(`div`,Hnt,` Required `)):B(``,!0),oe.value?(F(),L(YD,{key:8,ref_key:`dropdownRef`,ref:re,contextFunctionItems:h.value,dropdownPosition:x.value,environment:e.environment,query:ne.value,onClose:n[4]||=e=>te.value=!1,onRedirect:n[5]||=e=>r(`navigate`,{page:`document`,path:`environment`}),onSelect:j(ie)},null,8,[`contextFunctionItems`,`dropdownPosition`,`environment`,`query`,`onSelect`])):B(``,!0)],64))}})})),aR,Gnt=s((()=>{ec(),Wnt(),aR=$s(Unt,[[`__scopeId`,`data-v-dfc591f4`]])})),Knt,qnt,Jnt,Ynt=s((()=>{G(),Wu(),Knt=[`role`],qnt={key:0,class:`sr-only`},Jnt=N({__name:`DataTable`,props:{columns:{},scroll:{type:Boolean},presentational:{type:Boolean}},setup(e){let{cx:t}=Uu();return(n,r)=>(F(),I(`div`,nt(ei(j(t)(e.scroll?`overflow-x-auto custom-scroll`:`overflow-visible`,`scalar-data-table`))),[R(`table`,{class:O([`mb-0 grid min-h-8 auto-rows-auto`,{"w-max min-w-full":e.scroll}]),role:e.presentational?`presentation`:`table`,style:tt({gridTemplateColumns:e.columns.map(e=>e||`1fr`).join(` `)})},[n.$slots.caption?(F(),I(`caption`,qnt,[P(n.$slots,`caption`)])):B(``,!0),P(n.$slots,`default`)],14,Knt)],16))}})})),oR,sR=s((()=>{Ynt(),oR=Jnt})),Xnt,Znt=s((()=>{G(),Wu(),Xnt=N({inheritAttrs:!1,__name:`DataTableCell`,props:{is:{default:`td`}},setup(e){let{cx:t}=Uu();return(n,r)=>(F(),L(Ar(e.is),V(j(t)(`box-content max-h-8 min-h-8 min-w-8 border-l-0 border-t border-b-0 border-r flex text-base/5 last:border-r-0 group-last:border-b-transparent p-0 m-0 relative`),{class:`group-[.alert]:bg-b-alert group-[.error]:bg-b-danger`}),{default:M(()=>[P(n.$slots,`default`)]),_:3},16))}})})),cR,lR=s((()=>{Znt(),cR=Xnt})),Qnt,$nt=s((()=>{lR(),G(),Wu(),Qnt=N({__name:`DataTableHeader`,setup(e){let{cx:t}=Uu();return(e,n)=>(F(),L(cR,V({is:`th`},j(t)(`items-center font-medium px-2 min-w-0 -outline-offset-1`)),{default:M(()=>[P(e.$slots,`default`)]),_:3},16))}})})),uR,dR=s((()=>{$nt(),uR=Qnt}));function ert(e,t){return F(),I(`tr`,nrt,[P(e.$slots,`default`)])}var trt,nrt,fR,pR=s((()=>{ec(),G(),trt={},nrt={class:`group contents`},fR=$s(trt,[[`render`,ert]])})),mR,rrt=s((()=>{mR=e=>{if(e instanceof File)return e.name}})),hR,irt=s((()=>{hR=(e,t)=>{let n=e?.variables?.find(e=>e.name===t);if(n)return typeof n.value==`string`?n.value:n.value?.default}})),art,ort=s((()=>{irt(),xS(),art=(e,t)=>{if(zb(e))return{type:`contextFunction`,identifier:e,details:Lb(e)};let n=hR(t,e);return{type:`environment`,name:e,value:n||`No value`,isDefined:!!n}}})),gR,srt=s((()=>{fl(),gR=(e,t)=>{if(!t||!e.includes(`{{`))return``;let n=new RegExp(dl.VARIABLES.source,dl.VARIABLES.flags),r=``,i;for(;(i=n.exec(e))!==null;)r+=`|${i[1]??``}`;return r}})),_R,crt=s((()=>{_R=e=>typeof e==`string`?e:e==null?``:JSON.stringify(e)})),lrt,urt,drt,frt,prt,mrt,hrt,grt=s((()=>{gD(),Y$e(),T1e(),irt(),ort(),srt(),crt(),G(),qu(),xS(),iR(),fl(),lrt={class:`whitespace-nowrap`},urt=[`id`],drt=[`aria-activedescendant`,`aria-autocomplete`,`aria-controls`,`aria-expanded`,`aria-invalid`,`aria-label`,`aria-readonly`,`aria-required`,`contenteditable`,`data-placeholder`,`role`],frt={key:5,class:`centered-y text-orange absolute right-7 text-xs`},prt={key:6,class:`centered-y absolute right-0 flex h-full items-center p-1.5 group-has-[.code-input-lite__editor:focus]:z-1`},mrt={key:7,class:`required centered-y text-xxs text-c-3 group-[.error]:text-red bg-b-1 pointer-events-none absolute right-0 mr-0.5 pt-px pr-2 opacity-100 shadow-[-8px_0_4px_var(--scalar-background-1)] transition-opacity duration-150 peer-has-[.code-input-lite__editor:focus]:opacity-0`},hrt=N({inheritAttrs:!1,__name:`CodeInputLite`,props:{modelValue:{type:[String,Number,Boolean,Array,Object]},environment:{},disabled:{type:Boolean,default:!1},readOnly:{type:Boolean,default:!1},error:{type:Boolean,default:!1},layout:{default:`desktop`},placeholder:{},required:{type:Boolean,default:!1},emitOnBlur:{type:Boolean,default:!0},withVariables:{type:Boolean,default:!0},withFakeData:{type:Boolean,default:!1},alwaysEmitChange:{type:Boolean,default:!1},linethrough:{type:Boolean,default:!1},type:{},enum:{},examples:{},default:{type:[String,Number,Boolean,Array,Object]},nullable:{type:Boolean,default:!1}},emits:[`update:modelValue`,`submit`,`blur`,`navigate`],setup(e,{expose:t,emit:n}){let r=n,i=Fr(),a=A(null),o=W(()=>i.id??a.value??void 0),s=()=>{!i.id&&a.value===null&&(a.value=`id-${rR()}`)},c=Cr(`editorRef`),l=A(null),u=W(()=>o.value?`${o.value}-listbox`:void 0),d=W(()=>l.value?.activeOptionId),f=A(!1),p=A(!0),m=A(!1),h=e=>e.trim().length===0,g=W(()=>e.enum?.length?!1:e.type===`boolean`||Array.isArray(e.type)&&e.type.includes(`boolean`)),_=W(()=>e.nullable?[`true`,`false`,`null`]:[`true`,`false`]),v=W(()=>Array.isArray(e.type)?e.type.find(e=>e!==`null`)??`string`:e.type),y=e=>r(`update:modelValue`,e),b=[],ee=!1,te=()=>{for(let e of b)e.unmount();b=[]},ne=()=>{if(!c.value||e.layout===`modal`)return;let t=c.value.querySelectorAll(`.scalar-pill`);for(let n of t){let t=go(fO,{context:art(n.dataset.variable??``,e.environment),target:n});t.mount(document.createElement(`div`)),b.push(t)}},x=(t,n,r)=>{let i=zb(t),a=document.createElement(`span`);a.className=i?`scalar-pill scalar-pill--context-fn`:`scalar-pill`,a.contentEditable=`false`,a.dataset.variable=t,a.dataset.pillStart=String(n),a.dataset.pillEnd=String(r);let o=i?`var(--scalar-color-3)`:e.environment?.color||`var(--scalar-color-1)`;return a.style.setProperty(`--tw-bg-base`,o),!i&&!hR(e.environment,t)&&(a.style.opacity=`0.5`),a.textContent=t,a},re=t=>{let n=c.value;if(!n)return;if(te(),n.replaceChildren(),!e.withVariables||!t.includes(`{{`)){t&&n.appendChild(document.createTextNode(t)),p.value=h(t);return}let r=new RegExp(dl.VARIABLES.source,dl.VARIABLES.flags),i=0,a;for(;(a=r.exec(t))!==null;){let e=a.index,r=e+a[0].length;e>i&&n.appendChild(document.createTextNode(t.slice(i,e))),n.appendChild(x(a[1]??``,e,r)),i=r}ie.nodeType===Node.TEXT_NODE?(e.textContent??``).length:e instanceof HTMLElement&&e.classList.contains(`scalar-pill`)?`{{${e.dataset.variable??``}}}`.length:(e.textContent??``).length,ae=()=>{let e=c.value;if(!e)return``;let t=``;for(let n of Array.from(e.childNodes))n.nodeType===Node.TEXT_NODE?t+=n.textContent??``:n instanceof HTMLElement&&n.classList.contains(`scalar-pill`)?t+=`{{${n.dataset.variable??``}}}`:n instanceof HTMLElement&&(t+=n.textContent??``);return t},oe=null,S=``,C=()=>{let t=e.environment?.color??``,n=e.withVariables?`1`:`0`,r=e.environment?.variables??[],i=``;for(let e of r){let t=typeof e.value==`string`?e.value:e.value?.default??``;i+=`\x1f${e.name}\x1e${t}`}return`${t}|${n}|${i}`},se=()=>{ee||(ee=!0,ne())},ce=()=>{let e=c.value;if(!e)return null;let t=window.getSelection();if(!t||t.rangeCount===0)return null;let n=t.getRangeAt(0);if(n.startContainer!==e&&!e.contains(n.startContainer))return null;if(n.startContainer===e){let t=0;for(let r=0;r{let t=c.value;if(!t)return;let n=document.createRange(),r=0,i=!1;for(let a of Array.from(t.childNodes)){let t=ie(a);if(r+t>=e){if(a.nodeType===Node.TEXT_NODE){let t=Math.max(0,Math.min(e-r,(a.textContent??``).length));n.setStart(a,t)}else e-r<=0?n.setStartBefore(a):n.setStartAfter(a);i=!0;break}r+=t}i?n.collapse(!0):(n.selectNodeContents(t),n.collapse(!1));let a=window.getSelection();a&&(a.removeAllRanges(),a.addRange(n))},ue=A(!1),de=A(``),w=A({left:0,top:0}),T=W(()=>e.withFakeData?Rb.map(e=>({key:e,description:Lb(e)})):[]),fe=W(()=>ue.value&&e.withVariables&&e.layout!==`modal`&&(!!e.environment||e.withFakeData)),pe=()=>{if(!c.value)return;let e=ce();if(e===null){ue.value=!1;return}let t=ae().slice(0,e),n=t.lastIndexOf(`{{`);if(n<=t.lastIndexOf(`}}`)){ue.value=!1;return}de.value=t.slice(n+2),s(),ue.value=!0,ir(()=>{let e=window.getSelection();if(!e||e.rangeCount===0||!c.value)return;let t=e.getRangeAt(0).cloneRange();t.collapse(!0);let n=t.getBoundingClientRect(),r=c.value.getBoundingClientRect();w.value={left:n.left||r.left,top:n.bottom||r.bottom}})},E=t=>{if(e.readOnly)return;let n=ce()??0,r=ae(),i=Math.max(0,n-de.value.length-2),a=n,o=`${r.slice(0,i)}{{${t}}}${r.slice(a)}`,s=i+`{{${t}}}`.length;oe=gR(o,e.withVariables),re(o),le(s),ue.value=!1,D(o,{skipDropdownCheck:!0})},D=(t,n={})=>{let i=t===_R(e.modelValue);(e.alwaysEmitChange||!i)&&r(`update:modelValue`,t),n.skipDropdownCheck||pe()},me=()=>{let t=ae();p.value=h(t);let n=gR(t,e.withVariables);if(!m.value&&n!==oe){let e=ce();oe=n,re(t),e!==null&&le(e)}D(t)},he=()=>{m.value=!0},ge=()=>{m.value=!1,me()},_e=()=>{f.value=!0,s(),se()},ve=t=>{f.value=!1,ue.value=!1;let n=ae();e.emitOnBlur&&n&&r(`submit`,n,t),r(`blur`,n,t)},ye=e=>{e.preventDefault();let t=e.clipboardData?.getData(`text/plain`)??``;t&&(document.execCommand(`insertText`,!1,t.replace(/\r?\n/g,` `)),me())},be=e=>{if(ue.value){if(e.key===`ArrowDown`||e.key===`ArrowUp`){e.preventDefault(),e.stopPropagation(),l.value?.handleArrowKey(e.key===`ArrowDown`?`down`:`up`);return}if(e.key===`Enter`){e.preventDefault(),e.stopPropagation(),l.value?.handleSelect();return}if(e.key===`Escape`){e.preventDefault(),e.stopPropagation(),ue.value=!1;return}}if(e.key===`Enter`){e.preventDefault(),r(`submit`,ae(),e);return}},xe=e=>{let t=e.target?.closest(`.scalar-pill`);if(!t)return;let n=c.value;if(!n)return;n.focus();let r=document.createRange();r.selectNode(t);let i=window.getSelection();i?.removeAllRanges(),i?.addRange(r),pe()};return Vi(()=>{let t=_R(e.modelValue);oe=gR(t,e.withVariables),S=C(),re(t),p.value=h(t),Object.hasOwn(i,`autofocus`)&&c.value?.focus()}),pr(()=>e.modelValue,t=>{let n=_R(t);p.value=h(n),ae()!==n&&(oe=gR(n,e.withVariables),re(n))}),pr([()=>e.environment,()=>e.withVariables],()=>{let t=C();if(t===S||(S=t,oe===``))return;oe=gR(ae(),e.withVariables);let n=ce();re(ae()),n!==null&&le(n)},{deep:!0}),Ui(()=>{te()}),t({focus:e=>{let t=c.value;if(!t||(t.focus(),!Ku(e)))return;let n=ae().length;le(e===`start`?0:e===`end`?n:e)},setContent:(t=``)=>{ae()!==t&&(oe=gR(t,e.withVariables),re(t),p.value=h(t))},getValue:()=>ae(),cursorPosition:()=>{let e=ce();return e===null?void 0:e},isFocused:f,editorRef:c}),(t,n)=>(F(),I(H,null,[e.disabled?(F(),I(`div`,{key:0,class:O([`text-c-2 flex cursor-default items-center justify-center`,{"font-code pr-2 pl-1 text-base":e.layout===`modal`,"px-2":e.layout!==`modal`,"line-through":e.linethrough}]),"data-testid":`code-input-lite-disabled`},[R(`span`,lrt,k(e.modelValue),1)],2)):e.enum?.length?(F(),L(hD,{key:1,default:e.default,modelValue:e.modelValue,type:v.value,value:e.enum,"onUpdate:modelValue":y},null,8,[`default`,`modelValue`,`type`,`value`])):g.value?(F(),L(hD,{key:2,default:e.default,modelValue:e.modelValue,value:_.value,"onUpdate:modelValue":y},null,8,[`default`,`modelValue`,`value`])):e.examples?.length?(F(),L(hD,{key:3,default:e.default,modelValue:e.modelValue,value:e.examples,"onUpdate:modelValue":y},null,8,[`default`,`modelValue`,`value`])):(F(),I(`div`,V({key:4,id:o.value},t.$attrs,{class:[`code-input-lite group/code-input-lite peer relative w-full leading-[1.44] -outline-offset-1 has-[:focus-visible]:rounded-[4px] has-[:focus-visible]:outline`,{"code-input-lite--error":e.error,"code-input-lite--empty":p.value,"line-through":e.linethrough}]}),[R(`div`,{ref_key:`editorRef`,ref:c,"aria-activedescendant":fe.value?d.value:void 0,"aria-autocomplete":e.withVariables?`list`:void 0,"aria-controls":fe.value?u.value:void 0,"aria-expanded":fe.value?`true`:void 0,"aria-invalid":e.error?`true`:void 0,"aria-label":j(i)[`aria-label`],"aria-readonly":e.readOnly?`true`:void 0,"aria-required":e.required?`true`:void 0,class:`code-input-lite__editor`,contenteditable:e.readOnly?`false`:`true`,"data-placeholder":e.placeholder,role:e.withVariables?`combobox`:`textbox`,spellcheck:`false`,onBlur:ve,onClick:xe,onCompositionend:ge,onCompositionstart:he,onFocus:_e,onInput:me,onKeydown:be,onPaste:ye,onPointerover:se},null,40,drt)],16,urt)),t.$slots.warning?(F(),I(`div`,frt,[P(t.$slots,`warning`,{},void 0,!0)])):B(``,!0),t.$slots.icon?(F(),I(`div`,prt,[P(t.$slots,`icon`,{},void 0,!0)])):B(``,!0),e.required?(F(),I(`div`,mrt,` Required `)):B(``,!0),fe.value?(F(),L(YD,{key:8,ref_key:`dropdownRef`,ref:l,contextFunctionItems:T.value,dropdownPosition:w.value,environment:e.environment,listboxId:u.value,query:de.value,onClose:n[0]||=e=>ue.value=!1,onRedirect:n[1]||=e=>r(`navigate`,{page:`document`,path:`environment`}),onSelect:E},null,8,[`contextFunctionItems`,`dropdownPosition`,`environment`,`listboxId`,`query`])):B(``,!0)],64))}})})),vR,_rt=s((()=>{ec(),grt(),vR=$s(hrt,[[`__scopeId`,`data-v-f03d0c9d`]])})),vrt,yrt,brt=s((()=>{lR(),G(),Wu(),PT(),vrt=[`aria-label`,`checked`,`disabled`],yrt=N({__name:`DataTableCheckbox`,props:{modelValue:{type:Boolean},disabled:{type:Boolean},align:{default:`center`},ariaLabel:{default:`Toggle`}},emits:[`update:modelValue`],setup(e){let t=Vu({base:`w-8 h-8 flex items-center justify-center text-b-2 peer-checked:text-c-1 pointer-events-none absolute`,variants:{align:{left:`left-0`,center:`centered`}}});return(n,r)=>(F(),L(cR,{class:`group/cell relative flex min-w-8`},{default:M(()=>[R(`input`,{"aria-label":e.ariaLabel,checked:e.modelValue,class:`peer absolute inset-0 size-full cursor-pointer opacity-0 disabled:cursor-default`,disabled:!!e.disabled,type:`checkbox`,onChange:r[0]||=e=>n.$emit(`update:modelValue`,e.target.checked)},null,40,vrt),R(`div`,{class:O(j(t)({align:e.align}))},[R(`div`,{class:O([`absolute m-auto size-3/4 rounded border-[1px] opacity-0`,!e.disabled&&`group-has-[:focus-visible]/cell:border-c-accent group-hover:opacity-100 group-has-[:focus-visible]/cell:opacity-100`])},null,2),U(j(AT),{icon:`Checkmark`,size:`xs`,thickness:`2.5`})],2)]),_:1}))}})})),yR,xrt=s((()=>{brt(),yR=yrt})),bR,Srt=s((()=>{bR=(e,t)=>{if(!e||!(`type`in e)||typeof t!=`string`)return{ok:!0};if(e.type===`integer`||e.type===`number`){let n=Number(t);if(isNaN(n))return{ok:!1,message:`Value must be a number (e.g., 42.5)`};if(e.type===`integer`&&!Number.isInteger(n))return{ok:!1,message:`Value must be a whole number (e.g., 42)`};if(e.minimum!==void 0&&ne.maximum)return{ok:!1,message:`Value must be ${e.maximum} or less`}}if(e.type===`string`&&e.format){if(e.format===`date`&&!/^\d{4}-\d{2}-\d{2}$/.test(t??``))return{ok:!1,message:`Please enter a valid date in YYYY-MM-DD format (e.g., 2024-03-20)`};if(e.format===`date-time`&&!/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d+)?(Z|[+-]\d{2}:\d{2})$/.test(t??``))return{ok:!1,message:`Please enter a valid date and time in RFC 3339 format (e.g., 2024-03-20T13:45:30Z)`};if(e.format===`email`&&!/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(t??``))return{ok:!1,message:`Please enter a valid email address (e.g., user@example.com)`};if(e.format===`uri`&&!/^[a-zA-Z][a-zA-Z0-9+.-]*:.+$/.test(t??``))return{ok:!1,message:`Please enter a valid URI (e.g., https://example.com)`}}return{ok:!0}}}));function Crt(e){let t=[],n=-1;for(;++n`:``))+`)`})}return u;function u(){let l=TR,u,d,f;if((!t||a(e,i,c[c.length-1]||void 0))&&(l=krt(n(e,c)),l[0]===!1))return l;if(`children`in e&&e.children){let t=e;if(t.children&&l[0]!==`skip`)for(d=(r?t.children.length:-1)+o,f=c.concat(t);d>-1&&d{wR=(function(e){if(e==null)return Ert;if(typeof e==`function`)return xR(e);if(typeof e==`object`)return Array.isArray(e)?Crt(e):wrt(e);if(typeof e==`string`)return Trt(e);throw Error(`Expected function, string, or object as test`)}),TR=[],ER=`skip`}));function Art(e){let t=[],n=-1;for(;++nl&&(l=e):e&&(l!==void 0&&l>-1&&c.push(` +`.repeat(l)||` `),l=-1,c.push(e))}return c.join(``)}function Frt(e,t,n){return e.type===`element`?Irt(e,t,n):e.type===`text`?n.whitespace===`normal`?Lrt(e,n):Rrt(e):[]}function Irt(e,t,n){let r=Brt(e,n),i=e.children||[],a=-1,o=[];if(eit(e))return o;let s,c;for(zR(e)||VR(e)&&PR(t,e,VR)?c=` +`:$rt(e)?(s=2,c=2):HR(e)&&(s=1,c=1);++as&&(s=l.data.relevance,c=l)}return c||{type:`root`,children:[],data:{language:void 0,relevance:s}}}function i(){return t.listLanguages()}function a(e,n){if(typeof e==`string`)t.registerLanguage(e,n);else{let n;for(n in e)Object.hasOwn(e,n)&&t.registerLanguage(n,e[n])}}function o(e,n){if(typeof e==`string`)t.registerAliases(typeof n==`string`?n:[...n],{languageName:e});else{let n;for(n in e)if(Object.hasOwn(e,n)){let r=e[n];t.registerAliases(typeof r==`string`?r:[...r],{languageName:n})}}}function s(e){return!!t.getLanguage(e)}}function Grt(e){let t=e||iit,n=t.aliases,r=e?.detect??!1,i=t.languages,a=t.plainText,o=t.prefix,s=t.subset,c=typeof t.className==`string`?[t.className]:t.className??[],l=`hljs`,u=e?.lowlight??Wrt(i);if(n&&u.registerAlias(n),o){let e=o.indexOf(`-`);l=e>-1?o.slice(0,e):o}return(e,t)=>{CR(e,`element`,(e,n,i)=>{if(e.tagName!==`code`||!i||i.type!==`element`||i.tagName!==`pre`)return;let d=Krt(e);if(d===`no-highlight`||!d&&!r||d&&a?.includes(d))return;Array.isArray(e.properties.className)||(e.properties.className=[]),e.properties.className.includes(l)||e.properties.className.unshift(l);for(let t of c)e.properties.className.includes(t)||e.properties.className.push(t);let f;try{f=d?u.highlight(d,Prt(i),{prefix:o}):u.highlightAuto(Prt(i),{prefix:o,subset:s})}catch(n){let r=n;if(d&&/Unknown language/.test(r.message)){t.message(`Cannot highlight as \`${d}\`, it's not registered`,{ancestors:[i,e],cause:r,place:e.position,ruleId:`missing-language`,source:`rehype-highlight`});return}t.message(`Could not highlight code block`,{ancestors:[i,e],cause:r,place:e.position,ruleId:`highlight-error`,source:`rehype-highlight`});return}!d&&f.data?.language&&e.properties.className.push(`language-`+f.data.language),f.children.length>0&&(e.children=f.children)})}}function Krt(e){let t=e.properties.className;if(!Array.isArray(t))return``;let n=t.reduce((e,t)=>{if(e)return e;let n=String(t);return n===`no-highlight`||n===`nohighlight`?`no-highlight`:n.slice(0,5)===`lang-`?n.slice(5):n.slice(0,9)===`language-`?n.slice(9):e},``);return NR[n||``]||n}var qrt,kR,Jrt,Yrt,Xrt,Zrt,AR,jR,Qrt,MR,NR,PR,FR,IR,LR,RR,zR,BR,$rt,VR,eit,HR,tit,UR,nit,rit,iit,WR=s((()=>{DR(),qrt=Object.create,kR=Object.defineProperty,Jrt=Object.getOwnPropertyDescriptor,Yrt=Object.getOwnPropertyNames,Xrt=Object.getPrototypeOf,Zrt=Object.prototype.hasOwnProperty,AR=(e,t)=>()=>(t||(e((t={exports:{}}).exports,t),e=null),t.exports),jR=(e,t)=>{let n={};for(var r in e)kR(n,r,{get:e[r],enumerable:!0});return t||kR(n,Symbol.toStringTag,{value:`Module`}),n},Qrt=(e,t,n,r)=>{if(t&&typeof t==`object`||typeof t==`function`)for(var i=Yrt(t),a=0,o=i.length,s;at[e]).bind(null,s),enumerable:!(r=Jrt(t,s))||r.enumerable});return e},MR=(e,t,n)=>(n=e==null?{}:qrt(Xrt(e)),Qrt(t||!e||!e.__esModule?kR(n,`default`,{value:e,enumerable:!0}):n,e)),NR={ts:`typescript`,js:`javascript`,py:`python`,py3:`python`,"c#":`csharp`,"c++":`cpp`,node:`javascript`},PR=(function(e,t,n){let r=wR(n);if(!e||!e.type||!e.children)throw Error(`Expected parent node`);if(typeof t==`number`){if(t<0||t===1/0)throw Error(`Expected positive finite number as index`)}else if(t=e.children.indexOf(t),t<0)throw Error(`Expected child node or index`);for(;++t{function n(e){return e instanceof Map?e.clear=e.delete=e.set=function(){throw Error(`map is read-only`)}:e instanceof Set&&(e.add=e.clear=e.delete=function(){throw Error(`set is read-only`)}),Object.freeze(e),Object.getOwnPropertyNames(e).forEach(t=>{let r=e[t],i=typeof r;(i===`object`||i===`function`)&&!Object.isFrozen(r)&&n(r)}),e}var r=class{constructor(e){e.data===void 0&&(e.data={}),this.data=e.data,this.isMatchIgnored=!1}ignoreMatch(){this.isMatchIgnored=!0}};function i(e){return e.replace(/&/g,`&`).replace(//g,`>`).replace(/"/g,`"`).replace(/'/g,`'`)}function a(e,...t){let n=Object.create(null);for(let t in e)n[t]=e[t];return t.forEach(function(e){for(let t in e)n[t]=e[t]}),n}var o=``,s=e=>!!e.scope,c=(e,{prefix:t})=>{if(e.startsWith(`language:`))return e.replace(`language:`,`language-`);if(e.includes(`.`)){let n=e.split(`.`);return[`${t}${n.shift()}`,...n.map((e,t)=>`${e}${`_`.repeat(t+1)}`)].join(` `)}return`${t}${e}`},l=class{constructor(e,t){this.buffer=``,this.classPrefix=t.classPrefix,e.walk(this)}addText(e){this.buffer+=i(e)}openNode(e){if(!s(e))return;let t=c(e.scope,{prefix:this.classPrefix});this.span(t)}closeNode(e){s(e)&&(this.buffer+=o)}value(){return this.buffer}span(e){this.buffer+=``}},u=(e={})=>{let t={children:[]};return Object.assign(t,e),t},d=class e{constructor(){this.rootNode=u(),this.stack=[this.rootNode]}get top(){return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(e){this.top.children.push(e)}openNode(e){let t=u({scope:e});this.add(t),this.stack.push(t)}closeNode(){if(this.stack.length>1)return this.stack.pop()}closeAllNodes(){for(;this.closeNode(););}toJSON(){return JSON.stringify(this.rootNode,null,4)}walk(e){return this.constructor._walk(e,this.rootNode)}static _walk(e,t){return typeof t==`string`?e.addText(t):t.children&&(e.openNode(t),t.children.forEach(t=>this._walk(e,t)),e.closeNode(t)),e}static _collapse(t){typeof t!=`string`&&t.children&&(t.children.every(e=>typeof e==`string`)?t.children=[t.children.join(``)]:t.children.forEach(t=>{e._collapse(t)}))}},f=class extends d{constructor(e){super(),this.options=e}addText(e){e!==``&&this.add(e)}startScope(e){this.openNode(e)}endScope(){this.closeNode()}__addSublanguage(e,t){let n=e.root;t&&(n.scope=`language:${t}`),this.add(n)}toHTML(){return new l(this,this.options).value()}finalize(){return this.closeAllNodes(),!0}};function p(e){return e?typeof e==`string`?e:e.source:null}function m(e){return _(`(?=`,e,`)`)}function h(e){return _(`(?:`,e,`)*`)}function g(e){return _(`(?:`,e,`)?`)}function _(...e){return e.map(e=>p(e)).join(``)}function v(e){let t=e[e.length-1];return typeof t==`object`&&t.constructor===Object?(e.splice(e.length-1,1),t):{}}function y(...e){return`(`+(v(e).capture?``:`?:`)+e.map(e=>p(e)).join(`|`)+`)`}function b(e){return RegExp(e.toString()+`|`).exec(``).length-1}function ee(e,t){let n=e&&e.exec(t);return n&&n.index===0}var te=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./;function ne(e,{joinWith:t}){let n=0;return e.map(e=>{n+=1;let t=n,r=p(e),i=``;for(;r.length>0;){let e=te.exec(r);if(!e){i+=r;break}i+=r.substring(0,e.index),r=r.substring(e.index+e[0].length),e[0][0]===`\\`&&e[1]?i+=`\\`+String(Number(e[1])+t):(i+=e[0],e[0]===`(`&&n++)}return i}).map(e=>`(${e})`).join(t)}var x=/\b\B/,re=`[a-zA-Z]\\w*`,ie=`[a-zA-Z_]\\w*`,ae=`\\b\\d+(\\.\\d+)?`,oe=`(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)`,S=`\\b(0b[01]+)`,C=`!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~`,se=(e={})=>{let t=/^#![ ]*\//;return e.binary&&(e.begin=_(t,/.*\b/,e.binary,/\b.*/)),a({scope:`meta`,begin:t,end:/$/,relevance:0,"on:begin":(e,t)=>{e.index!==0&&t.ignoreMatch()}},e)},ce={begin:`\\\\[\\s\\S]`,relevance:0},le={scope:`string`,begin:`'`,end:`'`,illegal:`\\n`,contains:[ce]},ue={scope:`string`,begin:`"`,end:`"`,illegal:`\\n`,contains:[ce]},de={begin:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/},w=function(e,t,n={}){let r=a({scope:`comment`,begin:e,end:t,contains:[]},n);r.contains.push({scope:`doctag`,begin:`[ ]*(?=(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):)`,end:/(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):/,excludeBegin:!0,relevance:0});let i=y(`I`,`a`,`is`,`so`,`us`,`to`,`at`,`if`,`in`,`it`,`on`,/[A-Za-z]+['](d|ve|re|ll|t|s|n)/,/[A-Za-z]+[-][a-z]+/,/[A-Za-z][a-z]{2,}/);return r.contains.push({begin:_(/[ ]+/,`(`,i,/[.]?[:]?([.][ ]|[ ])/,`){3}`)}),r},T=w(`//`,`$`),fe=w(`/\\*`,`\\*/`),pe=w(`#`,`$`),E=Object.freeze({__proto__:null,APOS_STRING_MODE:le,BACKSLASH_ESCAPE:ce,BINARY_NUMBER_MODE:{scope:`number`,begin:S,relevance:0},BINARY_NUMBER_RE:S,COMMENT:w,C_BLOCK_COMMENT_MODE:fe,C_LINE_COMMENT_MODE:T,C_NUMBER_MODE:{scope:`number`,begin:oe,relevance:0},C_NUMBER_RE:oe,END_SAME_AS_BEGIN:function(e){return Object.assign(e,{"on:begin":(e,t)=>{t.data._beginMatch=e[1]},"on:end":(e,t)=>{t.data._beginMatch!==e[1]&&t.ignoreMatch()}})},HASH_COMMENT_MODE:pe,IDENT_RE:re,MATCH_NOTHING_RE:x,METHOD_GUARD:{begin:`\\.\\s*[a-zA-Z_]\\w*`,relevance:0},NUMBER_MODE:{scope:`number`,begin:ae,relevance:0},NUMBER_RE:ae,PHRASAL_WORDS_MODE:de,QUOTE_STRING_MODE:ue,REGEXP_MODE:{scope:`regexp`,begin:/\/(?=[^/\n]*\/)/,end:/\/[gimuy]*/,contains:[ce,{begin:/\[/,end:/\]/,relevance:0,contains:[ce]}]},RE_STARTERS_RE:C,SHEBANG:se,TITLE_MODE:{scope:`title`,begin:re,relevance:0},UNDERSCORE_IDENT_RE:ie,UNDERSCORE_TITLE_MODE:{scope:`title`,begin:ie,relevance:0}});function D(e,t){e.input[e.index-1]===`.`&&t.ignoreMatch()}function me(e,t){e.className!==void 0&&(e.scope=e.className,delete e.className)}function he(e,t){t&&e.beginKeywords&&(e.begin=`\\b(`+e.beginKeywords.split(` `).join(`|`)+`)(?!\\.)(?=\\b|\\s)`,e.__beforeBegin=D,e.keywords=e.keywords||e.beginKeywords,delete e.beginKeywords,e.relevance===void 0&&(e.relevance=0))}function ge(e,t){Array.isArray(e.illegal)&&(e.illegal=y(...e.illegal))}function _e(e,t){if(e.match){if(e.begin||e.end)throw Error(`begin & end are not supported with match`);e.begin=e.match,delete e.match}}function ve(e,t){e.relevance===void 0&&(e.relevance=1)}var ye=(e,t)=>{if(!e.beforeMatch)return;if(e.starts)throw Error(`beforeMatch cannot be used with starts`);let n=Object.assign({},e);Object.keys(e).forEach(t=>{delete e[t]}),e.keywords=n.keywords,e.begin=_(n.beforeMatch,m(n.begin)),e.starts={relevance:0,contains:[Object.assign(n,{endsParent:!0})]},e.relevance=0,delete n.beforeMatch},be=[`of`,`and`,`for`,`in`,`not`,`or`,`if`,`then`,`parent`,`list`,`value`],xe=`keyword`;function Se(e,t,n=xe){let r=Object.create(null);return typeof e==`string`?i(n,e.split(` `)):Array.isArray(e)?i(n,e):Object.keys(e).forEach(function(n){Object.assign(r,Se(e[n],t,n))}),r;function i(e,n){t&&(n=n.map(e=>e.toLowerCase())),n.forEach(function(t){let n=t.split(`|`);r[n[0]]=[e,Ce(n[0],n[1])]})}}function Ce(e,t){return t?Number(t):+!we(e)}function we(e){return be.includes(e.toLowerCase())}var Te={},Ee=e=>{console.error(e)},De=(e,...t)=>{console.log(`WARN: ${e}`,...t)},Oe=(e,t)=>{Te[`${e}/${t}`]||(console.log(`Deprecated as of ${e}. ${t}`),Te[`${e}/${t}`]=!0)},ke=Error();function Ae(e,t,{key:n}){let r=0,i=e[n],a={},o={};for(let e=1;e<=t.length;e++)o[e+r]=i[e],a[e+r]=!0,r+=b(t[e-1]);e[n]=o,e[n]._emit=a,e[n]._multi=!0}function je(e){if(Array.isArray(e.begin)){if(e.skip||e.excludeBegin||e.returnBegin)throw Ee(`skip, excludeBegin, returnBegin not compatible with beginScope: {}`),ke;if(typeof e.beginScope!=`object`||e.beginScope===null)throw Ee(`beginScope must be object`),ke;Ae(e,e.begin,{key:`beginScope`}),e.begin=ne(e.begin,{joinWith:``})}}function Me(e){if(Array.isArray(e.end)){if(e.skip||e.excludeEnd||e.returnEnd)throw Ee(`skip, excludeEnd, returnEnd not compatible with endScope: {}`),ke;if(typeof e.endScope!=`object`||e.endScope===null)throw Ee(`endScope must be object`),ke;Ae(e,e.end,{key:`endScope`}),e.end=ne(e.end,{joinWith:``})}}function Ne(e){e.scope&&typeof e.scope==`object`&&e.scope!==null&&(e.beginScope=e.scope,delete e.scope)}function Pe(e){Ne(e),typeof e.beginScope==`string`&&(e.beginScope={_wrap:e.beginScope}),typeof e.endScope==`string`&&(e.endScope={_wrap:e.endScope}),je(e),Me(e)}function Fe(e){function t(t,n){return new RegExp(p(t),`m`+(e.case_insensitive?`i`:``)+(e.unicodeRegex?`u`:``)+(n?`g`:``))}class n{constructor(){this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0}addRule(e,t){t.position=this.position++,this.matchIndexes[this.matchAt]=t,this.regexes.push([t,e]),this.matchAt+=b(e)+1}compile(){this.regexes.length===0&&(this.exec=()=>null);let e=this.regexes.map(e=>e[1]);this.matcherRe=t(ne(e,{joinWith:`|`}),!0),this.lastIndex=0}exec(e){this.matcherRe.lastIndex=this.lastIndex;let t=this.matcherRe.exec(e);if(!t)return null;let n=t.findIndex((e,t)=>t>0&&e!==void 0),r=this.matchIndexes[n];return t.splice(0,n),Object.assign(t,r)}}class r{constructor(){this.rules=[],this.multiRegexes=[],this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(e){if(this.multiRegexes[e])return this.multiRegexes[e];let t=new n;return this.rules.slice(e).forEach(([e,n])=>t.addRule(e,n)),t.compile(),this.multiRegexes[e]=t,t}resumingScanAtSamePosition(){return this.regexIndex!==0}considerAll(){this.regexIndex=0}addRule(e,t){this.rules.push([e,t]),t.type===`begin`&&this.count++}exec(e){let t=this.getMatcher(this.regexIndex);t.lastIndex=this.lastIndex;let n=t.exec(e);if(this.resumingScanAtSamePosition()&&!(n&&n.index===this.lastIndex)){let t=this.getMatcher(0);t.lastIndex=this.lastIndex+1,n=t.exec(e)}return n&&(this.regexIndex+=n.position+1,this.regexIndex===this.count&&this.considerAll()),n}}function i(e){let t=new r;return e.contains.forEach(e=>t.addRule(e.begin,{rule:e,type:`begin`})),e.terminatorEnd&&t.addRule(e.terminatorEnd,{type:`end`}),e.illegal&&t.addRule(e.illegal,{type:`illegal`}),t}function o(n,r){let a=n;if(n.isCompiled)return a;[me,_e,Pe,ye].forEach(e=>e(n,r)),e.compilerExtensions.forEach(e=>e(n,r)),n.__beforeBegin=null,[he,ge,ve].forEach(e=>e(n,r)),n.isCompiled=!0;let s=null;return typeof n.keywords==`object`&&n.keywords.$pattern&&(n.keywords=Object.assign({},n.keywords),s=n.keywords.$pattern,delete n.keywords.$pattern),s||=/\w+/,n.keywords&&=Se(n.keywords,e.case_insensitive),a.keywordPatternRe=t(s,!0),r&&(n.begin||=/\B|\b/,a.beginRe=t(a.begin),!n.end&&!n.endsWithParent&&(n.end=/\B|\b/),n.end&&(a.endRe=t(a.end)),a.terminatorEnd=p(a.end)||``,n.endsWithParent&&r.terminatorEnd&&(a.terminatorEnd+=(n.end?`|`:``)+r.terminatorEnd)),n.illegal&&(a.illegalRe=t(n.illegal)),n.contains||=[],n.contains=[].concat(...n.contains.map(function(e){return Le(e===`self`?n:e)})),n.contains.forEach(function(e){o(e,a)}),n.starts&&o(n.starts,r),a.matcher=i(a),a}if(e.compilerExtensions||=[],e.contains&&e.contains.includes(`self`))throw Error("ERR: contains `self` is not supported at the top-level of a language. See documentation.");return e.classNameAliases=a(e.classNameAliases||{}),o(e)}function Ie(e){return e?e.endsWithParent||Ie(e.starts):!1}function Le(e){return e.variants&&!e.cachedVariants&&(e.cachedVariants=e.variants.map(function(t){return a(e,{variants:null},t)})),e.cachedVariants?e.cachedVariants:Ie(e)?a(e,{starts:e.starts?a(e.starts):null}):Object.isFrozen(e)?a(e):e}var Re=`11.11.1`,ze=class extends Error{constructor(e,t){super(e),this.name=`HTMLInjectionError`,this.html=t}},Be=i,Ve=a,He=Symbol(`nomatch`),Ue=7,We=function(e){let t=Object.create(null),i=Object.create(null),a=[],o=!0,s=`Could not find the language '{}', did you forget to load/include a language module?`,c={disableAutodetect:!0,name:`Plain text`,contains:[]},l={ignoreUnescapedHTML:!1,throwUnescapedHTML:!1,noHighlightRe:/^(no-?highlight)$/i,languageDetectRe:/\blang(?:uage)?-([\w-]+)\b/i,classPrefix:`hljs-`,cssSelector:`pre code`,languages:null,__emitter:f};function u(e){return l.noHighlightRe.test(e)}function d(e){let t=e.className+` `;t+=e.parentNode?e.parentNode.className:``;let n=l.languageDetectRe.exec(t);if(n){let t=le(n[1]);return t||(De(s.replace(`{}`,n[1])),De(`Falling back to no-highlight mode for this block.`,e)),t?n[1]:`no-highlight`}return t.split(/\s+/).find(e=>u(e)||le(e))}function p(e,t,n){let r=``,i=``;typeof t==`object`?(r=e,n=t.ignoreIllegals,i=t.language):(Oe(`10.7.0`,`highlight(lang, code, ...args) has been deprecated.`),Oe(`10.7.0`,`Please use highlight(code, options) instead. +https://github.com/highlightjs/highlight.js/issues/2277`),i=e,r=t),n===void 0&&(n=!0);let a={code:r,language:i};pe(`before:highlight`,a);let o=a.result?a.result:v(a.language,a.code,n);return o.code=a.code,pe(`after:highlight`,o),o}function v(e,n,i,a){let c=Object.create(null);function u(e,t){return e.keywords[t]}function d(){if(!C.keywords){ce.addText(ue);return}let e=0;C.keywordPatternRe.lastIndex=0;let t=C.keywordPatternRe.exec(ue),n=``;for(;t;){n+=ue.substring(e,t.index);let r=ae.case_insensitive?t[0].toLowerCase():t[0],i=u(C,r);if(i){let[e,a]=i;if(ce.addText(n),n=``,c[r]=(c[r]||0)+1,c[r]<=Ue&&(de+=a),e.startsWith(`_`))n+=t[0];else{let n=ae.classNameAliases[e]||e;m(t[0],n)}}else n+=t[0];e=C.keywordPatternRe.lastIndex,t=C.keywordPatternRe.exec(ue)}n+=ue.substring(e),ce.addText(n)}function f(){if(ue===``)return;let e=null;if(typeof C.subLanguage==`string`){if(!t[C.subLanguage]){ce.addText(ue);return}e=v(C.subLanguage,ue,!0,se[C.subLanguage]),se[C.subLanguage]=e._top}else e=te(ue,C.subLanguage.length?C.subLanguage:null);C.relevance>0&&(de+=e.relevance),ce.__addSublanguage(e._emitter,e.language)}function p(){C.subLanguage==null?d():f(),ue=``}function m(e,t){e!==``&&(ce.startScope(t),ce.addText(e),ce.endScope())}function h(e,t){let n=1,r=t.length-1;for(;n<=r;){if(!e._emit[n]){n++;continue}let r=ae.classNameAliases[e[n]]||e[n],i=t[n];r?m(i,r):(ue=i,d(),ue=``),n++}}function g(e,t){return e.scope&&typeof e.scope==`string`&&ce.openNode(ae.classNameAliases[e.scope]||e.scope),e.beginScope&&(e.beginScope._wrap?(m(ue,ae.classNameAliases[e.beginScope._wrap]||e.beginScope._wrap),ue=``):e.beginScope._multi&&(h(e.beginScope,t),ue=``)),C=Object.create(e,{parent:{value:C}}),C}function _(e,t,n){let i=ee(e.endRe,n);if(i){if(e[`on:end`]){let n=new r(e);e[`on:end`](t,n),n.isMatchIgnored&&(i=!1)}if(i){for(;e.endsParent&&e.parent;)e=e.parent;return e}}if(e.endsWithParent)return _(e.parent,t,n)}function y(e){return C.matcher.regexIndex===0?(ue+=e[0],1):(fe=!0,0)}function b(e){let t=e[0],n=e.rule,i=new r(n),a=[n.__beforeBegin,n[`on:begin`]];for(let n of a)if(n&&(n(e,i),i.isMatchIgnored))return y(t);return n.skip?ue+=t:(n.excludeBegin&&(ue+=t),p(),!n.returnBegin&&!n.excludeBegin&&(ue=t)),g(n,e),n.returnBegin?0:t.length}function ne(e){let t=e[0],r=n.substring(e.index),i=_(C,e,r);if(!i)return He;let a=C;C.endScope&&C.endScope._wrap?(p(),m(t,C.endScope._wrap)):C.endScope&&C.endScope._multi?(p(),h(C.endScope,e)):a.skip?ue+=t:(a.returnEnd||a.excludeEnd||(ue+=t),p(),a.excludeEnd&&(ue=t));do C.scope&&ce.closeNode(),!C.skip&&!C.subLanguage&&(de+=C.relevance),C=C.parent;while(C!==i.parent);return i.starts&&g(i.starts,e),a.returnEnd?0:t.length}function x(){let e=[];for(let t=C;t!==ae;t=t.parent)t.scope&&e.unshift(t.scope);e.forEach(e=>ce.openNode(e))}let re={};function ie(t,r){let a=r&&r[0];if(ue+=t,a==null)return p(),0;if(re.type===`begin`&&r.type===`end`&&re.index===r.index&&a===``){if(ue+=n.slice(r.index,r.index+1),!o){let t=Error(`0 width match regex (${e})`);throw t.languageName=e,t.badRule=re.rule,t}return 1}if(re=r,r.type===`begin`)return b(r);if(r.type===`illegal`&&!i){let e=Error(`Illegal lexeme "`+a+`" for mode "`+(C.scope||``)+`"`);throw e.mode=C,e}else if(r.type===`end`){let e=ne(r);if(e!==He)return e}if(r.type===`illegal`&&a===``)return ue+=` +`,1;if(T>1e5&&T>r.index*3)throw Error(`potential infinite loop, way more iterations than matches`);return ue+=a,a.length}let ae=le(e);if(!ae)throw Ee(s.replace(`{}`,e)),Error(`Unknown language: "`+e+`"`);let oe=Fe(ae),S=``,C=a||oe,se={},ce=new l.__emitter(l);x();let ue=``,de=0,w=0,T=0,fe=!1;try{if(ae.__emitTokens)ae.__emitTokens(n,ce);else{for(C.matcher.considerAll();;){T++,fe?fe=!1:C.matcher.considerAll(),C.matcher.lastIndex=w;let e=C.matcher.exec(n);if(!e)break;let t=ie(n.substring(w,e.index),e);w=e.index+t}ie(n.substring(w))}return ce.finalize(),S=ce.toHTML(),{language:e,value:S,relevance:de,illegal:!1,_emitter:ce,_top:C}}catch(t){if(t.message&&t.message.includes(`Illegal`))return{language:e,value:Be(n),illegal:!0,relevance:0,_illegalBy:{message:t.message,index:w,context:n.slice(w-100,w+100),mode:t.mode,resultSoFar:S},_emitter:ce};if(o)return{language:e,value:Be(n),illegal:!1,relevance:0,errorRaised:t,_emitter:ce,_top:C};throw t}}function b(e){let t={value:Be(e),illegal:!1,relevance:0,_top:c,_emitter:new l.__emitter(l)};return t._emitter.addText(e),t}function te(e,n){n=n||l.languages||Object.keys(t);let r=b(e),i=n.filter(le).filter(de).map(t=>v(t,e,!1));i.unshift(r);let[a,o]=i.sort((e,t)=>{if(e.relevance!==t.relevance)return t.relevance-e.relevance;if(e.language&&t.language){if(le(e.language).supersetOf===t.language)return 1;if(le(t.language).supersetOf===e.language)return-1}return 0}),s=a;return s.secondBest=o,s}function ne(e,t,n){let r=t&&i[t]||n;e.classList.add(`hljs`),e.classList.add(`language-${r}`)}function x(e){let t=null,n=d(e);if(u(n))return;if(pe(`before:highlightElement`,{el:e,language:n}),e.dataset.highlighted){console.log("Element previously highlighted. To highlight again, first unset `dataset.highlighted`.",e);return}if(e.children.length>0&&(l.ignoreUnescapedHTML||(console.warn(`One of your code blocks includes unescaped HTML. This is a potentially serious security risk.`),console.warn(`https://github.com/highlightjs/highlight.js/wiki/security`),console.warn(`The element with unescaped HTML:`),console.warn(e)),l.throwUnescapedHTML))throw new ze(`One of your code blocks includes unescaped HTML.`,e.innerHTML);t=e;let r=t.textContent,i=n?p(r,{language:n,ignoreIllegals:!0}):te(r);e.innerHTML=i.value,e.dataset.highlighted=`yes`,ne(e,n,i.language),e.result={language:i.language,re:i.relevance,relevance:i.relevance},i.secondBest&&(e.secondBest={language:i.secondBest.language,relevance:i.secondBest.relevance}),pe(`after:highlightElement`,{el:e,result:i,text:r})}function re(e){l=Ve(l,e)}let ie=()=>{S(),Oe(`10.6.0`,`initHighlighting() deprecated. Use highlightAll() now.`)};function ae(){S(),Oe(`10.6.0`,`initHighlightingOnLoad() deprecated. Use highlightAll() now.`)}let oe=!1;function S(){function e(){S()}if(document.readyState===`loading`){oe||window.addEventListener(`DOMContentLoaded`,e,!1),oe=!0;return}document.querySelectorAll(l.cssSelector).forEach(x)}function C(n,r){let i=null;try{i=r(e)}catch(e){if(Ee(`Language definition for '{}' could not be registered.`.replace(`{}`,n)),o)Ee(e);else throw e;i=c}i.name||=n,t[n]=i,i.rawDefinition=r.bind(null,e),i.aliases&&ue(i.aliases,{languageName:n})}function se(e){delete t[e];for(let t of Object.keys(i))i[t]===e&&delete i[t]}function ce(){return Object.keys(t)}function le(e){return e=(e||``).toLowerCase(),t[e]||t[i[e]]}function ue(e,{languageName:t}){typeof e==`string`&&(e=[e]),e.forEach(e=>{i[e.toLowerCase()]=t})}function de(e){let t=le(e);return t&&!t.disableAutodetect}function w(e){e[`before:highlightBlock`]&&!e[`before:highlightElement`]&&(e[`before:highlightElement`]=t=>{e[`before:highlightBlock`](Object.assign({block:t.el},t))}),e[`after:highlightBlock`]&&!e[`after:highlightElement`]&&(e[`after:highlightElement`]=t=>{e[`after:highlightBlock`](Object.assign({block:t.el},t))})}function T(e){w(e),a.push(e)}function fe(e){let t=a.indexOf(e);t!==-1&&a.splice(t,1)}function pe(e,t){let n=e;a.forEach(function(e){e[n]&&e[n](t)})}function D(e){return Oe(`10.7.0`,`highlightBlock will be removed entirely in v12.0`),Oe(`10.7.0`,`Please use highlightElement now.`),x(e)}Object.assign(e,{highlight:p,highlightAuto:te,highlightAll:S,highlightElement:x,highlightBlock:D,configure:re,initHighlighting:ie,initHighlightingOnLoad:ae,registerLanguage:C,unregisterLanguage:se,listLanguages:ce,getLanguage:le,registerAliases:ue,autoDetection:de,inherit:Ve,addPlugin:T,removePlugin:fe}),e.debugMode=function(){o=!1},e.safeMode=function(){o=!0},e.versionString=Re,e.regex={concat:_,lookahead:m,either:y,optional:g,anyNumberOfTimes:h};for(let e in E)typeof E[e]==`object`&&n(E[e]);return Object.assign(e,E),e},Ge=We({});Ge.newInstance=()=>We({}),t.exports=Ge,Ge.HighlightJS=Ge,Ge.default=Ge}))()).default,UR={},nit=`hljs-`,rit=class{constructor(e){this.options=e,this.root={type:`root`,children:[],data:{language:void 0,relevance:0}},this.stack=[this.root]}addText(e){if(e===``)return;let t=this.stack[this.stack.length-1],n=t.children[t.children.length-1];n&&n.type===`text`?n.value+=e:t.children.push({type:`text`,value:e})}startScope(e){this.openNode(String(e))}endScope(){this.closeNode()}__addSublanguage(e,t){let n=this.stack[this.stack.length-1],r=e.root.children;t?n.children.push({type:`element`,tagName:`span`,properties:{className:[t]},children:r}):n.children.push(...r)}openNode(e){let t=this,n=e.split(`.`).map(function(e,n){return n?e+`_`.repeat(n):t.options.classPrefix+e}),r=this.stack[this.stack.length-1],i={type:`element`,tagName:`span`,properties:{className:n},children:[]};r.children.push(i),this.stack.push(i)}closeNode(){this.stack.pop()}finalize(){}toHTML(){return``}},iit={}}));function ait(e){let t=`[#]?[a-zA-Z_\\-!.?+*=<>&'][a-zA-Z_\\-!.?+*=<>&'0-9/;:$#]*`,n=`def defonce defprotocol defstruct defmulti defmethod defn- defn defmacro deftype defrecord`,r={$pattern:t,built_in:`def defonce defprotocol defstruct defmulti defmethod defn- defn defmacro deftype defrecord cond apply if-not if-let if not not= =|0 <|0 >|0 <=|0 >=|0 ==|0 +|0 /|0 *|0 -|0 rem quot neg? pos? delay? symbol? keyword? true? false? integer? empty? coll? list? set? ifn? fn? associative? sequential? sorted? counted? reversible? number? decimal? class? distinct? isa? float? rational? reduced? ratio? odd? even? char? seq? vector? string? map? nil? contains? zero? instance? not-every? not-any? libspec? -> ->> .. . inc compare do dotimes mapcat take remove take-while drop letfn drop-last take-last drop-while while intern condp case reduced cycle split-at split-with repeat replicate iterate range merge zipmap declare line-seq sort comparator sort-by dorun doall nthnext nthrest partition eval doseq await await-for let agent atom send send-off release-pending-sends add-watch mapv filterv remove-watch agent-error restart-agent set-error-handler error-handler set-error-mode! error-mode shutdown-agents quote var fn loop recur throw try monitor-enter monitor-exit macroexpand macroexpand-1 for dosync and or when when-not when-let comp juxt partial sequence memoize constantly complement identity assert peek pop doto proxy first rest cons cast coll last butlast sigs reify second ffirst fnext nfirst nnext meta with-meta ns in-ns create-ns import refer keys select-keys vals key val rseq name namespace promise into transient persistent! conj! assoc! dissoc! pop! disj! use class type num float double short byte boolean bigint biginteger bigdec print-method print-dup throw-if printf format load compile get-in update-in pr pr-on newline flush read slurp read-line subvec with-open memfn time re-find re-groups rand-int rand mod locking assert-valid-fdecl alias resolve ref deref refset swap! reset! set-validator! compare-and-set! alter-meta! reset-meta! commute get-validator alter ref-set ref-history-count ref-min-history ref-max-history ensure sync io! new next conj set! to-array future future-call into-array aset gen-class reduce map filter find empty hash-map hash-set sorted-map sorted-map-by sorted-set sorted-set-by vec vector seq flatten reverse assoc dissoc list disj get union difference intersection extend extend-type extend-protocol int nth delay count concat chunk chunk-buffer chunk-append chunk-first chunk-rest max min dec unchecked-inc-int unchecked-inc unchecked-dec-inc unchecked-dec unchecked-negate unchecked-add-int unchecked-add unchecked-subtract-int unchecked-subtract chunk-next chunk-cons chunked-seq? prn vary-meta lazy-seq spread list* str find-keyword keyword symbol gensym force rationalize`},i={begin:t,relevance:0},a={scope:`number`,relevance:0,variants:[{match:/[-+]?0[xX][0-9a-fA-F]+N?/},{match:/[-+]?0[0-7]+N?/},{match:/[-+]?[1-9][0-9]?[rR][0-9a-zA-Z]+N?/},{match:/[-+]?[0-9]+\/[0-9]+N?/},{match:/[-+]?[0-9]+((\.[0-9]*([eE][+-]?[0-9]+)?M?)|([eE][+-]?[0-9]+M?|M))/},{match:/[-+]?([1-9][0-9]*|0)N?/}]},o={scope:`character`,variants:[{match:/\\o[0-3]?[0-7]{1,2}/},{match:/\\u[0-9a-fA-F]{4}/},{match:/\\(newline|space|tab|formfeed|backspace|return)/},{match:/\\\S/,relevance:0}]},s={scope:`regex`,begin:/#"/,end:/"/,contains:[e.BACKSLASH_ESCAPE]},c=e.inherit(e.QUOTE_STRING_MODE,{illegal:null}),l={scope:`punctuation`,match:/,/,relevance:0},u=e.COMMENT(`;`,`$`,{relevance:0}),d={className:`literal`,begin:/\b(true|false|nil)\b/},f={begin:`\\[|(#::?[#]?[a-zA-Z_\\-!.?+*=<>&'][a-zA-Z_\\-!.?+*=<>&'0-9/;:$#]*)?\\{`,end:`[\\]\\}]`,relevance:0},p={className:`symbol`,begin:`[:]{1,2}[#]?[a-zA-Z_\\-!.?+*=<>&'][a-zA-Z_\\-!.?+*=<>&'0-9/;:$#]*`},m={begin:`\\(`,end:`\\)`},h={endsWithParent:!0,relevance:0},g={keywords:r,className:`name`,begin:t,relevance:0,starts:h},_=[l,m,o,s,c,u,p,f,a,d,i];return m.contains=[{beginKeywords:n,keywords:{$pattern:t,keyword:n},end:`(\\[|#|\\d|"|:|\\{|\\)|\\(|$)`,contains:[{className:`title`,begin:t,relevance:0,excludeEnd:!0,endsParent:!0}].concat(_)},g,h],h.contains=_,f.contains=_,{name:`Clojure`,aliases:[`clj`,`edn`],illegal:/\S/,contains:[l,m,o,s,c,u,p,f,a,d]}}function oit(e){let t={className:`subst`,variants:[{begin:`\\$[A-Za-z0-9_]+`}]},n={className:`subst`,variants:[{begin:/\$\{/,end:/\}/}],keywords:`true false null this is new super`},r={className:`number`,relevance:0,variants:[{match:/\b[0-9][0-9_]*(\.[0-9][0-9_]*)?([eE][+-]?[0-9][0-9_]*)?\b/},{match:/\b0[xX][0-9A-Fa-f][0-9A-Fa-f_]*\b/}]},i={className:`string`,variants:[{begin:`r'''`,end:`'''`},{begin:`r"""`,end:`"""`},{begin:`r'`,end:`'`,illegal:`\\n`},{begin:`r"`,end:`"`,illegal:`\\n`},{begin:`'''`,end:`'''`,contains:[e.BACKSLASH_ESCAPE,t,n]},{begin:`"""`,end:`"""`,contains:[e.BACKSLASH_ESCAPE,t,n]},{begin:`'`,end:`'`,illegal:`\\n`,contains:[e.BACKSLASH_ESCAPE,t,n]},{begin:`"`,end:`"`,illegal:`\\n`,contains:[e.BACKSLASH_ESCAPE,t,n]}]};n.contains=[r,i];let a=`Comparable.DateTime.Duration.Function.Iterable.Iterator.List.Map.Match.Object.Pattern.RegExp.Set.Stopwatch.String.StringBuffer.StringSink.Symbol.Type.Uri.bool.double.int.num.Element.ElementList`.split(`.`),o=a.map(e=>`${e}?`);return{name:`Dart`,keywords:{keyword:`abstract.as.assert.async.await.base.break.case.catch.class.const.continue.covariant.default.deferred.do.dynamic.else.enum.export.extends.extension.external.factory.false.final.finally.for.Function.get.hide.if.implements.import.in.interface.is.late.library.mixin.new.null.on.operator.part.required.rethrow.return.sealed.set.show.static.super.switch.sync.this.throw.true.try.typedef.var.void.when.while.with.yield`.split(`.`),built_in:a.concat(o).concat([`Never`,`Null`,`dynamic`,`print`,`document`,`querySelector`,`querySelectorAll`,`window`]),$pattern:/[A-Za-z][A-Za-z0-9_]*\??/},contains:[i,e.COMMENT(/\/\*\*(?!\/)/,/\*\//,{subLanguage:`markdown`,relevance:0}),e.COMMENT(/\/{3,} ?/,/$/,{contains:[{subLanguage:`markdown`,begin:`.`,end:`$`,relevance:0}]}),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:`class`,beginKeywords:`class interface`,end:/\{/,excludeEnd:!0,contains:[{beginKeywords:`extends implements`},e.UNDERSCORE_TITLE_MODE]},r,{className:`meta`,begin:`@[A-Za-z]+`},{begin:`=>`}]}}function sit(e){return{name:`Dockerfile`,aliases:[`docker`],case_insensitive:!0,keywords:[`from`,`maintainer`,`expose`,`env`,`arg`,`user`,`onbuild`,`stopsignal`],contains:[e.HASH_COMMENT_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.NUMBER_MODE,{beginKeywords:`run cmd entrypoint volume add copy workdir label healthcheck shell`,starts:{end:/[^\\]$/,subLanguage:`bash`}}],illegal:`/}],c=e=>({scope:`char.escape`,begin:t.concat(/\\/,e),relevance:0}),l={className:`string`,begin:`~[a-z](?=[/|([{<"'])`,contains:s.map(t=>e.inherit(t,{contains:[c(t.end),o,i]}))},u={className:`string`,begin:`~[A-Z](?=[/|([{<"'])`,contains:s.map(t=>e.inherit(t,{contains:[c(t.end)]}))},d={className:`regex`,variants:[{begin:`~r(?=[/|([{<"'])`,contains:s.map(n=>e.inherit(n,{end:t.concat(n.end,/[uismxfU]{0,7}/),contains:[c(n.end),o,i]}))},{begin:`~R(?=[/|([{<"'])`,contains:s.map(n=>e.inherit(n,{end:t.concat(n.end,/[uismxfU]{0,7}/),contains:[c(n.end)]}))}]},f={className:`string`,contains:[e.BACKSLASH_ESCAPE,i],variants:[{begin:/"""/,end:/"""/},{begin:/'''/,end:/'''/},{begin:/~S"""/,end:/"""/,contains:[]},{begin:/~S"/,end:/"/,contains:[]},{begin:/~S'''/,end:/'''/,contains:[]},{begin:/~S'/,end:/'/,contains:[]},{begin:/'/,end:/'/},{begin:/"/,end:/"/}]},p={className:`function`,beginKeywords:`def defp defmacro defmacrop`,end:/\B\b/,contains:[e.inherit(e.TITLE_MODE,{begin:n,endsParent:!0})]},m=e.inherit(p,{className:`class`,beginKeywords:`defimpl defmodule defprotocol defrecord`,end:/\bdo\b|$|;/}),h=[f,d,u,l,e.HASH_COMMENT_MODE,m,p,{begin:`::`},{className:`symbol`,begin:`:(?![\\s:])`,contains:[f,{begin:"[a-zA-Z_]\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?"}],relevance:0},{className:`symbol`,begin:`[a-zA-Z_][a-zA-Z0-9_.]*(!|\\?)?:(?!:)`,relevance:0},{className:`title.class`,begin:/(\b[A-Z][a-zA-Z0-9_]+)/,relevance:0},a,{className:`variable`,begin:`(\\$\\W)|((\\$|@@?)(\\w+))`}];return i.contains=h,{name:`Elixir`,aliases:[`ex`,`exs`],keywords:r,contains:h}}function lit(e){return new RegExp(e.replace(/[-/\\^$*+?.()|[\]{}]/g,`\\$&`),`m`)}function uit(e){return e?typeof e==`string`?e:e.source:null}function GR(e){return KR(`(?=`,e,`)`)}function KR(...e){return e.map(e=>uit(e)).join(``)}function dit(e){let t=e[e.length-1];return typeof t==`object`&&t.constructor===Object?(e.splice(e.length-1,1),t):{}}function qR(...e){return`(`+(dit(e).capture?``:`?:`)+e.map(e=>uit(e)).join(`|`)+`)`}function fit(e){let t=`abstract.and.as.assert.base.begin.class.default.delegate.do.done.downcast.downto.elif.else.end.exception.extern.finally.fixed.for.fun.function.global.if.in.inherit.inline.interface.internal.lazy.let.match.member.module.mutable.namespace.new.of.open.or.override.private.public.rec.return.static.struct.then.to.try.type.upcast.use.val.void.when.while.with.yield`.split(`.`),n={scope:`keyword`,match:/\b(yield|return|let|do|match|use)!/},r=[`if`,`else`,`endif`,`line`,`nowarn`,`light`,`r`,`i`,`I`,`load`,`time`,`help`,`quit`],i=[`true`,`false`,`null`,`Some`,`None`,`Ok`,`Error`,`infinity`,`infinityf`,`nan`,`nanf`],a=[`__LINE__`,`__SOURCE_DIRECTORY__`,`__SOURCE_FILE__`],o=`bool.byte.sbyte.int8.int16.int32.uint8.uint16.uint32.int.uint.int64.uint64.nativeint.unativeint.decimal.float.double.float32.single.char.string.unit.bigint.option.voption.list.array.seq.byref.exn.inref.nativeptr.obj.outref.voidptr.Result`.split(`.`),s={keyword:t,literal:i,built_in:`not.ref.raise.reraise.dict.readOnlyDict.set.get.enum.sizeof.typeof.typedefof.nameof.nullArg.invalidArg.invalidOp.id.fst.snd.ignore.lock.using.box.unbox.tryUnbox.printf.printfn.sprintf.eprintf.eprintfn.fprintf.fprintfn.failwith.failwithf`.split(`.`),"variable.constant":a},c={variants:[e.COMMENT(/\(\*(?!\))/,/\*\)/,{contains:[`self`]}),e.C_LINE_COMMENT_MODE]},l=/[a-zA-Z_](\w|')*/,u={scope:`variable`,begin:/``/,end:/``/},d=/\B('|\^)/,f={scope:`symbol`,variants:[{match:KR(d,/``.*?``/)},{match:KR(d,e.UNDERSCORE_IDENT_RE)}],relevance:0},p=function({includeEqual:e}){let t;t=e?`!%&*+-/<=>@^|~?`:`!%&*+-/<>@^|~?`;let n=KR(`[`,...Array.from(t).map(lit),`]`),r=qR(n,/\./);return{scope:`operator`,match:qR(qR(KR(KR(r,GR(r)),r,`*`),KR(n,`+`)),/:\?>/,/:\?/,/:>/,/:=/,/::?/,/\$/),relevance:0}},m=p({includeEqual:!0}),h=p({includeEqual:!1}),g=function(t,n){return{begin:KR(t,GR(KR(/\s*/,qR(/\w/,/'/,/\^/,/#/,/``/,/\(/,/{\|/)))),beginScope:n,end:GR(qR(/\n/,/=/)),relevance:0,keywords:e.inherit(s,{type:o}),contains:[c,f,e.inherit(u,{scope:null}),h]}},_=g(/:/,`operator`),v=g(/\bof\b/,`keyword`),y={begin:[/(^|\s+)/,/type/,/\s+/,l],beginScope:{2:`keyword`,4:`title.class`},end:GR(/\(|=|$/),keywords:s,contains:[c,e.inherit(u,{scope:null}),f,{scope:`operator`,match:/<|>/},_]},b={scope:`computation-expression`,match:/\b[_a-z]\w*(?=\s*\{)/},ee={begin:[/^\s*/,KR(/#/,qR(...r)),/\b/],beginScope:{2:`meta`},end:GR(/\s|$/)},te={variants:[e.BINARY_NUMBER_MODE,e.C_NUMBER_MODE]},ne={scope:`string`,begin:/"/,end:/"/,contains:[e.BACKSLASH_ESCAPE]},x={scope:`string`,begin:/@"/,end:/"/,contains:[{match:/""/},e.BACKSLASH_ESCAPE]},re={scope:`string`,begin:/"""/,end:/"""/,relevance:2},ie={scope:`subst`,begin:/\{/,end:/\}/,keywords:s},ae={scope:`string`,begin:/\$"/,end:/"/,contains:[{match:/\{\{/},{match:/\}\}/},e.BACKSLASH_ESCAPE,ie]},oe={scope:`string`,begin:/(\$@|@\$)"/,end:/"/,contains:[{match:/\{\{/},{match:/\}\}/},{match:/""/},e.BACKSLASH_ESCAPE,ie]},S={scope:`string`,begin:/\$"""/,end:/"""/,contains:[{match:/\{\{/},{match:/\}\}/},ie],relevance:2},C={scope:`string`,match:KR(/'/,qR(/[^\\']/,/\\(?:.|\d{3}|x[a-fA-F\d]{2}|u[a-fA-F\d]{4}|U[a-fA-F\d]{8})/),/'/)};return ie.contains=[oe,ae,x,ne,C,n,c,u,_,b,ee,te,f,m],{name:`F#`,aliases:[`fs`,`f#`],keywords:s,illegal:/\/\*/,classNameAliases:{"computation-expression":`keyword`},contains:[n,{variants:[S,oe,ae,re,x,ne,C]},c,u,y,{scope:`meta`,begin:/\[\]/,relevance:2,contains:[u,re,x,ne,C,te]},v,_,b,ee,te,f,m]}}function pit(e){let t=`([0-9]_*)+`,n=`([0-9a-fA-F]_*)+`,r=`([!#$%&*+.\\/<=>?@\\\\^~-]|(?!([(),;\\[\\]\`|{}]|[_:"']))(\\p{S}|\\p{P}))`,i={variants:[e.COMMENT(`--+`,`$`),e.COMMENT(/\{-/,/-\}/,{contains:[`self`]})]},a={className:`meta`,begin:/\{-#/,end:/#-\}/},o={className:`meta`,begin:`^#`,end:`$`},s={className:`type`,begin:`\\b[A-Z][\\w']*`,relevance:0},c={begin:`\\(`,end:`\\)`,illegal:`"`,contains:[a,o,{className:`type`,begin:`\\b[A-Z][\\w]*(\\((\\.\\.|,|\\w+)\\))?`},e.inherit(e.TITLE_MODE,{begin:`[_a-z][\\w']*`}),i]},l={begin:/\{/,end:/\}/,contains:c.contains},u={className:`number`,relevance:0,variants:[{match:`\\b(${t})(\\.(${t}))?([eE][+-]?(${t}))?\\b`},{match:`\\b0[xX]_*(${n})(\\.(${n}))?([pP][+-]?(${t}))?\\b`},{match:`\\b0[oO](([0-7]_*)+)\\b`},{match:`\\b0[bB](([01]_*)+)\\b`}]};return{name:`Haskell`,aliases:[`hs`],keywords:`let in if then else case of where do module import hiding qualified type data newtype deriving class instance as default infix infixl infixr foreign export ccall stdcall cplusplus jvm dotnet safe unsafe family forall mdo proc rec`,unicodeRegex:!0,contains:[{beginKeywords:`module`,end:`where`,keywords:`module where`,contains:[c,i],illegal:`\\W\\.|;`},{begin:`\\bimport\\b`,end:`$`,keywords:`import qualified as hiding`,contains:[c,i],illegal:`\\W\\.|;`},{className:`class`,begin:`^(\\s*)?(class|instance)\\b`,end:`where`,keywords:`class family instance where`,contains:[s,c,i]},{className:`class`,begin:`\\b(data|(new)?type)\\b`,end:`$`,keywords:`data family type newtype deriving`,contains:[a,s,c,l,i]},{beginKeywords:`default`,end:`$`,contains:[s,c,i]},{beginKeywords:`infix infixl infixr`,end:`$`,contains:[e.C_NUMBER_MODE,i]},{begin:`\\bforeign\\b`,end:`$`,keywords:`foreign import export ccall stdcall cplusplus jvm dotnet safe unsafe`,contains:[s,e.QUOTE_STRING_MODE,i]},{className:`meta`,begin:`#!\\/usr\\/bin\\/env runhaskell`,end:`$`},a,o,{scope:`string`,begin:/'(?=\\?.')/,end:/'/,contains:[{scope:`char.escape`,match:/\\./}]},e.QUOTE_STRING_MODE,u,s,e.inherit(e.TITLE_MODE,{begin:`^[_a-z][\\w']*`}),{begin:`(?!-)${r}--+|--+(?!-)${r}`},i,{begin:`->|<-`}]}}function mit(e){let t=e.regex,n=`HTTP/([32]|1\\.[01])`,r={className:`attribute`,begin:t.concat(`^`,/[A-Za-z][A-Za-z0-9-]*/,`(?=\\:\\s)`),starts:{contains:[{className:`punctuation`,begin:/: /,relevance:0,starts:{end:`$`,relevance:0}}]}},i=[r,{begin:`\\n\\n`,starts:{subLanguage:[],endsWithParent:!0}}];return{name:`HTTP`,aliases:[`https`],illegal:/\S/,contains:[{begin:`^(?=HTTP/([32]|1\\.[01]) \\d{3})`,end:/$/,contains:[{className:`meta`,begin:n},{className:`number`,begin:`\\b\\d{3}\\b`}],starts:{end:/\b\B/,illegal:/\S/,contains:i}},{begin:`(?=^[A-Z]+ (.*?) HTTP/([32]|1\\.[01])$)`,end:/$/,contains:[{className:`string`,begin:` `,end:` `,excludeBegin:!0,excludeEnd:!0},{className:`meta`,begin:n},{className:`keyword`,begin:`[A-Z]+`}],starts:{end:/\b\B/,illegal:/\S/,contains:i}},e.inherit(r,{relevance:0})]}}function hit(e){let t={relevance:0,contains:[{begin:`('|\\.')+`}]};return{name:`Matlab`,keywords:{keyword:`arguments break case catch classdef continue else elseif end enumeration events for function global if methods otherwise parfor persistent properties return spmd switch try while`,built_in:`sin sind sinh asin asind asinh cos cosd cosh acos acosd acosh tan tand tanh atan atand atan2 atanh sec secd sech asec asecd asech csc cscd csch acsc acscd acsch cot cotd coth acot acotd acoth hypot exp expm1 log log1p log10 log2 pow2 realpow reallog realsqrt sqrt nthroot nextpow2 abs angle complex conj imag real unwrap isreal cplxpair fix floor ceil round mod rem sign airy besselj bessely besselh besseli besselk beta betainc betaln ellipj ellipke erf erfc erfcx erfinv expint gamma gammainc gammaln psi legendre cross dot factor isprime primes gcd lcm rat rats perms nchoosek factorial cart2sph cart2pol pol2cart sph2cart hsv2rgb rgb2hsv zeros ones eye repmat rand randn linspace logspace freqspace meshgrid accumarray size length ndims numel disp isempty isequal isequalwithequalnans cat reshape diag blkdiag tril triu fliplr flipud flipdim rot90 find sub2ind ind2sub bsxfun ndgrid permute ipermute shiftdim circshift squeeze isscalar isvector ans eps realmax realmin pi i|0 inf nan isnan isinf isfinite j|0 why compan gallery hadamard hankel hilb invhilb magic pascal rosser toeplitz vander wilkinson max min nanmax nanmin mean nanmean type table readtable writetable sortrows sort figure plot plot3 scatter scatter3 cellfun legend intersect ismember procrustes hold num2cell `},illegal:`(//|"|#|/\\*|\\s+/\\w+)`,contains:[{className:`function`,beginKeywords:`function`,end:`$`,contains:[e.UNDERSCORE_TITLE_MODE,{className:`params`,variants:[{begin:`\\(`,end:`\\)`},{begin:`\\[`,end:`\\]`}]}]},{className:`built_in`,begin:/true|false/,relevance:0,starts:t},{begin:`[a-zA-Z][a-zA-Z_0-9]*('|\\.')+`,relevance:0},{className:`number`,begin:e.C_NUMBER_RE,relevance:0,starts:t},{className:`string`,begin:`'`,end:`'`,contains:[{begin:`''`}]},{begin:/\]|\}|\)/,relevance:0,starts:t},{className:`string`,begin:`"`,end:`"`,contains:[{begin:`""`}],starts:t},e.COMMENT(`^\\s*%\\{\\s*$`,`^\\s*%\\}\\s*$`),e.COMMENT(`%`,`$`)]}}function git(e){let t=e.regex,n={className:`variable`,variants:[{begin:/\$\d+/},{begin:/\$\{\w+\}/},{begin:t.concat(/[$@]/,e.UNDERSCORE_IDENT_RE)}]},r={endsWithParent:!0,keywords:{$pattern:/[a-z_]{2,}|\/dev\/poll/,literal:[`on`,`off`,`yes`,`no`,`true`,`false`,`none`,`blocked`,`debug`,`info`,`notice`,`warn`,`error`,`crit`,`select`,`break`,`last`,`permanent`,`redirect`,`kqueue`,`rtsig`,`epoll`,`poll`,`/dev/poll`]},relevance:0,illegal:`=>`,contains:[e.HASH_COMMENT_MODE,{className:`string`,contains:[e.BACKSLASH_ESCAPE,n],variants:[{begin:/"/,end:/"/},{begin:/'/,end:/'/}]},{begin:`([a-z]+):/`,end:`\\s`,endsWithParent:!0,excludeEnd:!0,contains:[n]},{className:`regexp`,contains:[e.BACKSLASH_ESCAPE,n],variants:[{begin:`\\s\\^`,end:`\\s|\\{|;`,returnEnd:!0},{begin:`~\\*?\\s+`,end:`\\s|\\{|;`,returnEnd:!0},{begin:`\\*(\\.[a-z\\-]+)+`},{begin:`([a-z\\-]+\\.)+\\*`}]},{className:`number`,begin:`\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b`},{className:`number`,begin:`\\b\\d+[kKmMgGdshdwy]?\\b`,relevance:0},n]};return{name:`Nginx config`,aliases:[`nginxconf`],contains:[e.HASH_COMMENT_MODE,{beginKeywords:`upstream location`,end:/;|\{/,contains:r.contains,keywords:{section:`upstream location`}},{className:`section`,begin:t.concat(e.UNDERSCORE_IDENT_RE+t.lookahead(/\s+\{/)),relevance:0},{begin:t.lookahead(e.UNDERSCORE_IDENT_RE+`\\s`),end:`;|\\{`,contains:[{className:`attribute`,begin:e.UNDERSCORE_IDENT_RE,starts:r}],relevance:0}],illegal:`[^\\s\\}\\{]`}}function _it(e){return{name:`OCaml`,aliases:[`ml`],keywords:{$pattern:`[a-z_]\\w*!?`,keyword:`and as assert asr begin class constraint do done downto else end exception external for fun function functor if in include inherit! inherit initializer land lazy let lor lsl lsr lxor match method!|10 method mod module mutable new object of open! open or private rec sig struct then to try type val! val virtual when while with parser value`,built_in:`array bool bytes char exn|5 float int int32 int64 list lazy_t|5 nativeint|5 string unit in_channel out_channel ref`,literal:`true false`},illegal:/\/\/|>>/,contains:[{className:`literal`,begin:`\\[(\\|\\|)?\\]|\\(\\)`,relevance:0},e.COMMENT(`\\(\\*`,`\\*\\)`,{contains:[`self`]}),{className:`symbol`,begin:`'[A-Za-z_](?!')[\\w']*`},{className:`type`,begin:"`[A-Z][\\w']*"},{className:`type`,begin:`\\b[A-Z][\\w']*`,relevance:0},{begin:`[a-z_]\\w*'[\\w']*`,relevance:0},e.inherit(e.APOS_STRING_MODE,{className:`string`,relevance:0}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null}),{className:`number`,begin:`\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)`,relevance:0},{begin:/->/}]}}function vit(e){let t=[`string`,`char`,`byte`,`int`,`long`,`bool`,`decimal`,`single`,`double`,`DateTime`,`xml`,`array`,`hashtable`,`void`],n={$pattern:/-?[A-z\.\-]+\b/,keyword:`if else foreach return do while until elseif begin for trap data dynamicparam end break throw param continue finally in switch exit filter try process catch hidden static parameter`,built_in:`ac asnp cat cd CFS chdir clc clear clhy cli clp cls clv cnsn compare copy cp cpi cpp curl cvpa dbp del diff dir dnsn ebp echo|0 epal epcsv epsn erase etsn exsn fc fhx fl ft fw gal gbp gc gcb gci gcm gcs gdr gerr ghy gi gin gjb gl gm gmo gp gps gpv group gsn gsnp gsv gtz gu gv gwmi h history icm iex ihy ii ipal ipcsv ipmo ipsn irm ise iwmi iwr kill lp ls man md measure mi mount move mp mv nal ndr ni nmo npssc nsn nv ogv oh popd ps pushd pwd r rbp rcjb rcsn rd rdr ren ri rjb rm rmdir rmo rni rnp rp rsn rsnp rujb rv rvpa rwmi sajb sal saps sasv sbp sc scb select set shcm si sl sleep sls sort sp spjb spps spsv start stz sujb sv swmi tee trcm type wget where wjb write`},r=/\w[\w\d]*((-)[\w\d]+)*/,i={begin:"`[\\s\\S]",relevance:0},a={className:`variable`,variants:[{begin:/\$\B/},{className:`keyword`,begin:/\$this/},{begin:/\$[\w\d][\w\d_:]*/}]},o={className:`literal`,begin:/\$(null|true|false)\b/},s={className:`string`,variants:[{begin:/"/,end:/"/},{begin:/@"/,end:/^"@/}],contains:[i,a,{className:`variable`,begin:/\$[A-z]/,end:/[^A-z]/}]},c={className:`string`,variants:[{begin:/'/,end:/'/},{begin:/@'/,end:/^'@/}]},l=e.inherit(e.COMMENT(null,null),{variants:[{begin:/#/,end:/$/},{begin:/<#/,end:/#>/}],contains:[{className:`doctag`,variants:[{begin:/\.(synopsis|description|example|inputs|outputs|notes|link|component|role|functionality)/},{begin:/\.(parameter|forwardhelptargetname|forwardhelpcategory|remotehelprunspace|externalhelp)\s+\S+/}]}]}),u={className:`built_in`,variants:[{begin:`(Add|Clear|Close|Copy|Enter|Exit|Find|Format|Get|Hide|Join|Lock|Move|New|Open|Optimize|Pop|Push|Redo|Remove|Rename|Reset|Resize|Search|Select|Set|Show|Skip|Split|Step|Switch|Undo|Unlock|Watch|Backup|Checkpoint|Compare|Compress|Convert|ConvertFrom|ConvertTo|Dismount|Edit|Expand|Export|Group|Import|Initialize|Limit|Merge|Mount|Out|Publish|Restore|Save|Sync|Unpublish|Update|Approve|Assert|Build|Complete|Confirm|Deny|Deploy|Disable|Enable|Install|Invoke|Register|Request|Restart|Resume|Start|Stop|Submit|Suspend|Uninstall|Unregister|Wait|Debug|Measure|Ping|Repair|Resolve|Test|Trace|Connect|Disconnect|Read|Receive|Send|Write|Block|Grant|Protect|Revoke|Unblock|Unprotect|Use|ForEach|Sort|Tee|Where)+(-)[\\w\\d]+`}]},d={className:`class`,beginKeywords:`class enum`,end:/\s*[{]/,excludeEnd:!0,relevance:0,contains:[e.TITLE_MODE]},f={className:`function`,begin:/function\s+/,end:/\s*\{|$/,excludeEnd:!0,returnBegin:!0,relevance:0,contains:[{begin:`function`,relevance:0,className:`keyword`},{className:`title`,begin:r,relevance:0},{begin:/\(/,end:/\)/,className:`params`,relevance:0,contains:[a]}]},p={begin:/using\s/,end:/$/,returnBegin:!0,contains:[s,c,{className:`keyword`,begin:/(using|assembly|command|module|namespace|type)/}]},m={variants:[{className:`operator`,begin:`(-and|-as|-band|-bnot|-bor|-bxor|-casesensitive|-ccontains|-ceq|-cge|-cgt|-cle|-clike|-clt|-cmatch|-cne|-cnotcontains|-cnotlike|-cnotmatch|-contains|-creplace|-csplit|-eq|-exact|-f|-file|-ge|-gt|-icontains|-ieq|-ige|-igt|-ile|-ilike|-ilt|-imatch|-in|-ine|-inotcontains|-inotlike|-inotmatch|-ireplace|-is|-isnot|-isplit|-join|-le|-like|-lt|-match|-ne|-not|-notcontains|-notin|-notlike|-notmatch|-or|-regex|-replace|-shl|-shr|-split|-wildcard|-xor)\\b`},{className:`literal`,begin:/(-){1,2}[\w\d-]+/,relevance:0}]},h={className:`selector-tag`,begin:/@\B/,relevance:0},g={className:`function`,begin:/\[.*\]\s*[\w]+[ ]??\(/,end:/$/,returnBegin:!0,relevance:0,contains:[{className:`keyword`,begin:`(${n.keyword.toString().replace(/\s/g,`|`)})\\b`,endsParent:!0,relevance:0},e.inherit(e.TITLE_MODE,{endsParent:!0})]},_=[g,l,i,e.NUMBER_MODE,s,c,u,a,o,h],v={begin:/\[/,end:/\]/,excludeBegin:!0,excludeEnd:!0,relevance:0,contains:[`self`].concat(_,{begin:`(`+t.join(`|`)+`)`,className:`built_in`,relevance:0},{className:`type`,begin:/[\.\w\d]+/,relevance:0})};return g.contains.unshift(v),{name:`PowerShell`,aliases:[`pwsh`,`ps`,`ps1`],case_insensitive:!0,keywords:n,contains:_.concat(d,f,p,m,v)}}function yit(e){return{name:`.properties`,disableAutodetect:!0,case_insensitive:!0,illegal:/\S/,contains:[e.COMMENT(`^\\s*[!#]`,`$`),{returnBegin:!0,variants:[{begin:`([^\\\\:= \\t\\f\\n]|\\\\.)+[ \\t\\f]*[:=][ \\t\\f]*`},{begin:`([^\\\\:= \\t\\f\\n]|\\\\.)+[ \\t\\f]+`}],contains:[{className:`attr`,begin:`([^\\\\:= \\t\\f\\n]|\\\\.)+`,endsParent:!0}],starts:{end:`([ \\t\\f]*[:=][ \\t\\f]*|[ \\t\\f]+)`,relevance:0,starts:{className:`string`,end:/$/,relevance:0,contains:[{begin:`\\\\\\\\`},{begin:`\\\\\\n`}]}}},{className:`attr`,begin:`([^\\\\:= \\t\\f\\n]|\\\\.)+[ \\t\\f]*$`}]}}function bit(e){let t=e.regex,n={className:`meta`,begin:`@[A-Za-z]+`},r={className:`subst`,variants:[{begin:`\\$[A-Za-z0-9_]+`},{begin:/\$\{/,end:/\}/}]},i={className:`string`,variants:[{begin:`"""`,end:`"""`},{begin:`"`,end:`"`,illegal:`\\n`,contains:[e.BACKSLASH_ESCAPE]},{begin:`[a-z]+"`,end:`"`,illegal:`\\n`,contains:[e.BACKSLASH_ESCAPE,r]},{className:`string`,begin:`[a-z]+"""`,end:`"""`,contains:[r],relevance:10}]},a={className:`type`,begin:`\\b[A-Z][A-Za-z0-9_]*`,relevance:0},o={className:`title`,begin:/[^0-9\n\t "'(),.`{}\[\]:;][^\n\t "'(),.`{}\[\]:;]+|[^0-9\n\t "'(),.`{}\[\]:;=]/,relevance:0},s={className:`class`,beginKeywords:`class object trait type`,end:/[:={\[\n;]/,excludeEnd:!0,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{beginKeywords:`extends with`,relevance:10},{begin:/\[/,end:/\]/,excludeBegin:!0,excludeEnd:!0,relevance:0,contains:[a,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:`params`,begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,relevance:0,contains:[a,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},o]},c={className:`function`,beginKeywords:`def`,end:t.lookahead(/[:={\[(\n;]/),contains:[o]},l={begin:[/^\s*/,`extension`,/\s+(?=[[(])/],beginScope:{2:`keyword`}},u={begin:[/^\s*/,/end/,/\s+/,/(extension\b)?/],beginScope:{2:`keyword`,4:`keyword`}},d=[{match:/\.inline\b/},{begin:/\binline(?=\s)/,keywords:`inline`}],f={begin:[/\(\s*/,/using/,/\s+(?!\))/],beginScope:{2:`keyword`}};return{name:`Scala`,keywords:{literal:`true false null`,keyword:`type yield lazy override def with val var sealed abstract private trait object if then forSome for while do throw finally protected extends import final return else break new catch super class case package default try this match continue throws implicit export enum given transparent`},contains:[{begin:[`//>`,/\s+/,/using/,/\s+/,/\S+/],beginScope:{1:`comment`,3:`keyword`,5:`type`},end:/$/,contains:[{className:`string`,begin:/\S+/}]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,i,a,c,s,e.C_NUMBER_MODE,l,u,...d,f,n]}}function xit(e){let t=e.regex,n={},r={begin:/\$\{/,end:/\}/,contains:[`self`,{begin:/:-/,contains:[n]}]};Object.assign(n,{className:`variable`,variants:[{begin:t.concat(/\$[\w\d#@][\w\d_]*/,`(?![\\w\\d])(?![$])`)},r]});let i={className:`subst`,begin:/\$\(/,end:/\)/,contains:[e.BACKSLASH_ESCAPE]},a=e.inherit(e.COMMENT(),{match:[/(^|\s)/,/#.*$/],scope:{2:`comment`}}),o={begin:/<<-?\s*(?=\w+)/,starts:{contains:[e.END_SAME_AS_BEGIN({begin:/(\w+)/,end:/(\w+)/,className:`string`})]}},s={className:`string`,begin:/"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,n,i]};i.contains.push(s);let c={match:/\\"/},l={className:`string`,begin:/'/,end:/'/},u={match:/\\'/},d={begin:/\$?\(\(/,end:/\)\)/,contains:[{begin:/\d+#[0-9a-f]+/,className:`number`},e.NUMBER_MODE,n]},f=e.SHEBANG({binary:`(${[`fish`,`bash`,`zsh`,`sh`,`csh`,`ksh`,`tcsh`,`dash`,`scsh`].join(`|`)})`,relevance:10}),p={className:`function`,begin:/\w[\w\d_]*\s*\(\s*\)\s*\{/,returnBegin:!0,contains:[e.inherit(e.TITLE_MODE,{begin:/\w[\w\d_]*/})],relevance:0},m=[`if`,`then`,`else`,`elif`,`fi`,`time`,`for`,`while`,`until`,`in`,`do`,`done`,`case`,`esac`,`coproc`,`function`,`select`],h=[`true`,`false`],g={match:/(\/[a-z._-]+)+/},_=[`break`,`cd`,`continue`,`eval`,`exec`,`exit`,`export`,`getopts`,`hash`,`pwd`,`readonly`,`return`,`shift`,`test`,`times`,`trap`,`umask`,`unset`],v=[`alias`,`bind`,`builtin`,`caller`,`command`,`declare`,`echo`,`enable`,`help`,`let`,`local`,`logout`,`mapfile`,`printf`,`read`,`readarray`,`source`,`sudo`,`type`,`typeset`,`ulimit`,`unalias`],y=`autoload.bg.bindkey.bye.cap.chdir.clone.comparguments.compcall.compctl.compdescribe.compfiles.compgroups.compquote.comptags.comptry.compvalues.dirs.disable.disown.echotc.echoti.emulate.fc.fg.float.functions.getcap.getln.history.integer.jobs.kill.limit.log.noglob.popd.print.pushd.pushln.rehash.sched.setcap.setopt.stat.suspend.ttyctl.unfunction.unhash.unlimit.unsetopt.vared.wait.whence.where.which.zcompile.zformat.zftp.zle.zmodload.zparseopts.zprof.zpty.zregexparse.zsocket.zstyle.ztcp`.split(`.`),b=`chcon.chgrp.chown.chmod.cp.dd.df.dir.dircolors.ln.ls.mkdir.mkfifo.mknod.mktemp.mv.realpath.rm.rmdir.shred.sync.touch.truncate.vdir.b2sum.base32.base64.cat.cksum.comm.csplit.cut.expand.fmt.fold.head.join.md5sum.nl.numfmt.od.paste.ptx.pr.sha1sum.sha224sum.sha256sum.sha384sum.sha512sum.shuf.sort.split.sum.tac.tail.tr.tsort.unexpand.uniq.wc.arch.basename.chroot.date.dirname.du.echo.env.expr.factor.groups.hostid.id.link.logname.nice.nohup.nproc.pathchk.pinky.printenv.printf.pwd.readlink.runcon.seq.sleep.stat.stdbuf.stty.tee.test.timeout.tty.uname.unlink.uptime.users.who.whoami.yes`.split(`.`);return{name:`Bash`,aliases:[`sh`,`zsh`],keywords:{$pattern:/\b[a-z][a-z0-9._-]+\b/,keyword:m,literal:h,built_in:[..._,...v,`set`,`shopt`,...y,...b]},contains:[f,e.SHEBANG(),p,d,a,o,g,s,c,l,u,n]}}function Sit(e){let t=e.regex,n=e.COMMENT(`//`,`$`,{contains:[{begin:/\\\n/}]}),r=`[a-zA-Z_]\\w*::`,i=`(decltype\\(auto\\)|`+t.optional(r)+`[a-zA-Z_]\\w*`+t.optional(`<[^<>]+>`)+`)`,a={className:`type`,variants:[{begin:`\\b[a-z\\d_]*_t\\b`},{match:/\batomic_[a-z]{3,6}\b/}]},o={className:`string`,variants:[{begin:`(u8?|U|L)?"`,end:`"`,illegal:`\\n`,contains:[e.BACKSLASH_ESCAPE]},{begin:`(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)`,end:`'`,illegal:`.`},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},s={className:`number`,variants:[{match:/\b(0b[01']+)/},{match:/(-?)\b([\d']+(\.[\d']*)?|\.[\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)/},{match:/(-?)\b(0[xX][a-fA-F0-9]+(?:'[a-fA-F0-9]+)*(?:\.[a-fA-F0-9]*(?:'[a-fA-F0-9]*)*)?(?:[pP][-+]?[0-9]+)?(l|L)?(u|U)?)/},{match:/(-?)\b\d+(?:'\d+)*(?:\.\d*(?:'\d*)*)?(?:[eE][-+]?\d+)?/}],relevance:0},c={className:`meta`,begin:/#\s*[a-z]+\b/,end:/$/,keywords:{keyword:`if else elif endif define undef warning error line pragma _Pragma ifdef ifndef elifdef elifndef include`},contains:[{begin:/\\\n/,relevance:0},e.inherit(o,{className:`string`}),{className:`string`,begin:/<.*?>/},n,e.C_BLOCK_COMMENT_MODE]},l={className:`title`,begin:t.optional(r)+e.IDENT_RE,relevance:0},u=t.optional(r)+e.IDENT_RE+`\\s*\\(`,d={keyword:`asm.auto.break.case.continue.default.do.else.enum.extern.for.fortran.goto.if.inline.register.restrict.return.sizeof.typeof.typeof_unqual.struct.switch.typedef.union.volatile.while._Alignas._Alignof._Atomic._Generic._Noreturn._Static_assert._Thread_local.alignas.alignof.noreturn.static_assert.thread_local._Pragma`.split(`.`),type:`float.double.signed.unsigned.int.short.long.char.void._Bool._BitInt._Complex._Imaginary._Decimal32._Decimal64._Decimal96._Decimal128._Decimal64x._Decimal128x._Float16._Float32._Float64._Float128._Float32x._Float64x._Float128x.const.static.constexpr.complex.bool.imaginary`.split(`.`),literal:`true false NULL`,built_in:`std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set pair bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap priority_queue make_pair array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr`},f=[c,a,n,e.C_BLOCK_COMMENT_MODE,s,o],p={variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{beginKeywords:`new throw return else`,end:/;/}],keywords:d,contains:f.concat([{begin:/\(/,end:/\)/,keywords:d,contains:f.concat([`self`]),relevance:0}]),relevance:0},m={begin:`(`+i+`[\\*&\\s]+)+`+u,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:d,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:`decltype\\(auto\\)`,keywords:d,relevance:0},{begin:u,returnBegin:!0,contains:[e.inherit(l,{className:`title.function`})],relevance:0},{relevance:0,match:/,/},{className:`params`,begin:/\(/,end:/\)/,keywords:d,relevance:0,contains:[n,e.C_BLOCK_COMMENT_MODE,o,s,a,{begin:/\(/,end:/\)/,keywords:d,relevance:0,contains:[`self`,n,e.C_BLOCK_COMMENT_MODE,o,s,a]}]},a,n,e.C_BLOCK_COMMENT_MODE,c]};return{name:`C`,aliases:[`h`],keywords:d,disableAutodetect:!0,illegal:`=]/,contains:[{beginKeywords:`final class struct`},e.TITLE_MODE]}]),exports:{preprocessor:c,strings:o,keywords:d}}}function Cit(e){let t=e.regex,n=e.COMMENT(`//`,`$`,{contains:[{begin:/\\\n/}]}),r=`[a-zA-Z_]\\w*::`,i=`(?!struct)(decltype\\(auto\\)|`+t.optional(r)+`[a-zA-Z_]\\w*`+t.optional(`<[^<>]+>`)+`)`,a={className:`type`,begin:`\\b[a-z\\d_]*_t\\b`},o={className:`string`,variants:[{begin:`(u8?|U|L)?"`,end:`"`,illegal:`\\n`,contains:[e.BACKSLASH_ESCAPE]},{begin:`(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)`,end:`'`,illegal:`.`},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},s={className:`number`,variants:[{begin:`[+-]?(?:(?:[0-9](?:'?[0-9])*\\.(?:[0-9](?:'?[0-9])*)?|\\.[0-9](?:'?[0-9])*)(?:[Ee][+-]?[0-9](?:'?[0-9])*)?|[0-9](?:'?[0-9])*[Ee][+-]?[0-9](?:'?[0-9])*|0[Xx](?:[0-9A-Fa-f](?:'?[0-9A-Fa-f])*(?:\\.(?:[0-9A-Fa-f](?:'?[0-9A-Fa-f])*)?)?|\\.[0-9A-Fa-f](?:'?[0-9A-Fa-f])*)[Pp][+-]?[0-9](?:'?[0-9])*)(?:[Ff](?:16|32|64|128)?|(BF|bf)16|[Ll]|)`},{begin:`[+-]?\\b(?:0[Bb][01](?:'?[01])*|0[Xx][0-9A-Fa-f](?:'?[0-9A-Fa-f])*|0(?:'?[0-7])*|[1-9](?:'?[0-9])*)(?:[Uu](?:LL?|ll?)|[Uu][Zz]?|(?:LL?|ll?)[Uu]?|[Zz][Uu]|)`}],relevance:0},c={className:`meta`,begin:/#\s*[a-z]+\b/,end:/$/,keywords:{keyword:`if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include`},contains:[{begin:/\\\n/,relevance:0},e.inherit(o,{className:`string`}),{className:`string`,begin:/<.*?>/},n,e.C_BLOCK_COMMENT_MODE]},l={className:`title`,begin:t.optional(r)+e.IDENT_RE,relevance:0},u=t.optional(r)+e.IDENT_RE+`\\s*\\(`,d=`alignas.alignof.and.and_eq.asm.atomic_cancel.atomic_commit.atomic_noexcept.auto.bitand.bitor.break.case.catch.class.co_await.co_return.co_yield.compl.concept.const_cast|10.consteval.constexpr.constinit.continue.decltype.default.delete.do.dynamic_cast|10.else.enum.explicit.export.extern.false.final.for.friend.goto.if.import.inline.module.mutable.namespace.new.noexcept.not.not_eq.nullptr.operator.or.or_eq.override.private.protected.public.reflexpr.register.reinterpret_cast|10.requires.return.sizeof.static_assert.static_cast|10.struct.switch.synchronized.template.this.thread_local.throw.transaction_safe.transaction_safe_dynamic.true.try.typedef.typeid.typename.union.using.virtual.volatile.while.xor.xor_eq`.split(`.`),f=[`bool`,`char`,`char16_t`,`char32_t`,`char8_t`,`double`,`float`,`int`,`long`,`short`,`void`,`wchar_t`,`unsigned`,`signed`,`const`,`static`],p=`any.auto_ptr.barrier.binary_semaphore.bitset.complex.condition_variable.condition_variable_any.counting_semaphore.deque.false_type.flat_map.flat_set.future.imaginary.initializer_list.istringstream.jthread.latch.lock_guard.multimap.multiset.mutex.optional.ostringstream.packaged_task.pair.promise.priority_queue.queue.recursive_mutex.recursive_timed_mutex.scoped_lock.set.shared_future.shared_lock.shared_mutex.shared_timed_mutex.shared_ptr.stack.string_view.stringstream.timed_mutex.thread.true_type.tuple.unique_lock.unique_ptr.unordered_map.unordered_multimap.unordered_multiset.unordered_set.variant.vector.weak_ptr.wstring.wstring_view`.split(`.`),m=`abort.abs.acos.apply.as_const.asin.atan.atan2.calloc.ceil.cerr.cin.clog.cos.cosh.cout.declval.endl.exchange.exit.exp.fabs.floor.fmod.forward.fprintf.fputs.free.frexp.fscanf.future.invoke.isalnum.isalpha.iscntrl.isdigit.isgraph.islower.isprint.ispunct.isspace.isupper.isxdigit.labs.launder.ldexp.log.log10.make_pair.make_shared.make_shared_for_overwrite.make_tuple.make_unique.malloc.memchr.memcmp.memcpy.memset.modf.move.pow.printf.putchar.puts.realloc.scanf.sin.sinh.snprintf.sprintf.sqrt.sscanf.std.stderr.stdin.stdout.strcat.strchr.strcmp.strcpy.strcspn.strlen.strncat.strncmp.strncpy.strpbrk.strrchr.strspn.strstr.swap.tan.tanh.terminate.to_underlying.tolower.toupper.vfprintf.visit.vprintf.vsprintf`.split(`.`),h={type:f,keyword:d,literal:[`NULL`,`false`,`nullopt`,`nullptr`,`true`],built_in:[`_Pragma`],_type_hints:p},g={className:`function.dispatch`,relevance:0,keywords:{_hint:m},begin:t.concat(/\b/,/(?!decltype)/,/(?!if)/,/(?!for)/,/(?!switch)/,/(?!while)/,e.IDENT_RE,t.lookahead(/(<[^<>]+>|)\s*\(/))},_=[g,c,a,n,e.C_BLOCK_COMMENT_MODE,s,o],v={variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{beginKeywords:`new throw return else`,end:/;/}],keywords:h,contains:_.concat([{begin:/\(/,end:/\)/,keywords:h,contains:_.concat([`self`]),relevance:0}]),relevance:0},y={className:`function`,begin:`(`+i+`[\\*&\\s]+)+`+u,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:h,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:`decltype\\(auto\\)`,keywords:h,relevance:0},{begin:u,returnBegin:!0,contains:[l],relevance:0},{begin:/::/,relevance:0},{begin:/:/,endsWithParent:!0,contains:[o,s]},{relevance:0,match:/,/},{className:`params`,begin:/\(/,end:/\)/,keywords:h,relevance:0,contains:[n,e.C_BLOCK_COMMENT_MODE,o,s,a,{begin:/\(/,end:/\)/,keywords:h,relevance:0,contains:[`self`,n,e.C_BLOCK_COMMENT_MODE,o,s,a]}]},a,n,e.C_BLOCK_COMMENT_MODE,c]};return{name:`C++`,aliases:[`cc`,`c++`,`h++`,`hpp`,`hh`,`hxx`,`cxx`],keywords:h,illegal:``,keywords:h,contains:[`self`,a]},{begin:e.IDENT_RE+`::`,keywords:h},{match:[/\b(?:enum(?:\s+(?:class|struct))?|class|struct|union)/,/\s+/,/\w+/],className:{1:`keyword`,3:`title.class`}}])}}function wit(e){let t=[`bool`,`byte`,`char`,`decimal`,`delegate`,`double`,`dynamic`,`enum`,`float`,`int`,`long`,`nint`,`nuint`,`object`,`sbyte`,`short`,`string`,`ulong`,`uint`,`ushort`],n=[`public`,`private`,`protected`,`static`,`internal`,`protected`,`abstract`,`async`,`extern`,`override`,`unsafe`,`virtual`,`new`,`sealed`,`partial`],r={keyword:`abstract.as.base.break.case.catch.class.const.continue.do.else.event.explicit.extern.finally.fixed.for.foreach.goto.if.implicit.in.interface.internal.is.lock.namespace.new.operator.out.override.params.private.protected.public.readonly.record.ref.return.scoped.sealed.sizeof.stackalloc.static.struct.switch.this.throw.try.typeof.unchecked.unsafe.using.virtual.void.volatile.while`.split(`.`).concat(`add.alias.and.ascending.args.async.await.by.descending.dynamic.equals.file.from.get.global.group.init.into.join.let.nameof.not.notnull.on.or.orderby.partial.record.remove.required.scoped.select.set.unmanaged.value|0.var.when.where.with.yield`.split(`.`)),built_in:t,literal:[`default`,`false`,`null`,`true`]},i=e.inherit(e.TITLE_MODE,{begin:`[a-zA-Z](\\.?\\w)*`}),a={className:`number`,variants:[{begin:`\\b(0b[01']+)`},{begin:`(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)`},{begin:`(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)`}],relevance:0},o={className:`string`,begin:/"""("*)(?!")(.|\n)*?"""\1/,relevance:1},s={className:`string`,begin:`@"`,end:`"`,contains:[{begin:`""`}]},c=e.inherit(s,{illegal:/\n/}),l={className:`subst`,begin:/\{/,end:/\}/,keywords:r},u=e.inherit(l,{illegal:/\n/}),d={className:`string`,begin:/\$"/,end:`"`,illegal:/\n/,contains:[{begin:/\{\{/},{begin:/\}\}/},e.BACKSLASH_ESCAPE,u]},f={className:`string`,begin:/\$@"/,end:`"`,contains:[{begin:/\{\{/},{begin:/\}\}/},{begin:`""`},l]},p=e.inherit(f,{illegal:/\n/,contains:[{begin:/\{\{/},{begin:/\}\}/},{begin:`""`},u]});l.contains=[f,d,s,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,a,e.C_BLOCK_COMMENT_MODE],u.contains=[p,d,c,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,a,e.inherit(e.C_BLOCK_COMMENT_MODE,{illegal:/\n/})];let m={variants:[o,f,d,s,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},h={begin:`<`,end:`>`,contains:[{beginKeywords:`in out`},i]},g=e.IDENT_RE+`(<`+e.IDENT_RE+`(\\s*,\\s*`+e.IDENT_RE+`)*>)?(\\[\\])?`,_={begin:`@`+e.IDENT_RE,relevance:0};return{name:`C#`,aliases:[`cs`,`c#`],keywords:r,illegal:/::/,contains:[e.COMMENT(`///`,`$`,{returnBegin:!0,contains:[{className:`doctag`,variants:[{begin:`///`,relevance:0},{begin:``},{begin:``}]}]}),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:`meta`,begin:`#`,end:`$`,keywords:{keyword:`if else elif endif define undef warning error line region endregion pragma checksum`}},m,a,{beginKeywords:`class interface`,relevance:0,end:/[{;=]/,illegal:/[^\s:,]/,contains:[{beginKeywords:`where class`},i,h,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:`namespace`,relevance:0,end:/[{;=]/,illegal:/[^\s:]/,contains:[i,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:`record`,relevance:0,end:/[{;=]/,illegal:/[^\s:]/,contains:[i,h,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:`meta`,begin:`^\\s*\\[(?=[\\w])`,excludeBegin:!0,end:`\\]`,excludeEnd:!0,contains:[{className:`string`,begin:/"/,end:/"/}]},{beginKeywords:`new return throw await else`,relevance:0},{className:`function`,begin:`(`+g+`\\s+)+`+e.IDENT_RE+`\\s*(<[^=]+>\\s*)?\\(`,returnBegin:!0,end:/\s*[{;=]/,excludeEnd:!0,keywords:r,contains:[{beginKeywords:n.join(` `),relevance:0},{begin:e.IDENT_RE+`\\s*(<[^=]+>\\s*)?\\(`,returnBegin:!0,contains:[e.TITLE_MODE,h],relevance:0},{match:/\(\)/},{className:`params`,begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:r,relevance:0,contains:[m,a,e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},_]}}function Tit(e){let t=e.regex,n=rat(e),r={begin:/-(webkit|moz|ms|o)-(?=[a-z])/},i=/@-?\w[\w]*(-\w+)*/,a=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE];return{name:`CSS`,case_insensitive:!0,illegal:/[=|'\$]/,keywords:{keyframePosition:`from to`},classNameAliases:{keyframePosition:`selector-tag`},contains:[n.BLOCK_COMMENT,r,n.CSS_NUMBER_MODE,{className:`selector-id`,begin:/#[A-Za-z0-9_-]+/,relevance:0},{className:`selector-class`,begin:`\\.[a-zA-Z-][a-zA-Z0-9_-]*`,relevance:0},n.ATTRIBUTE_SELECTOR_MODE,{className:`selector-pseudo`,variants:[{begin:`:(`+cat.join(`|`)+`)`},{begin:`:(:)?(`+lat.join(`|`)+`)`}]},n.CSS_VARIABLE,{className:`attribute`,begin:`\\b(`+uat.join(`|`)+`)\\b`},{begin:/:/,end:/[;}{]/,contains:[n.BLOCK_COMMENT,n.HEXCOLOR,n.IMPORTANT,n.CSS_NUMBER_MODE,...a,{begin:/(url|data-uri)\(/,end:/\)/,relevance:0,keywords:{built_in:`url data-uri`},contains:[...a,{className:`string`,begin:/[^)]/,endsWithParent:!0,excludeEnd:!0}]},n.FUNCTION_DISPATCH]},{begin:t.lookahead(/@/),end:`[{;]`,relevance:0,illegal:/:/,contains:[{className:`keyword`,begin:i},{begin:/\s/,endsWithParent:!0,excludeEnd:!0,relevance:0,keywords:{$pattern:/[a-z-]+/,keyword:`and or not only`,attribute:sat.join(` `)},contains:[{begin:/[a-z-]+(?=:)/,className:`attribute`},...a,n.CSS_NUMBER_MODE]}]},{className:`selector-tag`,begin:`\\b(`+oat.join(`|`)+`)\\b`}]}}function Eit(e){let t=e.regex;return{name:`Diff`,aliases:[`patch`],contains:[{className:`meta`,relevance:10,match:t.either(/^@@ +-\d+,\d+ +\+\d+,\d+ +@@/,/^\*\*\* +\d+,\d+ +\*\*\*\*$/,/^--- +\d+,\d+ +----$/)},{className:`comment`,variants:[{begin:t.either(/Index: /,/^index/,/={3,}/,/^-{3}/,/^\*{3} /,/^\+{3}/,/^diff --git/),end:/$/},{match:/^\*{15}$/}]},{className:`addition`,begin:/^\+/,end:/$/},{className:`deletion`,begin:/^-/,end:/$/},{className:`addition`,begin:/^!/,end:/$/}]}}function Dit(e){let t={keyword:[`break`,`case`,`chan`,`const`,`continue`,`default`,`defer`,`else`,`fallthrough`,`for`,`func`,`go`,`goto`,`if`,`import`,`interface`,`map`,`package`,`range`,`return`,`select`,`struct`,`switch`,`type`,`var`],type:[`bool`,`byte`,`complex64`,`complex128`,`error`,`float32`,`float64`,`int8`,`int16`,`int32`,`int64`,`string`,`uint8`,`uint16`,`uint32`,`uint64`,`int`,`uint`,`uintptr`,`rune`],literal:[`true`,`false`,`iota`,`nil`],built_in:[`append`,`cap`,`close`,`complex`,`copy`,`imag`,`len`,`make`,`new`,`panic`,`print`,`println`,`real`,`recover`,`delete`]};return{name:`Go`,aliases:[`golang`],keywords:t,illegal:`Ait(e,t,n-1))}function jit(e){let t=e.regex,n=`[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*`,r=n+Ait(`(?:<[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*~~~(?:\\s*,\\s*[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*~~~)*>)?`,/~~~/g,2),i={keyword:`synchronized.abstract.private.var.static.if.const .for.while.strictfp.finally.protected.import.native.final.void.enum.else.break.transient.catch.instanceof.volatile.case.assert.package.default.public.try.switch.continue.throws.protected.public.private.module.requires.exports.do.sealed.yield.permits.goto.when`.split(`.`),literal:[`false`,`true`,`null`],type:[`char`,`boolean`,`long`,`float`,`int`,`byte`,`short`,`double`],built_in:[`super`,`this`]},a={className:`meta`,begin:`@[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*`,contains:[{begin:/\(/,end:/\)/,contains:[`self`]}]},o={className:`params`,begin:/\(/,end:/\)/,keywords:i,relevance:0,contains:[e.C_BLOCK_COMMENT_MODE],endsParent:!0};return{name:`Java`,aliases:[`jsp`],keywords:i,illegal:/<\/|#/,contains:[e.COMMENT(`/\\*\\*`,`\\*/`,{relevance:0,contains:[{begin:/\w+@/,relevance:0},{className:`doctag`,begin:`@[A-Za-z]+`}]}),{begin:/import java\.[a-z]+\./,keywords:`import`,relevance:2},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{begin:/"""/,end:/"""/,className:`string`,contains:[e.BACKSLASH_ESCAPE]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{match:[/\b(?:class|interface|enum|extends|implements|new)/,/\s+/,n],className:{1:`keyword`,3:`title.class`}},{match:/non-sealed/,scope:`keyword`},{begin:[t.concat(/(?!else)/,n),/\s+/,n,/\s+/,/=(?!=)/],className:{1:`type`,3:`variable`,5:`operator`}},{begin:[/record/,/\s+/,n],className:{1:`keyword`,3:`title.class`},contains:[o,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:`new throw return else`,relevance:0},{begin:[`(?:`+r+`\\s+)`,e.UNDERSCORE_IDENT_RE,/\s*(?=\()/],className:{2:`title.function`},keywords:i,contains:[{className:`params`,begin:/\(/,end:/\)/,keywords:i,relevance:0,contains:[a,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,ez,e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},ez,a]}}function Mit(e){let t=e.regex,n=(e,{after:t})=>{let n=``,end:``},a=/<[A-Za-z0-9\\._:-]+\s*\/>/,o={begin:/<[A-Za-z0-9\\._:-]+/,end:/\/[A-Za-z0-9\\._:-]+>|\/>/,isTrulyOpeningTag:(e,t)=>{let r=e[0].length+e.index,i=e.input[r];if(i===`<`||i===`,`){t.ignoreMatch();return}i===`>`&&(n(e,{after:r})||t.ignoreMatch());let a,o=e.input.substring(r);if(a=o.match(/^\s*=/)){t.ignoreMatch();return}if((a=o.match(/^\s+extends\s+/))&&a.index===0){t.ignoreMatch();return}}},s={$pattern:tz,keyword:dat,literal:fat,built_in:mat,"variable.language":pat},c=`[0-9](_?[0-9])*`,l=`\\.(${c})`,u=`0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*`,d={className:`number`,variants:[{begin:`(\\b(${u})((${l})|\\.)?|(${l}))[eE][+-]?(${c})\\b`},{begin:`\\b(${u})\\b((${l})\\b|\\.)?|(${l})\\b`},{begin:`\\b(0|[1-9](_?[0-9])*)n\\b`},{begin:`\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\b`},{begin:`\\b0[bB][0-1](_?[0-1])*n?\\b`},{begin:`\\b0[oO][0-7](_?[0-7])*n?\\b`},{begin:`\\b0[0-7]+n?\\b`}],relevance:0},f={className:`subst`,begin:`\\$\\{`,end:`\\}`,keywords:s,contains:[]},p={begin:".?html`",end:``,starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,f],subLanguage:`xml`}},m={begin:".?css`",end:``,starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,f],subLanguage:`css`}},h={begin:".?gql`",end:``,starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,f],subLanguage:`graphql`}},g={className:`string`,begin:"`",end:"`",contains:[e.BACKSLASH_ESCAPE,f]},_={className:`comment`,variants:[e.COMMENT(/\/\*\*(?!\/)/,`\\*/`,{relevance:0,contains:[{begin:`(?=@[A-Za-z]+)`,relevance:0,contains:[{className:`doctag`,begin:`@[A-Za-z]+`},{className:`type`,begin:`\\{`,end:`\\}`,excludeEnd:!0,excludeBegin:!0,relevance:0},{className:`variable`,begin:`[A-Za-z$_][0-9A-Za-z$_]*(?=\\s*(-)|$)`,endsParent:!0,relevance:0},{begin:/(?=[^\n])\s/,relevance:0}]}]}),e.C_BLOCK_COMMENT_MODE,e.C_LINE_COMMENT_MODE]},v=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,p,m,h,g,{match:/\$\d+/},d];f.contains=v.concat({begin:/\{/,end:/\}/,keywords:s,contains:[`self`].concat(v)});let y=[].concat(_,f.contains),b=y.concat([{begin:/(\s*)\(/,end:/\)/,keywords:s,contains:[`self`].concat(y)}]),ee={className:`params`,begin:/(\s*)\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:s,contains:b},te={variants:[{match:[/class/,/\s+/,r,/\s+/,/extends/,/\s+/,t.concat(r,`(`,t.concat(/\./,r),`)*`)],scope:{1:`keyword`,3:`title.class`,5:`keyword`,7:`title.class.inherited`}},{match:[/class/,/\s+/,r],scope:{1:`keyword`,3:`title.class`}}]},ne={relevance:0,match:t.either(/\bJSON/,/\b[A-Z][a-z]+([A-Z][a-z]*|\d)*/,/\b[A-Z]{2,}([A-Z][a-z]+|\d)+([A-Z][a-z]*)*/,/\b[A-Z]{2,}[a-z]+([A-Z][a-z]+|\d)*([A-Z][a-z]*)*/),className:`title.class`,keywords:{_:[...nz,...rz]}},x={label:`use_strict`,className:`meta`,relevance:10,begin:/^\s*['"]use (strict|asm)['"]/},re={variants:[{match:[/function/,/\s+/,r,/(?=\s*\()/]},{match:[/function/,/\s*(?=\()/]}],className:{1:`keyword`,3:`title.function`},label:`func.def`,contains:[ee],illegal:/%/},ie={relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/,className:`variable.constant`};function ae(e){return t.concat(`(?!`,e.join(`|`),`)`)}let oe={match:t.concat(/\b/,ae([...iz,`super`,`import`].map(e=>`${e}\\s*\\(`)),r,t.lookahead(/\s*\(/)),className:`title.function`,relevance:0},S={begin:t.concat(/\./,t.lookahead(t.concat(r,/(?![0-9A-Za-z$_(])/))),end:r,excludeBegin:!0,keywords:`prototype`,className:`property`,relevance:0},C={match:[/get|set/,/\s+/,r,/(?=\()/],className:{1:`keyword`,3:`title.function`},contains:[{begin:/\(\)/},ee]},se=`(\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)|`+e.UNDERSCORE_IDENT_RE+`)\\s*=>`,ce={match:[/const|var|let/,/\s+/,r,/\s*/,/=\s*/,/(async\s*)?/,t.lookahead(se)],keywords:`async`,className:{1:`keyword`,3:`title.function`},contains:[ee]};return{name:`JavaScript`,aliases:[`js`,`jsx`,`mjs`,`cjs`],keywords:s,exports:{PARAMS_CONTAINS:b,CLASS_REFERENCE:ne},illegal:/#(?![$_A-z])/,contains:[e.SHEBANG({label:`shebang`,binary:`node`,relevance:5}),x,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,p,m,h,g,_,{match:/\$\d+/},d,ne,{scope:`attr`,match:r+t.lookahead(`:`),relevance:0},ce,{begin:`(`+e.RE_STARTERS_RE+`|\\b(case|return|throw)\\b)\\s*`,keywords:`return throw case`,relevance:0,contains:[_,e.REGEXP_MODE,{className:`function`,begin:se,returnBegin:!0,end:`\\s*=>`,contains:[{className:`params`,variants:[{begin:e.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\(\s*\)/,skip:!0},{begin:/(\s*)\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:s,contains:b}]}]},{begin:/,/,relevance:0},{match:/\s+/,relevance:0},{variants:[{begin:i.begin,end:i.end},{match:a},{begin:o.begin,"on:begin":o.isTrulyOpeningTag,end:o.end}],subLanguage:`xml`,contains:[{begin:o.begin,end:o.end,skip:!0,contains:[`self`]}]}]},re,{beginKeywords:`while if switch catch for`},{begin:`\\b(?!function)`+e.UNDERSCORE_IDENT_RE+`\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{`,returnBegin:!0,label:`func.def`,contains:[ee,e.inherit(e.TITLE_MODE,{begin:r,className:`title.function`})]},{match:/\.\.\./,relevance:0},S,{match:`\\$[A-Za-z$_][0-9A-Za-z$_]*`,relevance:0},{match:[/\bconstructor(?=\s*\()/],className:{1:`title.function`},contains:[ee]},oe,ie,te,C,{match:/\$[(.]/}]}}function Nit(e){let t={className:`attr`,begin:/"(\\.|[^\\"\r\n])*"(?=\s*:)/,relevance:1.01},n={match:/[{}[\],:]/,className:`punctuation`,relevance:0},r=[`true`,`false`,`null`],i={scope:`literal`,beginKeywords:r.join(` `)};return{name:`JSON`,aliases:[`jsonc`],keywords:{literal:r},contains:[t,n,e.QUOTE_STRING_MODE,i,e.C_NUMBER_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE],illegal:`\\S`}}function Pit(e){let t={keyword:`abstract as val var vararg get set class object open private protected public noinline crossinline dynamic final enum if else do while for when throw try catch finally import package is in fun override companion reified inline lateinit init interface annotation data sealed internal infix operator out by constructor super tailrec where const inner suspend typealias external expect actual`,built_in:`Byte Short Char Int Long Boolean Float Double Void Unit Nothing`,literal:`true false null`},n={className:`keyword`,begin:/\b(break|continue|return|this)\b/,starts:{contains:[{className:`symbol`,begin:/@\w+/}]}},r={className:`symbol`,begin:e.UNDERSCORE_IDENT_RE+`@`},i={className:`subst`,begin:/\$\{/,end:/\}/,contains:[e.C_NUMBER_MODE]},a={className:`variable`,begin:`\\$`+e.UNDERSCORE_IDENT_RE},o={className:`string`,variants:[{begin:`"""`,end:`"""(?=[^"])`,contains:[a,i]},{begin:`'`,end:`'`,illegal:/\n/,contains:[e.BACKSLASH_ESCAPE]},{begin:`"`,end:`"`,illegal:/\n/,contains:[e.BACKSLASH_ESCAPE,a,i]}]};i.contains.push(o);let s={className:`meta`,begin:`@(?:file|property|field|get|set|receiver|param|setparam|delegate)\\s*:(?:\\s*`+e.UNDERSCORE_IDENT_RE+`)?`},c={className:`meta`,begin:`@`+e.UNDERSCORE_IDENT_RE,contains:[{begin:/\(/,end:/\)/,contains:[e.inherit(o,{className:`string`}),`self`]}]},l=hat,u=e.COMMENT(`/\\*`,`\\*/`,{contains:[e.C_BLOCK_COMMENT_MODE]}),d={variants:[{className:`type`,begin:e.UNDERSCORE_IDENT_RE},{begin:/\(/,end:/\)/,contains:[]}]},f=d;return f.variants[1].contains=[d],d.variants[1].contains=[f],{name:`Kotlin`,aliases:[`kt`,`kts`],keywords:t,contains:[e.COMMENT(`/\\*\\*`,`\\*/`,{relevance:0,contains:[{className:`doctag`,begin:`@[A-Za-z]+`}]}),e.C_LINE_COMMENT_MODE,u,n,r,s,c,{className:`function`,beginKeywords:`fun`,end:`[(]|$`,returnBegin:!0,excludeEnd:!0,keywords:t,relevance:5,contains:[{begin:e.UNDERSCORE_IDENT_RE+`\\s*\\(`,returnBegin:!0,relevance:0,contains:[e.UNDERSCORE_TITLE_MODE]},{className:`type`,begin://,keywords:`reified`,relevance:0},{className:`params`,begin:/\(/,end:/\)/,endsParent:!0,keywords:t,relevance:0,contains:[{begin:/:/,end:/[=,\/]/,endsWithParent:!0,contains:[d,e.C_LINE_COMMENT_MODE,u],relevance:0},e.C_LINE_COMMENT_MODE,u,s,c,o,e.C_NUMBER_MODE]},u]},{begin:[/class|interface|trait/,/\s+/,e.UNDERSCORE_IDENT_RE],beginScope:{3:`title.class`},keywords:`class interface trait`,end:/[:\{(]|$/,excludeEnd:!0,illegal:`extends implements`,contains:[{beginKeywords:`public protected internal private constructor`},e.UNDERSCORE_TITLE_MODE,{className:`type`,begin://,excludeBegin:!0,excludeEnd:!0,relevance:0},{className:`type`,begin:/[,:]\s*/,end:/[<\(,){\s]|$/,excludeBegin:!0,returnEnd:!0},s,c]},o,{className:`meta`,begin:`^#!/usr/bin/env`,end:`$`,illegal:` +`},l]}}function Fit(e){let t=gat(e),n=Sat,r=`([\\w-]+|@\\{[\\w-]+\\})`,i=[],a=[],o=function(e){return{className:`string`,begin:`~?`+e+`.*?`+e}},s=function(e,t,n){return{className:e,begin:t,relevance:n}},c={$pattern:/[a-z-]+/,keyword:`and or not only`,attribute:bat.join(` `)},l={begin:`\\(`,end:`\\)`,contains:a,keywords:c,relevance:0};a.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,o(`'`),o(`"`),t.CSS_NUMBER_MODE,{begin:`(url|data-uri)\\(`,starts:{className:`string`,end:`[\\)\\n]`,excludeEnd:!0}},t.HEXCOLOR,l,s(`variable`,`@@?[\\w-]+`,10),s(`variable`,`@\\{[\\w-]+\\}`),s(`built_in`,"~?`[^`]*?`"),{className:`attribute`,begin:`[\\w-]+\\s*:`,end:`:`,returnBegin:!0,excludeEnd:!0},t.IMPORTANT,{beginKeywords:`and not`},t.FUNCTION_DISPATCH);let u=a.concat({begin:/\{/,end:/\}/,contains:i}),d={beginKeywords:`when`,endsWithParent:!0,contains:[{beginKeywords:`and not`}].concat(a)},f={begin:`([\\w-]+|@\\{[\\w-]+\\})\\s*:`,returnBegin:!0,end:/[;}]/,relevance:0,contains:[{begin:/-(webkit|moz|ms|o)-/},t.CSS_VARIABLE,{className:`attribute`,begin:`\\b(`+xat.join(`|`)+`)\\b`,end:/(?=:)/,starts:{endsWithParent:!0,illegal:`[<=$]`,relevance:0,contains:a}}]},p={className:`keyword`,begin:`@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b`,starts:{end:`[;{}]`,keywords:c,returnEnd:!0,contains:a,relevance:0}},m={className:`variable`,variants:[{begin:`@[\\w-]+\\s*:`,relevance:15},{begin:`@[\\w-]+`}],starts:{end:`[;}]`,returnEnd:!0,contains:u}},h={variants:[{begin:`[\\.#:&\\[>]`,end:`[;{}]`},{begin:r,end:/\{/}],returnBegin:!0,returnEnd:!0,illegal:`[<='$"]`,relevance:0,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,d,s(`keyword`,`all\\b`),s(`variable`,`@\\{[\\w-]+\\}`),{begin:`\\b(`+yat.join(`|`)+`)\\b`,className:`selector-tag`},t.CSS_NUMBER_MODE,s(`selector-tag`,r,0),s(`selector-id`,`#([\\w-]+|@\\{[\\w-]+\\})`),s(`selector-class`,`\\.([\\w-]+|@\\{[\\w-]+\\})`,0),s(`selector-tag`,`&`,0),t.ATTRIBUTE_SELECTOR_MODE,{className:`selector-pseudo`,begin:`:(`+cz.join(`|`)+`)`},{className:`selector-pseudo`,begin:`:(:)?(`+lz.join(`|`)+`)`},{begin:/\(/,end:/\)/,relevance:0,contains:u},{begin:`!important`},t.FUNCTION_DISPATCH]},g={begin:`[\\w-]+:(:)?(${n.join(`|`)})`,returnBegin:!0,contains:[h]};return i.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,p,m,g,f,h,d,t.FUNCTION_DISPATCH),{name:`Less`,case_insensitive:!0,illegal:`[=>'/<($"]`,contains:i}}function Iit(e){let t=`\\[=*\\[`,n=`\\]=*\\]`,r={begin:t,end:n,contains:[`self`]},i=[e.COMMENT(`--(?!\\[=*\\[)`,`$`),e.COMMENT(`--\\[=*\\[`,n,{contains:[r],relevance:10})];return{name:`Lua`,aliases:[`pluto`],keywords:{$pattern:e.UNDERSCORE_IDENT_RE,literal:`true false nil`,keyword:`and break do else elseif end for goto if in local not or repeat return then until while`,built_in:`_G _ENV _VERSION __index __newindex __mode __call __metatable __tostring __len __gc __add __sub __mul __div __mod __pow __concat __unm __eq __lt __le assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall arg self coroutine resume yield status wrap create running debug getupvalue debug sethook getmetatable gethook setmetatable setlocal traceback setfenv getinfo setupvalue getlocal getregistry getfenv io lines write close flush open output type read stderr stdin input stdout popen tmpfile math log max acos huge ldexp pi cos tanh pow deg tan cosh sinh random randomseed frexp ceil floor rad abs sqrt modf asin min mod fmod log10 atan2 exp sin atan os exit setlocale date getenv difftime remove time clock tmpname rename execute package preload loadlib loaded loaders cpath config path seeall string sub upper len gfind rep find match char dump gmatch reverse byte format gsub lower table setn insert getn foreachi maxn foreach concat sort remove`},contains:i.concat([{className:`function`,beginKeywords:`function`,end:`\\)`,contains:[e.inherit(e.TITLE_MODE,{begin:`([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*`}),{className:`params`,begin:`\\(`,endsWithParent:!0,contains:i}].concat(i)},e.C_NUMBER_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:`string`,begin:t,end:n,contains:[r],relevance:5}])}}function Lit(e){let t={className:`variable`,variants:[{begin:`\\$\\(`+e.UNDERSCORE_IDENT_RE+`\\)`,contains:[e.BACKSLASH_ESCAPE]},{begin:/\$[@%`,subLanguage:`xml`,relevance:0},r={begin:`^[-\\*]{3,}`,end:`$`},i={className:`code`,variants:[{begin:"(`{3,})[^`](.|\\n)*?\\1`*[ ]*"},{begin:`(~{3,})[^~](.|\\n)*?\\1~*[ ]*`},{begin:"```",end:"```+[ ]*$"},{begin:`~~~`,end:`~~~+[ ]*$`},{begin:"`.+?`"},{begin:`(?=^( {4}|\\t))`,contains:[{begin:`^( {4}|\\t)`,end:`(\\n)$`}],relevance:0}]},a={className:`bullet`,begin:`^[ ]*([*+-]|(\\d+\\.))(?=\\s+)`,end:`\\s+`,excludeEnd:!0},o={begin:/^\[[^\n]+\]:/,returnBegin:!0,contains:[{className:`symbol`,begin:/\[/,end:/\]/,excludeBegin:!0,excludeEnd:!0},{className:`link`,begin:/:\s*/,end:/$/,excludeBegin:!0}]},s={variants:[{begin:/\[.+?\]\[.*?\]/,relevance:0},{begin:/\[.+?\]\(((data|javascript|mailto):|(?:http|ftp)s?:\/\/).*?\)/,relevance:2},{begin:t.concat(/\[.+?\]\(/,/[A-Za-z][A-Za-z0-9+.-]*/,/:\/\/.*?\)/),relevance:2},{begin:/\[.+?\]\([./?&#].*?\)/,relevance:1},{begin:/\[.*?\]\(.*?\)/,relevance:0}],returnBegin:!0,contains:[{match:/\[(?=\])/},{className:`string`,relevance:0,begin:`\\[`,end:`\\]`,excludeBegin:!0,returnEnd:!0},{className:`link`,relevance:0,begin:`\\]\\(`,end:`\\)`,excludeBegin:!0,excludeEnd:!0},{className:`symbol`,relevance:0,begin:`\\]\\[`,end:`\\]`,excludeBegin:!0,excludeEnd:!0}]},c={className:`strong`,contains:[],variants:[{begin:/_{2}(?!\s)/,end:/_{2}/},{begin:/\*{2}(?!\s)/,end:/\*{2}/}]},l={className:`emphasis`,contains:[],variants:[{begin:/\*(?![*\s])/,end:/\*/},{begin:/_(?![_\s])/,end:/_/,relevance:0}]},u=e.inherit(c,{contains:[]}),d=e.inherit(l,{contains:[]});c.contains.push(d),l.contains.push(u);let f=[n,s];return[c,l,u,d].forEach(e=>{e.contains=e.contains.concat(f)}),f=f.concat(c,l),{name:`Markdown`,aliases:[`md`,`mkdown`,`mkd`],contains:[{className:`section`,variants:[{begin:`^#{1,6}`,end:`$`,contains:f},{begin:`(?=^.+?\\n[=-]{2,}$)`,contains:[{begin:`^[=-]*$`},{begin:`^`,end:`\\n`,contains:f}]}]},n,a,c,l,{className:`quote`,begin:`^>\\s+`,contains:f,end:`$`},i,r,s,o,{scope:`literal`,match:/&([a-zA-Z0-9]+|#[0-9]{1,7}|#[Xx][0-9a-fA-F]{1,6});/}]}}function zit(e){let t={className:`built_in`,begin:`\\b(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)\\w+`},n=/[a-zA-Z@][a-zA-Z0-9_]*/,r={"variable.language":[`this`,`super`],$pattern:n,keyword:`while.export.sizeof.typedef.const.struct.for.union.volatile.static.mutable.if.do.return.goto.enum.else.break.extern.asm.case.default.register.explicit.typename.switch.continue.inline.readonly.assign.readwrite.self.@synchronized.id.typeof.nonatomic.IBOutlet.IBAction.strong.weak.copy.in.out.inout.bycopy.byref.oneway.__strong.__weak.__block.__autoreleasing.@private.@protected.@public.@try.@property.@end.@throw.@catch.@finally.@autoreleasepool.@synthesize.@dynamic.@selector.@optional.@required.@encode.@package.@import.@defs.@compatibility_alias.__bridge.__bridge_transfer.__bridge_retained.__bridge_retain.__covariant.__contravariant.__kindof._Nonnull._Nullable._Null_unspecified.__FUNCTION__.__PRETTY_FUNCTION__.__attribute__.getter.setter.retain.unsafe_unretained.nonnull.nullable.null_unspecified.null_resettable.class.instancetype.NS_DESIGNATED_INITIALIZER.NS_UNAVAILABLE.NS_REQUIRES_SUPER.NS_RETURNS_INNER_POINTER.NS_INLINE.NS_AVAILABLE.NS_DEPRECATED.NS_ENUM.NS_OPTIONS.NS_SWIFT_UNAVAILABLE.NS_ASSUME_NONNULL_BEGIN.NS_ASSUME_NONNULL_END.NS_REFINED_FOR_SWIFT.NS_SWIFT_NAME.NS_SWIFT_NOTHROW.NS_DURING.NS_HANDLER.NS_ENDHANDLER.NS_VALUERETURN.NS_VOIDRETURN`.split(`.`),literal:[`false`,`true`,`FALSE`,`TRUE`,`nil`,`YES`,`NO`,`NULL`],built_in:[`dispatch_once_t`,`dispatch_queue_t`,`dispatch_sync`,`dispatch_async`,`dispatch_once`],type:[`int`,`float`,`char`,`unsigned`,`signed`,`short`,`long`,`double`,`wchar_t`,`unichar`,`void`,`bool`,`BOOL`,`id|0`,`_Bool`]},i={$pattern:n,keyword:[`@interface`,`@class`,`@protocol`,`@implementation`]};return{name:`Objective-C`,aliases:[`mm`,`objc`,`obj-c`,`obj-c++`,`objective-c++`],keywords:r,illegal:`/,end:/$/,illegal:`\\n`},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:`class`,begin:`(`+i.keyword.join(`|`)+`)\\b`,end:/(\{|$)/,excludeEnd:!0,keywords:i,contains:[e.UNDERSCORE_TITLE_MODE]},{begin:`\\.`+e.UNDERSCORE_IDENT_RE,relevance:0}]}}function Bit(e){let t=e.regex,n=`abs.accept.alarm.and.atan2.bind.binmode.bless.break.caller.chdir.chmod.chomp.chop.chown.chr.chroot.class.close.closedir.connect.continue.cos.crypt.dbmclose.dbmopen.defined.delete.die.do.dump.each.else.elsif.endgrent.endhostent.endnetent.endprotoent.endpwent.endservent.eof.eval.exec.exists.exit.exp.fcntl.field.fileno.flock.for.foreach.fork.format.formline.getc.getgrent.getgrgid.getgrnam.gethostbyaddr.gethostbyname.gethostent.getlogin.getnetbyaddr.getnetbyname.getnetent.getpeername.getpgrp.getpriority.getprotobyname.getprotobynumber.getprotoent.getpwent.getpwnam.getpwuid.getservbyname.getservbyport.getservent.getsockname.getsockopt.given.glob.gmtime.goto.grep.gt.hex.if.index.int.ioctl.join.keys.kill.last.lc.lcfirst.length.link.listen.local.localtime.log.lstat.lt.ma.map.method.mkdir.msgctl.msgget.msgrcv.msgsnd.my.ne.next.no.not.oct.open.opendir.or.ord.our.pack.package.pipe.pop.pos.print.printf.prototype.push.q|0.qq.quotemeta.qw.qx.rand.read.readdir.readline.readlink.readpipe.recv.redo.ref.rename.require.reset.return.reverse.rewinddir.rindex.rmdir.say.scalar.seek.seekdir.select.semctl.semget.semop.send.setgrent.sethostent.setnetent.setpgrp.setpriority.setprotoent.setpwent.setservent.setsockopt.shift.shmctl.shmget.shmread.shmwrite.shutdown.sin.sleep.socket.socketpair.sort.splice.split.sprintf.sqrt.srand.stat.state.study.sub.substr.symlink.syscall.sysopen.sysread.sysseek.system.syswrite.tell.telldir.tie.tied.time.times.tr.truncate.uc.ucfirst.umask.undef.unless.unlink.unpack.unshift.untie.until.use.utime.values.vec.wait.waitpid.wantarray.warn.when.while.write.x|0.xor.y|0`.split(`.`),r=/[dualxmsipngr]{0,12}/,i={$pattern:/[\w.]+/,keyword:n.join(` `)},a={className:`subst`,begin:`[$@]\\{`,end:`\\}`,keywords:i},o={begin:/->\{/,end:/\}/},s={scope:`attr`,match:/\s+:\s*\w+(\s*\(.*?\))?/},c={scope:`variable`,variants:[{begin:/\$\d/},{begin:t.concat(/[$%@](?!")(\^\w\b|#\w+(::\w+)*|\{\w+\}|\w+(::\w*)*)/,`(?![A-Za-z])(?![@$%])`)},{begin:/[$%@](?!")[^\s\w{=]|\$=/,relevance:0}],contains:[s]},l={className:`number`,variants:[{match:/0?\.[0-9][0-9_]+\b/},{match:/\bv?(0|[1-9][0-9_]*(\.[0-9_]+)?|[1-9][0-9_]*)\b/},{match:/\b0[0-7][0-7_]*\b/},{match:/\b0x[0-9a-fA-F][0-9a-fA-F_]*\b/},{match:/\b0b[0-1][0-1_]*\b/}],relevance:0},u=[e.BACKSLASH_ESCAPE,a,c],d=[/!/,/\//,/\|/,/\?/,/'/,/"/,/#/],f=(e,n,i=`\\1`)=>{let a=i===`\\1`?i:t.concat(i,n);return t.concat(t.concat(`(?:`,e,`)`),n,/(?:\\.|[^\\\/])*?/,a,/(?:\\.|[^\\\/])*?/,i,r)},p=(e,n,i)=>t.concat(t.concat(`(?:`,e,`)`),n,/(?:\\.|[^\\\/])*?/,i,r),m=[c,e.HASH_COMMENT_MODE,e.COMMENT(/^=\w/,/=cut/,{endsWithParent:!0}),o,{className:`string`,contains:u,variants:[{begin:`q[qwxr]?\\s*\\(`,end:`\\)`,relevance:5},{begin:`q[qwxr]?\\s*\\[`,end:`\\]`,relevance:5},{begin:`q[qwxr]?\\s*\\{`,end:`\\}`,relevance:5},{begin:`q[qwxr]?\\s*\\|`,end:`\\|`,relevance:5},{begin:`q[qwxr]?\\s*<`,end:`>`,relevance:5},{begin:`qw\\s+q`,end:`q`,relevance:5},{begin:`'`,end:`'`,contains:[e.BACKSLASH_ESCAPE]},{begin:`"`,end:`"`},{begin:"`",end:"`",contains:[e.BACKSLASH_ESCAPE]},{begin:/\{\w+\}/,relevance:0},{begin:`-?\\w+\\s*=>`,relevance:0}]},l,{begin:`(\\/\\/|`+e.RE_STARTERS_RE+`|\\b(split|return|print|reverse|grep)\\b)\\s*`,keywords:`split return print reverse grep`,relevance:0,contains:[e.HASH_COMMENT_MODE,{className:`regexp`,variants:[{begin:f(`s|tr|y`,t.either(...d,{capture:!0}))},{begin:f(`s|tr|y`,`\\(`,`\\)`)},{begin:f(`s|tr|y`,`\\[`,`\\]`)},{begin:f(`s|tr|y`,`\\{`,`\\}`)}],relevance:2},{className:`regexp`,variants:[{begin:/(m|qr)\/\//,relevance:0},{begin:p(`(?:m|qr)?`,/\//,/\//)},{begin:p(`m|qr`,t.either(...d,{capture:!0}),/\1/)},{begin:p(`m|qr`,/\(/,/\)/)},{begin:p(`m|qr`,/\[/,/\]/)},{begin:p(`m|qr`,/\{/,/\}/)}]}]},{className:`function`,beginKeywords:`sub method`,end:`(\\s*\\(.*?\\))?[;{]`,excludeEnd:!0,relevance:5,contains:[e.TITLE_MODE,s]},{className:`class`,beginKeywords:`class`,end:`[;{]`,excludeEnd:!0,relevance:5,contains:[e.TITLE_MODE,s,l]},{begin:`-\\w\\b`,relevance:0},{begin:`^__DATA__$`,end:`^__END__$`,subLanguage:`mojolicious`,contains:[{begin:`^@@.*`,end:`$`,className:`comment`}]}];return a.contains=m,o.contains=m,{name:`Perl`,aliases:[`pl`,`pm`],keywords:i,contains:m}}function Vit(e){let t=e.regex,n=/(?![A-Za-z0-9])(?![$])/,r=t.concat(/[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/,n),i=t.concat(/(\\?[A-Z][a-z0-9_\x7f-\xff]+|\\?[A-Z]+(?=[A-Z][a-z0-9_\x7f-\xff])){1,}/,n),a=t.concat(/[A-Z]+/,n),o={scope:`variable`,match:`\\$+`+r},s={scope:`meta`,variants:[{begin:/<\?php/,relevance:10},{begin:/<\?=/},{begin:/<\?/,relevance:.1},{begin:/\?>/}]},c={scope:`subst`,variants:[{begin:/\$\w+/},{begin:/\{\$/,end:/\}/}]},l=e.inherit(e.APOS_STRING_MODE,{illegal:null}),u=e.inherit(e.QUOTE_STRING_MODE,{illegal:null,contains:e.QUOTE_STRING_MODE.contains.concat(c)}),d={begin:/<<<[ \t]*(?:(\w+)|"(\w+)")\n/,end:/[ \t]*(\w+)\b/,contains:e.QUOTE_STRING_MODE.contains.concat(c),"on:begin":(e,t)=>{t.data._beginMatch=e[1]||e[2]},"on:end":(e,t)=>{t.data._beginMatch!==e[1]&&t.ignoreMatch()}},f=e.END_SAME_AS_BEGIN({begin:/<<<[ \t]*'(\w+)'\n/,end:/[ \t]*(\w+)\b/}),p=`[ +]`,m={scope:`string`,variants:[u,l,d,f]},h={scope:`number`,variants:[{begin:`\\b0[bB][01]+(?:_[01]+)*\\b`},{begin:`\\b0[oO][0-7]+(?:_[0-7]+)*\\b`},{begin:`\\b0[xX][\\da-fA-F]+(?:_[\\da-fA-F]+)*\\b`},{begin:`(?:\\b\\d+(?:_\\d+)*(\\.(?:\\d+(?:_\\d+)*))?|\\B\\.\\d+)(?:[eE][+-]?\\d+)?`}],relevance:0},g=[`false`,`null`,`true`],_=`__CLASS__.__DIR__.__FILE__.__FUNCTION__.__COMPILER_HALT_OFFSET__.__LINE__.__METHOD__.__NAMESPACE__.__TRAIT__.die.echo.exit.include.include_once.print.require.require_once.array.abstract.and.as.binary.bool.boolean.break.callable.case.catch.class.clone.const.continue.declare.default.do.double.else.elseif.empty.enddeclare.endfor.endforeach.endif.endswitch.endwhile.enum.eval.extends.final.finally.float.for.foreach.from.global.goto.if.implements.instanceof.insteadof.int.integer.interface.isset.iterable.list.match|0.mixed.new.never.object.or.private.protected.public.readonly.real.return.string.switch.throw.trait.try.unset.use.var.void.while.xor.yield`.split(`.`),v=`Error|0.AppendIterator.ArgumentCountError.ArithmeticError.ArrayIterator.ArrayObject.AssertionError.BadFunctionCallException.BadMethodCallException.CachingIterator.CallbackFilterIterator.CompileError.Countable.DirectoryIterator.DivisionByZeroError.DomainException.EmptyIterator.ErrorException.Exception.FilesystemIterator.FilterIterator.GlobIterator.InfiniteIterator.InvalidArgumentException.IteratorIterator.LengthException.LimitIterator.LogicException.MultipleIterator.NoRewindIterator.OutOfBoundsException.OutOfRangeException.OuterIterator.OverflowException.ParentIterator.ParseError.RangeException.RecursiveArrayIterator.RecursiveCachingIterator.RecursiveCallbackFilterIterator.RecursiveDirectoryIterator.RecursiveFilterIterator.RecursiveIterator.RecursiveIteratorIterator.RecursiveRegexIterator.RecursiveTreeIterator.RegexIterator.RuntimeException.SeekableIterator.SplDoublyLinkedList.SplFileInfo.SplFileObject.SplFixedArray.SplHeap.SplMaxHeap.SplMinHeap.SplObjectStorage.SplObserver.SplPriorityQueue.SplQueue.SplStack.SplSubject.SplTempFileObject.TypeError.UnderflowException.UnexpectedValueException.UnhandledMatchError.ArrayAccess.BackedEnum.Closure.Fiber.Generator.Iterator.IteratorAggregate.Serializable.Stringable.Throwable.Traversable.UnitEnum.WeakReference.WeakMap.Directory.__PHP_Incomplete_Class.parent.php_user_filter.self.static.stdClass`.split(`.`),y={keyword:_,literal:(e=>{let t=[];return e.forEach(e=>{t.push(e),e.toLowerCase()===e?t.push(e.toUpperCase()):t.push(e.toLowerCase())}),t})(g),built_in:v},b=e=>e.map(e=>e.replace(/\|\d+$/,``)),ee={variants:[{match:[/new/,t.concat(p,`+`),t.concat(`(?!`,b(v).join(`\\b|`),`\\b)`),i],scope:{1:`keyword`,4:`title.class`}}]},te=t.concat(r,`\\b(?!\\()`),ne={variants:[{match:[t.concat(/::/,t.lookahead(/(?!class\b)/)),te],scope:{2:`variable.constant`}},{match:[/::/,/class/],scope:{2:`variable.language`}},{match:[i,t.concat(/::/,t.lookahead(/(?!class\b)/)),te],scope:{1:`title.class`,3:`variable.constant`}},{match:[i,t.concat(`::`,t.lookahead(/(?!class\b)/))],scope:{1:`title.class`}},{match:[i,/::/,/class/],scope:{1:`title.class`,3:`variable.language`}}]},x={scope:`attr`,match:t.concat(r,t.lookahead(`:`),t.lookahead(/(?!::)/))},re={relevance:0,begin:/\(/,end:/\)/,keywords:y,contains:[x,o,ne,e.C_BLOCK_COMMENT_MODE,m,h,ee]},ie={relevance:0,match:[/\b/,t.concat(`(?!fn\\b|function\\b|`,b(_).join(`\\b|`),`|`,b(v).join(`\\b|`),`\\b)`),r,t.concat(p,`*`),t.lookahead(/(?=\()/)],scope:{3:`title.function.invoke`},contains:[re]};re.contains.push(ie);let ae=[x,ne,e.C_BLOCK_COMMENT_MODE,m,h,ee],oe={begin:t.concat(/#\[\s*\\?/,t.either(i,a)),beginScope:`meta`,end:/]/,endScope:`meta`,keywords:{literal:g,keyword:[`new`,`array`]},contains:[{begin:/\[/,end:/]/,keywords:{literal:g,keyword:[`new`,`array`]},contains:[`self`,...ae]},...ae,{scope:`meta`,variants:[{match:i},{match:a}]}]};return{case_insensitive:!1,keywords:y,contains:[oe,e.HASH_COMMENT_MODE,e.COMMENT(`//`,`$`),e.COMMENT(`/\\*`,`\\*/`,{contains:[{scope:`doctag`,match:`@[A-Za-z]+`}]}),{match:/__halt_compiler\(\);/,keywords:`__halt_compiler`,starts:{scope:`comment`,end:e.MATCH_NOTHING_RE,contains:[{match:/\?>/,scope:`meta`,endsParent:!0}]}},s,{scope:`variable.language`,match:/\$this\b/},o,ie,ne,{match:[/const/,/\s/,r],scope:{1:`keyword`,3:`variable.constant`}},ee,{scope:`function`,relevance:0,beginKeywords:`fn function`,end:/[;{]/,excludeEnd:!0,illegal:`[$%\\[]`,contains:[{beginKeywords:`use`},e.UNDERSCORE_TITLE_MODE,{begin:`=>`,endsParent:!0},{scope:`params`,begin:`\\(`,end:`\\)`,excludeBegin:!0,excludeEnd:!0,keywords:y,contains:[`self`,oe,o,ne,e.C_BLOCK_COMMENT_MODE,m,h]}]},{scope:`class`,variants:[{beginKeywords:`enum`,illegal:/[($"]/},{beginKeywords:`class interface trait`,illegal:/[:($"]/}],relevance:0,end:/\{/,excludeEnd:!0,contains:[{beginKeywords:`extends implements`},e.UNDERSCORE_TITLE_MODE]},{beginKeywords:`namespace`,relevance:0,end:`;`,illegal:/[.']/,contains:[e.inherit(e.UNDERSCORE_TITLE_MODE,{scope:`title.class`})]},{beginKeywords:`use`,relevance:0,end:`;`,contains:[{match:/\b(as|const|function)\b/,scope:`keyword`},e.UNDERSCORE_TITLE_MODE]},m,h]}}function Hit(e){return{name:`Plain text`,aliases:[`text`,`txt`],disableAutodetect:!0}}function Uit(e){let t=e.regex,n=/[\p{XID_Start}_]\p{XID_Continue}*/u,r=`and.as.assert.async.await.break.case.class.continue.def.del.elif.else.except.finally.for.from.global.if.import.in.is.lambda.match.nonlocal|10.not.or.pass.raise.return.try.while.with.yield`.split(`.`),i={$pattern:/[A-Za-z]\w+|__\w+__/,keyword:r,built_in:`__import__.abs.all.any.ascii.bin.bool.breakpoint.bytearray.bytes.callable.chr.classmethod.compile.complex.delattr.dict.dir.divmod.enumerate.eval.exec.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.print.property.range.repr.reversed.round.set.setattr.slice.sorted.staticmethod.str.sum.super.tuple.type.vars.zip`.split(`.`),literal:[`__debug__`,`Ellipsis`,`False`,`None`,`NotImplemented`,`True`],type:[`Any`,`Callable`,`Coroutine`,`Dict`,`List`,`Literal`,`Generic`,`Optional`,`Sequence`,`Set`,`Tuple`,`Type`,`Union`]},a={className:`meta`,begin:/^(>>>|\.\.\.) /},o={className:`subst`,begin:/\{/,end:/\}/,keywords:i,illegal:/#/},s={begin:/\{\{/,relevance:0},c={className:`string`,contains:[e.BACKSLASH_ESCAPE],variants:[{begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE,a],relevance:10},{begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?"""/,end:/"""/,contains:[e.BACKSLASH_ESCAPE,a],relevance:10},{begin:/([fF][rR]|[rR][fF]|[fF])'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE,a,s,o]},{begin:/([fF][rR]|[rR][fF]|[fF])"""/,end:/"""/,contains:[e.BACKSLASH_ESCAPE,a,s,o]},{begin:/([uU]|[rR])'/,end:/'/,relevance:10},{begin:/([uU]|[rR])"/,end:/"/,relevance:10},{begin:/([bB]|[bB][rR]|[rR][bB])'/,end:/'/},{begin:/([bB]|[bB][rR]|[rR][bB])"/,end:/"/},{begin:/([fF][rR]|[rR][fF]|[fF])'/,end:/'/,contains:[e.BACKSLASH_ESCAPE,s,o]},{begin:/([fF][rR]|[rR][fF]|[fF])"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,s,o]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},l=`[0-9](_?[0-9])*`,u=`(\\b(${l}))?\\.(${l})|\\b(${l})\\.`,d=`\\b|${r.join(`|`)}`,f={className:`number`,relevance:0,variants:[{begin:`(\\b(${l})|(${u}))[eE][+-]?(${l})[jJ]?(?=${d})`},{begin:`(${u})[jJ]?`},{begin:`\\b([1-9](_?[0-9])*|0+(_?0)*)[lLjJ]?(?=${d})`},{begin:`\\b0[bB](_?[01])+[lL]?(?=${d})`},{begin:`\\b0[oO](_?[0-7])+[lL]?(?=${d})`},{begin:`\\b0[xX](_?[0-9a-fA-F])+[lL]?(?=${d})`},{begin:`\\b(${l})[jJ](?=${d})`}]},p={className:`comment`,begin:t.lookahead(/# type:/),end:/$/,keywords:i,contains:[{begin:/# type:/},{begin:/#/,end:/\b\B/,endsWithParent:!0}]},m={className:`params`,variants:[{className:``,begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:i,contains:[`self`,a,f,c,e.HASH_COMMENT_MODE]}]};return o.contains=[c,f,a],{name:`Python`,aliases:[`py`,`gyp`,`ipython`],unicodeRegex:!0,keywords:i,illegal:/(<\/|\?)|=>/,contains:[a,f,{scope:`variable.language`,match:/\bself\b/},{beginKeywords:`if`,relevance:0},{match:/\bor\b/,scope:`keyword`},c,p,e.HASH_COMMENT_MODE,{match:[/\bdef/,/\s+/,n],scope:{1:`keyword`,3:`title.function`},contains:[m]},{variants:[{match:[/\bclass/,/\s+/,n,/\s*/,/\(\s*/,n,/\s*\)/]},{match:[/\bclass/,/\s+/,n]}],scope:{1:`keyword`,3:`title.class`,6:`title.class.inherited`}},{className:`meta`,begin:/^[\t ]*@/,end:/(?=#)|$/,contains:[f,m,c]}]}}function Wit(e){let t=e.regex,n=/(?:(?:[a-zA-Z]|\.[._a-zA-Z])[._a-zA-Z0-9]*)|\.(?!\d)/,r=t.either(/0[xX][0-9a-fA-F]+\.[0-9a-fA-F]*[pP][+-]?\d+i?/,/0[xX][0-9a-fA-F]+(?:[pP][+-]?\d+)?[Li]?/,/(?:\d+(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+)?[Li]?/),i=/[=!<>:]=|\|\||&&|:::?|<-|<<-|->>|->|\|>|[-+*\/?!$&|:<=>@^~]|\*\*/,a=t.either(/[()]/,/[{}]/,/\[\[/,/[[\]]/,/\\/,/,/);return{name:`R`,keywords:{$pattern:n,keyword:`function if in break next repeat else for while`,literal:`NULL NA TRUE FALSE Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10`,built_in:`LETTERS letters month.abb month.name pi T F abs acos acosh all any anyNA Arg as.call as.character as.complex as.double as.environment as.integer as.logical as.null.default as.numeric as.raw asin asinh atan atanh attr attributes baseenv browser c call ceiling class Conj cos cosh cospi cummax cummin cumprod cumsum digamma dim dimnames emptyenv exp expression floor forceAndCall gamma gc.time globalenv Im interactive invisible is.array is.atomic is.call is.character is.complex is.double is.environment is.expression is.finite is.function is.infinite is.integer is.language is.list is.logical is.matrix is.na is.name is.nan is.null is.numeric is.object is.pairlist is.raw is.recursive is.single is.symbol lazyLoadDBfetch length lgamma list log max min missing Mod names nargs nzchar oldClass on.exit pos.to.env proc.time prod quote range Re rep retracemem return round seq_along seq_len seq.int sign signif sin sinh sinpi sqrt standardGeneric substitute sum switch tan tanh tanpi tracemem trigamma trunc unclass untracemem UseMethod xtfrm`},contains:[e.COMMENT(/#'/,/$/,{contains:[{scope:`doctag`,match:/@examples/,starts:{end:t.lookahead(t.either(/\n^#'\s*(?=@[a-zA-Z]+)/,/\n^(?!#')/)),endsParent:!0}},{scope:`doctag`,begin:`@param`,end:/$/,contains:[{scope:`variable`,variants:[{match:n},{match:/`(?:\\.|[^`\\])+`/}],endsParent:!0}]},{scope:`doctag`,match:/@[a-zA-Z]+/},{scope:`keyword`,match:/\\[a-zA-Z]+/}]}),e.HASH_COMMENT_MODE,{scope:`string`,contains:[e.BACKSLASH_ESCAPE],variants:[e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\(/,end:/\)(-*)"/}),e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\{/,end:/\}(-*)"/}),e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\[/,end:/\](-*)"/}),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\(/,end:/\)(-*)'/}),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\{/,end:/\}(-*)'/}),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\[/,end:/\](-*)'/}),{begin:`"`,end:`"`,relevance:0},{begin:`'`,end:`'`,relevance:0}]},{relevance:0,variants:[{scope:{1:`operator`,2:`number`},match:[i,r]},{scope:{1:`operator`,2:`number`},match:[/%[^%]*%/,r]},{scope:{1:`punctuation`,2:`number`},match:[a,r]},{scope:{2:`number`},match:[/[^a-zA-Z0-9._]|^/,r]}]},{scope:{3:`operator`},match:[n,/\s+/,/<-/,/\s+/]},{scope:`operator`,relevance:0,variants:[{match:i},{match:/%[^%]*%/}]},{scope:`punctuation`,relevance:0,match:a},{begin:"`",end:"`",contains:[{begin:/\\./}]}]}}function Git(e){let t=e.regex,n="([a-zA-Z_]\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?)",r=t.either(/\b([A-Z]+[a-z0-9]+)+/,/\b([A-Z]+[a-z0-9]+)+[A-Z]+/),i=t.concat(r,/(::\w+)*/),a={"variable.constant":[`__FILE__`,`__LINE__`,`__ENCODING__`],"variable.language":[`self`,`super`],keyword:`alias.and.begin.BEGIN.break.case.class.defined.do.else.elsif.end.END.ensure.for.if.in.module.next.not.or.redo.require.rescue.retry.return.then.undef.unless.until.when.while.yield.include.extend.prepend.public.private.protected.raise.throw`.split(`.`),built_in:[`proc`,`lambda`,`attr_accessor`,`attr_reader`,`attr_writer`,`define_method`,`private_constant`,`module_function`],literal:[`true`,`false`,`nil`]},o={className:`doctag`,begin:`@[A-Za-z]+`},s={begin:`#<`,end:`>`},c=[e.COMMENT(`#`,`$`,{contains:[o]}),e.COMMENT(`^=begin`,`^=end`,{contains:[o],relevance:10}),e.COMMENT(`^__END__`,e.MATCH_NOTHING_RE)],l={className:`subst`,begin:/#\{/,end:/\}/,keywords:a},u={className:`string`,contains:[e.BACKSLASH_ESCAPE,l],variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/`/,end:/`/},{begin:/%[qQwWx]?\(/,end:/\)/},{begin:/%[qQwWx]?\[/,end:/\]/},{begin:/%[qQwWx]?\{/,end:/\}/},{begin:/%[qQwWx]?/},{begin:/%[qQwWx]?\//,end:/\//},{begin:/%[qQwWx]?%/,end:/%/},{begin:/%[qQwWx]?-/,end:/-/},{begin:/%[qQwWx]?\|/,end:/\|/},{begin:/\B\?(\\\d{1,3})/},{begin:/\B\?(\\x[A-Fa-f0-9]{1,2})/},{begin:/\B\?(\\u\{?[A-Fa-f0-9]{1,6}\}?)/},{begin:/\B\?(\\M-\\C-|\\M-\\c|\\c\\M-|\\M-|\\C-\\M-)[\x20-\x7e]/},{begin:/\B\?\\(c|C-)[\x20-\x7e]/},{begin:/\B\?\\?\S/},{begin:t.concat(/<<[-~]?'?/,t.lookahead(/(\w+)(?=\W)[^\n]*\n(?:[^\n]*\n)*?\s*\1\b/)),contains:[e.END_SAME_AS_BEGIN({begin:/(\w+)/,end:/(\w+)/,contains:[e.BACKSLASH_ESCAPE,l]})]}]},d=`[0-9](_?[0-9])*`,f={className:`number`,relevance:0,variants:[{begin:`\\b([1-9](_?[0-9])*|0)(\\.(${d}))?([eE][+-]?(${d})|r)?i?\\b`},{begin:`\\b0[dD][0-9](_?[0-9])*r?i?\\b`},{begin:`\\b0[bB][0-1](_?[0-1])*r?i?\\b`},{begin:`\\b0[oO][0-7](_?[0-7])*r?i?\\b`},{begin:`\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*r?i?\\b`},{begin:`\\b0(_?[0-7])+r?i?\\b`}]},p={variants:[{match:/\(\)/},{className:`params`,begin:/\(/,end:/(?=\))/,excludeBegin:!0,endsParent:!0,keywords:a}]},m=[u,{variants:[{match:[/class\s+/,i,/\s+<\s+/,i]},{match:[/\b(class|module)\s+/,i]}],scope:{2:`title.class`,4:`title.class.inherited`},keywords:a},{match:[/(include|extend)\s+/,i],scope:{2:`title.class`},keywords:a},{relevance:0,match:[i,/\.new[. (]/],scope:{1:`title.class`}},{relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/,className:`variable.constant`},{relevance:0,match:r,scope:`title.class`},{match:[/def/,/\s+/,n],scope:{1:`keyword`,3:`title.function`},contains:[p]},{begin:e.IDENT_RE+`::`},{className:`symbol`,begin:e.UNDERSCORE_IDENT_RE+`(!|\\?)?:`,relevance:0},{className:`symbol`,begin:`:(?!\\s)`,contains:[u,{begin:n}],relevance:0},f,{className:`variable`,begin:`(\\$\\W)|((\\$|@@?)(\\w+))(?=[^@$?])(?![A-Za-z])(?![@$?'])`},{className:`params`,begin:/\|(?!=)/,end:/\|/,excludeBegin:!0,excludeEnd:!0,relevance:0,keywords:a},{begin:`(`+e.RE_STARTERS_RE+`|unless)\\s*`,keywords:`unless`,contains:[{className:`regexp`,contains:[e.BACKSLASH_ESCAPE,l],illegal:/\n/,variants:[{begin:`/`,end:`/[a-z]*`},{begin:/%r\{/,end:/\}[a-z]*/},{begin:`%r\\(`,end:`\\)[a-z]*`},{begin:`%r!`,end:`![a-z]*`},{begin:`%r\\[`,end:`\\][a-z]*`}]}].concat(s,c),relevance:0}].concat(s,c);l.contains=m,p.contains=m;let h=[{begin:/^\s*=>/,starts:{end:`$`,contains:m}},{className:`meta.prompt`,begin:`^([>?]>|[\\w#]+\\(\\w+\\):\\d+:\\d+[>*]|(\\w+-)?\\d+\\.\\d+\\.\\d+(p\\d+)?[^\\d][^>]+>)(?=[ ])`,starts:{end:`$`,keywords:a,contains:m}}];return c.unshift(s),{name:`Ruby`,aliases:[`rb`,`gemspec`,`podspec`,`thor`,`irb`],keywords:a,illegal:/\/\*/,contains:[e.SHEBANG({binary:`ruby`})].concat(h,c,m)}}function Kit(e){let t=e.regex,n=/(r#)?/,r=t.concat(n,e.UNDERSCORE_IDENT_RE),i=t.concat(n,e.IDENT_RE),a={className:`title.function.invoke`,relevance:0,begin:t.concat(/\b/,/(?!let|for|while|if|else|match\b)/,i,t.lookahead(/\s*\(/))},o=`abstract.as.async.await.become.box.break.const.continue.crate.do.dyn.else.enum.extern.false.final.fn.for.if.impl.in.let.loop.macro.match.mod.move.mut.override.priv.pub.ref.return.self.Self.static.struct.super.trait.true.try.type.typeof.union.unsafe.unsized.use.virtual.where.while.yield`.split(`.`),s=[`true`,`false`,`Some`,`None`,`Ok`,`Err`],c=`drop .Copy.Send.Sized.Sync.Drop.Fn.FnMut.FnOnce.ToOwned.Clone.Debug.PartialEq.PartialOrd.Eq.Ord.AsRef.AsMut.Into.From.Default.Iterator.Extend.IntoIterator.DoubleEndedIterator.ExactSizeIterator.SliceConcatExt.ToString.assert!.assert_eq!.bitflags!.bytes!.cfg!.col!.concat!.concat_idents!.debug_assert!.debug_assert_eq!.env!.eprintln!.panic!.file!.format!.format_args!.include_bytes!.include_str!.line!.local_data_key!.module_path!.option_env!.print!.println!.select!.stringify!.try!.unimplemented!.unreachable!.vec!.write!.writeln!.macro_rules!.assert_ne!.debug_assert_ne!`.split(`.`),l=[`i8`,`i16`,`i32`,`i64`,`i128`,`isize`,`u8`,`u16`,`u32`,`u64`,`u128`,`usize`,`f32`,`f64`,`str`,`char`,`bool`,`Box`,`Option`,`Result`,`String`,`Vec`];return{name:`Rust`,aliases:[`rs`],keywords:{$pattern:e.IDENT_RE+`!?`,type:l,keyword:o,literal:s,built_in:c},illegal:``},a]}}function qit(e){let t=Cat(e),n=kat,r=Oat,i=`@[a-z-]+`,a={className:`variable`,begin:`(\\$[a-zA-Z-][a-zA-Z0-9_-]*)\\b`,relevance:0};return{name:`SCSS`,case_insensitive:!0,illegal:`[=/|']`,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,t.CSS_NUMBER_MODE,{className:`selector-id`,begin:`#[A-Za-z0-9_-]+`,relevance:0},{className:`selector-class`,begin:`\\.[A-Za-z0-9_-]+`,relevance:0},t.ATTRIBUTE_SELECTOR_MODE,{className:`selector-tag`,begin:`\\b(`+Eat.join(`|`)+`)\\b`,relevance:0},{className:`selector-pseudo`,begin:`:(`+r.join(`|`)+`)`},{className:`selector-pseudo`,begin:`:(:)?(`+n.join(`|`)+`)`},a,{begin:/\(/,end:/\)/,contains:[t.CSS_NUMBER_MODE]},t.CSS_VARIABLE,{className:`attribute`,begin:`\\b(`+Aat.join(`|`)+`)\\b`},{begin:`\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\b`},{begin:/:/,end:/[;}{]/,relevance:0,contains:[t.BLOCK_COMMENT,a,t.HEXCOLOR,t.CSS_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,t.IMPORTANT,t.FUNCTION_DISPATCH]},{begin:`@(page|font-face)`,keywords:{$pattern:i,keyword:`@page @font-face`}},{begin:`@`,end:`[{;]`,returnBegin:!0,keywords:{$pattern:/[a-z-]+/,keyword:`and or not only`,attribute:Dat.join(` `)},contains:[{begin:i,className:`keyword`},{begin:/[a-z-]+(?=:)/,className:`attribute`},a,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,t.HEXCOLOR,t.CSS_NUMBER_MODE]},t.FUNCTION_DISPATCH]}}function Jit(e){return{name:`Shell Session`,aliases:[`console`,`shellsession`],contains:[{className:`meta.prompt`,begin:/^\s{0,3}[/~\w\d[\]()@-]*[>%$#][ ]?/,starts:{end:/[^\\](?=\s*$)/,subLanguage:`bash`}}]}}function Yit(e){let t=e.regex,n=e.COMMENT(`--`,`$`),r={scope:`string`,variants:[{begin:/'/,end:/'/,contains:[{match:/''/}]}]},i={begin:/"/,end:/"/,contains:[{match:/""/}]},a=[`true`,`false`,`unknown`],o=[`double precision`,`large object`,`with timezone`,`without timezone`],s=`bigint.binary.blob.boolean.char.character.clob.date.dec.decfloat.decimal.float.int.integer.interval.nchar.nclob.national.numeric.real.row.smallint.time.timestamp.varchar.varying.varbinary`.split(`.`),c=[`add`,`asc`,`collation`,`desc`,`final`,`first`,`last`,`view`],l=`abs.acos.all.allocate.alter.and.any.are.array.array_agg.array_max_cardinality.as.asensitive.asin.asymmetric.at.atan.atomic.authorization.avg.begin.begin_frame.begin_partition.between.bigint.binary.blob.boolean.both.by.call.called.cardinality.cascaded.case.cast.ceil.ceiling.char.char_length.character.character_length.check.classifier.clob.close.coalesce.collate.collect.column.commit.condition.connect.constraint.contains.convert.copy.corr.corresponding.cos.cosh.count.covar_pop.covar_samp.create.cross.cube.cume_dist.current.current_catalog.current_date.current_default_transform_group.current_path.current_role.current_row.current_schema.current_time.current_timestamp.current_path.current_role.current_transform_group_for_type.current_user.cursor.cycle.date.day.deallocate.dec.decimal.decfloat.declare.default.define.delete.dense_rank.deref.describe.deterministic.disconnect.distinct.double.drop.dynamic.each.element.else.empty.end.end_frame.end_partition.end-exec.equals.escape.every.except.exec.execute.exists.exp.external.extract.false.fetch.filter.first_value.float.floor.for.foreign.frame_row.free.from.full.function.fusion.get.global.grant.group.grouping.groups.having.hold.hour.identity.in.indicator.initial.inner.inout.insensitive.insert.int.integer.intersect.intersection.interval.into.is.join.json_array.json_arrayagg.json_exists.json_object.json_objectagg.json_query.json_table.json_table_primitive.json_value.lag.language.large.last_value.lateral.lead.leading.left.like.like_regex.listagg.ln.local.localtime.localtimestamp.log.log10.lower.match.match_number.match_recognize.matches.max.member.merge.method.min.minute.mod.modifies.module.month.multiset.national.natural.nchar.nclob.new.no.none.normalize.not.nth_value.ntile.null.nullif.numeric.octet_length.occurrences_regex.of.offset.old.omit.on.one.only.open.or.order.out.outer.over.overlaps.overlay.parameter.partition.pattern.per.percent.percent_rank.percentile_cont.percentile_disc.period.portion.position.position_regex.power.precedes.precision.prepare.primary.procedure.ptf.range.rank.reads.real.recursive.ref.references.referencing.regr_avgx.regr_avgy.regr_count.regr_intercept.regr_r2.regr_slope.regr_sxx.regr_sxy.regr_syy.release.result.return.returns.revoke.right.rollback.rollup.row.row_number.rows.running.savepoint.scope.scroll.search.second.seek.select.sensitive.session_user.set.show.similar.sin.sinh.skip.smallint.some.specific.specifictype.sql.sqlexception.sqlstate.sqlwarning.sqrt.start.static.stddev_pop.stddev_samp.submultiset.subset.substring.substring_regex.succeeds.sum.symmetric.system.system_time.system_user.table.tablesample.tan.tanh.then.time.timestamp.timezone_hour.timezone_minute.to.trailing.translate.translate_regex.translation.treat.trigger.trim.trim_array.true.truncate.uescape.union.unique.unknown.unnest.update.upper.user.using.value.values.value_of.var_pop.var_samp.varbinary.varchar.varying.versioning.when.whenever.where.width_bucket.window.with.within.without.year`.split(`.`),u=`abs.acos.array_agg.asin.atan.avg.cast.ceil.ceiling.coalesce.corr.cos.cosh.count.covar_pop.covar_samp.cume_dist.dense_rank.deref.element.exp.extract.first_value.floor.json_array.json_arrayagg.json_exists.json_object.json_objectagg.json_query.json_table.json_table_primitive.json_value.lag.last_value.lead.listagg.ln.log.log10.lower.max.min.mod.nth_value.ntile.nullif.percent_rank.percentile_cont.percentile_disc.position.position_regex.power.rank.regr_avgx.regr_avgy.regr_count.regr_intercept.regr_r2.regr_slope.regr_sxx.regr_sxy.regr_syy.row_number.sin.sinh.sqrt.stddev_pop.stddev_samp.substring.substring_regex.sum.tan.tanh.translate.translate_regex.treat.trim.trim_array.unnest.upper.value_of.var_pop.var_samp.width_bucket`.split(`.`),d=[`current_catalog`,`current_date`,`current_default_transform_group`,`current_path`,`current_role`,`current_schema`,`current_transform_group_for_type`,`current_user`,`session_user`,`system_time`,`system_user`,`current_time`,`localtime`,`current_timestamp`,`localtimestamp`],f=[`create table`,`insert into`,`primary key`,`foreign key`,`not null`,`alter table`,`add constraint`,`grouping sets`,`on overflow`,`character set`,`respect nulls`,`ignore nulls`,`nulls first`,`nulls last`,`depth first`,`breadth first`],p=u,m=[...l,...c].filter(e=>!u.includes(e)),h={scope:`variable`,match:/@[a-z0-9][a-z0-9_]*/},g={scope:`operator`,match:/[-+*/=%^~]|&&?|\|\|?|!=?|<(?:=>?|<|>)?|>[>=]?/,relevance:0},_={match:t.concat(/\b/,t.either(...p),/\s*\(/),relevance:0,keywords:{built_in:p}};function v(e){return t.concat(/\b/,t.either(...e.map(e=>e.replace(/\s+/,`\\s+`))),/\b/)}let y={scope:`keyword`,match:v(f),relevance:0};function b(e,{exceptions:t,when:n}={}){let r=n;return t||=[],e.map(e=>e.match(/\|\d+$/)||t.includes(e)?e:r(e)?`${e}|0`:e)}return{name:`SQL`,case_insensitive:!0,illegal:/[{}]|<\//,keywords:{$pattern:/\b[\w\.]+/,keyword:b(m,{when:e=>e.length<3}),literal:a,type:s,built_in:d},contains:[{scope:`type`,match:v(o)},y,_,h,r,i,e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,n,g]}}function Xit(e){return e?typeof e==`string`?e:e.source:null}function JR(e){return YR(`(?=`,e,`)`)}function YR(...e){return e.map(e=>Xit(e)).join(``)}function Zit(e){let t=e[e.length-1];return typeof t==`object`&&t.constructor===Object?(e.splice(e.length-1,1),t):{}}function XR(...e){return`(`+(Zit(e).capture?``:`?:`)+e.map(e=>Xit(e)).join(`|`)+`)`}function Qit(e){let t={match:/\s+/,relevance:0},n=e.COMMENT(`/\\*`,`\\*/`,{contains:[`self`]}),r=[e.C_LINE_COMMENT_MODE,n],i={match:[/\./,XR(...jat,...dz)],className:{2:`keyword`}},a={match:YR(/\./,XR(...fz)),relevance:0},o=fz.filter(e=>typeof e==`string`).concat([`_|0`]),s={variants:[{className:`keyword`,match:XR(...fz.filter(e=>typeof e!=`string`).concat(Mat).map(uz),...dz)}]},c={$pattern:XR(/\b\w+/,/#\w+/),keyword:o.concat(Pat),literal:pz},l=[i,a,s],u=[{match:YR(/\./,XR(...mz)),relevance:0},{className:`built_in`,match:YR(/\b/,XR(...mz),/(?=\()/)}],d={match:/->/,relevance:0},f=[d,{className:`operator`,relevance:0,variants:[{match:_z},{match:`\\.(\\.|${gz})+`}]}],p=`([0-9]_*)+`,m=`([0-9a-fA-F]_*)+`,h={className:`number`,relevance:0,variants:[{match:`\\b(${p})(\\.(${p}))?([eE][+-]?(${p}))?\\b`},{match:`\\b0x(${m})(\\.(${m}))?([pP][+-]?(${p}))?\\b`},{match:/\b0o([0-7]_*)+\b/},{match:/\b0b([01]_*)+\b/}]},g=(e=``)=>({className:`subst`,variants:[{match:YR(/\\/,e,/[0\\tnr"']/)},{match:YR(/\\/,e,/u\{[0-9a-fA-F]{1,8}\}/)}]}),_=(e=``)=>({className:`subst`,match:YR(/\\/,e,/[\t ]*(?:[\r\n]|\r\n)/)}),v=(e=``)=>({className:`subst`,label:`interpol`,begin:YR(/\\/,e,/\(/),end:/\)/}),y=(e=``)=>({begin:YR(e,/"""/),end:YR(/"""/,e),contains:[g(e),_(e),v(e)]}),b=(e=``)=>({begin:YR(e,/"/),end:YR(/"/,e),contains:[g(e),v(e)]}),ee={className:`string`,variants:[y(),y(`#`),y(`##`),y(`###`),b(),b(`#`),b(`##`),b(`###`)]},te=[e.BACKSLASH_ESCAPE,{begin:/\[/,end:/\]/,relevance:0,contains:[e.BACKSLASH_ESCAPE]}],ne={begin:/\/[^\s](?=[^/\n]*\/)/,end:/\//,contains:te},x=e=>{let t=YR(e,/\//),n=YR(/\//,e);return{begin:t,end:n,contains:[...te,{scope:`comment`,begin:`#(?!.*${n})`,end:/$/}]}},re={scope:`regexp`,variants:[x(`###`),x(`##`),x(`#`),ne]},ie={match:YR(/`/,bz,/`/)},ae=[ie,{className:`variable`,match:/\$\d+/},{className:`variable`,match:`\\$${yz}+`}],oe=[{match:/(@|#(un)?)available/,scope:`keyword`,starts:{contains:[{begin:/\(/,end:/\)/,keywords:Iat,contains:[...f,h,ee]}]}},{scope:`keyword`,match:YR(/@/,XR(...Fat),JR(XR(/\(/,/\s+/)))},{scope:`meta`,match:YR(/@/,bz)}],S={match:JR(/\b[A-Z]/),relevance:0,contains:[{className:`type`,match:YR(/(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)/,yz,`+`)},{className:`type`,match:xz,relevance:0},{match:/[?!]+/,relevance:0},{match:/\.\.\./,relevance:0},{match:YR(/\s+&\s+/,JR(xz)),relevance:0}]},C={begin://,keywords:c,contains:[...r,...l,...oe,d,S]};S.contains.push(C);let se={begin:/\(/,end:/\)/,relevance:0,keywords:c,contains:[`self`,{match:YR(bz,/\s*:/),keywords:`_|0`,relevance:0},...r,re,...l,...u,...f,h,ee,...ae,...oe,S]},ce={begin://,keywords:`repeat each`,contains:[...r,S]},le={begin:/\(/,end:/\)/,keywords:c,contains:[{begin:XR(JR(YR(bz,/\s*:/)),JR(YR(bz,/\s+/,bz,/\s*:/))),end:/:/,relevance:0,contains:[{className:`keyword`,match:/\b_\b/},{className:`params`,match:bz}]},...r,...l,...f,h,ee,...oe,S,se],endsParent:!0,illegal:/["']/},ue={match:[/(func|macro)/,/\s+/,XR(ie.match,bz,_z)],className:{1:`keyword`,3:`title.function`},contains:[ce,le,t],illegal:[/\[/,/%/]},de={match:[/\b(?:subscript|init[?!]?)/,/\s*(?=[<(])/],className:{1:`keyword`},contains:[ce,le,t],illegal:/\[|%/},w={match:[/operator/,/\s+/,_z],className:{1:`keyword`,3:`title`}},T={begin:[/precedencegroup/,/\s+/,xz],className:{1:`keyword`,3:`title`},contains:[S],keywords:[...Nat,...pz],end:/}/},fe={match:[/class\b/,/\s+/,/func\b/,/\s+/,/\b[A-Za-z_][A-Za-z0-9_]*\b/],scope:{1:`keyword`,3:`keyword`,5:`title.function`}},pe={match:[/class\b/,/\s+/,/var\b/],scope:{1:`keyword`,3:`keyword`}},E={begin:[/(struct|protocol|class|extension|enum|actor)/,/\s+/,bz,/\s*/],beginScope:{1:`keyword`,3:`title.class`},keywords:c,contains:[ce,...l,{begin:/:/,end:/\{/,keywords:c,contains:[{scope:`title.class.inherited`,match:xz},...l],relevance:0}]};for(let e of ee.variants){let t=e.contains.find(e=>e.label===`interpol`);t.keywords=c;let n=[...l,...u,...f,h,ee,...ae];t.contains=[...n,{begin:/\(/,end:/\)/,contains:[`self`,...n]}]}return{name:`Swift`,keywords:c,contains:[...r,ue,de,fe,pe,E,w,T,{beginKeywords:`import`,end:/$/,contains:[...r],relevance:0},re,...l,...u,...f,h,ee,...ae,...oe,S,se]}}function $it(e){let t=e.regex,n=(e,{after:t})=>{let n=``,end:``},a=/<[A-Za-z0-9\\._:-]+\s*\/>/,o={begin:/<[A-Za-z0-9\\._:-]+/,end:/\/[A-Za-z0-9\\._:-]+>|\/>/,isTrulyOpeningTag:(e,t)=>{let r=e[0].length+e.index,i=e.input[r];if(i===`<`||i===`,`){t.ignoreMatch();return}i===`>`&&(n(e,{after:r})||t.ignoreMatch());let a,o=e.input.substring(r);if(a=o.match(/^\s*=/)){t.ignoreMatch();return}if((a=o.match(/^\s+extends\s+/))&&a.index===0){t.ignoreMatch();return}}},s={$pattern:Sz,keyword:Cz,literal:wz,built_in:kz,"variable.language":Oz},c=`[0-9](_?[0-9])*`,l=`\\.(${c})`,u=`0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*`,d={className:`number`,variants:[{begin:`(\\b(${u})((${l})|\\.)?|(${l}))[eE][+-]?(${c})\\b`},{begin:`\\b(${u})\\b((${l})\\b|\\.)?|(${l})\\b`},{begin:`\\b(0|[1-9](_?[0-9])*)n\\b`},{begin:`\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\b`},{begin:`\\b0[bB][0-1](_?[0-1])*n?\\b`},{begin:`\\b0[oO][0-7](_?[0-7])*n?\\b`},{begin:`\\b0[0-7]+n?\\b`}],relevance:0},f={className:`subst`,begin:`\\$\\{`,end:`\\}`,keywords:s,contains:[]},p={begin:".?html`",end:``,starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,f],subLanguage:`xml`}},m={begin:".?css`",end:``,starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,f],subLanguage:`css`}},h={begin:".?gql`",end:``,starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,f],subLanguage:`graphql`}},g={className:`string`,begin:"`",end:"`",contains:[e.BACKSLASH_ESCAPE,f]},_={className:`comment`,variants:[e.COMMENT(/\/\*\*(?!\/)/,`\\*/`,{relevance:0,contains:[{begin:`(?=@[A-Za-z]+)`,relevance:0,contains:[{className:`doctag`,begin:`@[A-Za-z]+`},{className:`type`,begin:`\\{`,end:`\\}`,excludeEnd:!0,excludeBegin:!0,relevance:0},{className:`variable`,begin:`[A-Za-z$_][0-9A-Za-z$_]*(?=\\s*(-)|$)`,endsParent:!0,relevance:0},{begin:/(?=[^\n])\s/,relevance:0}]}]}),e.C_BLOCK_COMMENT_MODE,e.C_LINE_COMMENT_MODE]},v=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,p,m,h,g,{match:/\$\d+/},d];f.contains=v.concat({begin:/\{/,end:/\}/,keywords:s,contains:[`self`].concat(v)});let y=[].concat(_,f.contains),b=y.concat([{begin:/(\s*)\(/,end:/\)/,keywords:s,contains:[`self`].concat(y)}]),ee={className:`params`,begin:/(\s*)\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:s,contains:b},te={variants:[{match:[/class/,/\s+/,r,/\s+/,/extends/,/\s+/,t.concat(r,`(`,t.concat(/\./,r),`)*`)],scope:{1:`keyword`,3:`title.class`,5:`keyword`,7:`title.class.inherited`}},{match:[/class/,/\s+/,r],scope:{1:`keyword`,3:`title.class`}}]},ne={relevance:0,match:t.either(/\bJSON/,/\b[A-Z][a-z]+([A-Z][a-z]*|\d)*/,/\b[A-Z]{2,}([A-Z][a-z]+|\d)+([A-Z][a-z]*)*/,/\b[A-Z]{2,}[a-z]+([A-Z][a-z]+|\d)*([A-Z][a-z]*)*/),className:`title.class`,keywords:{_:[...Tz,...Ez]}},x={label:`use_strict`,className:`meta`,relevance:10,begin:/^\s*['"]use (strict|asm)['"]/},re={variants:[{match:[/function/,/\s+/,r,/(?=\s*\()/]},{match:[/function/,/\s*(?=\()/]}],className:{1:`keyword`,3:`title.function`},label:`func.def`,contains:[ee],illegal:/%/},ie={relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/,className:`variable.constant`};function ae(e){return t.concat(`(?!`,e.join(`|`),`)`)}let oe={match:t.concat(/\b/,ae([...Dz,`super`,`import`].map(e=>`${e}\\s*\\(`)),r,t.lookahead(/\s*\(/)),className:`title.function`,relevance:0},S={begin:t.concat(/\./,t.lookahead(t.concat(r,/(?![0-9A-Za-z$_(])/))),end:r,excludeBegin:!0,keywords:`prototype`,className:`property`,relevance:0},C={match:[/get|set/,/\s+/,r,/(?=\()/],className:{1:`keyword`,3:`title.function`},contains:[{begin:/\(\)/},ee]},se=`(\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)|`+e.UNDERSCORE_IDENT_RE+`)\\s*=>`,ce={match:[/const|var|let/,/\s+/,r,/\s*/,/=\s*/,/(async\s*)?/,t.lookahead(se)],keywords:`async`,className:{1:`keyword`,3:`title.function`},contains:[ee]};return{name:`JavaScript`,aliases:[`js`,`jsx`,`mjs`,`cjs`],keywords:s,exports:{PARAMS_CONTAINS:b,CLASS_REFERENCE:ne},illegal:/#(?![$_A-z])/,contains:[e.SHEBANG({label:`shebang`,binary:`node`,relevance:5}),x,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,p,m,h,g,_,{match:/\$\d+/},d,ne,{scope:`attr`,match:r+t.lookahead(`:`),relevance:0},ce,{begin:`(`+e.RE_STARTERS_RE+`|\\b(case|return|throw)\\b)\\s*`,keywords:`return throw case`,relevance:0,contains:[_,e.REGEXP_MODE,{className:`function`,begin:se,returnBegin:!0,end:`\\s*=>`,contains:[{className:`params`,variants:[{begin:e.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\(\s*\)/,skip:!0},{begin:/(\s*)\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:s,contains:b}]}]},{begin:/,/,relevance:0},{match:/\s+/,relevance:0},{variants:[{begin:i.begin,end:i.end},{match:a},{begin:o.begin,"on:begin":o.isTrulyOpeningTag,end:o.end}],subLanguage:`xml`,contains:[{begin:o.begin,end:o.end,skip:!0,contains:[`self`]}]}]},re,{beginKeywords:`while if switch catch for`},{begin:`\\b(?!function)`+e.UNDERSCORE_IDENT_RE+`\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{`,returnBegin:!0,label:`func.def`,contains:[ee,e.inherit(e.TITLE_MODE,{begin:r,className:`title.function`})]},{match:/\.\.\./,relevance:0},S,{match:`\\$[A-Za-z$_][0-9A-Za-z$_]*`,relevance:0},{match:[/\bconstructor(?=\s*\()/],className:{1:`title.function`},contains:[ee]},oe,ie,te,C,{match:/\$[(.]/}]}}function eat(e){let t=e.regex,n=$it(e),r=Sz,i=[`any`,`void`,`number`,`boolean`,`string`,`object`,`never`,`symbol`,`bigint`,`unknown`],a={begin:[/namespace/,/\s+/,e.IDENT_RE],beginScope:{1:`keyword`,3:`title.class`}},o={beginKeywords:`interface`,end:/\{/,excludeEnd:!0,keywords:{keyword:`interface extends`,built_in:i},contains:[n.exports.CLASS_REFERENCE]},s={className:`meta`,relevance:10,begin:/^\s*['"]use strict['"]/},c={$pattern:Sz,keyword:Cz.concat([`type`,`interface`,`public`,`private`,`protected`,`implements`,`declare`,`abstract`,`readonly`,`enum`,`override`,`satisfies`]),literal:wz,built_in:kz.concat(i),"variable.language":Oz},l={className:`meta`,begin:`@[A-Za-z$_][0-9A-Za-z$_]*`},u=(e,t,n)=>{let r=e.contains.findIndex(e=>e.label===t);if(r===-1)throw Error(`can not find mode to replace`);e.contains.splice(r,1,n)};Object.assign(n.keywords,c),n.exports.PARAMS_CONTAINS.push(l);let d=n.contains.find(e=>e.scope===`attr`),f=Object.assign({},d,{match:t.concat(r,t.lookahead(/\s*\?:/))});n.exports.PARAMS_CONTAINS.push([n.exports.CLASS_REFERENCE,d,f]),n.contains=n.contains.concat([l,a,o,f]),u(n,`shebang`,e.SHEBANG()),u(n,`use_strict`,s);let p=n.contains.find(e=>e.label===`func.def`);return p.relevance=0,Object.assign(n,{name:`TypeScript`,aliases:[`ts`,`tsx`,`mts`,`cts`]}),n}function tat(e){let t=e.regex,n=t.concat(/[\p{L}_]/u,t.optional(/[\p{L}0-9_.-]*:/u),/[\p{L}0-9_.-]*/u),r=/[\p{L}0-9._:-]+/u,i={className:`symbol`,begin:/&[a-z]+;|&#[0-9]+;|&#x[a-f0-9]+;/},a={begin:/\s/,contains:[{className:`keyword`,begin:/#?[a-z_][a-z1-9_-]+/,illegal:/\n/}]},o=e.inherit(a,{begin:/\(/,end:/\)/}),s=e.inherit(e.APOS_STRING_MODE,{className:`string`}),c=e.inherit(e.QUOTE_STRING_MODE,{className:`string`}),l={endsWithParent:!0,illegal:/`]+/}]}]}]};return{name:`HTML, XML`,aliases:[`html`,`xhtml`,`rss`,`atom`,`xjb`,`xsd`,`xsl`,`plist`,`wsf`,`svg`],case_insensitive:!0,unicodeRegex:!0,contains:[{className:`meta`,begin://,relevance:10,contains:[a,c,s,o,{begin:/\[/,end:/\]/,contains:[{className:`meta`,begin://,contains:[a,o,c,s]}]}]},e.COMMENT(//,{relevance:10}),{begin://,relevance:10},i,{className:`meta`,end:/\?>/,variants:[{begin:/<\?xml/,relevance:10,contains:[c]},{begin:/<\?[a-z][a-z0-9]+/}]},{className:`tag`,begin:/)/,end:/>/,keywords:{name:`style`},contains:[l],starts:{end:/<\/style>/,returnEnd:!0,subLanguage:[`css`,`xml`]}},{className:`tag`,begin:/)/,end:/>/,keywords:{name:`script`},contains:[l],starts:{end:/<\/script>/,returnEnd:!0,subLanguage:[`javascript`,`handlebars`,`xml`]}},{className:`tag`,begin:/<>|<\/>/},{className:`tag`,begin:t.concat(//,/>/,/\s/)))),end:/\/?>/,contains:[{className:`name`,begin:n,relevance:0,starts:l}]},{className:`tag`,begin:t.concat(/<\//,t.lookahead(t.concat(n,/>/))),contains:[{className:`name`,begin:n,relevance:0},{begin:/>/,relevance:0,endsParent:!0}]}]}}function nat(e){let t=`true false yes no null`,n={className:`attr`,variants:[{begin:/[\w*@][\w*@ :()\./-]*:(?=[ \t]|$)/},{begin:/"[\w*@][\w*@ :()\./-]*":(?=[ \t]|$)/},{begin:/'[\w*@][\w*@ :()\./-]*':(?=[ \t]|$)/}]},r={className:`template-variable`,variants:[{begin:/\{\{/,end:/\}\}/},{begin:/%\{/,end:/\}/}]},i={className:`string`,relevance:0,begin:/'/,end:/'/,contains:[{match:/''/,scope:`char.escape`,relevance:0}]},a={className:`string`,relevance:0,variants:[{begin:/"/,end:/"/},{begin:/\S+/}],contains:[e.BACKSLASH_ESCAPE,r]},o=e.inherit(a,{variants:[{begin:/'/,end:/'/,contains:[{begin:/''/,relevance:0}]},{begin:/"/,end:/"/},{begin:/[^\s,{}[\]]+/}]}),s={className:`number`,begin:`\\b[0-9]{4}(-[0-9][0-9]){0,2}([Tt \\t][0-9][0-9]?(:[0-9][0-9]){2})?(\\.[0-9]*)?([ \\t])*(Z|[-+][0-9][0-9]?(:[0-9][0-9])?)?\\b`},c={end:`,`,endsWithParent:!0,excludeEnd:!0,keywords:t,relevance:0},l={begin:/\{/,end:/\}/,contains:[c],illegal:`\\n`,relevance:0},u={begin:`\\[`,end:`\\]`,contains:[c],illegal:`\\n`,relevance:0},d=[n,{className:`meta`,begin:`^---\\s*$`,relevance:10},{className:`string`,begin:`[\\|>]([1-9]?[+-])?[ ]*\\n( +)[^ ][^\\n]*\\n(\\2[^\\n]+\\n?)*`},{begin:`<%[%=-]?`,end:`[%-]?%>`,subLanguage:`ruby`,excludeBegin:!0,excludeEnd:!0,relevance:0},{className:`type`,begin:`!\\w+![\\w#;/?:@&=+$,.~*'()[\\]]+`},{className:`type`,begin:`!<[\\w#;/?:@&=+$,.~*'()[\\]]+>`},{className:`type`,begin:`![\\w#;/?:@&=+$,.~*'()[\\]]+`},{className:`type`,begin:`!![\\w#;/?:@&=+$,.~*'()[\\]]+`},{className:`meta`,begin:`&`+e.UNDERSCORE_IDENT_RE+`$`},{className:`meta`,begin:`\\*`+e.UNDERSCORE_IDENT_RE+`$`},{className:`bullet`,begin:`-(?=[ ]|$)`,relevance:0},e.HASH_COMMENT_MODE,{beginKeywords:t,keywords:{literal:t}},s,{className:`number`,begin:e.C_NUMBER_RE+`\\b`,relevance:0},l,u,i,a],f=[...d];return f.pop(),f.push(o),c.contains=f,{name:`YAML`,case_insensitive:!0,aliases:[`yml`],contains:d}}var rat,iat,aat,oat,sat,cat,lat,uat,ZR,QR,$R,ez,tz,dat,fat,nz,rz,iz,pat,mat,az,oz,sz,hat,gat,_at,vat,yat,bat,cz,lz,xat,Sat,Cat,wat,Tat,Eat,Dat,Oat,kat,Aat,uz,jat,dz,Mat,fz,pz,Nat,Pat,mz,hz,gz,_z,vz,yz,bz,xz,Fat,Iat,Sz,Cz,wz,Tz,Ez,Dz,Oz,kz,Lat,Rat,zat,Az,Bat=s((()=>{rat=e=>({IMPORTANT:{scope:`meta`,begin:`!important`},BLOCK_COMMENT:e.C_BLOCK_COMMENT_MODE,HEXCOLOR:{scope:`number`,begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/},FUNCTION_DISPATCH:{className:`built_in`,begin:/[\w-]+(?=\()/},ATTRIBUTE_SELECTOR_MODE:{scope:`selector-attr`,begin:/\[/,end:/\]/,illegal:`$`,contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{scope:`number`,begin:e.NUMBER_RE+`(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?`,relevance:0},CSS_VARIABLE:{className:`attr`,begin:/--[A-Za-z_][A-Za-z0-9_-]*/}}),iat=`a.abbr.address.article.aside.audio.b.blockquote.body.button.canvas.caption.cite.code.dd.del.details.dfn.div.dl.dt.em.fieldset.figcaption.figure.footer.form.h1.h2.h3.h4.h5.h6.header.hgroup.html.i.iframe.img.input.ins.kbd.label.legend.li.main.mark.menu.nav.object.ol.optgroup.option.p.picture.q.quote.samp.section.select.source.span.strong.summary.sup.table.tbody.td.textarea.tfoot.th.thead.time.tr.ul.var.video`.split(`.`),aat=`defs.g.marker.mask.pattern.svg.switch.symbol.feBlend.feColorMatrix.feComponentTransfer.feComposite.feConvolveMatrix.feDiffuseLighting.feDisplacementMap.feFlood.feGaussianBlur.feImage.feMerge.feMorphology.feOffset.feSpecularLighting.feTile.feTurbulence.linearGradient.radialGradient.stop.circle.ellipse.image.line.path.polygon.polyline.rect.text.use.textPath.tspan.foreignObject.clipPath`.split(`.`),oat=[...iat,...aat],sat=`any-hover.any-pointer.aspect-ratio.color.color-gamut.color-index.device-aspect-ratio.device-height.device-width.display-mode.forced-colors.grid.height.hover.inverted-colors.monochrome.orientation.overflow-block.overflow-inline.pointer.prefers-color-scheme.prefers-contrast.prefers-reduced-motion.prefers-reduced-transparency.resolution.scan.scripting.update.width.min-width.max-width.min-height.max-height`.split(`.`).sort().reverse(),cat=`active.any-link.blank.checked.current.default.defined.dir.disabled.drop.empty.enabled.first.first-child.first-of-type.fullscreen.future.focus.focus-visible.focus-within.has.host.host-context.hover.indeterminate.in-range.invalid.is.lang.last-child.last-of-type.left.link.local-link.not.nth-child.nth-col.nth-last-child.nth-last-col.nth-last-of-type.nth-of-type.only-child.only-of-type.optional.out-of-range.past.placeholder-shown.read-only.read-write.required.right.root.scope.target.target-within.user-invalid.valid.visited.where`.split(`.`).sort().reverse(),lat=[`after`,`backdrop`,`before`,`cue`,`cue-region`,`first-letter`,`first-line`,`grammar-error`,`marker`,`part`,`placeholder`,`selection`,`slotted`,`spelling-error`].sort().reverse(),uat=`accent-color.align-content.align-items.align-self.alignment-baseline.all.anchor-name.animation.animation-composition.animation-delay.animation-direction.animation-duration.animation-fill-mode.animation-iteration-count.animation-name.animation-play-state.animation-range.animation-range-end.animation-range-start.animation-timeline.animation-timing-function.appearance.aspect-ratio.backdrop-filter.backface-visibility.background.background-attachment.background-blend-mode.background-clip.background-color.background-image.background-origin.background-position.background-position-x.background-position-y.background-repeat.background-size.baseline-shift.block-size.border.border-block.border-block-color.border-block-end.border-block-end-color.border-block-end-style.border-block-end-width.border-block-start.border-block-start-color.border-block-start-style.border-block-start-width.border-block-style.border-block-width.border-bottom.border-bottom-color.border-bottom-left-radius.border-bottom-right-radius.border-bottom-style.border-bottom-width.border-collapse.border-color.border-end-end-radius.border-end-start-radius.border-image.border-image-outset.border-image-repeat.border-image-slice.border-image-source.border-image-width.border-inline.border-inline-color.border-inline-end.border-inline-end-color.border-inline-end-style.border-inline-end-width.border-inline-start.border-inline-start-color.border-inline-start-style.border-inline-start-width.border-inline-style.border-inline-width.border-left.border-left-color.border-left-style.border-left-width.border-radius.border-right.border-right-color.border-right-style.border-right-width.border-spacing.border-start-end-radius.border-start-start-radius.border-style.border-top.border-top-color.border-top-left-radius.border-top-right-radius.border-top-style.border-top-width.border-width.bottom.box-align.box-decoration-break.box-direction.box-flex.box-flex-group.box-lines.box-ordinal-group.box-orient.box-pack.box-shadow.box-sizing.break-after.break-before.break-inside.caption-side.caret-color.clear.clip.clip-path.clip-rule.color.color-interpolation.color-interpolation-filters.color-profile.color-rendering.color-scheme.column-count.column-fill.column-gap.column-rule.column-rule-color.column-rule-style.column-rule-width.column-span.column-width.columns.contain.contain-intrinsic-block-size.contain-intrinsic-height.contain-intrinsic-inline-size.contain-intrinsic-size.contain-intrinsic-width.container.container-name.container-type.content.content-visibility.counter-increment.counter-reset.counter-set.cue.cue-after.cue-before.cursor.cx.cy.direction.display.dominant-baseline.empty-cells.enable-background.field-sizing.fill.fill-opacity.fill-rule.filter.flex.flex-basis.flex-direction.flex-flow.flex-grow.flex-shrink.flex-wrap.float.flood-color.flood-opacity.flow.font.font-display.font-family.font-feature-settings.font-kerning.font-language-override.font-optical-sizing.font-palette.font-size.font-size-adjust.font-smooth.font-smoothing.font-stretch.font-style.font-synthesis.font-synthesis-position.font-synthesis-small-caps.font-synthesis-style.font-synthesis-weight.font-variant.font-variant-alternates.font-variant-caps.font-variant-east-asian.font-variant-emoji.font-variant-ligatures.font-variant-numeric.font-variant-position.font-variation-settings.font-weight.forced-color-adjust.gap.glyph-orientation-horizontal.glyph-orientation-vertical.grid.grid-area.grid-auto-columns.grid-auto-flow.grid-auto-rows.grid-column.grid-column-end.grid-column-start.grid-gap.grid-row.grid-row-end.grid-row-start.grid-template.grid-template-areas.grid-template-columns.grid-template-rows.hanging-punctuation.height.hyphenate-character.hyphenate-limit-chars.hyphens.icon.image-orientation.image-rendering.image-resolution.ime-mode.initial-letter.initial-letter-align.inline-size.inset.inset-area.inset-block.inset-block-end.inset-block-start.inset-inline.inset-inline-end.inset-inline-start.isolation.justify-content.justify-items.justify-self.kerning.left.letter-spacing.lighting-color.line-break.line-height.line-height-step.list-style.list-style-image.list-style-position.list-style-type.margin.margin-block.margin-block-end.margin-block-start.margin-bottom.margin-inline.margin-inline-end.margin-inline-start.margin-left.margin-right.margin-top.margin-trim.marker.marker-end.marker-mid.marker-start.marks.mask.mask-border.mask-border-mode.mask-border-outset.mask-border-repeat.mask-border-slice.mask-border-source.mask-border-width.mask-clip.mask-composite.mask-image.mask-mode.mask-origin.mask-position.mask-repeat.mask-size.mask-type.masonry-auto-flow.math-depth.math-shift.math-style.max-block-size.max-height.max-inline-size.max-width.min-block-size.min-height.min-inline-size.min-width.mix-blend-mode.nav-down.nav-index.nav-left.nav-right.nav-up.none.normal.object-fit.object-position.offset.offset-anchor.offset-distance.offset-path.offset-position.offset-rotate.opacity.order.orphans.outline.outline-color.outline-offset.outline-style.outline-width.overflow.overflow-anchor.overflow-block.overflow-clip-margin.overflow-inline.overflow-wrap.overflow-x.overflow-y.overlay.overscroll-behavior.overscroll-behavior-block.overscroll-behavior-inline.overscroll-behavior-x.overscroll-behavior-y.padding.padding-block.padding-block-end.padding-block-start.padding-bottom.padding-inline.padding-inline-end.padding-inline-start.padding-left.padding-right.padding-top.page.page-break-after.page-break-before.page-break-inside.paint-order.pause.pause-after.pause-before.perspective.perspective-origin.place-content.place-items.place-self.pointer-events.position.position-anchor.position-visibility.print-color-adjust.quotes.r.resize.rest.rest-after.rest-before.right.rotate.row-gap.ruby-align.ruby-position.scale.scroll-behavior.scroll-margin.scroll-margin-block.scroll-margin-block-end.scroll-margin-block-start.scroll-margin-bottom.scroll-margin-inline.scroll-margin-inline-end.scroll-margin-inline-start.scroll-margin-left.scroll-margin-right.scroll-margin-top.scroll-padding.scroll-padding-block.scroll-padding-block-end.scroll-padding-block-start.scroll-padding-bottom.scroll-padding-inline.scroll-padding-inline-end.scroll-padding-inline-start.scroll-padding-left.scroll-padding-right.scroll-padding-top.scroll-snap-align.scroll-snap-stop.scroll-snap-type.scroll-timeline.scroll-timeline-axis.scroll-timeline-name.scrollbar-color.scrollbar-gutter.scrollbar-width.shape-image-threshold.shape-margin.shape-outside.shape-rendering.speak.speak-as.src.stop-color.stop-opacity.stroke.stroke-dasharray.stroke-dashoffset.stroke-linecap.stroke-linejoin.stroke-miterlimit.stroke-opacity.stroke-width.tab-size.table-layout.text-align.text-align-all.text-align-last.text-anchor.text-combine-upright.text-decoration.text-decoration-color.text-decoration-line.text-decoration-skip.text-decoration-skip-ink.text-decoration-style.text-decoration-thickness.text-emphasis.text-emphasis-color.text-emphasis-position.text-emphasis-style.text-indent.text-justify.text-orientation.text-overflow.text-rendering.text-shadow.text-size-adjust.text-transform.text-underline-offset.text-underline-position.text-wrap.text-wrap-mode.text-wrap-style.timeline-scope.top.touch-action.transform.transform-box.transform-origin.transform-style.transition.transition-behavior.transition-delay.transition-duration.transition-property.transition-timing-function.translate.unicode-bidi.user-modify.user-select.vector-effect.vertical-align.view-timeline.view-timeline-axis.view-timeline-inset.view-timeline-name.view-transition-name.visibility.voice-balance.voice-duration.voice-family.voice-pitch.voice-range.voice-rate.voice-stress.voice-volume.white-space.white-space-collapse.widows.width.will-change.word-break.word-spacing.word-wrap.writing-mode.x.y.z-index.zoom`.split(`.`).sort().reverse(),ZR=`[0-9](_*[0-9])*`,QR=`\\.(${ZR})`,$R=`[0-9a-fA-F](_*[0-9a-fA-F])*`,ez={className:`number`,variants:[{begin:`(\\b(${ZR})((${QR})|\\.)?|(${QR}))[eE][+-]?(${ZR})[fFdD]?\\b`},{begin:`\\b(${ZR})((${QR})[fFdD]?\\b|\\.([fFdD]\\b)?)`},{begin:`(${QR})[fFdD]?\\b`},{begin:`\\b(${ZR})[fFdD]\\b`},{begin:`\\b0[xX]((${$R})\\.?|(${$R})?\\.(${$R}))[pP][+-]?(${ZR})[fFdD]?\\b`},{begin:`\\b(0|[1-9](_*[0-9])*)[lL]?\\b`},{begin:`\\b0[xX](${$R})[lL]?\\b`},{begin:`\\b0(_*[0-7])*[lL]?\\b`},{begin:`\\b0[bB][01](_*[01])*[lL]?\\b`}],relevance:0},tz=`[A-Za-z$_][0-9A-Za-z$_]*`,dat=`as.in.of.if.for.while.finally.var.new.function.do.return.void.else.break.catch.instanceof.with.throw.case.default.try.switch.continue.typeof.delete.let.yield.const.class.debugger.async.await.static.import.from.export.extends.using`.split(`.`),fat=[`true`,`false`,`null`,`undefined`,`NaN`,`Infinity`],nz=`Object.Function.Boolean.Symbol.Math.Date.Number.BigInt.String.RegExp.Array.Float32Array.Float64Array.Int8Array.Uint8Array.Uint8ClampedArray.Int16Array.Int32Array.Uint16Array.Uint32Array.BigInt64Array.BigUint64Array.Set.Map.WeakSet.WeakMap.ArrayBuffer.SharedArrayBuffer.Atomics.DataView.JSON.Promise.Generator.GeneratorFunction.AsyncFunction.Reflect.Proxy.Intl.WebAssembly`.split(`.`),rz=[`Error`,`EvalError`,`InternalError`,`RangeError`,`ReferenceError`,`SyntaxError`,`TypeError`,`URIError`],iz=[`setInterval`,`setTimeout`,`clearInterval`,`clearTimeout`,`require`,`exports`,`eval`,`isFinite`,`isNaN`,`parseFloat`,`parseInt`,`decodeURI`,`decodeURIComponent`,`encodeURI`,`encodeURIComponent`,`escape`,`unescape`],pat=[`arguments`,`this`,`super`,`console`,`window`,`document`,`localStorage`,`sessionStorage`,`module`,`global`],mat=[].concat(iz,nz,rz),az=`[0-9](_*[0-9])*`,oz=`\\.(${az})`,sz=`[0-9a-fA-F](_*[0-9a-fA-F])*`,hat={className:`number`,variants:[{begin:`(\\b(${az})((${oz})|\\.)?|(${oz}))[eE][+-]?(${az})[fFdD]?\\b`},{begin:`\\b(${az})((${oz})[fFdD]?\\b|\\.([fFdD]\\b)?)`},{begin:`(${oz})[fFdD]?\\b`},{begin:`\\b(${az})[fFdD]\\b`},{begin:`\\b0[xX]((${sz})\\.?|(${sz})?\\.(${sz}))[pP][+-]?(${az})[fFdD]?\\b`},{begin:`\\b(0|[1-9](_*[0-9])*)[lL]?\\b`},{begin:`\\b0[xX](${sz})[lL]?\\b`},{begin:`\\b0(_*[0-7])*[lL]?\\b`},{begin:`\\b0[bB][01](_*[01])*[lL]?\\b`}],relevance:0},gat=e=>({IMPORTANT:{scope:`meta`,begin:`!important`},BLOCK_COMMENT:e.C_BLOCK_COMMENT_MODE,HEXCOLOR:{scope:`number`,begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/},FUNCTION_DISPATCH:{className:`built_in`,begin:/[\w-]+(?=\()/},ATTRIBUTE_SELECTOR_MODE:{scope:`selector-attr`,begin:/\[/,end:/\]/,illegal:`$`,contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{scope:`number`,begin:e.NUMBER_RE+`(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?`,relevance:0},CSS_VARIABLE:{className:`attr`,begin:/--[A-Za-z_][A-Za-z0-9_-]*/}}),_at=`a.abbr.address.article.aside.audio.b.blockquote.body.button.canvas.caption.cite.code.dd.del.details.dfn.div.dl.dt.em.fieldset.figcaption.figure.footer.form.h1.h2.h3.h4.h5.h6.header.hgroup.html.i.iframe.img.input.ins.kbd.label.legend.li.main.mark.menu.nav.object.ol.optgroup.option.p.picture.q.quote.samp.section.select.source.span.strong.summary.sup.table.tbody.td.textarea.tfoot.th.thead.time.tr.ul.var.video`.split(`.`),vat=`defs.g.marker.mask.pattern.svg.switch.symbol.feBlend.feColorMatrix.feComponentTransfer.feComposite.feConvolveMatrix.feDiffuseLighting.feDisplacementMap.feFlood.feGaussianBlur.feImage.feMerge.feMorphology.feOffset.feSpecularLighting.feTile.feTurbulence.linearGradient.radialGradient.stop.circle.ellipse.image.line.path.polygon.polyline.rect.text.use.textPath.tspan.foreignObject.clipPath`.split(`.`),yat=[..._at,...vat],bat=`any-hover.any-pointer.aspect-ratio.color.color-gamut.color-index.device-aspect-ratio.device-height.device-width.display-mode.forced-colors.grid.height.hover.inverted-colors.monochrome.orientation.overflow-block.overflow-inline.pointer.prefers-color-scheme.prefers-contrast.prefers-reduced-motion.prefers-reduced-transparency.resolution.scan.scripting.update.width.min-width.max-width.min-height.max-height`.split(`.`).sort().reverse(),cz=`active.any-link.blank.checked.current.default.defined.dir.disabled.drop.empty.enabled.first.first-child.first-of-type.fullscreen.future.focus.focus-visible.focus-within.has.host.host-context.hover.indeterminate.in-range.invalid.is.lang.last-child.last-of-type.left.link.local-link.not.nth-child.nth-col.nth-last-child.nth-last-col.nth-last-of-type.nth-of-type.only-child.only-of-type.optional.out-of-range.past.placeholder-shown.read-only.read-write.required.right.root.scope.target.target-within.user-invalid.valid.visited.where`.split(`.`).sort().reverse(),lz=[`after`,`backdrop`,`before`,`cue`,`cue-region`,`first-letter`,`first-line`,`grammar-error`,`marker`,`part`,`placeholder`,`selection`,`slotted`,`spelling-error`].sort().reverse(),xat=`accent-color.align-content.align-items.align-self.alignment-baseline.all.anchor-name.animation.animation-composition.animation-delay.animation-direction.animation-duration.animation-fill-mode.animation-iteration-count.animation-name.animation-play-state.animation-range.animation-range-end.animation-range-start.animation-timeline.animation-timing-function.appearance.aspect-ratio.backdrop-filter.backface-visibility.background.background-attachment.background-blend-mode.background-clip.background-color.background-image.background-origin.background-position.background-position-x.background-position-y.background-repeat.background-size.baseline-shift.block-size.border.border-block.border-block-color.border-block-end.border-block-end-color.border-block-end-style.border-block-end-width.border-block-start.border-block-start-color.border-block-start-style.border-block-start-width.border-block-style.border-block-width.border-bottom.border-bottom-color.border-bottom-left-radius.border-bottom-right-radius.border-bottom-style.border-bottom-width.border-collapse.border-color.border-end-end-radius.border-end-start-radius.border-image.border-image-outset.border-image-repeat.border-image-slice.border-image-source.border-image-width.border-inline.border-inline-color.border-inline-end.border-inline-end-color.border-inline-end-style.border-inline-end-width.border-inline-start.border-inline-start-color.border-inline-start-style.border-inline-start-width.border-inline-style.border-inline-width.border-left.border-left-color.border-left-style.border-left-width.border-radius.border-right.border-right-color.border-right-style.border-right-width.border-spacing.border-start-end-radius.border-start-start-radius.border-style.border-top.border-top-color.border-top-left-radius.border-top-right-radius.border-top-style.border-top-width.border-width.bottom.box-align.box-decoration-break.box-direction.box-flex.box-flex-group.box-lines.box-ordinal-group.box-orient.box-pack.box-shadow.box-sizing.break-after.break-before.break-inside.caption-side.caret-color.clear.clip.clip-path.clip-rule.color.color-interpolation.color-interpolation-filters.color-profile.color-rendering.color-scheme.column-count.column-fill.column-gap.column-rule.column-rule-color.column-rule-style.column-rule-width.column-span.column-width.columns.contain.contain-intrinsic-block-size.contain-intrinsic-height.contain-intrinsic-inline-size.contain-intrinsic-size.contain-intrinsic-width.container.container-name.container-type.content.content-visibility.counter-increment.counter-reset.counter-set.cue.cue-after.cue-before.cursor.cx.cy.direction.display.dominant-baseline.empty-cells.enable-background.field-sizing.fill.fill-opacity.fill-rule.filter.flex.flex-basis.flex-direction.flex-flow.flex-grow.flex-shrink.flex-wrap.float.flood-color.flood-opacity.flow.font.font-display.font-family.font-feature-settings.font-kerning.font-language-override.font-optical-sizing.font-palette.font-size.font-size-adjust.font-smooth.font-smoothing.font-stretch.font-style.font-synthesis.font-synthesis-position.font-synthesis-small-caps.font-synthesis-style.font-synthesis-weight.font-variant.font-variant-alternates.font-variant-caps.font-variant-east-asian.font-variant-emoji.font-variant-ligatures.font-variant-numeric.font-variant-position.font-variation-settings.font-weight.forced-color-adjust.gap.glyph-orientation-horizontal.glyph-orientation-vertical.grid.grid-area.grid-auto-columns.grid-auto-flow.grid-auto-rows.grid-column.grid-column-end.grid-column-start.grid-gap.grid-row.grid-row-end.grid-row-start.grid-template.grid-template-areas.grid-template-columns.grid-template-rows.hanging-punctuation.height.hyphenate-character.hyphenate-limit-chars.hyphens.icon.image-orientation.image-rendering.image-resolution.ime-mode.initial-letter.initial-letter-align.inline-size.inset.inset-area.inset-block.inset-block-end.inset-block-start.inset-inline.inset-inline-end.inset-inline-start.isolation.justify-content.justify-items.justify-self.kerning.left.letter-spacing.lighting-color.line-break.line-height.line-height-step.list-style.list-style-image.list-style-position.list-style-type.margin.margin-block.margin-block-end.margin-block-start.margin-bottom.margin-inline.margin-inline-end.margin-inline-start.margin-left.margin-right.margin-top.margin-trim.marker.marker-end.marker-mid.marker-start.marks.mask.mask-border.mask-border-mode.mask-border-outset.mask-border-repeat.mask-border-slice.mask-border-source.mask-border-width.mask-clip.mask-composite.mask-image.mask-mode.mask-origin.mask-position.mask-repeat.mask-size.mask-type.masonry-auto-flow.math-depth.math-shift.math-style.max-block-size.max-height.max-inline-size.max-width.min-block-size.min-height.min-inline-size.min-width.mix-blend-mode.nav-down.nav-index.nav-left.nav-right.nav-up.none.normal.object-fit.object-position.offset.offset-anchor.offset-distance.offset-path.offset-position.offset-rotate.opacity.order.orphans.outline.outline-color.outline-offset.outline-style.outline-width.overflow.overflow-anchor.overflow-block.overflow-clip-margin.overflow-inline.overflow-wrap.overflow-x.overflow-y.overlay.overscroll-behavior.overscroll-behavior-block.overscroll-behavior-inline.overscroll-behavior-x.overscroll-behavior-y.padding.padding-block.padding-block-end.padding-block-start.padding-bottom.padding-inline.padding-inline-end.padding-inline-start.padding-left.padding-right.padding-top.page.page-break-after.page-break-before.page-break-inside.paint-order.pause.pause-after.pause-before.perspective.perspective-origin.place-content.place-items.place-self.pointer-events.position.position-anchor.position-visibility.print-color-adjust.quotes.r.resize.rest.rest-after.rest-before.right.rotate.row-gap.ruby-align.ruby-position.scale.scroll-behavior.scroll-margin.scroll-margin-block.scroll-margin-block-end.scroll-margin-block-start.scroll-margin-bottom.scroll-margin-inline.scroll-margin-inline-end.scroll-margin-inline-start.scroll-margin-left.scroll-margin-right.scroll-margin-top.scroll-padding.scroll-padding-block.scroll-padding-block-end.scroll-padding-block-start.scroll-padding-bottom.scroll-padding-inline.scroll-padding-inline-end.scroll-padding-inline-start.scroll-padding-left.scroll-padding-right.scroll-padding-top.scroll-snap-align.scroll-snap-stop.scroll-snap-type.scroll-timeline.scroll-timeline-axis.scroll-timeline-name.scrollbar-color.scrollbar-gutter.scrollbar-width.shape-image-threshold.shape-margin.shape-outside.shape-rendering.speak.speak-as.src.stop-color.stop-opacity.stroke.stroke-dasharray.stroke-dashoffset.stroke-linecap.stroke-linejoin.stroke-miterlimit.stroke-opacity.stroke-width.tab-size.table-layout.text-align.text-align-all.text-align-last.text-anchor.text-combine-upright.text-decoration.text-decoration-color.text-decoration-line.text-decoration-skip.text-decoration-skip-ink.text-decoration-style.text-decoration-thickness.text-emphasis.text-emphasis-color.text-emphasis-position.text-emphasis-style.text-indent.text-justify.text-orientation.text-overflow.text-rendering.text-shadow.text-size-adjust.text-transform.text-underline-offset.text-underline-position.text-wrap.text-wrap-mode.text-wrap-style.timeline-scope.top.touch-action.transform.transform-box.transform-origin.transform-style.transition.transition-behavior.transition-delay.transition-duration.transition-property.transition-timing-function.translate.unicode-bidi.user-modify.user-select.vector-effect.vertical-align.view-timeline.view-timeline-axis.view-timeline-inset.view-timeline-name.view-transition-name.visibility.voice-balance.voice-duration.voice-family.voice-pitch.voice-range.voice-rate.voice-stress.voice-volume.white-space.white-space-collapse.widows.width.will-change.word-break.word-spacing.word-wrap.writing-mode.x.y.z-index.zoom`.split(`.`).sort().reverse(),Sat=cz.concat(lz).sort().reverse(),Cat=e=>({IMPORTANT:{scope:`meta`,begin:`!important`},BLOCK_COMMENT:e.C_BLOCK_COMMENT_MODE,HEXCOLOR:{scope:`number`,begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/},FUNCTION_DISPATCH:{className:`built_in`,begin:/[\w-]+(?=\()/},ATTRIBUTE_SELECTOR_MODE:{scope:`selector-attr`,begin:/\[/,end:/\]/,illegal:`$`,contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{scope:`number`,begin:e.NUMBER_RE+`(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?`,relevance:0},CSS_VARIABLE:{className:`attr`,begin:/--[A-Za-z_][A-Za-z0-9_-]*/}}),wat=`a.abbr.address.article.aside.audio.b.blockquote.body.button.canvas.caption.cite.code.dd.del.details.dfn.div.dl.dt.em.fieldset.figcaption.figure.footer.form.h1.h2.h3.h4.h5.h6.header.hgroup.html.i.iframe.img.input.ins.kbd.label.legend.li.main.mark.menu.nav.object.ol.optgroup.option.p.picture.q.quote.samp.section.select.source.span.strong.summary.sup.table.tbody.td.textarea.tfoot.th.thead.time.tr.ul.var.video`.split(`.`),Tat=`defs.g.marker.mask.pattern.svg.switch.symbol.feBlend.feColorMatrix.feComponentTransfer.feComposite.feConvolveMatrix.feDiffuseLighting.feDisplacementMap.feFlood.feGaussianBlur.feImage.feMerge.feMorphology.feOffset.feSpecularLighting.feTile.feTurbulence.linearGradient.radialGradient.stop.circle.ellipse.image.line.path.polygon.polyline.rect.text.use.textPath.tspan.foreignObject.clipPath`.split(`.`),Eat=[...wat,...Tat],Dat=`any-hover.any-pointer.aspect-ratio.color.color-gamut.color-index.device-aspect-ratio.device-height.device-width.display-mode.forced-colors.grid.height.hover.inverted-colors.monochrome.orientation.overflow-block.overflow-inline.pointer.prefers-color-scheme.prefers-contrast.prefers-reduced-motion.prefers-reduced-transparency.resolution.scan.scripting.update.width.min-width.max-width.min-height.max-height`.split(`.`).sort().reverse(),Oat=`active.any-link.blank.checked.current.default.defined.dir.disabled.drop.empty.enabled.first.first-child.first-of-type.fullscreen.future.focus.focus-visible.focus-within.has.host.host-context.hover.indeterminate.in-range.invalid.is.lang.last-child.last-of-type.left.link.local-link.not.nth-child.nth-col.nth-last-child.nth-last-col.nth-last-of-type.nth-of-type.only-child.only-of-type.optional.out-of-range.past.placeholder-shown.read-only.read-write.required.right.root.scope.target.target-within.user-invalid.valid.visited.where`.split(`.`).sort().reverse(),kat=[`after`,`backdrop`,`before`,`cue`,`cue-region`,`first-letter`,`first-line`,`grammar-error`,`marker`,`part`,`placeholder`,`selection`,`slotted`,`spelling-error`].sort().reverse(),Aat=`accent-color.align-content.align-items.align-self.alignment-baseline.all.anchor-name.animation.animation-composition.animation-delay.animation-direction.animation-duration.animation-fill-mode.animation-iteration-count.animation-name.animation-play-state.animation-range.animation-range-end.animation-range-start.animation-timeline.animation-timing-function.appearance.aspect-ratio.backdrop-filter.backface-visibility.background.background-attachment.background-blend-mode.background-clip.background-color.background-image.background-origin.background-position.background-position-x.background-position-y.background-repeat.background-size.baseline-shift.block-size.border.border-block.border-block-color.border-block-end.border-block-end-color.border-block-end-style.border-block-end-width.border-block-start.border-block-start-color.border-block-start-style.border-block-start-width.border-block-style.border-block-width.border-bottom.border-bottom-color.border-bottom-left-radius.border-bottom-right-radius.border-bottom-style.border-bottom-width.border-collapse.border-color.border-end-end-radius.border-end-start-radius.border-image.border-image-outset.border-image-repeat.border-image-slice.border-image-source.border-image-width.border-inline.border-inline-color.border-inline-end.border-inline-end-color.border-inline-end-style.border-inline-end-width.border-inline-start.border-inline-start-color.border-inline-start-style.border-inline-start-width.border-inline-style.border-inline-width.border-left.border-left-color.border-left-style.border-left-width.border-radius.border-right.border-right-color.border-right-style.border-right-width.border-spacing.border-start-end-radius.border-start-start-radius.border-style.border-top.border-top-color.border-top-left-radius.border-top-right-radius.border-top-style.border-top-width.border-width.bottom.box-align.box-decoration-break.box-direction.box-flex.box-flex-group.box-lines.box-ordinal-group.box-orient.box-pack.box-shadow.box-sizing.break-after.break-before.break-inside.caption-side.caret-color.clear.clip.clip-path.clip-rule.color.color-interpolation.color-interpolation-filters.color-profile.color-rendering.color-scheme.column-count.column-fill.column-gap.column-rule.column-rule-color.column-rule-style.column-rule-width.column-span.column-width.columns.contain.contain-intrinsic-block-size.contain-intrinsic-height.contain-intrinsic-inline-size.contain-intrinsic-size.contain-intrinsic-width.container.container-name.container-type.content.content-visibility.counter-increment.counter-reset.counter-set.cue.cue-after.cue-before.cursor.cx.cy.direction.display.dominant-baseline.empty-cells.enable-background.field-sizing.fill.fill-opacity.fill-rule.filter.flex.flex-basis.flex-direction.flex-flow.flex-grow.flex-shrink.flex-wrap.float.flood-color.flood-opacity.flow.font.font-display.font-family.font-feature-settings.font-kerning.font-language-override.font-optical-sizing.font-palette.font-size.font-size-adjust.font-smooth.font-smoothing.font-stretch.font-style.font-synthesis.font-synthesis-position.font-synthesis-small-caps.font-synthesis-style.font-synthesis-weight.font-variant.font-variant-alternates.font-variant-caps.font-variant-east-asian.font-variant-emoji.font-variant-ligatures.font-variant-numeric.font-variant-position.font-variation-settings.font-weight.forced-color-adjust.gap.glyph-orientation-horizontal.glyph-orientation-vertical.grid.grid-area.grid-auto-columns.grid-auto-flow.grid-auto-rows.grid-column.grid-column-end.grid-column-start.grid-gap.grid-row.grid-row-end.grid-row-start.grid-template.grid-template-areas.grid-template-columns.grid-template-rows.hanging-punctuation.height.hyphenate-character.hyphenate-limit-chars.hyphens.icon.image-orientation.image-rendering.image-resolution.ime-mode.initial-letter.initial-letter-align.inline-size.inset.inset-area.inset-block.inset-block-end.inset-block-start.inset-inline.inset-inline-end.inset-inline-start.isolation.justify-content.justify-items.justify-self.kerning.left.letter-spacing.lighting-color.line-break.line-height.line-height-step.list-style.list-style-image.list-style-position.list-style-type.margin.margin-block.margin-block-end.margin-block-start.margin-bottom.margin-inline.margin-inline-end.margin-inline-start.margin-left.margin-right.margin-top.margin-trim.marker.marker-end.marker-mid.marker-start.marks.mask.mask-border.mask-border-mode.mask-border-outset.mask-border-repeat.mask-border-slice.mask-border-source.mask-border-width.mask-clip.mask-composite.mask-image.mask-mode.mask-origin.mask-position.mask-repeat.mask-size.mask-type.masonry-auto-flow.math-depth.math-shift.math-style.max-block-size.max-height.max-inline-size.max-width.min-block-size.min-height.min-inline-size.min-width.mix-blend-mode.nav-down.nav-index.nav-left.nav-right.nav-up.none.normal.object-fit.object-position.offset.offset-anchor.offset-distance.offset-path.offset-position.offset-rotate.opacity.order.orphans.outline.outline-color.outline-offset.outline-style.outline-width.overflow.overflow-anchor.overflow-block.overflow-clip-margin.overflow-inline.overflow-wrap.overflow-x.overflow-y.overlay.overscroll-behavior.overscroll-behavior-block.overscroll-behavior-inline.overscroll-behavior-x.overscroll-behavior-y.padding.padding-block.padding-block-end.padding-block-start.padding-bottom.padding-inline.padding-inline-end.padding-inline-start.padding-left.padding-right.padding-top.page.page-break-after.page-break-before.page-break-inside.paint-order.pause.pause-after.pause-before.perspective.perspective-origin.place-content.place-items.place-self.pointer-events.position.position-anchor.position-visibility.print-color-adjust.quotes.r.resize.rest.rest-after.rest-before.right.rotate.row-gap.ruby-align.ruby-position.scale.scroll-behavior.scroll-margin.scroll-margin-block.scroll-margin-block-end.scroll-margin-block-start.scroll-margin-bottom.scroll-margin-inline.scroll-margin-inline-end.scroll-margin-inline-start.scroll-margin-left.scroll-margin-right.scroll-margin-top.scroll-padding.scroll-padding-block.scroll-padding-block-end.scroll-padding-block-start.scroll-padding-bottom.scroll-padding-inline.scroll-padding-inline-end.scroll-padding-inline-start.scroll-padding-left.scroll-padding-right.scroll-padding-top.scroll-snap-align.scroll-snap-stop.scroll-snap-type.scroll-timeline.scroll-timeline-axis.scroll-timeline-name.scrollbar-color.scrollbar-gutter.scrollbar-width.shape-image-threshold.shape-margin.shape-outside.shape-rendering.speak.speak-as.src.stop-color.stop-opacity.stroke.stroke-dasharray.stroke-dashoffset.stroke-linecap.stroke-linejoin.stroke-miterlimit.stroke-opacity.stroke-width.tab-size.table-layout.text-align.text-align-all.text-align-last.text-anchor.text-combine-upright.text-decoration.text-decoration-color.text-decoration-line.text-decoration-skip.text-decoration-skip-ink.text-decoration-style.text-decoration-thickness.text-emphasis.text-emphasis-color.text-emphasis-position.text-emphasis-style.text-indent.text-justify.text-orientation.text-overflow.text-rendering.text-shadow.text-size-adjust.text-transform.text-underline-offset.text-underline-position.text-wrap.text-wrap-mode.text-wrap-style.timeline-scope.top.touch-action.transform.transform-box.transform-origin.transform-style.transition.transition-behavior.transition-delay.transition-duration.transition-property.transition-timing-function.translate.unicode-bidi.user-modify.user-select.vector-effect.vertical-align.view-timeline.view-timeline-axis.view-timeline-inset.view-timeline-name.view-transition-name.visibility.voice-balance.voice-duration.voice-family.voice-pitch.voice-range.voice-rate.voice-stress.voice-volume.white-space.white-space-collapse.widows.width.will-change.word-break.word-spacing.word-wrap.writing-mode.x.y.z-index.zoom`.split(`.`).sort().reverse(),uz=e=>YR(/\b/,e,/\w$/.test(e)?/\b/:/\B/),jat=[`Protocol`,`Type`].map(uz),dz=[`init`,`self`].map(uz),Mat=[`Any`,`Self`],fz=[`actor`,`any`,`associatedtype`,`async`,`await`,/as\?/,/as!/,`as`,`borrowing`,`break`,`case`,`catch`,`class`,`consume`,`consuming`,`continue`,`convenience`,`copy`,`default`,`defer`,`deinit`,`didSet`,`distributed`,`do`,`dynamic`,`each`,`else`,`enum`,`extension`,`fallthrough`,/fileprivate\(set\)/,`fileprivate`,`final`,`for`,`func`,`get`,`guard`,`if`,`import`,`indirect`,`infix`,/init\?/,/init!/,`inout`,/internal\(set\)/,`internal`,`in`,`is`,`isolated`,`nonisolated`,`lazy`,`let`,`macro`,`mutating`,`nonmutating`,/open\(set\)/,`open`,`operator`,`optional`,`override`,`package`,`postfix`,`precedencegroup`,`prefix`,/private\(set\)/,`private`,`protocol`,/public\(set\)/,`public`,`repeat`,`required`,`rethrows`,`return`,`set`,`some`,`static`,`struct`,`subscript`,`super`,`switch`,`throws`,`throw`,/try\?/,/try!/,`try`,`typealias`,/unowned\(safe\)/,/unowned\(unsafe\)/,`unowned`,`var`,`weak`,`where`,`while`,`willSet`],pz=[`false`,`nil`,`true`],Nat=[`assignment`,`associativity`,`higherThan`,`left`,`lowerThan`,`none`,`right`],Pat=[`#colorLiteral`,`#column`,`#dsohandle`,`#else`,`#elseif`,`#endif`,`#error`,`#file`,`#fileID`,`#fileLiteral`,`#filePath`,`#function`,`#if`,`#imageLiteral`,`#keyPath`,`#line`,`#selector`,`#sourceLocation`,`#warning`],mz=`abs.all.any.assert.assertionFailure.debugPrint.dump.fatalError.getVaList.isKnownUniquelyReferenced.max.min.numericCast.pointwiseMax.pointwiseMin.precondition.preconditionFailure.print.readLine.repeatElement.sequence.stride.swap.swift_unboxFromSwiftValueWithType.transcode.type.unsafeBitCast.unsafeDowncast.withExtendedLifetime.withUnsafeMutablePointer.withUnsafePointer.withVaList.withoutActuallyEscaping.zip`.split(`.`),hz=XR(/[/=\-+!*%<>&|^~?]/,/[\u00A1-\u00A7]/,/[\u00A9\u00AB]/,/[\u00AC\u00AE]/,/[\u00B0\u00B1]/,/[\u00B6\u00BB\u00BF\u00D7\u00F7]/,/[\u2016-\u2017]/,/[\u2020-\u2027]/,/[\u2030-\u203E]/,/[\u2041-\u2053]/,/[\u2055-\u205E]/,/[\u2190-\u23FF]/,/[\u2500-\u2775]/,/[\u2794-\u2BFF]/,/[\u2E00-\u2E7F]/,/[\u3001-\u3003]/,/[\u3008-\u3020]/,/[\u3030]/),gz=XR(hz,/[\u0300-\u036F]/,/[\u1DC0-\u1DFF]/,/[\u20D0-\u20FF]/,/[\uFE00-\uFE0F]/,/[\uFE20-\uFE2F]/),_z=YR(hz,gz,`*`),vz=XR(/[a-zA-Z_]/,/[\u00A8\u00AA\u00AD\u00AF\u00B2-\u00B5\u00B7-\u00BA]/,/[\u00BC-\u00BE\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF]/,/[\u0100-\u02FF\u0370-\u167F\u1681-\u180D\u180F-\u1DBF]/,/[\u1E00-\u1FFF]/,/[\u200B-\u200D\u202A-\u202E\u203F-\u2040\u2054\u2060-\u206F]/,/[\u2070-\u20CF\u2100-\u218F\u2460-\u24FF\u2776-\u2793]/,/[\u2C00-\u2DFF\u2E80-\u2FFF]/,/[\u3004-\u3007\u3021-\u302F\u3031-\u303F\u3040-\uD7FF]/,/[\uF900-\uFD3D\uFD40-\uFDCF\uFDF0-\uFE1F\uFE30-\uFE44]/,/[\uFE47-\uFEFE\uFF00-\uFFFD]/),yz=XR(vz,/\d/,/[\u0300-\u036F\u1DC0-\u1DFF\u20D0-\u20FF\uFE20-\uFE2F]/),bz=YR(vz,yz,`*`),xz=YR(/[A-Z]/,yz,`*`),Fat=[`attached`,`autoclosure`,YR(/convention\(/,XR(`swift`,`block`,`c`),/\)/),`discardableResult`,`dynamicCallable`,`dynamicMemberLookup`,`escaping`,`freestanding`,`frozen`,`GKInspectable`,`IBAction`,`IBDesignable`,`IBInspectable`,`IBOutlet`,`IBSegueAction`,`inlinable`,`main`,`nonobjc`,`NSApplicationMain`,`NSCopying`,`NSManaged`,YR(/objc\(/,bz,/\)/),`objc`,`objcMembers`,`propertyWrapper`,`requires_stored_property_inits`,`resultBuilder`,`Sendable`,`testable`,`UIApplicationMain`,`unchecked`,`unknown`,`usableFromInline`,`warn_unqualified_access`],Iat=[`iOS`,`iOSApplicationExtension`,`macOS`,`macOSApplicationExtension`,`macCatalyst`,`macCatalystApplicationExtension`,`watchOS`,`watchOSApplicationExtension`,`tvOS`,`tvOSApplicationExtension`,`swift`],Sz=`[A-Za-z$_][0-9A-Za-z$_]*`,Cz=`as.in.of.if.for.while.finally.var.new.function.do.return.void.else.break.catch.instanceof.with.throw.case.default.try.switch.continue.typeof.delete.let.yield.const.class.debugger.async.await.static.import.from.export.extends.using`.split(`.`),wz=[`true`,`false`,`null`,`undefined`,`NaN`,`Infinity`],Tz=`Object.Function.Boolean.Symbol.Math.Date.Number.BigInt.String.RegExp.Array.Float32Array.Float64Array.Int8Array.Uint8Array.Uint8ClampedArray.Int16Array.Int32Array.Uint16Array.Uint32Array.BigInt64Array.BigUint64Array.Set.Map.WeakSet.WeakMap.ArrayBuffer.SharedArrayBuffer.Atomics.DataView.JSON.Promise.Generator.GeneratorFunction.AsyncFunction.Reflect.Proxy.Intl.WebAssembly`.split(`.`),Ez=[`Error`,`EvalError`,`InternalError`,`RangeError`,`ReferenceError`,`SyntaxError`,`TypeError`,`URIError`],Dz=[`setInterval`,`setTimeout`,`clearInterval`,`clearTimeout`,`require`,`exports`,`eval`,`isFinite`,`isNaN`,`parseFloat`,`parseInt`,`decodeURI`,`decodeURIComponent`,`encodeURI`,`encodeURIComponent`,`escape`,`unescape`],Oz=[`arguments`,`this`,`super`,`console`,`window`,`document`,`localStorage`,`sessionStorage`,`module`,`global`],kz=[].concat(Dz,Tz,Ez),Lat=e=>{let t=Uit(e),{regex:n}=e,r=/[\p{XID_Start}_]\p{XID_Continue}*/u,i=t.keywords,a=[...i.keyword??[],...i.built_in??[],...i.literal??[],...i.type??[]].map(e=>e.replace(/\|\d+$/,``)),o=n.concat(`(?!(?:`,a.join(`|`),`)\\b)`),s={scope:`title.function`,relevance:0,match:n.concat(/\b/,o,r,n.lookahead(/\s*\(/))};return{...t,contains:[...t.contains??[],s]}},Rat=e=>{let t={className:`string`,begin:/"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,{className:`variable`,begin:/\$\(/,end:/\)/,contains:[e.BACKSLASH_ESCAPE]}],relevance:0},n={className:`literal`,begin:/(--request|-X)\s/,contains:[{className:`symbol`,begin:/(get|post|delete|options|head|put|patch|trace|connect)/,end:/\s/,returnEnd:!0}],returnEnd:!0,relevance:10},r={className:`literal`,begin:/--/,end:/[\s"]/,returnEnd:!0,relevance:0},i={className:`literal`,begin:/-\w/,end:/[\s"]/,returnEnd:!0,relevance:0},a={className:`string`,begin:/\\"/,relevance:0},o={className:`string`,begin:/'/,end:/'/,relevance:0},s={className:`number`,variants:[{begin:e.C_NUMBER_RE}],relevance:0};return{name:`curl`,aliases:[`curl`],keywords:`curl`,case_insensitive:!0,contains:[n,r,i,t,a,o,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,s,{match:/(\/[a-z._-]+)+/}]}},zat=e=>{let t=Uit(e),{regex:n}=e,r=/[\p{XID_Start}_]\p{XID_Continue}*/u,i=t.keywords,a=[`fn`,`struct`,`trait`,`var`,`let`,`alias`,`comptime`,`owned`,`borrowed`,`inout`,`ref`,`mut`,`read`,`out`,`raises`,`capturing`],o=`Int.UInt.Int8.Int16.Int32.Int64.UInt8.UInt16.UInt32.UInt64.Float16.Float32.Float64.Bool.String.StringLiteral.StringSlice.SIMD.DType.Scalar.List.Dict.Set.Tuple.Optional.Variant.Span.Pointer.UnsafePointer.Reference.Error`.split(`.`),s=(...e)=>Array.from(new Set(e.flat())),c={...i,keyword:s(i.keyword??[],a),type:s(i.type??[],o)},l=[...c.keyword??[],...i.built_in??[],...i.literal??[],...c.type??[]].map(e=>e.replace(/\|\d+$/,``)),u=n.concat(`(?!(?:`,l.join(`|`),`)\\b)`),d={scope:`title.function`,relevance:0,match:n.concat(/\b/,u,r,n.lookahead(/\(/))};return{...t,name:`Mojo`,aliases:[`mojo`,`🔥`],keywords:c,contains:[...t.contains??[],d]}},Az={bash:xit,c:Sit,clojure:ait,cpp:Cit,csharp:wit,css:Tit,curl:Rat,dart:oit,diff:Eit,docker:sit,dockerfile:sit,elixir:cit,fsharp:fit,go:Dit,graphql:Oit,haskell:pit,html:tat,http:mit,ini:kit,java:jit,javascript:Mit,json:Nit,kotlin:Pit,less:Fit,lua:Iit,makefile:Lit,markdown:Rit,matlab:hit,mojo:zat,nginx:git,objectivec:zit,ocaml:_it,perl:Bit,php:Vit,plaintext:Hit,powershell:vit,properties:yit,python:Lat,r:Wit,ruby:Git,rust:Kit,scala:bit,scss:qit,shell:Jit,sql:Yit,swift:Qit,toml:kit,typescript:eat,xml:tat,yaml:nat}}));function Vat(e,t){let n={},r={};for(let t of e)Object.assign(n,t.property),Object.assign(r,t.normal);return new FB(n,r,t)}function jz(e){return e.toLowerCase()}function Mz(){return 2**++qlt}function Hat(e,t,n){n&&(e[t]=n)}function Nz(e){let t={},n={};for(let[r,i]of Object.entries(e.properties)){let a=new KB(r,e.transform(e.attributes||{},r),i,e.space);e.mustUseProperty&&e.mustUseProperty.includes(r)&&(a.mustUseProperty=!0),t[r]=a,n[jz(r)]=r,n[jz(a.attribute)]=r}return new FB(t,n,e.space)}function Uat(e,t){return t in e?e[t]:t}function Wat(e,t){return Uat(e,t.toLowerCase())}function Pz(e,t){let n=jz(t),r=t,i=IB;if(n in e.normal)return e.property[e.normal[n]];if(n.length>4&&n.slice(0,4)===`data`&&Zlt.test(t)){if(t.charAt(4)===`-`){let e=t.slice(5).replace(ZB,Kat);r=`data`+e.charAt(0).toUpperCase()+e.slice(1)}else{let e=t.slice(4);if(!ZB.test(e)){let n=e.replace(Xlt,Gat);n.charAt(0)!==`-`&&(n=`-`+n),t=`data`+n}}i=KB}return new i(r,t)}function Gat(e){return`-`+e.toLowerCase()}function Kat(e){return e.charAt(1).toUpperCase()}function qat(e){let t=[],n=String(e||``),r=n.indexOf(`,`),i=0,a=!1;for(;!a;){r===-1&&(r=n.length,a=!0);let e=n.slice(i,r).trim();(e||!a)&&t.push(e),i=r+1,r=n.indexOf(`,`,i)}return t}function Jat(e,t){let n=t||{};return(e[e.length-1]===``?[...e,``]:e).join((n.padRight?` `:``)+`,`+(n.padLeft===!1?``:` `)).trim()}function Yat(e,t){let n=e||``,r={},i=0,a,o;for(;i-1&&ee)return{line:t+1,column:e-(t>0?n[t-1]:0)+1,offset:e}}}function i(e){let t=e&&e.line,r=e&&e.column;if(typeof t==`number`&&typeof r==`number`&&!Number.isNaN(t)&&!Number.isNaN(r)&&t-1 in n){let e=(n[t-2]||0)+r-1||0;if(e>-1&&e=55296&&e<=57343}function uot(e){return e>=56320&&e<=57343}function dot(e,t){return(e-55296)*1024+9216+t}function fot(e){return e!==32&&e!==10&&e!==13&&e!==9&&e!==12&&e>=1&&e<=31||e>=127&&e<=159}function pot(e){return e>=64976&&e<=65007||rut.has(e)}function mot(e,t){for(let n=e.attrs.length-1;n>=0;n--)if(e.attrs[n].name===t)return e.attrs[n].value;return null}function hot(e){return e>=55296&&e<=57343||e>1114111?65533:sut.get(e)??e}function Bz(e){return e>=cV.ZERO&&e<=cV.NINE}function got(e){return e>=cV.UPPER_A&&e<=cV.UPPER_F||e>=cV.LOWER_A&&e<=cV.LOWER_F}function _ot(e){return e>=cV.UPPER_A&&e<=cV.UPPER_Z||e>=cV.LOWER_A&&e<=cV.LOWER_Z||Bz(e)}function vot(e){return e===cV.EQUALS||_ot(e)}function yot(e,t,n,r){let i=(t&lV.BRANCH_LENGTH)>>7,a=t&lV.JUMP_TABLE;if(i===0)return a!==0&&r===a?n:-1;if(a){let t=r-a;return t<0||t>=i?-1:e[n+t]-1}let o=n,s=o+i-1;for(;o<=s;){let t=o+s>>>1,n=e[t];if(nr)s=t-1;else return e[t+i]}return-1}function Vz(e){return uut.get(e)??Z.UNKNOWN}function bot(e){return e>=Y.DIGIT_0&&e<=Y.DIGIT_9}function Hz(e){return e>=Y.LATIN_CAPITAL_A&&e<=Y.LATIN_CAPITAL_Z}function xot(e){return e>=Y.LATIN_SMALL_A&&e<=Y.LATIN_SMALL_Z}function Uz(e){return xot(e)||Hz(e)}function Sot(e){return Uz(e)||bot(e)}function Wz(e){return e+32}function Cot(e){return e===Y.SPACE||e===Y.LINE_FEED||e===Y.TABULATION||e===Y.FORM_FEED}function wot(e){return Cot(e)||e===Y.SOLIDUS||e===Y.GREATER_THAN_SIGN}function Tot(e){return e===Y.NULL?oV.nullCharacterReference:e>1114111?oV.characterReferenceOutsideUnicodeRange:lot(e)?oV.surrogateCharacterReference:pot(e)?oV.noncharacterCharacterReference:fot(e)||e===Y.CARRIAGE_RETURN?oV.controlCharacterReference:null}function Eot(e,t){return t.some(t=>e.startsWith(t))}function Dot(e){return e.name===DV&&e.publicId===null&&(e.systemId===null||e.systemId===xut)}function Oot(e){if(e.name!==DV)return mV.QUIRKS;let{systemId:t}=e;if(t&&t.toLowerCase()===Sut)return mV.QUIRKS;let{publicId:n}=e;if(n!==null){if(n=n.toLowerCase(),wut.has(n))return mV.QUIRKS;let e=t===null?Cut:OV;if(Eot(n,e))return mV.QUIRKS;if(e=t===null?kV:Tut,Eot(n,e))return mV.LIMITED_QUIRKS}return mV.NO_QUIRKS}function kot(e){let t=e.tagID;return t===Z.FONT&&e.attrs.some(({name:e})=>e===pV.COLOR||e===pV.SIZE||e===pV.FACE)||jut.has(t)}function Aot(e){for(let t=0;t=0;r--){let i=e.openElements.items[r];if(i===t.element)break;e._isSpecialElement(i,e.openElements.tagIDs[r])&&(n=i)}return n||(e.openElements.shortenToLength(Math.max(r,0)),e.activeFormattingElements.removeEntry(t)),n}function Rot(e,t,n){let r=t,i=e.openElements.getCommonAncestor(t);for(let a=0,o=i;o!==n;a++,o=i){i=e.openElements.getCommonAncestor(o);let n=e.activeFormattingElements.getElementEntry(o),s=n&&a>=Put;!n||s?(s&&e.activeFormattingElements.removeEntry(n),e.openElements.remove(o)):(o=zot(e,n),r===t&&(e.activeFormattingElements.bookmark=n),e.treeAdapter.detachNode(r),e.treeAdapter.appendChild(o,r),r=o)}return r}function zot(e,t){let n=e.treeAdapter.getNamespaceURI(t.element),r=e.treeAdapter.createElement(t.token.tagName,n,t.token.attrs);return e.openElements.replace(t.element,r),t.element=r,r}function Bot(e,t,n){let r=Vz(e.treeAdapter.getTagName(t));if(e._isElementCausesFosterParenting(r))e._fosterParentElement(n);else{let i=e.treeAdapter.getNamespaceURI(t);r===Z.TEMPLATE&&i===fV.HTML&&(t=e.treeAdapter.getTemplateContent(t)),e.treeAdapter.appendChild(t,n)}}function Vot(e,t,n){let r=e.treeAdapter.getNamespaceURI(n.element),{token:i}=n,a=e.treeAdapter.createElement(i.tagName,r,i.attrs);e._adoptNodes(t,a),e.treeAdapter.appendChild(t,a),e.activeFormattingElements.insertElementAfterBookmark(a,i),e.activeFormattingElements.removeEntry(n),e.openElements.remove(n.element),e.openElements.insertAfter(t,a,i.tagID)}function Kz(e,t){for(let n=0;n=n;r--)e._setEndLocation(e.openElements.items[r],t);if(!e.fragmentContext&&e.openElements.stackTop>=0){let n=e.openElements.items[0],r=e.treeAdapter.getNodeSourceCodeLocation(n);if(r&&!r.endTag&&(e._setEndLocation(n,t),e.openElements.stackTop>=1)){let n=e.openElements.items[1],r=e.treeAdapter.getNodeSourceCodeLocation(n);r&&!r.endTag&&e._setEndLocation(n,t)}}}}function Wot(e,t){e._setDocumentType(t);let n=t.forceQuirks?mV.QUIRKS:Oot(t);Dot(t)||e._err(t,oV.nonConformingDoctype),e.treeAdapter.setDocumentMode(e.document,n),e.insertionMode=$.BEFORE_HTML}function Yz(e,t){e._err(t,oV.missingDoctype,!0),e.treeAdapter.setDocumentMode(e.document,mV.QUIRKS),e.insertionMode=$.BEFORE_HTML,e._processToken(t)}function Got(e,t){t.tagID===Z.HTML?(e._insertElement(t,fV.HTML),e.insertionMode=$.BEFORE_HEAD):Xz(e,t)}function Kot(e,t){let n=t.tagID;(n===Z.HTML||n===Z.HEAD||n===Z.BODY||n===Z.BR)&&Xz(e,t)}function Xz(e,t){e._insertFakeRootElement(),e.insertionMode=$.BEFORE_HEAD,e._processToken(t)}function qot(e,t){switch(t.tagID){case Z.HTML:iB(e,t);break;case Z.HEAD:e._insertElement(t,fV.HTML),e.headElement=e.openElements.current,e.insertionMode=$.IN_HEAD;break;default:Zz(e,t)}}function Jot(e,t){let n=t.tagID;n===Z.HEAD||n===Z.BODY||n===Z.HTML||n===Z.BR?Zz(e,t):e._err(t,oV.endTagWithoutMatchingOpenElement)}function Zz(e,t){e._insertFakeElement(X.HEAD,Z.HEAD),e.headElement=e.openElements.current,e.insertionMode=$.IN_HEAD,e._processToken(t)}function Qz(e,t){switch(t.tagID){case Z.HTML:iB(e,t);break;case Z.BASE:case Z.BASEFONT:case Z.BGSOUND:case Z.LINK:case Z.META:e._appendElement(t,fV.HTML),t.ackSelfClosing=!0;break;case Z.TITLE:e._switchToTextParsing(t,_V.RCDATA);break;case Z.NOSCRIPT:e.options.scriptingEnabled?e._switchToTextParsing(t,_V.RAWTEXT):(e._insertElement(t,fV.HTML),e.insertionMode=$.IN_HEAD_NO_SCRIPT);break;case Z.NOFRAMES:case Z.STYLE:e._switchToTextParsing(t,_V.RAWTEXT);break;case Z.SCRIPT:e._switchToTextParsing(t,_V.SCRIPT_DATA);break;case Z.TEMPLATE:e._insertTemplate(t),e.activeFormattingElements.insertMarker(),e.framesetOk=!1,e.insertionMode=$.IN_TEMPLATE,e.tmplInsertionModeStack.unshift($.IN_TEMPLATE);break;case Z.HEAD:e._err(t,oV.misplacedStartTagForHeadElement);break;default:eB(e,t)}}function Yot(e,t){switch(t.tagID){case Z.HEAD:e.openElements.pop(),e.insertionMode=$.AFTER_HEAD;break;case Z.BODY:case Z.BR:case Z.HTML:eB(e,t);break;case Z.TEMPLATE:$z(e,t);break;default:e._err(t,oV.endTagWithoutMatchingOpenElement)}}function $z(e,t){e.openElements.tmplCount>0?(e.openElements.generateImpliedEndTagsThoroughly(),e.openElements.currentTagId!==Z.TEMPLATE&&e._err(t,oV.closingOfElementWithOpenChildElements),e.openElements.popUntilTagNamePopped(Z.TEMPLATE),e.activeFormattingElements.clearToLastMarker(),e.tmplInsertionModeStack.shift(),e._resetInsertionMode()):e._err(t,oV.endTagWithoutMatchingOpenElement)}function eB(e,t){e.openElements.pop(),e.insertionMode=$.AFTER_HEAD,e._processToken(t)}function Xot(e,t){switch(t.tagID){case Z.HTML:iB(e,t);break;case Z.BASEFONT:case Z.BGSOUND:case Z.HEAD:case Z.LINK:case Z.META:case Z.NOFRAMES:case Z.STYLE:Qz(e,t);break;case Z.NOSCRIPT:e._err(t,oV.nestedNoscriptInHead);break;default:tB(e,t)}}function Zot(e,t){switch(t.tagID){case Z.NOSCRIPT:e.openElements.pop(),e.insertionMode=$.IN_HEAD;break;case Z.BR:tB(e,t);break;default:e._err(t,oV.endTagWithoutMatchingOpenElement)}}function tB(e,t){let n=t.type===sV.EOF?oV.openElementsLeftAfterEof:oV.disallowedContentInNoscriptInHead;e._err(t,n),e.openElements.pop(),e.insertionMode=$.IN_HEAD,e._processToken(t)}function Qot(e,t){switch(t.tagID){case Z.HTML:iB(e,t);break;case Z.BODY:e._insertElement(t,fV.HTML),e.framesetOk=!1,e.insertionMode=$.IN_BODY;break;case Z.FRAMESET:e._insertElement(t,fV.HTML),e.insertionMode=$.IN_FRAMESET;break;case Z.BASE:case Z.BASEFONT:case Z.BGSOUND:case Z.LINK:case Z.META:case Z.NOFRAMES:case Z.SCRIPT:case Z.STYLE:case Z.TEMPLATE:case Z.TITLE:e._err(t,oV.abandonedHeadElementChild),e.openElements.push(e.headElement,Z.HEAD),Qz(e,t),e.openElements.remove(e.headElement);break;case Z.HEAD:e._err(t,oV.misplacedStartTagForHeadElement);break;default:nB(e,t)}}function $ot(e,t){switch(t.tagID){case Z.BODY:case Z.HTML:case Z.BR:nB(e,t);break;case Z.TEMPLATE:$z(e,t);break;default:e._err(t,oV.endTagWithoutMatchingOpenElement)}}function nB(e,t){e._insertFakeElement(X.BODY,Z.BODY),e.insertionMode=$.IN_BODY,rB(e,t)}function rB(e,t){switch(t.type){case sV.CHARACTER:tst(e,t);break;case sV.WHITESPACE_CHARACTER:est(e,t);break;case sV.COMMENT:qz(e,t);break;case sV.START_TAG:iB(e,t);break;case sV.END_TAG:aB(e,t);break;case sV.EOF:Gst(e,t);break;default:}}function est(e,t){e._reconstructActiveFormattingElements(),e._insertCharacters(t)}function tst(e,t){e._reconstructActiveFormattingElements(),e._insertCharacters(t),e.framesetOk=!1}function nst(e,t){e.openElements.tmplCount===0&&e.treeAdapter.adoptAttributes(e.openElements.items[0],t.attrs)}function rst(e,t){let n=e.openElements.tryPeekProperlyNestedBodyElement();n&&e.openElements.tmplCount===0&&(e.framesetOk=!1,e.treeAdapter.adoptAttributes(n,t.attrs))}function ist(e,t){let n=e.openElements.tryPeekProperlyNestedBodyElement();e.framesetOk&&n&&(e.treeAdapter.detachNode(n),e.openElements.popAllUpToHtmlElement(),e._insertElement(t,fV.HTML),e.insertionMode=$.IN_FRAMESET)}function ast(e,t){e.openElements.hasInButtonScope(Z.P)&&e._closePElement(),e._insertElement(t,fV.HTML)}function ost(e,t){e.openElements.hasInButtonScope(Z.P)&&e._closePElement(),e.openElements.currentTagId!==void 0&&gV.has(e.openElements.currentTagId)&&e.openElements.pop(),e._insertElement(t,fV.HTML)}function sst(e,t){e.openElements.hasInButtonScope(Z.P)&&e._closePElement(),e._insertElement(t,fV.HTML),e.skipNextNewLine=!0,e.framesetOk=!1}function cst(e,t){let n=e.openElements.tmplCount>0;(!e.formElement||n)&&(e.openElements.hasInButtonScope(Z.P)&&e._closePElement(),e._insertElement(t,fV.HTML),n||(e.formElement=e.openElements.current))}function lst(e,t){e.framesetOk=!1;let n=t.tagID;for(let t=e.openElements.stackTop;t>=0;t--){let r=e.openElements.tagIDs[t];if(n===Z.LI&&r===Z.LI||(n===Z.DD||n===Z.DT)&&(r===Z.DD||r===Z.DT)){e.openElements.generateImpliedEndTagsWithExclusion(r),e.openElements.popUntilTagNamePopped(r);break}if(r!==Z.ADDRESS&&r!==Z.DIV&&r!==Z.P&&e._isSpecialElement(e.openElements.items[t],r))break}e.openElements.hasInButtonScope(Z.P)&&e._closePElement(),e._insertElement(t,fV.HTML)}function ust(e,t){e.openElements.hasInButtonScope(Z.P)&&e._closePElement(),e._insertElement(t,fV.HTML),e.tokenizer.state=_V.PLAINTEXT}function dst(e,t){e.openElements.hasInScope(Z.BUTTON)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(Z.BUTTON)),e._reconstructActiveFormattingElements(),e._insertElement(t,fV.HTML),e.framesetOk=!1}function fst(e,t){let n=e.activeFormattingElements.getElementEntryInScopeWithTagName(X.A);n&&(Kz(e,t),e.openElements.remove(n.element),e.activeFormattingElements.removeEntry(n)),e._reconstructActiveFormattingElements(),e._insertElement(t,fV.HTML),e.activeFormattingElements.pushElement(e.openElements.current,t)}function pst(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,fV.HTML),e.activeFormattingElements.pushElement(e.openElements.current,t)}function mst(e,t){e._reconstructActiveFormattingElements(),e.openElements.hasInScope(Z.NOBR)&&(Kz(e,t),e._reconstructActiveFormattingElements()),e._insertElement(t,fV.HTML),e.activeFormattingElements.pushElement(e.openElements.current,t)}function hst(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,fV.HTML),e.activeFormattingElements.insertMarker(),e.framesetOk=!1}function gst(e,t){e.treeAdapter.getDocumentMode(e.document)!==mV.QUIRKS&&e.openElements.hasInButtonScope(Z.P)&&e._closePElement(),e._insertElement(t,fV.HTML),e.framesetOk=!1,e.insertionMode=$.IN_TABLE}function _st(e,t){e._reconstructActiveFormattingElements(),e._appendElement(t,fV.HTML),e.framesetOk=!1,t.ackSelfClosing=!0}function vst(e){let t=mot(e,pV.TYPE);return t!=null&&t.toLowerCase()===Mut}function yst(e,t){e._reconstructActiveFormattingElements(),e._appendElement(t,fV.HTML),vst(t)||(e.framesetOk=!1),t.ackSelfClosing=!0}function bst(e,t){e._appendElement(t,fV.HTML),t.ackSelfClosing=!0}function xst(e,t){e.openElements.hasInButtonScope(Z.P)&&e._closePElement(),e._appendElement(t,fV.HTML),e.framesetOk=!1,t.ackSelfClosing=!0}function Sst(e,t){t.tagName=X.IMG,t.tagID=Z.IMG,_st(e,t)}function Cst(e,t){e._insertElement(t,fV.HTML),e.skipNextNewLine=!0,e.tokenizer.state=_V.RCDATA,e.originalInsertionMode=e.insertionMode,e.framesetOk=!1,e.insertionMode=$.TEXT}function wst(e,t){e.openElements.hasInButtonScope(Z.P)&&e._closePElement(),e._reconstructActiveFormattingElements(),e.framesetOk=!1,e._switchToTextParsing(t,_V.RAWTEXT)}function Tst(e,t){e.framesetOk=!1,e._switchToTextParsing(t,_V.RAWTEXT)}function Est(e,t){e._switchToTextParsing(t,_V.RAWTEXT)}function Dst(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,fV.HTML),e.framesetOk=!1,e.insertionMode=e.insertionMode===$.IN_TABLE||e.insertionMode===$.IN_CAPTION||e.insertionMode===$.IN_TABLE_BODY||e.insertionMode===$.IN_ROW||e.insertionMode===$.IN_CELL?$.IN_SELECT_IN_TABLE:$.IN_SELECT}function Ost(e,t){e.openElements.currentTagId===Z.OPTION&&e.openElements.pop(),e._reconstructActiveFormattingElements(),e._insertElement(t,fV.HTML)}function kst(e,t){e.openElements.hasInScope(Z.RUBY)&&e.openElements.generateImpliedEndTags(),e._insertElement(t,fV.HTML)}function Ast(e,t){e.openElements.hasInScope(Z.RUBY)&&e.openElements.generateImpliedEndTagsWithExclusion(Z.RTC),e._insertElement(t,fV.HTML)}function jst(e,t){e._reconstructActiveFormattingElements(),Aot(t),Gz(t),t.selfClosing?e._appendElement(t,fV.MATHML):e._insertElement(t,fV.MATHML),t.ackSelfClosing=!0}function Mst(e,t){e._reconstructActiveFormattingElements(),jot(t),Gz(t),t.selfClosing?e._appendElement(t,fV.SVG):e._insertElement(t,fV.SVG),t.ackSelfClosing=!0}function Nst(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,fV.HTML)}function iB(e,t){switch(t.tagID){case Z.I:case Z.S:case Z.B:case Z.U:case Z.EM:case Z.TT:case Z.BIG:case Z.CODE:case Z.FONT:case Z.SMALL:case Z.STRIKE:case Z.STRONG:pst(e,t);break;case Z.A:fst(e,t);break;case Z.H1:case Z.H2:case Z.H3:case Z.H4:case Z.H5:case Z.H6:ost(e,t);break;case Z.P:case Z.DL:case Z.OL:case Z.UL:case Z.DIV:case Z.DIR:case Z.NAV:case Z.MAIN:case Z.MENU:case Z.ASIDE:case Z.CENTER:case Z.FIGURE:case Z.FOOTER:case Z.HEADER:case Z.HGROUP:case Z.DIALOG:case Z.DETAILS:case Z.ADDRESS:case Z.ARTICLE:case Z.SEARCH:case Z.SECTION:case Z.SUMMARY:case Z.FIELDSET:case Z.BLOCKQUOTE:case Z.FIGCAPTION:ast(e,t);break;case Z.LI:case Z.DD:case Z.DT:lst(e,t);break;case Z.BR:case Z.IMG:case Z.WBR:case Z.AREA:case Z.EMBED:case Z.KEYGEN:_st(e,t);break;case Z.HR:xst(e,t);break;case Z.RB:case Z.RTC:kst(e,t);break;case Z.RT:case Z.RP:Ast(e,t);break;case Z.PRE:case Z.LISTING:sst(e,t);break;case Z.XMP:wst(e,t);break;case Z.SVG:Mst(e,t);break;case Z.HTML:nst(e,t);break;case Z.BASE:case Z.LINK:case Z.META:case Z.STYLE:case Z.TITLE:case Z.SCRIPT:case Z.BGSOUND:case Z.BASEFONT:case Z.TEMPLATE:Qz(e,t);break;case Z.BODY:rst(e,t);break;case Z.FORM:cst(e,t);break;case Z.NOBR:mst(e,t);break;case Z.MATH:jst(e,t);break;case Z.TABLE:gst(e,t);break;case Z.INPUT:yst(e,t);break;case Z.PARAM:case Z.TRACK:case Z.SOURCE:bst(e,t);break;case Z.IMAGE:Sst(e,t);break;case Z.BUTTON:dst(e,t);break;case Z.APPLET:case Z.OBJECT:case Z.MARQUEE:hst(e,t);break;case Z.IFRAME:Tst(e,t);break;case Z.SELECT:Dst(e,t);break;case Z.OPTION:case Z.OPTGROUP:Ost(e,t);break;case Z.NOEMBED:case Z.NOFRAMES:Est(e,t);break;case Z.FRAMESET:ist(e,t);break;case Z.TEXTAREA:Cst(e,t);break;case Z.NOSCRIPT:e.options.scriptingEnabled?Est(e,t):Nst(e,t);break;case Z.PLAINTEXT:ust(e,t);break;case Z.COL:case Z.TH:case Z.TD:case Z.TR:case Z.HEAD:case Z.FRAME:case Z.TBODY:case Z.TFOOT:case Z.THEAD:case Z.CAPTION:case Z.COLGROUP:break;default:Nst(e,t)}}function Pst(e,t){if(e.openElements.hasInScope(Z.BODY)&&(e.insertionMode=$.AFTER_BODY,e.options.sourceCodeLocationInfo)){let n=e.openElements.tryPeekProperlyNestedBodyElement();n&&e._setEndLocation(n,t)}}function Fst(e,t){e.openElements.hasInScope(Z.BODY)&&(e.insertionMode=$.AFTER_BODY,vct(e,t))}function Ist(e,t){let n=t.tagID;e.openElements.hasInScope(n)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(n))}function Lst(e){let t=e.openElements.tmplCount>0,{formElement:n}=e;t||(e.formElement=null),(n||t)&&e.openElements.hasInScope(Z.FORM)&&(e.openElements.generateImpliedEndTags(),t?e.openElements.popUntilTagNamePopped(Z.FORM):n&&e.openElements.remove(n))}function Rst(e){e.openElements.hasInButtonScope(Z.P)||e._insertFakeElement(X.P,Z.P),e._closePElement()}function zst(e){e.openElements.hasInListItemScope(Z.LI)&&(e.openElements.generateImpliedEndTagsWithExclusion(Z.LI),e.openElements.popUntilTagNamePopped(Z.LI))}function Bst(e,t){let n=t.tagID;e.openElements.hasInScope(n)&&(e.openElements.generateImpliedEndTagsWithExclusion(n),e.openElements.popUntilTagNamePopped(n))}function Vst(e){e.openElements.hasNumberedHeaderInScope()&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilNumberedHeaderPopped())}function Hst(e,t){let n=t.tagID;e.openElements.hasInScope(n)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(n),e.activeFormattingElements.clearToLastMarker())}function Ust(e){e._reconstructActiveFormattingElements(),e._insertFakeElement(X.BR,Z.BR),e.openElements.pop(),e.framesetOk=!1}function Wst(e,t){let n=t.tagName,r=t.tagID;for(let t=e.openElements.stackTop;t>0;t--){let i=e.openElements.items[t],a=e.openElements.tagIDs[t];if(r===a&&(r!==Z.UNKNOWN||e.treeAdapter.getTagName(i)===n)){e.openElements.generateImpliedEndTagsWithExclusion(r),e.openElements.stackTop>=t&&e.openElements.shortenToLength(t);break}if(e._isSpecialElement(i,a))break}}function aB(e,t){switch(t.tagID){case Z.A:case Z.B:case Z.I:case Z.S:case Z.U:case Z.EM:case Z.TT:case Z.BIG:case Z.CODE:case Z.FONT:case Z.NOBR:case Z.SMALL:case Z.STRIKE:case Z.STRONG:Kz(e,t);break;case Z.P:Rst(e);break;case Z.DL:case Z.UL:case Z.OL:case Z.DIR:case Z.DIV:case Z.NAV:case Z.PRE:case Z.MAIN:case Z.MENU:case Z.ASIDE:case Z.BUTTON:case Z.CENTER:case Z.FIGURE:case Z.FOOTER:case Z.HEADER:case Z.HGROUP:case Z.DIALOG:case Z.ADDRESS:case Z.ARTICLE:case Z.DETAILS:case Z.SEARCH:case Z.SECTION:case Z.SUMMARY:case Z.LISTING:case Z.FIELDSET:case Z.BLOCKQUOTE:case Z.FIGCAPTION:Ist(e,t);break;case Z.LI:zst(e);break;case Z.DD:case Z.DT:Bst(e,t);break;case Z.H1:case Z.H2:case Z.H3:case Z.H4:case Z.H5:case Z.H6:Vst(e);break;case Z.BR:Ust(e);break;case Z.BODY:Pst(e,t);break;case Z.HTML:Fst(e,t);break;case Z.FORM:Lst(e);break;case Z.APPLET:case Z.OBJECT:case Z.MARQUEE:Hst(e,t);break;case Z.TEMPLATE:$z(e,t);break;default:Wst(e,t)}}function Gst(e,t){e.tmplInsertionModeStack.length>0?gct(e,t):Jz(e,t)}function Kst(e,t){var n;t.tagID===Z.SCRIPT&&((n=e.scriptHandler)==null||n.call(e,e.openElements.current)),e.openElements.pop(),e.insertionMode=e.originalInsertionMode}function qst(e,t){e._err(t,oV.eofInElementThatCanContainOnlyText),e.openElements.pop(),e.insertionMode=e.originalInsertionMode,e.onEof(t)}function oB(e,t){if(e.openElements.currentTagId!==void 0&&jV.has(e.openElements.currentTagId))switch(e.pendingCharacterTokens.length=0,e.hasNonWhitespacePendingCharacterToken=!1,e.originalInsertionMode=e.insertionMode,e.insertionMode=$.IN_TABLE_TEXT,t.type){case sV.CHARACTER:rct(e,t);break;case sV.WHITESPACE_CHARACTER:nct(e,t);break}else lB(e,t)}function Jst(e,t){e.openElements.clearBackToTableContext(),e.activeFormattingElements.insertMarker(),e._insertElement(t,fV.HTML),e.insertionMode=$.IN_CAPTION}function Yst(e,t){e.openElements.clearBackToTableContext(),e._insertElement(t,fV.HTML),e.insertionMode=$.IN_COLUMN_GROUP}function Xst(e,t){e.openElements.clearBackToTableContext(),e._insertFakeElement(X.COLGROUP,Z.COLGROUP),e.insertionMode=$.IN_COLUMN_GROUP,dB(e,t)}function Zst(e,t){e.openElements.clearBackToTableContext(),e._insertElement(t,fV.HTML),e.insertionMode=$.IN_TABLE_BODY}function Qst(e,t){e.openElements.clearBackToTableContext(),e._insertFakeElement(X.TBODY,Z.TBODY),e.insertionMode=$.IN_TABLE_BODY,pB(e,t)}function $st(e,t){e.openElements.hasInTableScope(Z.TABLE)&&(e.openElements.popUntilTagNamePopped(Z.TABLE),e._resetInsertionMode(),e._processStartTag(t))}function ect(e,t){vst(t)?e._appendElement(t,fV.HTML):lB(e,t),t.ackSelfClosing=!0}function tct(e,t){!e.formElement&&e.openElements.tmplCount===0&&(e._insertElement(t,fV.HTML),e.formElement=e.openElements.current,e.openElements.pop())}function sB(e,t){switch(t.tagID){case Z.TD:case Z.TH:case Z.TR:Qst(e,t);break;case Z.STYLE:case Z.SCRIPT:case Z.TEMPLATE:Qz(e,t);break;case Z.COL:Xst(e,t);break;case Z.FORM:tct(e,t);break;case Z.TABLE:$st(e,t);break;case Z.TBODY:case Z.TFOOT:case Z.THEAD:Zst(e,t);break;case Z.INPUT:ect(e,t);break;case Z.CAPTION:Jst(e,t);break;case Z.COLGROUP:Yst(e,t);break;default:lB(e,t)}}function cB(e,t){switch(t.tagID){case Z.TABLE:e.openElements.hasInTableScope(Z.TABLE)&&(e.openElements.popUntilTagNamePopped(Z.TABLE),e._resetInsertionMode());break;case Z.TEMPLATE:$z(e,t);break;case Z.BODY:case Z.CAPTION:case Z.COL:case Z.COLGROUP:case Z.HTML:case Z.TBODY:case Z.TD:case Z.TFOOT:case Z.TH:case Z.THEAD:case Z.TR:break;default:lB(e,t)}}function lB(e,t){let n=e.fosterParentingEnabled;e.fosterParentingEnabled=!0,rB(e,t),e.fosterParentingEnabled=n}function nct(e,t){e.pendingCharacterTokens.push(t)}function rct(e,t){e.pendingCharacterTokens.push(t),e.hasNonWhitespacePendingCharacterToken=!0}function uB(e,t){let n=0;if(e.hasNonWhitespacePendingCharacterToken)for(;n0&&e.openElements.currentTagId===Z.OPTION&&e.openElements.tagIDs[e.openElements.stackTop-1]===Z.OPTGROUP&&e.openElements.pop(),e.openElements.currentTagId===Z.OPTGROUP&&e.openElements.pop();break;case Z.OPTION:e.openElements.currentTagId===Z.OPTION&&e.openElements.pop();break;case Z.SELECT:e.openElements.hasInSelectScope(Z.SELECT)&&(e.openElements.popUntilTagNamePopped(Z.SELECT),e._resetInsertionMode());break;case Z.TEMPLATE:$z(e,t);break;default:}}function fct(e,t){let n=t.tagID;n===Z.CAPTION||n===Z.TABLE||n===Z.TBODY||n===Z.TFOOT||n===Z.THEAD||n===Z.TR||n===Z.TD||n===Z.TH?(e.openElements.popUntilTagNamePopped(Z.SELECT),e._resetInsertionMode(),e._processStartTag(t)):uct(e,t)}function pct(e,t){let n=t.tagID;n===Z.CAPTION||n===Z.TABLE||n===Z.TBODY||n===Z.TFOOT||n===Z.THEAD||n===Z.TR||n===Z.TD||n===Z.TH?e.openElements.hasInTableScope(n)&&(e.openElements.popUntilTagNamePopped(Z.SELECT),e._resetInsertionMode(),e.onEndTag(t)):dct(e,t)}function mct(e,t){switch(t.tagID){case Z.BASE:case Z.BASEFONT:case Z.BGSOUND:case Z.LINK:case Z.META:case Z.NOFRAMES:case Z.SCRIPT:case Z.STYLE:case Z.TEMPLATE:case Z.TITLE:Qz(e,t);break;case Z.CAPTION:case Z.COLGROUP:case Z.TBODY:case Z.TFOOT:case Z.THEAD:e.tmplInsertionModeStack[0]=$.IN_TABLE,e.insertionMode=$.IN_TABLE,sB(e,t);break;case Z.COL:e.tmplInsertionModeStack[0]=$.IN_COLUMN_GROUP,e.insertionMode=$.IN_COLUMN_GROUP,dB(e,t);break;case Z.TR:e.tmplInsertionModeStack[0]=$.IN_TABLE_BODY,e.insertionMode=$.IN_TABLE_BODY,pB(e,t);break;case Z.TD:case Z.TH:e.tmplInsertionModeStack[0]=$.IN_ROW,e.insertionMode=$.IN_ROW,hB(e,t);break;default:e.tmplInsertionModeStack[0]=$.IN_BODY,e.insertionMode=$.IN_BODY,iB(e,t)}}function hct(e,t){t.tagID===Z.TEMPLATE&&$z(e,t)}function gct(e,t){e.openElements.tmplCount>0?(e.openElements.popUntilTagNamePopped(Z.TEMPLATE),e.activeFormattingElements.clearToLastMarker(),e.tmplInsertionModeStack.shift(),e._resetInsertionMode(),e.onEof(t)):Jz(e,t)}function _ct(e,t){t.tagID===Z.HTML?iB(e,t):gB(e,t)}function vct(e,t){if(t.tagID===Z.HTML){if(e.fragmentContext||(e.insertionMode=$.AFTER_AFTER_BODY),e.options.sourceCodeLocationInfo&&e.openElements.tagIDs[0]===Z.HTML){e._setEndLocation(e.openElements.items[0],t);let n=e.openElements.items[1];n&&!e.treeAdapter.getNodeSourceCodeLocation(n)?.endTag&&e._setEndLocation(n,t)}}else gB(e,t)}function gB(e,t){e.insertionMode=$.IN_BODY,rB(e,t)}function yct(e,t){switch(t.tagID){case Z.HTML:iB(e,t);break;case Z.FRAMESET:e._insertElement(t,fV.HTML);break;case Z.FRAME:e._appendElement(t,fV.HTML),t.ackSelfClosing=!0;break;case Z.NOFRAMES:Qz(e,t);break;default:}}function bct(e,t){t.tagID===Z.FRAMESET&&!e.openElements.isRootHtmlElementCurrent()&&(e.openElements.pop(),!e.fragmentContext&&e.openElements.currentTagId!==Z.FRAMESET&&(e.insertionMode=$.AFTER_FRAMESET))}function xct(e,t){switch(t.tagID){case Z.HTML:iB(e,t);break;case Z.NOFRAMES:Qz(e,t);break;default:}}function Sct(e,t){t.tagID===Z.HTML&&(e.insertionMode=$.AFTER_AFTER_FRAMESET)}function Cct(e,t){t.tagID===Z.HTML?iB(e,t):_B(e,t)}function _B(e,t){e.insertionMode=$.IN_BODY,rB(e,t)}function wct(e,t){switch(t.tagID){case Z.HTML:iB(e,t);break;case Z.NOFRAMES:Qz(e,t);break;default:}}function Tct(e,t){t.chars=`�`,e._insertCharacters(t)}function Ect(e,t){e._insertCharacters(t),e.framesetOk=!1}function Dct(e){for(;e.treeAdapter.getNamespaceURI(e.openElements.current)!==fV.HTML&&e.openElements.currentTagId!==void 0&&!e._isIntegrationPoint(e.openElements.currentTagId,e.openElements.current);)e.openElements.pop()}function Oct(e,t){if(kot(t))Dct(e),e._startTagOutsideForeignContent(t);else{let n=e._getAdjustedCurrentElement(),r=e.treeAdapter.getNamespaceURI(n);r===fV.MATHML?Aot(t):r===fV.SVG&&(Mot(t),jot(t)),Gz(t),t.selfClosing?e._appendElement(t,r):e._insertElement(t,r),t.ackSelfClosing=!0}}function kct(e,t){if(t.tagID===Z.P||t.tagID===Z.BR){Dct(e),e._endTagOutsideForeignContent(t);return}for(let n=e.openElements.stackTop;n>0;n--){let r=e.openElements.items[n];if(e.treeAdapter.getNamespaceURI(r)===fV.HTML){e._endTagOutsideForeignContent(t);break}let i=e.treeAdapter.getTagName(r);if(i.toLowerCase()===t.tagName){t.tagName=i,e.openElements.shortenToLength(n);break}}}function Act(e,t){return NV.parse(e,t)}function jct(e,t,n){typeof e==`string`&&(n=t,t=e,e=null);let r=NV.getFragmentParser(e,n);return r.tokenizer.write(t,!0),r.getFragment()}function vB(e){return!e||typeof e!=`object`?``:`position`in e||`type`in e?Mct(e.position):`start`in e||`end`in e?Mct(e):`line`in e||`column`in e?yB(e):``}function yB(e){return Nct(e&&e.line)+`:`+Nct(e&&e.column)}function Mct(e){return yB(e&&e.start)+`-`+yB(e&&e.end)}function Nct(e){return e&&typeof e==`number`?e:1}function Pct(e,t){if(t!==void 0&&typeof t!=`string`)throw TypeError(`"ext" argument must be a string`);bB(e);let n=0,r=-1,i=e.length,a;if(t===void 0||t.length===0||t.length>e.length){for(;i--;)if(e.codePointAt(i)===47){if(a){n=i+1;break}}else r<0&&(a=!0,r=i+1);return r<0?``:e.slice(n,r)}if(t===e)return``;let o=-1,s=t.length-1;for(;i--;)if(e.codePointAt(i)===47){if(a){n=i+1;break}}else o<0&&(a=!0,o=i+1),s>-1&&(e.codePointAt(i)===t.codePointAt(s--)?s<0&&(r=i):(s=-1,r=o));return n===r?r=o:r<0&&(r=e.length),e.slice(n,r)}function Fct(e){if(bB(e),e.length===0)return`.`;let t=-1,n=e.length,r;for(;--n;)if(e.codePointAt(n)===47){if(r){t=n;break}}else r||=!0;return t<0?e.codePointAt(0)===47?`/`:`.`:t===1&&e.codePointAt(0)===47?`//`:e.slice(0,t)}function Ict(e){bB(e);let t=e.length,n=-1,r=0,i=-1,a=0,o;for(;t--;){let s=e.codePointAt(t);if(s===47){if(o){r=t+1;break}continue}n<0&&(o=!0,n=t+1),s===46?i<0?i=t:a!==1&&(a=1):i>-1&&(a=-1)}return i<0||n<0||a===0||a===1&&i===n-1&&i===r+1?``:e.slice(i,n)}function Lct(...e){let t=-1,n;for(;++t0&&e.codePointAt(e.length-1)===47&&(n+=`/`),t?`/`+n:n}function zct(e,t){let n=``,r=0,i=-1,a=0,o=-1,s,c;for(;++o<=e.length;){if(o2){if(c=n.lastIndexOf(`/`),c!==n.length-1){c<0?(n=``,r=0):(n=n.slice(0,c),r=n.length-1-n.lastIndexOf(`/`)),i=o,a=0;continue}}else if(n.length>0){n=``,r=0,i=o,a=0;continue}}t&&(n=n.length>0?n+`/..`:`..`,r=2)}else n.length>0?n+=`/`+e.slice(i+1,o):n=e.slice(i+1,o),r=o-i-1;i=o,a=0}else s===46&&a>-1?a++:a=-1}return n}function bB(e){if(typeof e!=`string`)throw TypeError(`Path must be a string. Received `+JSON.stringify(e))}function Bct(){return`/`}function xB(e){return!!(typeof e==`object`&&e&&`href`in e&&e.href&&`protocol`in e&&e.protocol&&e.auth===void 0)}function Vct(e){if(typeof e==`string`)e=new URL(e);else if(!xB(e)){let t=TypeError('The "path" argument must be of type string or an instance of URL. Received `'+e+"`");throw t.code=`ERR_INVALID_ARG_TYPE`,t}if(e.protocol!==`file:`){let e=TypeError(`The URL must be of scheme file`);throw e.code=`ERR_INVALID_URL_SCHEME`,e}return Hct(e)}function Hct(e){if(e.hostname!==``){let e=TypeError(`File URL host must be "localhost" or empty on darwin`);throw e.code=`ERR_INVALID_FILE_URL_HOST`,e}let t=e.pathname,n=-1;for(;++n`:``;function i(e){return TB(e,Object.assign({},r.settings.characterReferences,{subset:tdt}))}}function alt(e,t,n,r){return``}function EB(e,t){let n=String(e);if(typeof t!=`string`)throw TypeError(`Expected character`);let r=0,i=n.indexOf(t);for(;i!==-1;)r++,i=n.indexOf(t,i+t.length);return r}function DB(e){return typeof e==`object`?e.type===`text`&&olt(e.value):olt(e)}function olt(e){return e.replace(ndt,``)===``}function slt(e){return t;function t(t,n,r){let i=t?t.children:rdt,a=(n||0)+e,o=i[a];if(!r)for(;o&&DB(o);)a+=e,o=i[a];return o}}function clt(e){return t;function t(t,n,r){return idt.call(e,t.tagName)&&e[t.tagName](t,n,r)}}function OB(e,t,n){let r=KV(n,t,!0);return!r||r.type!==`comment`&&!(r.type===`text`&&DB(r.value.charAt(0)))}function llt(e,t,n){let r=KV(n,t);return!r||r.type!==`comment`}function ult(e,t,n){let r=KV(n,t);return!r||r.type!==`comment`}function dlt(e,t,n){let r=KV(n,t);return r?r.type===`element`&&(r.tagName===`address`||r.tagName===`article`||r.tagName===`aside`||r.tagName===`blockquote`||r.tagName===`details`||r.tagName===`div`||r.tagName===`dl`||r.tagName===`fieldset`||r.tagName===`figcaption`||r.tagName===`figure`||r.tagName===`footer`||r.tagName===`form`||r.tagName===`h1`||r.tagName===`h2`||r.tagName===`h3`||r.tagName===`h4`||r.tagName===`h5`||r.tagName===`h6`||r.tagName===`header`||r.tagName===`hgroup`||r.tagName===`hr`||r.tagName===`main`||r.tagName===`menu`||r.tagName===`nav`||r.tagName===`ol`||r.tagName===`p`||r.tagName===`pre`||r.tagName===`section`||r.tagName===`table`||r.tagName===`ul`):!n||!(n.type===`element`&&(n.tagName===`a`||n.tagName===`audio`||n.tagName===`del`||n.tagName===`ins`||n.tagName===`map`||n.tagName===`noscript`||n.tagName===`video`))}function flt(e,t,n){let r=KV(n,t);return!r||r.type===`element`&&r.tagName===`li`}function plt(e,t,n){let r=KV(n,t);return!!(r&&r.type===`element`&&(r.tagName===`dt`||r.tagName===`dd`))}function mlt(e,t,n){let r=KV(n,t);return!r||r.type===`element`&&(r.tagName===`dt`||r.tagName===`dd`)}function hlt(e,t,n){let r=KV(n,t);return!r||r.type===`element`&&(r.tagName===`rp`||r.tagName===`rt`)}function glt(e,t,n){let r=KV(n,t);return!r||r.type===`element`&&r.tagName===`optgroup`}function _lt(e,t,n){let r=KV(n,t);return!r||r.type===`element`&&(r.tagName===`option`||r.tagName===`optgroup`)}function vlt(e,t,n){let r=KV(n,t);return!!(r&&r.type===`element`&&(r.tagName===`tbody`||r.tagName===`tfoot`))}function ylt(e,t,n){let r=KV(n,t);return!r||r.type===`element`&&(r.tagName===`tbody`||r.tagName===`tfoot`)}function blt(e,t,n){return!KV(n,t)}function xlt(e,t,n){let r=KV(n,t);return!r||r.type===`element`&&r.tagName===`tr`}function Slt(e,t,n){let r=KV(n,t);return!r||r.type===`element`&&(r.tagName===`td`||r.tagName===`th`)}function Clt(e){let t=KV(e,-1);return!t||t.type!==`comment`}function wlt(e){let t=new Set;for(let n of e.children)if(n.type===`element`&&(n.tagName===`base`||n.tagName===`title`)){if(t.has(n.tagName))return!1;t.add(n.tagName)}let n=e.children[0];return!n||n.type===`element`}function Tlt(e){let t=KV(e,-1,!0);return!t||t.type!==`comment`&&!(t.type===`text`&&DB(t.value.charAt(0)))&&!(t.type===`element`&&(t.tagName===`meta`||t.tagName===`link`||t.tagName===`script`||t.tagName===`style`||t.tagName===`template`))}function Elt(e,t,n){let r=qV(n,t),i=KV(e,-1,!0);return n&&r&&r.type===`element`&&r.tagName===`colgroup`&&JV(r,n.children.indexOf(r),n)?!1:!!(i&&i.type===`element`&&i.tagName===`col`)}function Dlt(e,t,n){let r=qV(n,t),i=KV(e,-1);return n&&r&&r.type===`element`&&(r.tagName===`thead`||r.tagName===`tbody`)&&JV(r,n.children.indexOf(r),n)?!1:!!(i&&i.type===`element`&&i.tagName===`tr`)}function Olt(e,t,n,r){let i=r.schema,a=i.space!==`svg`&&r.settings.omitOptionalTags,o=i.space===`svg`?r.settings.closeEmptyElements:r.settings.voids.includes(e.tagName.toLowerCase()),s=[],c;i.space===`html`&&e.tagName===`svg`&&(r.schema=$B);let l=klt(r,e.properties),u=r.all(i.space===`html`&&e.tagName===`template`?e.content:e);return r.schema=i,u&&(o=!1),(l||!a||!adt(e,t,n))&&(s.push(`<`,e.tagName,l?` `+l:``),o&&(i.space===`svg`||r.settings.closeSelfClosing)&&(c=l.charAt(l.length-1),(!r.settings.tightSelfClosing||c===`/`||c&&c!==`"`&&c!==`'`)&&s.push(` `),s.push(`/`)),s.push(`>`)),s.push(u),!o&&(!a||!JV(e,t,n))&&s.push(``),s.join(``)}function klt(e,t){let n=[],r=-1,i;if(t){for(i in t)if(t[i]!==null&&t[i]!==void 0){let r=Alt(e,i,t[i]);r&&n.push(r)}}for(;++rEB(n,e.alternative)&&(o=e.alternative),s=o+TB(n,Object.assign({},e.settings.characterReferences,{subset:(o===`'`?YV.single:YV.double)[i][a],attribute:!0}))+o),c+(s&&`=`+s))}function jlt(e,t,n,r){return n&&n.type===`element`&&(n.tagName===`script`||n.tagName===`style`)?e.value:TB(e.value,Object.assign({},r.settings.characterReferences,{subset:odt}))}function Mlt(e,t,n,r){return r.settings.allowDangerousHtml?e.value:jlt(e,t,n,r)}function Nlt(e,t,n,r){return r.all(e)}function Plt(e){throw Error("Expected node, not `"+e+"`")}function Flt(e){throw Error("Cannot compile unknown node `"+e.type+"`")}function Ilt(e,t){let n=t||cdt,r=n.quote||`"`,i=r===`"`?`'`:`"`;if(r!==`"`&&r!==`'`)throw Error("Invalid quote `"+r+"`, expected `'` or `\"`");return{one:Llt,all:Rlt,settings:{omitOptionalTags:n.omitOptionalTags||!1,allowParseErrors:n.allowParseErrors||!1,allowDangerousCharacters:n.allowDangerousCharacters||!1,quoteSmart:n.quoteSmart||!1,preferUnquoted:n.preferUnquoted||!1,tightAttributes:n.tightAttributes||!1,upperDoctype:n.upperDoctype||!1,tightDoctype:n.tightDoctype||!1,bogusComments:n.bogusComments||!1,tightCommaSeparatedLists:n.tightCommaSeparatedLists||!1,tightSelfClosing:n.tightSelfClosing||!1,collapseEmptyAttributes:n.collapseEmptyAttributes||!1,allowDangerousHtml:n.allowDangerousHtml||!1,voids:n.voids||zV,characterReferences:n.characterReferences||ldt,closeSelfClosing:n.closeSelfClosing||!1,closeEmptyElements:n.closeEmptyElements||!1},schema:n.space===`svg`?$B:QB,quote:r,alternative:i}.one(Array.isArray(e)?{type:`root`,children:e}:e,void 0,void 0)}function Llt(e,t,n){return sdt(e,t,n,this)}function Rlt(e){let t=[],n=e&&e.children||udt,r=-1;for(;++rt.length,o;r&&t.push(i);try{o=e.apply(this,t)}catch(e){let t=e;if(r&&n)throw t;return i(t)}r||(o&&o.then&&typeof o.then==`function`?o.then(a,i):o instanceof Error?i(o):a(o))}function i(e,...r){n||(n=!0,t(e,...r))}function a(e){i(null,e)}}function jB(e,t){if(typeof t!=`function`)throw TypeError("Cannot `"+e+"` without `parser`")}function MB(e,t){if(typeof t!=`function`)throw TypeError("Cannot `"+e+"` without `compiler`")}function NB(e,t){if(t)throw Error("Cannot call `"+e+"` on a frozen processor.\nCreate a new processor first, by calling it: use `processor()` instead of `processor`.")}function Hlt(e){if(!AB(e)||typeof e.type!=`string`)throw TypeError("Expected node, got `"+e+"`")}function Ult(e,t,n){if(!n)throw Error("`"+e+"` finished async. Use `"+t+"` instead")}function PB(e){return Wlt(e)?e:new RV(e)}function Wlt(e){return!!(e&&typeof e==`object`&&`message`in e&&`messages`in e)}function Glt(e){return typeof e==`string`||Klt(e)}function Klt(e){return!!(e&&typeof e==`object`&&`byteLength`in e&&`byteOffset`in e)}var FB,IB,LB,qlt,RB,zB,BB,VB,HB,UB,WB,GB,KB,qB,Jlt,Ylt,JB,YB,XB,Xlt,ZB,Zlt,QB,$B,eV,Qlt,tV,$lt,eut,tut,nV,rV,iV,nut,rut,Y,aV,oV,iut,aut,sV,out,sut,cV,cut,lV,uV,dV,lut,fV,pV,mV,X,Z,uut,hV,dut,gV,Q,_V,fut,vV,yV,bV,put,mut,xV,SV,hut,gut,_ut,vut,yut,CV,wV,TV,but,EV,DV,xut,Sut,OV,Cut,wut,kV,Tut,AV,Eut,Dut,Out,kut,Aut,jut,Mut,Nut,Put,$,Fut,jV,MV,NV,PV,FV,IV,Iut,LV,RV,Lut,Rut,zut,But,Vut,Hut,Uut,zV,BV,Wut,Gut,Kut,qut,VV,Jut,Yut,Xut,HV,Zut,UV,WV,GV,Qut,$ut,edt,tdt,ndt,KV,qV,rdt,idt,JV,adt,YV,odt,sdt,cdt,ldt,udt,XV,ddt,fdt,ZV,pdt=s((()=>{for(GV in WR(),FB=class{constructor(e,t,n){this.normal=t,this.property=e,n&&(this.space=n)}},FB.prototype.normal={},FB.prototype.property={},FB.prototype.space=void 0,IB=class{constructor(e,t){this.attribute=t,this.property=e}},IB.prototype.attribute=``,IB.prototype.booleanish=!1,IB.prototype.boolean=!1,IB.prototype.commaOrSpaceSeparated=!1,IB.prototype.commaSeparated=!1,IB.prototype.defined=!1,IB.prototype.mustUseProperty=!1,IB.prototype.number=!1,IB.prototype.overloadedBoolean=!1,IB.prototype.property=``,IB.prototype.spaceSeparated=!1,IB.prototype.space=void 0,LB=jR({boolean:()=>RB,booleanish:()=>zB,commaOrSpaceSeparated:()=>WB,commaSeparated:()=>UB,number:()=>VB,overloadedBoolean:()=>BB,spaceSeparated:()=>HB}),qlt=0,RB=Mz(),zB=Mz(),BB=Mz(),VB=Mz(),HB=Mz(),UB=Mz(),WB=Mz(),GB=Object.keys(LB),KB=class extends IB{constructor(e,t,n,r){let i=-1;if(super(e,t),Hat(this,`space`,r),typeof n==`number`)for(;++ithis.bufferWaterline}dropParsedChunk(){this.willDropParsedChunk()&&(this.html=this.html.substring(this.pos),this.lineStartPos-=this.pos,this.droppedBufferSize+=this.pos,this.pos=0,this.lastGapPos=-2,this.gapStack.length=0)}write(e,t){this.html.length>0?this.html+=e:this.html=e,this.endOfChunkHit=!1,this.lastChunkWritten=t}insertHtmlAtCurrentPos(e){this.html=this.html.substring(0,this.pos+1)+e+this.html.substring(this.pos+1),this.endOfChunkHit=!1}startsWith(e,t){if(this.pos+e.length>this.html.length)return this.endOfChunkHit=!this.lastChunkWritten,!1;if(t)return this.html.startsWith(e,this.pos);for(let t=0;t=this.html.length)return this.endOfChunkHit=!this.lastChunkWritten,Y.EOF;let n=this.html.charCodeAt(t);return n===Y.CARRIAGE_RETURN?Y.LINE_FEED:n}advance(){if(this.pos++,this.isEol&&(this.isEol=!1,this.line++,this.lineStartPos=this.pos),this.pos>=this.html.length)return this.endOfChunkHit=!this.lastChunkWritten,Y.EOF;let e=this.html.charCodeAt(this.pos);return e===Y.CARRIAGE_RETURN?(this.isEol=!0,this.skipNextNewLine=!0,Y.LINE_FEED):e===Y.LINE_FEED&&(this.isEol=!0,this.skipNextNewLine)?(this.line--,this.skipNextNewLine=!1,this._addGap(),this.advance()):(this.skipNextNewLine=!1,lot(e)&&(e=this._processSurrogate(e)),this.handler.onParseError===null||e>31&&e<127||e===Y.LINE_FEED||e===Y.CARRIAGE_RETURN||e>159&&e<64976||this._checkForProblematicCharacters(e),e)}_checkForProblematicCharacters(e){fot(e)?this._err(oV.controlCharacterInInputStream):pot(e)&&this._err(oV.noncharacterInInputStream)}retreat(e){for(this.pos-=e;this.pos䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀𝔊;拙pf;쀀𝔾eater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀𝒢;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀𝕀a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀𝔍pf;쀀𝕁ǣ߇\0ߌr;쀀𝒥rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀𝔎pf;쀀𝕂cr;쀀𝒦րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀𝔏Ā;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀𝕃erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀𝔐nusPlus;戓pf;쀀𝕄cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀𝔑ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀𝒩ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀𝔒rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀𝕆enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀𝒪ash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀𝔓i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀𝒫;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀𝔔pf;愚cr;쀀𝒬؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀𝔖ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀𝕊ɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀𝒮ar;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀𝔗Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀𝕋ipleDot;惛Āctዖዛr;쀀𝒯rok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀𝔘rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀𝕌ЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀𝒰ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀𝔙pf;쀀𝕍cr;쀀𝒱dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀𝔚pf;쀀𝕎cr;쀀𝒲Ȁfiosᓋᓐᓒᓘr;쀀𝔛;䎞pf;쀀𝕏cr;쀀𝒳ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀𝔜pf;쀀𝕐cr;쀀𝒴ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀𝒵௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀𝔞rave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀𝕒΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀𝒶;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀𝔟g΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀𝕓Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀𝒷mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀𝔠ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀𝕔oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀𝒸Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀𝔡arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀𝕕ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀𝒹;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀𝔢ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀𝕖ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀𝔣lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀𝕗ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀𝒻ࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀𝔤Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀𝕘Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀𝔥sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀𝕙bar;怕ƀclt≯≴≸r;쀀𝒽asè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀𝔦rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀𝕚a;䎹uest耻¿䂿Āci⎊⎏r;쀀𝒾nʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀𝔧ath;䈷pf;쀀𝕛ǣ⏬\0⏱r;쀀𝒿rcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀𝔨reen;䄸cy;䑅cy;䑜pf;쀀𝕜cr;쀀𝓀஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀𝔩Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀𝕝us;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀𝓁mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀𝔪o;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀𝕞Āct⣸⣽r;쀀𝓂pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻\xA0ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀𝔫ȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀𝕟膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀𝓃ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀𝔬ͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀𝕠ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀𝔭ƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀𝕡nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀𝓅;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀𝔮pf;쀀𝕢rime;恗cr;쀀𝓆ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀𝔯ĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀𝕣us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀𝓇Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀𝔰Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀𝕤aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀𝓈tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀𝔱Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀𝕥rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀𝓉;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀𝔲rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀𝕦̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀𝓊ƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀𝔳tré㦮suĀbp㧯㧱»ജ»൙pf;쀀𝕧roð໻tré㦴Ācu㨆㨋r;쀀𝓋Ābp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀𝔴pf;쀀𝕨Ā;eᑹ㩦atèᑹcr;쀀𝓌ૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀𝔵ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀𝕩imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀𝓍Āpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀𝔶cy;䑗pf;쀀𝕪cr;쀀𝓎Ācm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀𝔷cy;䐶grarr;懝pf;쀀𝕫cr;쀀𝓏Ājn㮅㮇;怍j;怌`.split(``).map(e=>e.charCodeAt(0))),sut=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]),String.fromCodePoint,(function(e){e[e.NUM=35]=`NUM`,e[e.SEMI=59]=`SEMI`,e[e.EQUALS=61]=`EQUALS`,e[e.ZERO=48]=`ZERO`,e[e.NINE=57]=`NINE`,e[e.LOWER_A=97]=`LOWER_A`,e[e.LOWER_F=102]=`LOWER_F`,e[e.LOWER_X=120]=`LOWER_X`,e[e.LOWER_Z=122]=`LOWER_Z`,e[e.UPPER_A=65]=`UPPER_A`,e[e.UPPER_F=70]=`UPPER_F`,e[e.UPPER_Z=90]=`UPPER_Z`})(cV||={}),cut=32,(function(e){e[e.VALUE_LENGTH=49152]=`VALUE_LENGTH`,e[e.BRANCH_LENGTH=16256]=`BRANCH_LENGTH`,e[e.JUMP_TABLE=127]=`JUMP_TABLE`})(lV||={}),(function(e){e[e.EntityStart=0]=`EntityStart`,e[e.NumericStart=1]=`NumericStart`,e[e.NumericDecimal=2]=`NumericDecimal`,e[e.NumericHex=3]=`NumericHex`,e[e.NamedEntity=4]=`NamedEntity`})(uV||={}),(function(e){e[e.Legacy=0]=`Legacy`,e[e.Strict=1]=`Strict`,e[e.Attribute=2]=`Attribute`})(dV||={}),lut=class{constructor(e,t,n){this.decodeTree=e,this.emitCodePoint=t,this.errors=n,this.state=uV.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=dV.Strict}startEntity(e){this.decodeMode=e,this.state=uV.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1}write(e,t){switch(this.state){case uV.EntityStart:return e.charCodeAt(t)===cV.NUM?(this.state=uV.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1)):(this.state=uV.NamedEntity,this.stateNamedEntity(e,t));case uV.NumericStart:return this.stateNumericStart(e,t);case uV.NumericDecimal:return this.stateNumericDecimal(e,t);case uV.NumericHex:return this.stateNumericHex(e,t);case uV.NamedEntity:return this.stateNamedEntity(e,t)}}stateNumericStart(e,t){return t>=e.length?-1:(e.charCodeAt(t)|cut)===cV.LOWER_X?(this.state=uV.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=uV.NumericDecimal,this.stateNumericDecimal(e,t))}addToNumericResult(e,t,n,r){if(t!==n){let i=n-t;this.result=this.result*r**+i+Number.parseInt(e.substr(t,i),r),this.consumed+=i}}stateNumericHex(e,t){let n=t;for(;t>14;for(;t>14,i!==0){if(a===cV.SEMI)return this.emitNamedEntityData(this.treeIndex,i,this.consumed+this.excess);this.decodeMode!==dV.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return-1}emitNotTerminatedNamedEntity(){var e;let{result:t,decodeTree:n}=this,r=(n[t]&lV.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,r,this.consumed),(e=this.errors)==null||e.missingSemicolonAfterCharacterReference(),this.consumed}emitNamedEntityData(e,t,n){let{decodeTree:r}=this;return this.emitCodePoint(t===1?r[e]&~lV.VALUE_LENGTH:r[e+1],n),t===3&&this.emitCodePoint(r[e+2],n),n}end(){var e;switch(this.state){case uV.NamedEntity:return this.result!==0&&(this.decodeMode!==dV.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case uV.NumericDecimal:return this.emitNumericEntity(0,2);case uV.NumericHex:return this.emitNumericEntity(0,3);case uV.NumericStart:return(e=this.errors)==null||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case uV.EntityStart:return 0}}},(function(e){e.HTML=`http://www.w3.org/1999/xhtml`,e.MATHML=`http://www.w3.org/1998/Math/MathML`,e.SVG=`http://www.w3.org/2000/svg`,e.XLINK=`http://www.w3.org/1999/xlink`,e.XML=`http://www.w3.org/XML/1998/namespace`,e.XMLNS=`http://www.w3.org/2000/xmlns/`})(fV||={}),(function(e){e.TYPE=`type`,e.ACTION=`action`,e.ENCODING=`encoding`,e.PROMPT=`prompt`,e.NAME=`name`,e.COLOR=`color`,e.FACE=`face`,e.SIZE=`size`})(pV||={}),(function(e){e.NO_QUIRKS=`no-quirks`,e.QUIRKS=`quirks`,e.LIMITED_QUIRKS=`limited-quirks`})(mV||={}),(function(e){e.A=`a`,e.ADDRESS=`address`,e.ANNOTATION_XML=`annotation-xml`,e.APPLET=`applet`,e.AREA=`area`,e.ARTICLE=`article`,e.ASIDE=`aside`,e.B=`b`,e.BASE=`base`,e.BASEFONT=`basefont`,e.BGSOUND=`bgsound`,e.BIG=`big`,e.BLOCKQUOTE=`blockquote`,e.BODY=`body`,e.BR=`br`,e.BUTTON=`button`,e.CAPTION=`caption`,e.CENTER=`center`,e.CODE=`code`,e.COL=`col`,e.COLGROUP=`colgroup`,e.DD=`dd`,e.DESC=`desc`,e.DETAILS=`details`,e.DIALOG=`dialog`,e.DIR=`dir`,e.DIV=`div`,e.DL=`dl`,e.DT=`dt`,e.EM=`em`,e.EMBED=`embed`,e.FIELDSET=`fieldset`,e.FIGCAPTION=`figcaption`,e.FIGURE=`figure`,e.FONT=`font`,e.FOOTER=`footer`,e.FOREIGN_OBJECT=`foreignObject`,e.FORM=`form`,e.FRAME=`frame`,e.FRAMESET=`frameset`,e.H1=`h1`,e.H2=`h2`,e.H3=`h3`,e.H4=`h4`,e.H5=`h5`,e.H6=`h6`,e.HEAD=`head`,e.HEADER=`header`,e.HGROUP=`hgroup`,e.HR=`hr`,e.HTML=`html`,e.I=`i`,e.IMG=`img`,e.IMAGE=`image`,e.INPUT=`input`,e.IFRAME=`iframe`,e.KEYGEN=`keygen`,e.LABEL=`label`,e.LI=`li`,e.LINK=`link`,e.LISTING=`listing`,e.MAIN=`main`,e.MALIGNMARK=`malignmark`,e.MARQUEE=`marquee`,e.MATH=`math`,e.MENU=`menu`,e.META=`meta`,e.MGLYPH=`mglyph`,e.MI=`mi`,e.MO=`mo`,e.MN=`mn`,e.MS=`ms`,e.MTEXT=`mtext`,e.NAV=`nav`,e.NOBR=`nobr`,e.NOFRAMES=`noframes`,e.NOEMBED=`noembed`,e.NOSCRIPT=`noscript`,e.OBJECT=`object`,e.OL=`ol`,e.OPTGROUP=`optgroup`,e.OPTION=`option`,e.P=`p`,e.PARAM=`param`,e.PLAINTEXT=`plaintext`,e.PRE=`pre`,e.RB=`rb`,e.RP=`rp`,e.RT=`rt`,e.RTC=`rtc`,e.RUBY=`ruby`,e.S=`s`,e.SCRIPT=`script`,e.SEARCH=`search`,e.SECTION=`section`,e.SELECT=`select`,e.SOURCE=`source`,e.SMALL=`small`,e.SPAN=`span`,e.STRIKE=`strike`,e.STRONG=`strong`,e.STYLE=`style`,e.SUB=`sub`,e.SUMMARY=`summary`,e.SUP=`sup`,e.TABLE=`table`,e.TBODY=`tbody`,e.TEMPLATE=`template`,e.TEXTAREA=`textarea`,e.TFOOT=`tfoot`,e.TD=`td`,e.TH=`th`,e.THEAD=`thead`,e.TITLE=`title`,e.TR=`tr`,e.TRACK=`track`,e.TT=`tt`,e.U=`u`,e.UL=`ul`,e.SVG=`svg`,e.VAR=`var`,e.WBR=`wbr`,e.XMP=`xmp`})(X||={}),(function(e){e[e.UNKNOWN=0]=`UNKNOWN`,e[e.A=1]=`A`,e[e.ADDRESS=2]=`ADDRESS`,e[e.ANNOTATION_XML=3]=`ANNOTATION_XML`,e[e.APPLET=4]=`APPLET`,e[e.AREA=5]=`AREA`,e[e.ARTICLE=6]=`ARTICLE`,e[e.ASIDE=7]=`ASIDE`,e[e.B=8]=`B`,e[e.BASE=9]=`BASE`,e[e.BASEFONT=10]=`BASEFONT`,e[e.BGSOUND=11]=`BGSOUND`,e[e.BIG=12]=`BIG`,e[e.BLOCKQUOTE=13]=`BLOCKQUOTE`,e[e.BODY=14]=`BODY`,e[e.BR=15]=`BR`,e[e.BUTTON=16]=`BUTTON`,e[e.CAPTION=17]=`CAPTION`,e[e.CENTER=18]=`CENTER`,e[e.CODE=19]=`CODE`,e[e.COL=20]=`COL`,e[e.COLGROUP=21]=`COLGROUP`,e[e.DD=22]=`DD`,e[e.DESC=23]=`DESC`,e[e.DETAILS=24]=`DETAILS`,e[e.DIALOG=25]=`DIALOG`,e[e.DIR=26]=`DIR`,e[e.DIV=27]=`DIV`,e[e.DL=28]=`DL`,e[e.DT=29]=`DT`,e[e.EM=30]=`EM`,e[e.EMBED=31]=`EMBED`,e[e.FIELDSET=32]=`FIELDSET`,e[e.FIGCAPTION=33]=`FIGCAPTION`,e[e.FIGURE=34]=`FIGURE`,e[e.FONT=35]=`FONT`,e[e.FOOTER=36]=`FOOTER`,e[e.FOREIGN_OBJECT=37]=`FOREIGN_OBJECT`,e[e.FORM=38]=`FORM`,e[e.FRAME=39]=`FRAME`,e[e.FRAMESET=40]=`FRAMESET`,e[e.H1=41]=`H1`,e[e.H2=42]=`H2`,e[e.H3=43]=`H3`,e[e.H4=44]=`H4`,e[e.H5=45]=`H5`,e[e.H6=46]=`H6`,e[e.HEAD=47]=`HEAD`,e[e.HEADER=48]=`HEADER`,e[e.HGROUP=49]=`HGROUP`,e[e.HR=50]=`HR`,e[e.HTML=51]=`HTML`,e[e.I=52]=`I`,e[e.IMG=53]=`IMG`,e[e.IMAGE=54]=`IMAGE`,e[e.INPUT=55]=`INPUT`,e[e.IFRAME=56]=`IFRAME`,e[e.KEYGEN=57]=`KEYGEN`,e[e.LABEL=58]=`LABEL`,e[e.LI=59]=`LI`,e[e.LINK=60]=`LINK`,e[e.LISTING=61]=`LISTING`,e[e.MAIN=62]=`MAIN`,e[e.MALIGNMARK=63]=`MALIGNMARK`,e[e.MARQUEE=64]=`MARQUEE`,e[e.MATH=65]=`MATH`,e[e.MENU=66]=`MENU`,e[e.META=67]=`META`,e[e.MGLYPH=68]=`MGLYPH`,e[e.MI=69]=`MI`,e[e.MO=70]=`MO`,e[e.MN=71]=`MN`,e[e.MS=72]=`MS`,e[e.MTEXT=73]=`MTEXT`,e[e.NAV=74]=`NAV`,e[e.NOBR=75]=`NOBR`,e[e.NOFRAMES=76]=`NOFRAMES`,e[e.NOEMBED=77]=`NOEMBED`,e[e.NOSCRIPT=78]=`NOSCRIPT`,e[e.OBJECT=79]=`OBJECT`,e[e.OL=80]=`OL`,e[e.OPTGROUP=81]=`OPTGROUP`,e[e.OPTION=82]=`OPTION`,e[e.P=83]=`P`,e[e.PARAM=84]=`PARAM`,e[e.PLAINTEXT=85]=`PLAINTEXT`,e[e.PRE=86]=`PRE`,e[e.RB=87]=`RB`,e[e.RP=88]=`RP`,e[e.RT=89]=`RT`,e[e.RTC=90]=`RTC`,e[e.RUBY=91]=`RUBY`,e[e.S=92]=`S`,e[e.SCRIPT=93]=`SCRIPT`,e[e.SEARCH=94]=`SEARCH`,e[e.SECTION=95]=`SECTION`,e[e.SELECT=96]=`SELECT`,e[e.SOURCE=97]=`SOURCE`,e[e.SMALL=98]=`SMALL`,e[e.SPAN=99]=`SPAN`,e[e.STRIKE=100]=`STRIKE`,e[e.STRONG=101]=`STRONG`,e[e.STYLE=102]=`STYLE`,e[e.SUB=103]=`SUB`,e[e.SUMMARY=104]=`SUMMARY`,e[e.SUP=105]=`SUP`,e[e.TABLE=106]=`TABLE`,e[e.TBODY=107]=`TBODY`,e[e.TEMPLATE=108]=`TEMPLATE`,e[e.TEXTAREA=109]=`TEXTAREA`,e[e.TFOOT=110]=`TFOOT`,e[e.TD=111]=`TD`,e[e.TH=112]=`TH`,e[e.THEAD=113]=`THEAD`,e[e.TITLE=114]=`TITLE`,e[e.TR=115]=`TR`,e[e.TRACK=116]=`TRACK`,e[e.TT=117]=`TT`,e[e.U=118]=`U`,e[e.UL=119]=`UL`,e[e.SVG=120]=`SVG`,e[e.VAR=121]=`VAR`,e[e.WBR=122]=`WBR`,e[e.XMP=123]=`XMP`})(Z||={}),uut=new Map([[X.A,Z.A],[X.ADDRESS,Z.ADDRESS],[X.ANNOTATION_XML,Z.ANNOTATION_XML],[X.APPLET,Z.APPLET],[X.AREA,Z.AREA],[X.ARTICLE,Z.ARTICLE],[X.ASIDE,Z.ASIDE],[X.B,Z.B],[X.BASE,Z.BASE],[X.BASEFONT,Z.BASEFONT],[X.BGSOUND,Z.BGSOUND],[X.BIG,Z.BIG],[X.BLOCKQUOTE,Z.BLOCKQUOTE],[X.BODY,Z.BODY],[X.BR,Z.BR],[X.BUTTON,Z.BUTTON],[X.CAPTION,Z.CAPTION],[X.CENTER,Z.CENTER],[X.CODE,Z.CODE],[X.COL,Z.COL],[X.COLGROUP,Z.COLGROUP],[X.DD,Z.DD],[X.DESC,Z.DESC],[X.DETAILS,Z.DETAILS],[X.DIALOG,Z.DIALOG],[X.DIR,Z.DIR],[X.DIV,Z.DIV],[X.DL,Z.DL],[X.DT,Z.DT],[X.EM,Z.EM],[X.EMBED,Z.EMBED],[X.FIELDSET,Z.FIELDSET],[X.FIGCAPTION,Z.FIGCAPTION],[X.FIGURE,Z.FIGURE],[X.FONT,Z.FONT],[X.FOOTER,Z.FOOTER],[X.FOREIGN_OBJECT,Z.FOREIGN_OBJECT],[X.FORM,Z.FORM],[X.FRAME,Z.FRAME],[X.FRAMESET,Z.FRAMESET],[X.H1,Z.H1],[X.H2,Z.H2],[X.H3,Z.H3],[X.H4,Z.H4],[X.H5,Z.H5],[X.H6,Z.H6],[X.HEAD,Z.HEAD],[X.HEADER,Z.HEADER],[X.HGROUP,Z.HGROUP],[X.HR,Z.HR],[X.HTML,Z.HTML],[X.I,Z.I],[X.IMG,Z.IMG],[X.IMAGE,Z.IMAGE],[X.INPUT,Z.INPUT],[X.IFRAME,Z.IFRAME],[X.KEYGEN,Z.KEYGEN],[X.LABEL,Z.LABEL],[X.LI,Z.LI],[X.LINK,Z.LINK],[X.LISTING,Z.LISTING],[X.MAIN,Z.MAIN],[X.MALIGNMARK,Z.MALIGNMARK],[X.MARQUEE,Z.MARQUEE],[X.MATH,Z.MATH],[X.MENU,Z.MENU],[X.META,Z.META],[X.MGLYPH,Z.MGLYPH],[X.MI,Z.MI],[X.MO,Z.MO],[X.MN,Z.MN],[X.MS,Z.MS],[X.MTEXT,Z.MTEXT],[X.NAV,Z.NAV],[X.NOBR,Z.NOBR],[X.NOFRAMES,Z.NOFRAMES],[X.NOEMBED,Z.NOEMBED],[X.NOSCRIPT,Z.NOSCRIPT],[X.OBJECT,Z.OBJECT],[X.OL,Z.OL],[X.OPTGROUP,Z.OPTGROUP],[X.OPTION,Z.OPTION],[X.P,Z.P],[X.PARAM,Z.PARAM],[X.PLAINTEXT,Z.PLAINTEXT],[X.PRE,Z.PRE],[X.RB,Z.RB],[X.RP,Z.RP],[X.RT,Z.RT],[X.RTC,Z.RTC],[X.RUBY,Z.RUBY],[X.S,Z.S],[X.SCRIPT,Z.SCRIPT],[X.SEARCH,Z.SEARCH],[X.SECTION,Z.SECTION],[X.SELECT,Z.SELECT],[X.SOURCE,Z.SOURCE],[X.SMALL,Z.SMALL],[X.SPAN,Z.SPAN],[X.STRIKE,Z.STRIKE],[X.STRONG,Z.STRONG],[X.STYLE,Z.STYLE],[X.SUB,Z.SUB],[X.SUMMARY,Z.SUMMARY],[X.SUP,Z.SUP],[X.TABLE,Z.TABLE],[X.TBODY,Z.TBODY],[X.TEMPLATE,Z.TEMPLATE],[X.TEXTAREA,Z.TEXTAREA],[X.TFOOT,Z.TFOOT],[X.TD,Z.TD],[X.TH,Z.TH],[X.THEAD,Z.THEAD],[X.TITLE,Z.TITLE],[X.TR,Z.TR],[X.TRACK,Z.TRACK],[X.TT,Z.TT],[X.U,Z.U],[X.UL,Z.UL],[X.SVG,Z.SVG],[X.VAR,Z.VAR],[X.WBR,Z.WBR],[X.XMP,Z.XMP]]),hV=Z,dut={[fV.HTML]:new Set([hV.ADDRESS,hV.APPLET,hV.AREA,hV.ARTICLE,hV.ASIDE,hV.BASE,hV.BASEFONT,hV.BGSOUND,hV.BLOCKQUOTE,hV.BODY,hV.BR,hV.BUTTON,hV.CAPTION,hV.CENTER,hV.COL,hV.COLGROUP,hV.DD,hV.DETAILS,hV.DIR,hV.DIV,hV.DL,hV.DT,hV.EMBED,hV.FIELDSET,hV.FIGCAPTION,hV.FIGURE,hV.FOOTER,hV.FORM,hV.FRAME,hV.FRAMESET,hV.H1,hV.H2,hV.H3,hV.H4,hV.H5,hV.H6,hV.HEAD,hV.HEADER,hV.HGROUP,hV.HR,hV.HTML,hV.IFRAME,hV.IMG,hV.INPUT,hV.LI,hV.LINK,hV.LISTING,hV.MAIN,hV.MARQUEE,hV.MENU,hV.META,hV.NAV,hV.NOEMBED,hV.NOFRAMES,hV.NOSCRIPT,hV.OBJECT,hV.OL,hV.P,hV.PARAM,hV.PLAINTEXT,hV.PRE,hV.SCRIPT,hV.SECTION,hV.SELECT,hV.SOURCE,hV.STYLE,hV.SUMMARY,hV.TABLE,hV.TBODY,hV.TD,hV.TEMPLATE,hV.TEXTAREA,hV.TFOOT,hV.TH,hV.THEAD,hV.TITLE,hV.TR,hV.TRACK,hV.UL,hV.WBR,hV.XMP]),[fV.MATHML]:new Set([hV.MI,hV.MO,hV.MN,hV.MS,hV.MTEXT,hV.ANNOTATION_XML]),[fV.SVG]:new Set([hV.TITLE,hV.FOREIGN_OBJECT,hV.DESC]),[fV.XLINK]:new Set,[fV.XML]:new Set,[fV.XMLNS]:new Set},gV=new Set([hV.H1,hV.H2,hV.H3,hV.H4,hV.H5,hV.H6]),X.STYLE,X.SCRIPT,X.XMP,X.IFRAME,X.NOEMBED,X.NOFRAMES,X.PLAINTEXT,(function(e){e[e.DATA=0]=`DATA`,e[e.RCDATA=1]=`RCDATA`,e[e.RAWTEXT=2]=`RAWTEXT`,e[e.SCRIPT_DATA=3]=`SCRIPT_DATA`,e[e.PLAINTEXT=4]=`PLAINTEXT`,e[e.TAG_OPEN=5]=`TAG_OPEN`,e[e.END_TAG_OPEN=6]=`END_TAG_OPEN`,e[e.TAG_NAME=7]=`TAG_NAME`,e[e.RCDATA_LESS_THAN_SIGN=8]=`RCDATA_LESS_THAN_SIGN`,e[e.RCDATA_END_TAG_OPEN=9]=`RCDATA_END_TAG_OPEN`,e[e.RCDATA_END_TAG_NAME=10]=`RCDATA_END_TAG_NAME`,e[e.RAWTEXT_LESS_THAN_SIGN=11]=`RAWTEXT_LESS_THAN_SIGN`,e[e.RAWTEXT_END_TAG_OPEN=12]=`RAWTEXT_END_TAG_OPEN`,e[e.RAWTEXT_END_TAG_NAME=13]=`RAWTEXT_END_TAG_NAME`,e[e.SCRIPT_DATA_LESS_THAN_SIGN=14]=`SCRIPT_DATA_LESS_THAN_SIGN`,e[e.SCRIPT_DATA_END_TAG_OPEN=15]=`SCRIPT_DATA_END_TAG_OPEN`,e[e.SCRIPT_DATA_END_TAG_NAME=16]=`SCRIPT_DATA_END_TAG_NAME`,e[e.SCRIPT_DATA_ESCAPE_START=17]=`SCRIPT_DATA_ESCAPE_START`,e[e.SCRIPT_DATA_ESCAPE_START_DASH=18]=`SCRIPT_DATA_ESCAPE_START_DASH`,e[e.SCRIPT_DATA_ESCAPED=19]=`SCRIPT_DATA_ESCAPED`,e[e.SCRIPT_DATA_ESCAPED_DASH=20]=`SCRIPT_DATA_ESCAPED_DASH`,e[e.SCRIPT_DATA_ESCAPED_DASH_DASH=21]=`SCRIPT_DATA_ESCAPED_DASH_DASH`,e[e.SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN=22]=`SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN`,e[e.SCRIPT_DATA_ESCAPED_END_TAG_OPEN=23]=`SCRIPT_DATA_ESCAPED_END_TAG_OPEN`,e[e.SCRIPT_DATA_ESCAPED_END_TAG_NAME=24]=`SCRIPT_DATA_ESCAPED_END_TAG_NAME`,e[e.SCRIPT_DATA_DOUBLE_ESCAPE_START=25]=`SCRIPT_DATA_DOUBLE_ESCAPE_START`,e[e.SCRIPT_DATA_DOUBLE_ESCAPED=26]=`SCRIPT_DATA_DOUBLE_ESCAPED`,e[e.SCRIPT_DATA_DOUBLE_ESCAPED_DASH=27]=`SCRIPT_DATA_DOUBLE_ESCAPED_DASH`,e[e.SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH=28]=`SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH`,e[e.SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN=29]=`SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN`,e[e.SCRIPT_DATA_DOUBLE_ESCAPE_END=30]=`SCRIPT_DATA_DOUBLE_ESCAPE_END`,e[e.BEFORE_ATTRIBUTE_NAME=31]=`BEFORE_ATTRIBUTE_NAME`,e[e.ATTRIBUTE_NAME=32]=`ATTRIBUTE_NAME`,e[e.AFTER_ATTRIBUTE_NAME=33]=`AFTER_ATTRIBUTE_NAME`,e[e.BEFORE_ATTRIBUTE_VALUE=34]=`BEFORE_ATTRIBUTE_VALUE`,e[e.ATTRIBUTE_VALUE_DOUBLE_QUOTED=35]=`ATTRIBUTE_VALUE_DOUBLE_QUOTED`,e[e.ATTRIBUTE_VALUE_SINGLE_QUOTED=36]=`ATTRIBUTE_VALUE_SINGLE_QUOTED`,e[e.ATTRIBUTE_VALUE_UNQUOTED=37]=`ATTRIBUTE_VALUE_UNQUOTED`,e[e.AFTER_ATTRIBUTE_VALUE_QUOTED=38]=`AFTER_ATTRIBUTE_VALUE_QUOTED`,e[e.SELF_CLOSING_START_TAG=39]=`SELF_CLOSING_START_TAG`,e[e.BOGUS_COMMENT=40]=`BOGUS_COMMENT`,e[e.MARKUP_DECLARATION_OPEN=41]=`MARKUP_DECLARATION_OPEN`,e[e.COMMENT_START=42]=`COMMENT_START`,e[e.COMMENT_START_DASH=43]=`COMMENT_START_DASH`,e[e.COMMENT=44]=`COMMENT`,e[e.COMMENT_LESS_THAN_SIGN=45]=`COMMENT_LESS_THAN_SIGN`,e[e.COMMENT_LESS_THAN_SIGN_BANG=46]=`COMMENT_LESS_THAN_SIGN_BANG`,e[e.COMMENT_LESS_THAN_SIGN_BANG_DASH=47]=`COMMENT_LESS_THAN_SIGN_BANG_DASH`,e[e.COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH=48]=`COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH`,e[e.COMMENT_END_DASH=49]=`COMMENT_END_DASH`,e[e.COMMENT_END=50]=`COMMENT_END`,e[e.COMMENT_END_BANG=51]=`COMMENT_END_BANG`,e[e.DOCTYPE=52]=`DOCTYPE`,e[e.BEFORE_DOCTYPE_NAME=53]=`BEFORE_DOCTYPE_NAME`,e[e.DOCTYPE_NAME=54]=`DOCTYPE_NAME`,e[e.AFTER_DOCTYPE_NAME=55]=`AFTER_DOCTYPE_NAME`,e[e.AFTER_DOCTYPE_PUBLIC_KEYWORD=56]=`AFTER_DOCTYPE_PUBLIC_KEYWORD`,e[e.BEFORE_DOCTYPE_PUBLIC_IDENTIFIER=57]=`BEFORE_DOCTYPE_PUBLIC_IDENTIFIER`,e[e.DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED=58]=`DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED`,e[e.DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED=59]=`DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED`,e[e.AFTER_DOCTYPE_PUBLIC_IDENTIFIER=60]=`AFTER_DOCTYPE_PUBLIC_IDENTIFIER`,e[e.BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS=61]=`BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS`,e[e.AFTER_DOCTYPE_SYSTEM_KEYWORD=62]=`AFTER_DOCTYPE_SYSTEM_KEYWORD`,e[e.BEFORE_DOCTYPE_SYSTEM_IDENTIFIER=63]=`BEFORE_DOCTYPE_SYSTEM_IDENTIFIER`,e[e.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED=64]=`DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED`,e[e.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED=65]=`DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED`,e[e.AFTER_DOCTYPE_SYSTEM_IDENTIFIER=66]=`AFTER_DOCTYPE_SYSTEM_IDENTIFIER`,e[e.BOGUS_DOCTYPE=67]=`BOGUS_DOCTYPE`,e[e.CDATA_SECTION=68]=`CDATA_SECTION`,e[e.CDATA_SECTION_BRACKET=69]=`CDATA_SECTION_BRACKET`,e[e.CDATA_SECTION_END=70]=`CDATA_SECTION_END`,e[e.CHARACTER_REFERENCE=71]=`CHARACTER_REFERENCE`,e[e.AMBIGUOUS_AMPERSAND=72]=`AMBIGUOUS_AMPERSAND`})(Q||={}),_V={DATA:Q.DATA,RCDATA:Q.RCDATA,RAWTEXT:Q.RAWTEXT,SCRIPT_DATA:Q.SCRIPT_DATA,PLAINTEXT:Q.PLAINTEXT,CDATA_SECTION:Q.CDATA_SECTION},fut=class{constructor(e,t){this.options=e,this.handler=t,this.paused=!1,this.inLoop=!1,this.inForeignNode=!1,this.lastStartTagName=``,this.active=!1,this.state=Q.DATA,this.returnState=Q.DATA,this.entityStartPos=0,this.consumedAfterSnapshot=-1,this.currentCharacterToken=null,this.currentToken=null,this.currentAttr={name:``,value:``},this.preprocessor=new aut(t),this.currentLocation=this.getCurrentLocation(-1),this.entityDecoder=new lut(out,(e,t)=>{this.preprocessor.pos=this.entityStartPos+t-1,this._flushCodePointConsumedAsCharacterReference(e)},t.onParseError?{missingSemicolonAfterCharacterReference:()=>{this._err(oV.missingSemicolonAfterCharacterReference,1)},absenceOfDigitsInNumericCharacterReference:e=>{this._err(oV.absenceOfDigitsInNumericCharacterReference,this.entityStartPos-this.preprocessor.pos+e)},validateNumericCharacterReference:e=>{let t=Tot(e);t&&this._err(t,1)}}:void 0)}_err(e,t=0){var n,r;(r=(n=this.handler).onParseError)==null||r.call(n,this.preprocessor.getError(e,t))}getCurrentLocation(e){return this.options.sourceCodeLocationInfo?{startLine:this.preprocessor.line,startCol:this.preprocessor.col-e,startOffset:this.preprocessor.offset-e,endLine:-1,endCol:-1,endOffset:-1}:null}_runParsingLoop(){if(!this.inLoop){for(this.inLoop=!0;this.active&&!this.paused;){this.consumedAfterSnapshot=0;let e=this._consume();this._ensureHibernation()||this._callState(e)}this.inLoop=!1}}pause(){this.paused=!0}resume(e){if(!this.paused)throw Error(`Parser was already resumed`);this.paused=!1,!this.inLoop&&(this._runParsingLoop(),this.paused||e?.())}write(e,t,n){this.active=!0,this.preprocessor.write(e,t),this._runParsingLoop(),this.paused||n?.()}insertHtmlAtCurrentPos(e){this.active=!0,this.preprocessor.insertHtmlAtCurrentPos(e),this._runParsingLoop()}_ensureHibernation(){return this.preprocessor.endOfChunkHit?(this.preprocessor.retreat(this.consumedAfterSnapshot),this.consumedAfterSnapshot=0,this.active=!1,!0):!1}_consume(){return this.consumedAfterSnapshot++,this.preprocessor.advance()}_advanceBy(e){this.consumedAfterSnapshot+=e;for(let t=0;t0&&this._err(oV.endTagWithAttributes),e.selfClosing&&this._err(oV.endTagWithTrailingSolidus),this.handler.onEndTag(e)),this.preprocessor.dropParsedChunk()}emitCurrentComment(e){this.prepareToken(e),this.handler.onComment(e),this.preprocessor.dropParsedChunk()}emitCurrentDoctype(e){this.prepareToken(e),this.handler.onDoctype(e),this.preprocessor.dropParsedChunk()}_emitCurrentCharacterToken(e){if(this.currentCharacterToken){switch(e&&this.currentCharacterToken.location&&(this.currentCharacterToken.location.endLine=e.startLine,this.currentCharacterToken.location.endCol=e.startCol,this.currentCharacterToken.location.endOffset=e.startOffset),this.currentCharacterToken.type){case sV.CHARACTER:this.handler.onCharacter(this.currentCharacterToken);break;case sV.NULL_CHARACTER:this.handler.onNullCharacter(this.currentCharacterToken);break;case sV.WHITESPACE_CHARACTER:this.handler.onWhitespaceCharacter(this.currentCharacterToken);break}this.currentCharacterToken=null}}_emitEOFToken(){let e=this.getCurrentLocation(0);e&&(e.endLine=e.startLine,e.endCol=e.startCol,e.endOffset=e.startOffset),this._emitCurrentCharacterToken(e),this.handler.onEof({type:sV.EOF,location:e}),this.active=!1}_appendCharToCurrentCharacterToken(e,t){if(this.currentCharacterToken)if(this.currentCharacterToken.type===e){this.currentCharacterToken.chars+=t;return}else this.currentLocation=this.getCurrentLocation(0),this._emitCurrentCharacterToken(this.currentLocation),this.preprocessor.dropParsedChunk();this._createCharacterToken(e,t)}_emitCodePoint(e){let t=Cot(e)?sV.WHITESPACE_CHARACTER:e===Y.NULL?sV.NULL_CHARACTER:sV.CHARACTER;this._appendCharToCurrentCharacterToken(t,String.fromCodePoint(e))}_emitChars(e){this._appendCharToCurrentCharacterToken(sV.CHARACTER,e)}_startCharacterReference(){this.returnState=this.state,this.state=Q.CHARACTER_REFERENCE,this.entityStartPos=this.preprocessor.pos,this.entityDecoder.startEntity(this._isCharacterReferenceInAttribute()?dV.Attribute:dV.Legacy)}_isCharacterReferenceInAttribute(){return this.returnState===Q.ATTRIBUTE_VALUE_DOUBLE_QUOTED||this.returnState===Q.ATTRIBUTE_VALUE_SINGLE_QUOTED||this.returnState===Q.ATTRIBUTE_VALUE_UNQUOTED}_flushCodePointConsumedAsCharacterReference(e){this._isCharacterReferenceInAttribute()?this.currentAttr.value+=String.fromCodePoint(e):this._emitCodePoint(e)}_callState(e){switch(this.state){case Q.DATA:this._stateData(e);break;case Q.RCDATA:this._stateRcdata(e);break;case Q.RAWTEXT:this._stateRawtext(e);break;case Q.SCRIPT_DATA:this._stateScriptData(e);break;case Q.PLAINTEXT:this._statePlaintext(e);break;case Q.TAG_OPEN:this._stateTagOpen(e);break;case Q.END_TAG_OPEN:this._stateEndTagOpen(e);break;case Q.TAG_NAME:this._stateTagName(e);break;case Q.RCDATA_LESS_THAN_SIGN:this._stateRcdataLessThanSign(e);break;case Q.RCDATA_END_TAG_OPEN:this._stateRcdataEndTagOpen(e);break;case Q.RCDATA_END_TAG_NAME:this._stateRcdataEndTagName(e);break;case Q.RAWTEXT_LESS_THAN_SIGN:this._stateRawtextLessThanSign(e);break;case Q.RAWTEXT_END_TAG_OPEN:this._stateRawtextEndTagOpen(e);break;case Q.RAWTEXT_END_TAG_NAME:this._stateRawtextEndTagName(e);break;case Q.SCRIPT_DATA_LESS_THAN_SIGN:this._stateScriptDataLessThanSign(e);break;case Q.SCRIPT_DATA_END_TAG_OPEN:this._stateScriptDataEndTagOpen(e);break;case Q.SCRIPT_DATA_END_TAG_NAME:this._stateScriptDataEndTagName(e);break;case Q.SCRIPT_DATA_ESCAPE_START:this._stateScriptDataEscapeStart(e);break;case Q.SCRIPT_DATA_ESCAPE_START_DASH:this._stateScriptDataEscapeStartDash(e);break;case Q.SCRIPT_DATA_ESCAPED:this._stateScriptDataEscaped(e);break;case Q.SCRIPT_DATA_ESCAPED_DASH:this._stateScriptDataEscapedDash(e);break;case Q.SCRIPT_DATA_ESCAPED_DASH_DASH:this._stateScriptDataEscapedDashDash(e);break;case Q.SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN:this._stateScriptDataEscapedLessThanSign(e);break;case Q.SCRIPT_DATA_ESCAPED_END_TAG_OPEN:this._stateScriptDataEscapedEndTagOpen(e);break;case Q.SCRIPT_DATA_ESCAPED_END_TAG_NAME:this._stateScriptDataEscapedEndTagName(e);break;case Q.SCRIPT_DATA_DOUBLE_ESCAPE_START:this._stateScriptDataDoubleEscapeStart(e);break;case Q.SCRIPT_DATA_DOUBLE_ESCAPED:this._stateScriptDataDoubleEscaped(e);break;case Q.SCRIPT_DATA_DOUBLE_ESCAPED_DASH:this._stateScriptDataDoubleEscapedDash(e);break;case Q.SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH:this._stateScriptDataDoubleEscapedDashDash(e);break;case Q.SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN:this._stateScriptDataDoubleEscapedLessThanSign(e);break;case Q.SCRIPT_DATA_DOUBLE_ESCAPE_END:this._stateScriptDataDoubleEscapeEnd(e);break;case Q.BEFORE_ATTRIBUTE_NAME:this._stateBeforeAttributeName(e);break;case Q.ATTRIBUTE_NAME:this._stateAttributeName(e);break;case Q.AFTER_ATTRIBUTE_NAME:this._stateAfterAttributeName(e);break;case Q.BEFORE_ATTRIBUTE_VALUE:this._stateBeforeAttributeValue(e);break;case Q.ATTRIBUTE_VALUE_DOUBLE_QUOTED:this._stateAttributeValueDoubleQuoted(e);break;case Q.ATTRIBUTE_VALUE_SINGLE_QUOTED:this._stateAttributeValueSingleQuoted(e);break;case Q.ATTRIBUTE_VALUE_UNQUOTED:this._stateAttributeValueUnquoted(e);break;case Q.AFTER_ATTRIBUTE_VALUE_QUOTED:this._stateAfterAttributeValueQuoted(e);break;case Q.SELF_CLOSING_START_TAG:this._stateSelfClosingStartTag(e);break;case Q.BOGUS_COMMENT:this._stateBogusComment(e);break;case Q.MARKUP_DECLARATION_OPEN:this._stateMarkupDeclarationOpen(e);break;case Q.COMMENT_START:this._stateCommentStart(e);break;case Q.COMMENT_START_DASH:this._stateCommentStartDash(e);break;case Q.COMMENT:this._stateComment(e);break;case Q.COMMENT_LESS_THAN_SIGN:this._stateCommentLessThanSign(e);break;case Q.COMMENT_LESS_THAN_SIGN_BANG:this._stateCommentLessThanSignBang(e);break;case Q.COMMENT_LESS_THAN_SIGN_BANG_DASH:this._stateCommentLessThanSignBangDash(e);break;case Q.COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH:this._stateCommentLessThanSignBangDashDash(e);break;case Q.COMMENT_END_DASH:this._stateCommentEndDash(e);break;case Q.COMMENT_END:this._stateCommentEnd(e);break;case Q.COMMENT_END_BANG:this._stateCommentEndBang(e);break;case Q.DOCTYPE:this._stateDoctype(e);break;case Q.BEFORE_DOCTYPE_NAME:this._stateBeforeDoctypeName(e);break;case Q.DOCTYPE_NAME:this._stateDoctypeName(e);break;case Q.AFTER_DOCTYPE_NAME:this._stateAfterDoctypeName(e);break;case Q.AFTER_DOCTYPE_PUBLIC_KEYWORD:this._stateAfterDoctypePublicKeyword(e);break;case Q.BEFORE_DOCTYPE_PUBLIC_IDENTIFIER:this._stateBeforeDoctypePublicIdentifier(e);break;case Q.DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED:this._stateDoctypePublicIdentifierDoubleQuoted(e);break;case Q.DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED:this._stateDoctypePublicIdentifierSingleQuoted(e);break;case Q.AFTER_DOCTYPE_PUBLIC_IDENTIFIER:this._stateAfterDoctypePublicIdentifier(e);break;case Q.BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS:this._stateBetweenDoctypePublicAndSystemIdentifiers(e);break;case Q.AFTER_DOCTYPE_SYSTEM_KEYWORD:this._stateAfterDoctypeSystemKeyword(e);break;case Q.BEFORE_DOCTYPE_SYSTEM_IDENTIFIER:this._stateBeforeDoctypeSystemIdentifier(e);break;case Q.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED:this._stateDoctypeSystemIdentifierDoubleQuoted(e);break;case Q.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED:this._stateDoctypeSystemIdentifierSingleQuoted(e);break;case Q.AFTER_DOCTYPE_SYSTEM_IDENTIFIER:this._stateAfterDoctypeSystemIdentifier(e);break;case Q.BOGUS_DOCTYPE:this._stateBogusDoctype(e);break;case Q.CDATA_SECTION:this._stateCdataSection(e);break;case Q.CDATA_SECTION_BRACKET:this._stateCdataSectionBracket(e);break;case Q.CDATA_SECTION_END:this._stateCdataSectionEnd(e);break;case Q.CHARACTER_REFERENCE:this._stateCharacterReference();break;case Q.AMBIGUOUS_AMPERSAND:this._stateAmbiguousAmpersand(e);break;default:throw Error(`Unknown state`)}}_stateData(e){switch(e){case Y.LESS_THAN_SIGN:this.state=Q.TAG_OPEN;break;case Y.AMPERSAND:this._startCharacterReference();break;case Y.NULL:this._err(oV.unexpectedNullCharacter),this._emitCodePoint(e);break;case Y.EOF:this._emitEOFToken();break;default:this._emitCodePoint(e)}}_stateRcdata(e){switch(e){case Y.AMPERSAND:this._startCharacterReference();break;case Y.LESS_THAN_SIGN:this.state=Q.RCDATA_LESS_THAN_SIGN;break;case Y.NULL:this._err(oV.unexpectedNullCharacter),this._emitChars(`�`);break;case Y.EOF:this._emitEOFToken();break;default:this._emitCodePoint(e)}}_stateRawtext(e){switch(e){case Y.LESS_THAN_SIGN:this.state=Q.RAWTEXT_LESS_THAN_SIGN;break;case Y.NULL:this._err(oV.unexpectedNullCharacter),this._emitChars(`�`);break;case Y.EOF:this._emitEOFToken();break;default:this._emitCodePoint(e)}}_stateScriptData(e){switch(e){case Y.LESS_THAN_SIGN:this.state=Q.SCRIPT_DATA_LESS_THAN_SIGN;break;case Y.NULL:this._err(oV.unexpectedNullCharacter),this._emitChars(`�`);break;case Y.EOF:this._emitEOFToken();break;default:this._emitCodePoint(e)}}_statePlaintext(e){switch(e){case Y.NULL:this._err(oV.unexpectedNullCharacter),this._emitChars(`�`);break;case Y.EOF:this._emitEOFToken();break;default:this._emitCodePoint(e)}}_stateTagOpen(e){if(Uz(e))this._createStartTagToken(),this.state=Q.TAG_NAME,this._stateTagName(e);else switch(e){case Y.EXCLAMATION_MARK:this.state=Q.MARKUP_DECLARATION_OPEN;break;case Y.SOLIDUS:this.state=Q.END_TAG_OPEN;break;case Y.QUESTION_MARK:this._err(oV.unexpectedQuestionMarkInsteadOfTagName),this._createCommentToken(1),this.state=Q.BOGUS_COMMENT,this._stateBogusComment(e);break;case Y.EOF:this._err(oV.eofBeforeTagName),this._emitChars(`<`),this._emitEOFToken();break;default:this._err(oV.invalidFirstCharacterOfTagName),this._emitChars(`<`),this.state=Q.DATA,this._stateData(e)}}_stateEndTagOpen(e){if(Uz(e))this._createEndTagToken(),this.state=Q.TAG_NAME,this._stateTagName(e);else switch(e){case Y.GREATER_THAN_SIGN:this._err(oV.missingEndTagName),this.state=Q.DATA;break;case Y.EOF:this._err(oV.eofBeforeTagName),this._emitChars(``);break;case Y.NULL:this._err(oV.unexpectedNullCharacter),this.state=Q.SCRIPT_DATA_ESCAPED,this._emitChars(`�`);break;case Y.EOF:this._err(oV.eofInScriptHtmlCommentLikeText),this._emitEOFToken();break;default:this.state=Q.SCRIPT_DATA_ESCAPED,this._emitCodePoint(e)}}_stateScriptDataEscapedLessThanSign(e){e===Y.SOLIDUS?this.state=Q.SCRIPT_DATA_ESCAPED_END_TAG_OPEN:Uz(e)?(this._emitChars(`<`),this.state=Q.SCRIPT_DATA_DOUBLE_ESCAPE_START,this._stateScriptDataDoubleEscapeStart(e)):(this._emitChars(`<`),this.state=Q.SCRIPT_DATA_ESCAPED,this._stateScriptDataEscaped(e))}_stateScriptDataEscapedEndTagOpen(e){Uz(e)?(this.state=Q.SCRIPT_DATA_ESCAPED_END_TAG_NAME,this._stateScriptDataEscapedEndTagName(e)):(this._emitChars(``);break;case Y.NULL:this._err(oV.unexpectedNullCharacter),this.state=Q.SCRIPT_DATA_DOUBLE_ESCAPED,this._emitChars(`�`);break;case Y.EOF:this._err(oV.eofInScriptHtmlCommentLikeText),this._emitEOFToken();break;default:this.state=Q.SCRIPT_DATA_DOUBLE_ESCAPED,this._emitCodePoint(e)}}_stateScriptDataDoubleEscapedLessThanSign(e){e===Y.SOLIDUS?(this.state=Q.SCRIPT_DATA_DOUBLE_ESCAPE_END,this._emitChars(`/`)):(this.state=Q.SCRIPT_DATA_DOUBLE_ESCAPED,this._stateScriptDataDoubleEscaped(e))}_stateScriptDataDoubleEscapeEnd(e){if(this.preprocessor.startsWith(aV.SCRIPT,!1)&&wot(this.preprocessor.peek(aV.SCRIPT.length))){this._emitCodePoint(e);for(let e=0;e0&&this._isInTemplate()&&this.tmplCount--,this.stackTop--,this._updateCurrentElement(),this.handler.onItemPop(e,!0)}replace(e,t){let n=this._indexOf(e);this.items[n]=t,n===this.stackTop&&(this.current=t)}insertAfter(e,t,n){let r=this._indexOf(e)+1;this.items.splice(r,0,t),this.tagIDs.splice(r,0,n),this.stackTop++,r===this.stackTop&&this._updateCurrentElement(),this.current&&this.currentTagId!==void 0&&this.handler.onItemPush(this.current,this.currentTagId,r===this.stackTop)}popUntilTagNamePopped(e){let t=this.stackTop+1;do t=this.tagIDs.lastIndexOf(e,t-1);while(t>0&&this.treeAdapter.getNamespaceURI(this.items[t])!==fV.HTML);this.shortenToLength(Math.max(t,0))}shortenToLength(e){for(;this.stackTop>=e;){let t=this.current;this.tmplCount>0&&this._isInTemplate()&&--this.tmplCount,this.stackTop--,this._updateCurrentElement(),this.handler.onItemPop(t,this.stackTop=0;n--)if(e.has(this.tagIDs[n])&&this.treeAdapter.getNamespaceURI(this.items[n])===t)return n;return-1}clearBackTo(e,t){let n=this._indexOfTagNames(e,t);this.shortenToLength(n+1)}clearBackToTableContext(){this.clearBackTo(_ut,fV.HTML)}clearBackToTableBodyContext(){this.clearBackTo(gut,fV.HTML)}clearBackToTableRowContext(){this.clearBackTo(hut,fV.HTML)}remove(e){let t=this._indexOf(e);t>=0&&(t===this.stackTop?this.pop():(this.items.splice(t,1),this.tagIDs.splice(t,1),this.stackTop--,this._updateCurrentElement(),this.handler.onItemPop(e,!1)))}tryPeekProperlyNestedBodyElement(){return this.stackTop>=1&&this.tagIDs[1]===Z.BODY?this.items[1]:null}contains(e){return this._indexOf(e)>-1}getCommonAncestor(e){let t=this._indexOf(e)-1;return t>=0?this.items[t]:null}isRootHtmlElementCurrent(){return this.stackTop===0&&this.tagIDs[0]===Z.HTML}hasInDynamicScope(e,t){for(let n=this.stackTop;n>=0;n--){let r=this.tagIDs[n];switch(this.treeAdapter.getNamespaceURI(this.items[n])){case fV.HTML:if(r===e)return!0;if(t.has(r))return!1;break;case fV.SVG:if(SV.has(r))return!1;break;case fV.MATHML:if(xV.has(r))return!1;break}}return!0}hasInScope(e){return this.hasInDynamicScope(e,bV)}hasInListItemScope(e){return this.hasInDynamicScope(e,put)}hasInButtonScope(e){return this.hasInDynamicScope(e,mut)}hasNumberedHeaderInScope(){for(let e=this.stackTop;e>=0;e--){let t=this.tagIDs[e];switch(this.treeAdapter.getNamespaceURI(this.items[e])){case fV.HTML:if(gV.has(t))return!0;if(bV.has(t))return!1;break;case fV.SVG:if(SV.has(t))return!1;break;case fV.MATHML:if(xV.has(t))return!1;break}}return!0}hasInTableScope(e){for(let t=this.stackTop;t>=0;t--)if(this.treeAdapter.getNamespaceURI(this.items[t])===fV.HTML)switch(this.tagIDs[t]){case e:return!0;case Z.TABLE:case Z.HTML:return!1}return!0}hasTableBodyContextInTableScope(){for(let e=this.stackTop;e>=0;e--)if(this.treeAdapter.getNamespaceURI(this.items[e])===fV.HTML)switch(this.tagIDs[e]){case Z.TBODY:case Z.THEAD:case Z.TFOOT:return!0;case Z.TABLE:case Z.HTML:return!1}return!0}hasInSelectScope(e){for(let t=this.stackTop;t>=0;t--)if(this.treeAdapter.getNamespaceURI(this.items[t])===fV.HTML)switch(this.tagIDs[t]){case e:return!0;case Z.OPTION:case Z.OPTGROUP:break;default:return!1}return!0}generateImpliedEndTags(){for(;this.currentTagId!==void 0&&vV.has(this.currentTagId);)this.pop()}generateImpliedEndTagsThoroughly(){for(;this.currentTagId!==void 0&&yV.has(this.currentTagId);)this.pop()}generateImpliedEndTagsWithExclusion(e){for(;this.currentTagId!==void 0&&this.currentTagId!==e&&yV.has(this.currentTagId);)this.pop()}},CV=3,(function(e){e[e.Marker=0]=`Marker`,e[e.Element=1]=`Element`})(wV||={}),TV={type:wV.Marker},but=class{constructor(e){this.treeAdapter=e,this.entries=[],this.bookmark=null}_getNoahArkConditionCandidates(e,t){let n=[],r=t.length,i=this.treeAdapter.getTagName(e),a=this.treeAdapter.getNamespaceURI(e);for(let e=0;e[e.name,e.value])),i=0;for(let e=0;er.get(e.name)===e.value)&&(i+=1,i>=CV&&this.entries.splice(t.idx,1))}}insertMarker(){this.entries.unshift(TV)}pushElement(e,t){this._ensureNoahArkCondition(e),this.entries.unshift({type:wV.Element,element:e,token:t})}insertElementAfterBookmark(e,t){let n=this.entries.indexOf(this.bookmark);this.entries.splice(n,0,{type:wV.Element,element:e,token:t})}removeEntry(e){let t=this.entries.indexOf(e);t!==-1&&this.entries.splice(t,1)}clearToLastMarker(){let e=this.entries.indexOf(TV);e===-1?this.entries.length=0:this.entries.splice(0,e+1)}getElementEntryInScopeWithTagName(e){let t=this.entries.find(t=>t.type===wV.Marker||this.treeAdapter.getTagName(t.element)===e);return t&&t.type===wV.Element?t:null}getElementEntry(e){return this.entries.find(t=>t.type===wV.Element&&t.element===e)}},EV={createDocument(){return{nodeName:`#document`,mode:mV.NO_QUIRKS,childNodes:[]}},createDocumentFragment(){return{nodeName:`#document-fragment`,childNodes:[]}},createElement(e,t,n){return{nodeName:e,tagName:e,attrs:n,namespaceURI:t,childNodes:[],parentNode:null}},createCommentNode(e){return{nodeName:`#comment`,data:e,parentNode:null}},createTextNode(e){return{nodeName:`#text`,value:e,parentNode:null}},appendChild(e,t){e.childNodes.push(t),t.parentNode=e},insertBefore(e,t,n){let r=e.childNodes.indexOf(n);e.childNodes.splice(r,0,t),t.parentNode=e},setTemplateContent(e,t){e.content=t},getTemplateContent(e){return e.content},setDocumentType(e,t,n,r){let i=e.childNodes.find(e=>e.nodeName===`#documentType`);if(i)i.name=t,i.publicId=n,i.systemId=r;else{let i={nodeName:`#documentType`,name:t,publicId:n,systemId:r,parentNode:null};EV.appendChild(e,i)}},setDocumentMode(e,t){e.mode=t},getDocumentMode(e){return e.mode},detachNode(e){if(e.parentNode){let t=e.parentNode.childNodes.indexOf(e);e.parentNode.childNodes.splice(t,1),e.parentNode=null}},insertText(e,t){if(e.childNodes.length>0){let n=e.childNodes[e.childNodes.length-1];if(EV.isTextNode(n)){n.value+=t;return}}EV.appendChild(e,EV.createTextNode(t))},insertTextBefore(e,t,n){let r=e.childNodes[e.childNodes.indexOf(n)-1];r&&EV.isTextNode(r)?r.value+=t:EV.insertBefore(e,EV.createTextNode(t),n)},adoptAttributes(e,t){let n=new Set(e.attrs.map(e=>e.name));for(let r=0;r[e.toLowerCase(),e])),kut=new Map([[`xlink:actuate`,{prefix:`xlink`,name:`actuate`,namespace:fV.XLINK}],[`xlink:arcrole`,{prefix:`xlink`,name:`arcrole`,namespace:fV.XLINK}],[`xlink:href`,{prefix:`xlink`,name:`href`,namespace:fV.XLINK}],[`xlink:role`,{prefix:`xlink`,name:`role`,namespace:fV.XLINK}],[`xlink:show`,{prefix:`xlink`,name:`show`,namespace:fV.XLINK}],[`xlink:title`,{prefix:`xlink`,name:`title`,namespace:fV.XLINK}],[`xlink:type`,{prefix:`xlink`,name:`type`,namespace:fV.XLINK}],[`xml:lang`,{prefix:`xml`,name:`lang`,namespace:fV.XML}],[`xml:space`,{prefix:`xml`,name:`space`,namespace:fV.XML}],[`xmlns`,{prefix:``,name:`xmlns`,namespace:fV.XMLNS}],[`xmlns:xlink`,{prefix:`xmlns`,name:`xlink`,namespace:fV.XMLNS}]]),Aut=new Map(`altGlyph.altGlyphDef.altGlyphItem.animateColor.animateMotion.animateTransform.clipPath.feBlend.feColorMatrix.feComponentTransfer.feComposite.feConvolveMatrix.feDiffuseLighting.feDisplacementMap.feDistantLight.feFlood.feFuncA.feFuncB.feFuncG.feFuncR.feGaussianBlur.feImage.feMerge.feMergeNode.feMorphology.feOffset.fePointLight.feSpecularLighting.feSpotLight.feTile.feTurbulence.foreignObject.glyphRef.linearGradient.radialGradient.textPath`.split(`.`).map(e=>[e.toLowerCase(),e])),jut=new Set([Z.B,Z.BIG,Z.BLOCKQUOTE,Z.BODY,Z.BR,Z.CENTER,Z.CODE,Z.DD,Z.DIV,Z.DL,Z.DT,Z.EM,Z.EMBED,Z.H1,Z.H2,Z.H3,Z.H4,Z.H5,Z.H6,Z.HEAD,Z.HR,Z.I,Z.IMG,Z.LI,Z.LISTING,Z.MENU,Z.META,Z.NOBR,Z.OL,Z.P,Z.PRE,Z.RUBY,Z.S,Z.SMALL,Z.SPAN,Z.STRONG,Z.STRIKE,Z.SUB,Z.SUP,Z.TABLE,Z.TT,Z.U,Z.UL,Z.VAR]),Mut=`hidden`,Nut=8,Put=3,(function(e){e[e.INITIAL=0]=`INITIAL`,e[e.BEFORE_HTML=1]=`BEFORE_HTML`,e[e.BEFORE_HEAD=2]=`BEFORE_HEAD`,e[e.IN_HEAD=3]=`IN_HEAD`,e[e.IN_HEAD_NO_SCRIPT=4]=`IN_HEAD_NO_SCRIPT`,e[e.AFTER_HEAD=5]=`AFTER_HEAD`,e[e.IN_BODY=6]=`IN_BODY`,e[e.TEXT=7]=`TEXT`,e[e.IN_TABLE=8]=`IN_TABLE`,e[e.IN_TABLE_TEXT=9]=`IN_TABLE_TEXT`,e[e.IN_CAPTION=10]=`IN_CAPTION`,e[e.IN_COLUMN_GROUP=11]=`IN_COLUMN_GROUP`,e[e.IN_TABLE_BODY=12]=`IN_TABLE_BODY`,e[e.IN_ROW=13]=`IN_ROW`,e[e.IN_CELL=14]=`IN_CELL`,e[e.IN_SELECT=15]=`IN_SELECT`,e[e.IN_SELECT_IN_TABLE=16]=`IN_SELECT_IN_TABLE`,e[e.IN_TEMPLATE=17]=`IN_TEMPLATE`,e[e.AFTER_BODY=18]=`AFTER_BODY`,e[e.IN_FRAMESET=19]=`IN_FRAMESET`,e[e.AFTER_FRAMESET=20]=`AFTER_FRAMESET`,e[e.AFTER_AFTER_BODY=21]=`AFTER_AFTER_BODY`,e[e.AFTER_AFTER_FRAMESET=22]=`AFTER_AFTER_FRAMESET`})($||={}),Fut={startLine:-1,startCol:-1,startOffset:-1,endLine:-1,endCol:-1,endOffset:-1},jV=new Set([Z.TABLE,Z.TBODY,Z.TFOOT,Z.THEAD,Z.TR]),MV={scriptingEnabled:!0,sourceCodeLocationInfo:!1,treeAdapter:EV,onParseError:null},NV=class{constructor(e,t,n=null,r=null){this.fragmentContext=n,this.scriptHandler=r,this.currentToken=null,this.stopped=!1,this.insertionMode=$.INITIAL,this.originalInsertionMode=$.INITIAL,this.headElement=null,this.formElement=null,this.currentNotInHTML=!1,this.tmplInsertionModeStack=[],this.pendingCharacterTokens=[],this.hasNonWhitespacePendingCharacterToken=!1,this.framesetOk=!0,this.skipNextNewLine=!1,this.fosterParentingEnabled=!1,this.options={...MV,...e},this.treeAdapter=this.options.treeAdapter,this.onParseError=this.options.onParseError,this.onParseError&&(this.options.sourceCodeLocationInfo=!0),this.document=t??this.treeAdapter.createDocument(),this.tokenizer=new fut(this.options,this),this.activeFormattingElements=new but(this.treeAdapter),this.fragmentContextID=n?Vz(this.treeAdapter.getTagName(n)):Z.UNKNOWN,this._setContextModes(n??this.document,this.fragmentContextID),this.openElements=new yut(this.document,this.treeAdapter,this)}static parse(e,t){let n=new this(t);return n.tokenizer.write(e,!0),n.document}static getFragmentParser(e,t){let n={...MV,...t};e??=n.treeAdapter.createElement(X.TEMPLATE,fV.HTML,[]);let r=n.treeAdapter.createElement(`documentmock`,fV.HTML,[]),i=new this(n,r,e);return i.fragmentContextID===Z.TEMPLATE&&i.tmplInsertionModeStack.unshift($.IN_TEMPLATE),i._initTokenizerForFragmentParsing(),i._insertFakeRootElement(),i._resetInsertionMode(),i._findFormInFragmentContext(),i}getFragment(){let e=this.treeAdapter.getFirstChild(this.document),t=this.treeAdapter.createDocumentFragment();return this._adoptNodes(e,t),t}_err(e,t,n){if(!this.onParseError)return;let r=e.location??Fut,i={code:t,startLine:r.startLine,startCol:r.startCol,startOffset:r.startOffset,endLine:n?r.startLine:r.endLine,endCol:n?r.startCol:r.endCol,endOffset:n?r.startOffset:r.endOffset};this.onParseError(i)}onItemPush(e,t,n){var r,i;(i=(r=this.treeAdapter).onItemPush)==null||i.call(r,e),n&&this.openElements.stackTop>0&&this._setContextModes(e,t)}onItemPop(e,t){var n,r;if(this.options.sourceCodeLocationInfo&&this._setEndLocation(e,this.currentToken),(r=(n=this.treeAdapter).onItemPop)==null||r.call(n,e,this.openElements.current),t){let e,t;this.openElements.stackTop===0&&this.fragmentContext?(e=this.fragmentContext,t=this.fragmentContextID):{current:e,currentTagId:t}=this.openElements,this._setContextModes(e,t)}}_setContextModes(e,t){let n=e===this.document||e&&this.treeAdapter.getNamespaceURI(e)===fV.HTML;this.currentNotInHTML=!n,this.tokenizer.inForeignNode=!n&&e!==void 0&&t!==void 0&&!this._isIntegrationPoint(t,e)}_switchToTextParsing(e,t){this._insertElement(e,fV.HTML),this.tokenizer.state=t,this.originalInsertionMode=this.insertionMode,this.insertionMode=$.TEXT}switchToPlaintextParsing(){this.insertionMode=$.TEXT,this.originalInsertionMode=$.IN_BODY,this.tokenizer.state=_V.PLAINTEXT}_getAdjustedCurrentElement(){return this.openElements.stackTop===0&&this.fragmentContext?this.fragmentContext:this.openElements.current}_findFormInFragmentContext(){let e=this.fragmentContext;for(;e;){if(this.treeAdapter.getTagName(e)===X.FORM){this.formElement=e;break}e=this.treeAdapter.getParentNode(e)}}_initTokenizerForFragmentParsing(){if(!(!this.fragmentContext||this.treeAdapter.getNamespaceURI(this.fragmentContext)!==fV.HTML))switch(this.fragmentContextID){case Z.TITLE:case Z.TEXTAREA:this.tokenizer.state=_V.RCDATA;break;case Z.STYLE:case Z.XMP:case Z.IFRAME:case Z.NOEMBED:case Z.NOFRAMES:case Z.NOSCRIPT:this.tokenizer.state=_V.RAWTEXT;break;case Z.SCRIPT:this.tokenizer.state=_V.SCRIPT_DATA;break;case Z.PLAINTEXT:this.tokenizer.state=_V.PLAINTEXT;break;default:}}_setDocumentType(e){let t=e.name||``,n=e.publicId||``,r=e.systemId||``;if(this.treeAdapter.setDocumentType(this.document,t,n,r),e.location){let t=this.treeAdapter.getChildNodes(this.document).find(e=>this.treeAdapter.isDocumentTypeNode(e));t&&this.treeAdapter.setNodeSourceCodeLocation(t,e.location)}}_attachElementToTree(e,t){if(this.options.sourceCodeLocationInfo){let n=t&&{...t,startTag:t};this.treeAdapter.setNodeSourceCodeLocation(e,n)}if(this._shouldFosterParentOnInsertion())this._fosterParentElement(e);else{let t=this.openElements.currentTmplContentOrNode;this.treeAdapter.appendChild(t??this.document,e)}}_appendElement(e,t){let n=this.treeAdapter.createElement(e.tagName,t,e.attrs);this._attachElementToTree(n,e.location)}_insertElement(e,t){let n=this.treeAdapter.createElement(e.tagName,t,e.attrs);this._attachElementToTree(n,e.location),this.openElements.push(n,e.tagID)}_insertFakeElement(e,t){let n=this.treeAdapter.createElement(e,fV.HTML,[]);this._attachElementToTree(n,null),this.openElements.push(n,t)}_insertTemplate(e){let t=this.treeAdapter.createElement(e.tagName,fV.HTML,e.attrs),n=this.treeAdapter.createDocumentFragment();this.treeAdapter.setTemplateContent(t,n),this._attachElementToTree(t,e.location),this.openElements.push(t,e.tagID),this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(n,null)}_insertFakeRootElement(){let e=this.treeAdapter.createElement(X.HTML,fV.HTML,[]);this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(e,null),this.treeAdapter.appendChild(this.openElements.current,e),this.openElements.push(e,Z.HTML)}_appendCommentNode(e,t){let n=this.treeAdapter.createCommentNode(e.data);this.treeAdapter.appendChild(t,n),this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(n,e.location)}_insertCharacters(e){let t,n;if(this._shouldFosterParentOnInsertion()?({parent:t,beforeElement:n}=this._findFosterParentingLocation(),n?this.treeAdapter.insertTextBefore(t,e.chars,n):this.treeAdapter.insertText(t,e.chars)):(t=this.openElements.currentTmplContentOrNode,this.treeAdapter.insertText(t,e.chars)),!e.location)return;let r=this.treeAdapter.getChildNodes(t),i=r[(n?r.lastIndexOf(n):r.length)-1];if(this.treeAdapter.getNodeSourceCodeLocation(i)){let{endLine:t,endCol:n,endOffset:r}=e.location;this.treeAdapter.updateNodeSourceCodeLocation(i,{endLine:t,endCol:n,endOffset:r})}else this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(i,e.location)}_adoptNodes(e,t){for(let n=this.treeAdapter.getFirstChild(e);n;n=this.treeAdapter.getFirstChild(e))this.treeAdapter.detachNode(n),this.treeAdapter.appendChild(t,n)}_setEndLocation(e,t){if(this.treeAdapter.getNodeSourceCodeLocation(e)&&t.location){let n=t.location,r=this.treeAdapter.getTagName(e),i=t.type===sV.END_TAG&&r===t.tagName?{endTag:{...n},endLine:n.endLine,endCol:n.endCol,endOffset:n.endOffset}:{endLine:n.startLine,endCol:n.startCol,endOffset:n.startOffset};this.treeAdapter.updateNodeSourceCodeLocation(e,i)}}shouldProcessStartTagTokenInForeignContent(e){if(!this.currentNotInHTML)return!1;let t,n;return this.openElements.stackTop===0&&this.fragmentContext?(t=this.fragmentContext,n=this.fragmentContextID):{current:t,currentTagId:n}=this.openElements,e.tagID===Z.SVG&&this.treeAdapter.getTagName(t)===X.ANNOTATION_XML&&this.treeAdapter.getNamespaceURI(t)===fV.MATHML?!1:this.tokenizer.inForeignNode||(e.tagID===Z.MGLYPH||e.tagID===Z.MALIGNMARK)&&n!==void 0&&!this._isIntegrationPoint(n,t,fV.HTML)}_processToken(e){switch(e.type){case sV.CHARACTER:this.onCharacter(e);break;case sV.NULL_CHARACTER:this.onNullCharacter(e);break;case sV.COMMENT:this.onComment(e);break;case sV.DOCTYPE:this.onDoctype(e);break;case sV.START_TAG:this._processStartTag(e);break;case sV.END_TAG:this.onEndTag(e);break;case sV.EOF:this.onEof(e);break;case sV.WHITESPACE_CHARACTER:this.onWhitespaceCharacter(e);break}}_isIntegrationPoint(e,t,n){return Fot(e,this.treeAdapter.getNamespaceURI(t),this.treeAdapter.getAttrList(t),n)}_reconstructActiveFormattingElements(){let e=this.activeFormattingElements.entries.length;if(e){let t=this.activeFormattingElements.entries.findIndex(e=>e.type===wV.Marker||this.openElements.contains(e.element)),n=t===-1?e-1:t-1;for(let e=n;e>=0;e--){let t=this.activeFormattingElements.entries[e];this._insertElement(t.token,this.treeAdapter.getNamespaceURI(t.element)),t.element=this.openElements.current}}}_closeTableCell(){this.openElements.generateImpliedEndTags(),this.openElements.popUntilTableCellPopped(),this.activeFormattingElements.clearToLastMarker(),this.insertionMode=$.IN_ROW}_closePElement(){this.openElements.generateImpliedEndTagsWithExclusion(Z.P),this.openElements.popUntilTagNamePopped(Z.P)}_resetInsertionMode(){for(let e=this.openElements.stackTop;e>=0;e--)switch(e===0&&this.fragmentContext?this.fragmentContextID:this.openElements.tagIDs[e]){case Z.TR:this.insertionMode=$.IN_ROW;return;case Z.TBODY:case Z.THEAD:case Z.TFOOT:this.insertionMode=$.IN_TABLE_BODY;return;case Z.CAPTION:this.insertionMode=$.IN_CAPTION;return;case Z.COLGROUP:this.insertionMode=$.IN_COLUMN_GROUP;return;case Z.TABLE:this.insertionMode=$.IN_TABLE;return;case Z.BODY:this.insertionMode=$.IN_BODY;return;case Z.FRAMESET:this.insertionMode=$.IN_FRAMESET;return;case Z.SELECT:this._resetInsertionModeForSelect(e);return;case Z.TEMPLATE:this.insertionMode=this.tmplInsertionModeStack[0];return;case Z.HTML:this.insertionMode=this.headElement?$.AFTER_HEAD:$.BEFORE_HEAD;return;case Z.TD:case Z.TH:if(e>0){this.insertionMode=$.IN_CELL;return}break;case Z.HEAD:if(e>0){this.insertionMode=$.IN_HEAD;return}break}this.insertionMode=$.IN_BODY}_resetInsertionModeForSelect(e){if(e>0)for(let t=e-1;t>0;t--){let e=this.openElements.tagIDs[t];if(e===Z.TEMPLATE)break;if(e===Z.TABLE){this.insertionMode=$.IN_SELECT_IN_TABLE;return}}this.insertionMode=$.IN_SELECT}_isElementCausesFosterParenting(e){return jV.has(e)}_shouldFosterParentOnInsertion(){return this.fosterParentingEnabled&&this.openElements.currentTagId!==void 0&&this._isElementCausesFosterParenting(this.openElements.currentTagId)}_findFosterParentingLocation(){for(let e=this.openElements.stackTop;e>=0;e--){let t=this.openElements.items[e];switch(this.openElements.tagIDs[e]){case Z.TEMPLATE:if(this.treeAdapter.getNamespaceURI(t)===fV.HTML)return{parent:this.treeAdapter.getTemplateContent(t),beforeElement:null};break;case Z.TABLE:{let n=this.treeAdapter.getParentNode(t);return n?{parent:n,beforeElement:t}:{parent:this.openElements.items[e-1],beforeElement:null}}default:}}return{parent:this.openElements.items[0],beforeElement:null}}_fosterParentElement(e){let t=this._findFosterParentingLocation();t.beforeElement?this.treeAdapter.insertBefore(t.parent,e,t.beforeElement):this.treeAdapter.appendChild(t.parent,e)}_isSpecialElement(e,t){return dut[this.treeAdapter.getNamespaceURI(e)].has(t)}onCharacter(e){if(this.skipNextNewLine=!1,this.tokenizer.inForeignNode){Ect(this,e);return}switch(this.insertionMode){case $.INITIAL:Yz(this,e);break;case $.BEFORE_HTML:Xz(this,e);break;case $.BEFORE_HEAD:Zz(this,e);break;case $.IN_HEAD:eB(this,e);break;case $.IN_HEAD_NO_SCRIPT:tB(this,e);break;case $.AFTER_HEAD:nB(this,e);break;case $.IN_BODY:case $.IN_CAPTION:case $.IN_CELL:case $.IN_TEMPLATE:tst(this,e);break;case $.TEXT:case $.IN_SELECT:case $.IN_SELECT_IN_TABLE:this._insertCharacters(e);break;case $.IN_TABLE:case $.IN_TABLE_BODY:case $.IN_ROW:oB(this,e);break;case $.IN_TABLE_TEXT:rct(this,e);break;case $.IN_COLUMN_GROUP:fB(this,e);break;case $.AFTER_BODY:gB(this,e);break;case $.AFTER_AFTER_BODY:_B(this,e);break;default:}}onNullCharacter(e){if(this.skipNextNewLine=!1,this.tokenizer.inForeignNode){Tct(this,e);return}switch(this.insertionMode){case $.INITIAL:Yz(this,e);break;case $.BEFORE_HTML:Xz(this,e);break;case $.BEFORE_HEAD:Zz(this,e);break;case $.IN_HEAD:eB(this,e);break;case $.IN_HEAD_NO_SCRIPT:tB(this,e);break;case $.AFTER_HEAD:nB(this,e);break;case $.TEXT:this._insertCharacters(e);break;case $.IN_TABLE:case $.IN_TABLE_BODY:case $.IN_ROW:oB(this,e);break;case $.IN_COLUMN_GROUP:fB(this,e);break;case $.AFTER_BODY:gB(this,e);break;case $.AFTER_AFTER_BODY:_B(this,e);break;default:}}onComment(e){if(this.skipNextNewLine=!1,this.currentNotInHTML){qz(this,e);return}switch(this.insertionMode){case $.INITIAL:case $.BEFORE_HTML:case $.BEFORE_HEAD:case $.IN_HEAD:case $.IN_HEAD_NO_SCRIPT:case $.AFTER_HEAD:case $.IN_BODY:case $.IN_TABLE:case $.IN_CAPTION:case $.IN_COLUMN_GROUP:case $.IN_TABLE_BODY:case $.IN_ROW:case $.IN_CELL:case $.IN_SELECT:case $.IN_SELECT_IN_TABLE:case $.IN_TEMPLATE:case $.IN_FRAMESET:case $.AFTER_FRAMESET:qz(this,e);break;case $.IN_TABLE_TEXT:uB(this,e);break;case $.AFTER_BODY:Hot(this,e);break;case $.AFTER_AFTER_BODY:case $.AFTER_AFTER_FRAMESET:Uot(this,e);break;default:}}onDoctype(e){switch(this.skipNextNewLine=!1,this.insertionMode){case $.INITIAL:Wot(this,e);break;case $.BEFORE_HEAD:case $.IN_HEAD:case $.IN_HEAD_NO_SCRIPT:case $.AFTER_HEAD:this._err(e,oV.misplacedDoctype);break;case $.IN_TABLE_TEXT:uB(this,e);break;default:}}onStartTag(e){this.skipNextNewLine=!1,this.currentToken=e,this._processStartTag(e),e.selfClosing&&!e.ackSelfClosing&&this._err(e,oV.nonVoidHtmlElementStartTagWithTrailingSolidus)}_processStartTag(e){this.shouldProcessStartTagTokenInForeignContent(e)?Oct(this,e):this._startTagOutsideForeignContent(e)}_startTagOutsideForeignContent(e){switch(this.insertionMode){case $.INITIAL:Yz(this,e);break;case $.BEFORE_HTML:Got(this,e);break;case $.BEFORE_HEAD:qot(this,e);break;case $.IN_HEAD:Qz(this,e);break;case $.IN_HEAD_NO_SCRIPT:Xot(this,e);break;case $.AFTER_HEAD:Qot(this,e);break;case $.IN_BODY:iB(this,e);break;case $.IN_TABLE:sB(this,e);break;case $.IN_TABLE_TEXT:uB(this,e);break;case $.IN_CAPTION:ict(this,e);break;case $.IN_COLUMN_GROUP:dB(this,e);break;case $.IN_TABLE_BODY:pB(this,e);break;case $.IN_ROW:hB(this,e);break;case $.IN_CELL:cct(this,e);break;case $.IN_SELECT:uct(this,e);break;case $.IN_SELECT_IN_TABLE:fct(this,e);break;case $.IN_TEMPLATE:mct(this,e);break;case $.AFTER_BODY:_ct(this,e);break;case $.IN_FRAMESET:yct(this,e);break;case $.AFTER_FRAMESET:xct(this,e);break;case $.AFTER_AFTER_BODY:Cct(this,e);break;case $.AFTER_AFTER_FRAMESET:wct(this,e);break;default:}}onEndTag(e){this.skipNextNewLine=!1,this.currentToken=e,this.currentNotInHTML?kct(this,e):this._endTagOutsideForeignContent(e)}_endTagOutsideForeignContent(e){switch(this.insertionMode){case $.INITIAL:Yz(this,e);break;case $.BEFORE_HTML:Kot(this,e);break;case $.BEFORE_HEAD:Jot(this,e);break;case $.IN_HEAD:Yot(this,e);break;case $.IN_HEAD_NO_SCRIPT:Zot(this,e);break;case $.AFTER_HEAD:$ot(this,e);break;case $.IN_BODY:aB(this,e);break;case $.TEXT:Kst(this,e);break;case $.IN_TABLE:cB(this,e);break;case $.IN_TABLE_TEXT:uB(this,e);break;case $.IN_CAPTION:act(this,e);break;case $.IN_COLUMN_GROUP:oct(this,e);break;case $.IN_TABLE_BODY:mB(this,e);break;case $.IN_ROW:sct(this,e);break;case $.IN_CELL:lct(this,e);break;case $.IN_SELECT:dct(this,e);break;case $.IN_SELECT_IN_TABLE:pct(this,e);break;case $.IN_TEMPLATE:hct(this,e);break;case $.AFTER_BODY:vct(this,e);break;case $.IN_FRAMESET:bct(this,e);break;case $.AFTER_FRAMESET:Sct(this,e);break;case $.AFTER_AFTER_BODY:_B(this,e);break;default:}}onEof(e){switch(this.insertionMode){case $.INITIAL:Yz(this,e);break;case $.BEFORE_HTML:Xz(this,e);break;case $.BEFORE_HEAD:Zz(this,e);break;case $.IN_HEAD:eB(this,e);break;case $.IN_HEAD_NO_SCRIPT:tB(this,e);break;case $.AFTER_HEAD:nB(this,e);break;case $.IN_BODY:case $.IN_TABLE:case $.IN_CAPTION:case $.IN_COLUMN_GROUP:case $.IN_TABLE_BODY:case $.IN_ROW:case $.IN_CELL:case $.IN_SELECT:case $.IN_SELECT_IN_TABLE:Gst(this,e);break;case $.TEXT:qst(this,e);break;case $.IN_TABLE_TEXT:uB(this,e);break;case $.IN_TEMPLATE:gct(this,e);break;case $.AFTER_BODY:case $.IN_FRAMESET:case $.AFTER_FRAMESET:case $.AFTER_AFTER_BODY:case $.AFTER_AFTER_FRAMESET:Jz(this,e);break;default:}}onWhitespaceCharacter(e){if(this.skipNextNewLine&&(this.skipNextNewLine=!1,e.chars.charCodeAt(0)===Y.LINE_FEED)){if(e.chars.length===1)return;e.chars=e.chars.substr(1)}if(this.tokenizer.inForeignNode){this._insertCharacters(e);return}switch(this.insertionMode){case $.IN_HEAD:case $.IN_HEAD_NO_SCRIPT:case $.AFTER_HEAD:case $.TEXT:case $.IN_COLUMN_GROUP:case $.IN_SELECT:case $.IN_SELECT_IN_TABLE:case $.IN_FRAMESET:case $.AFTER_FRAMESET:this._insertCharacters(e);break;case $.IN_BODY:case $.IN_CAPTION:case $.IN_CELL:case $.IN_TEMPLATE:case $.AFTER_BODY:case $.AFTER_AFTER_BODY:case $.AFTER_AFTER_FRAMESET:est(this,e);break;case $.IN_TABLE:case $.IN_TABLE_BODY:case $.IN_ROW:oB(this,e);break;case $.IN_TABLE_TEXT:nct(this,e);break;default:}}},PV=new Set([Z.CAPTION,Z.COL,Z.COLGROUP,Z.TBODY,Z.TD,Z.TFOOT,Z.TH,Z.THEAD,Z.TR]),X.AREA,X.BASE,X.BASEFONT,X.BGSOUND,X.BR,X.COL,X.EMBED,X.FRAME,X.HR,X.IMG,X.INPUT,X.KEYGEN,X.LINK,X.META,X.PARAM,X.SOURCE,X.TRACK,X.WBR,FV=class extends Error{constructor(e,t,n){super(),typeof t==`string`&&(n=t,t=void 0);let r=``,i={},a=!1;if(t&&(i=`line`in t&&`column`in t||`start`in t&&`end`in t?{place:t}:`type`in t?{ancestors:[t],place:t.position}:{...t}),typeof e==`string`?r=e:!i.cause&&e&&(a=!0,r=e.message,i.cause=e),!i.ruleId&&!i.source&&typeof n==`string`){let e=n.indexOf(`:`);e===-1?i.ruleId=n:(i.source=n.slice(0,e),i.ruleId=n.slice(e+1))}if(!i.place&&i.ancestors&&i.ancestors){let e=i.ancestors[i.ancestors.length-1];e&&(i.place=e.position)}let o=i.place&&`start`in i.place?i.place.start:i.place;this.ancestors=i.ancestors||void 0,this.cause=i.cause||void 0,this.column=o?o.column:void 0,this.fatal=void 0,this.file,this.message=r,this.line=o?o.line:void 0,this.name=vB(i.place)||`1:1`,this.place=i.place||void 0,this.reason=this.message,this.ruleId=i.ruleId||void 0,this.source=i.source||void 0,this.stack=a&&i.cause&&typeof i.cause.stack==`string`?i.cause.stack:``,this.actual,this.expected,this.note,this.url}},FV.prototype.file=``,FV.prototype.name=``,FV.prototype.reason=``,FV.prototype.message=``,FV.prototype.stack=``,FV.prototype.column=void 0,FV.prototype.line=void 0,FV.prototype.ancestors=void 0,FV.prototype.cause=void 0,FV.prototype.fatal=void 0,FV.prototype.place=void 0,FV.prototype.ruleId=void 0,FV.prototype.source=void 0,IV={basename:Pct,dirname:Fct,extname:Ict,join:Lct,sep:`/`},Iut={cwd:Bct},LV=[`history`,`path`,`basename`,`stem`,`extname`,`dirname`],RV=class{constructor(e){let t;t=e?xB(e)?{path:e}:typeof e==`string`||Wct(e)?{value:e}:e:{},this.cwd=`cwd`in t?``:Iut.cwd(),this.data={},this.history=[],this.messages=[],this.value,this.map,this.result,this.stored;let n=-1;for(;++n`",url:!1},abruptClosingOfEmptyComment:{reason:`Unexpected abruptly closed empty comment`,description:"Unexpected `>` or `->`. Expected `-->` to close comments"},abruptDoctypePublicIdentifier:{reason:`Unexpected abruptly closed public identifier`,description:"Unexpected `>`. Expected a closing `\"` or `'` after the public identifier"},abruptDoctypeSystemIdentifier:{reason:`Unexpected abruptly closed system identifier`,description:"Unexpected `>`. Expected a closing `\"` or `'` after the identifier identifier"},absenceOfDigitsInNumericCharacterReference:{reason:`Unexpected non-digit at start of numeric character reference`,description:"Unexpected `%c`. Expected `[0-9]` for decimal references or `[0-9a-fA-F]` for hexadecimal references"},cdataInHtmlContent:{reason:`Unexpected CDATA section in HTML`,description:"Unexpected `` in ``",description:"Unexpected text character `%c`. Only use text in `