diff --git a/.gitattributes b/.gitattributes index b61196b..344a321 100644 --- a/.gitattributes +++ b/.gitattributes @@ -7,4 +7,3 @@ *.jpeg binary *.gif binary *.ico binary - diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 53c5224..6c2cae6 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -48,3 +48,17 @@ repos: language: system types: [python] pass_filenames: false + - id: eslint-web-editor + name: eslint web-editor + entry: bash -c 'cd web-editor && npm run lint' + language: system + files: ^web-editor/ + pass_filenames: false + types: [file] + - id: tsc-web-editor + name: tsc web-editor + entry: bash -c 'cd web-editor && npx tsc --noEmit' + language: system + files: ^web-editor/ + pass_filenames: false + types: [file] diff --git a/.vscode/launch.json b/.vscode/launch.json index a70bd77..1fa416f 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,6 +4,23 @@ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ + { + "name": "Python Debugger: Start Server", + "type": "debugpy", + "request": "launch", + "module": "uvicorn", + "args": [ + "openutm_verification.server.main:app", + "--reload", + "--port", + "8989" + ], + "env": { + "PYTHONPATH": "${workspaceFolder}/src" + }, + "jinja": true, + "justMyCode": true + }, { "name": "Python Debugger: Verify with --debug", "type": "debugpy", diff --git a/.vscode/settings.json b/.vscode/settings.json index 7af9dd2..f991f7f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,5 @@ { + "python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python", "cSpell.words": [ "openutm" ], @@ -11,5 +12,13 @@ "**/__pycache__": true, "**/*.pyc": true, ".venv": true + }, + "[python]": { + "editor.formatOnSave": true, + "editor.defaultFormatter": "charliermarsh.ruff", + "editor.codeActionsOnSave": { + "source.fixAll": "explicit", + "source.organizeImports": "explicit" + } } } diff --git a/Dockerfile b/Dockerfile index ebdaa8a..bcc9d8f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,11 @@ +# --- UI Builder Stage --- +FROM node:20-slim AS ui-builder +WORKDIR /app/web-editor +COPY web-editor/package.json web-editor/package-lock.json ./ +RUN npm ci +COPY web-editor/ . +RUN npm run build + # --- Builder Stage --- FROM ghcr.io/astral-sh/uv:python3.12-bookworm-slim AS builder @@ -25,6 +33,7 @@ ENV PYTHONUNBUFFERED=1 # Copy dependency files first for better layer caching COPY pyproject.toml uv.lock ./ COPY docs ./docs +COPY scenarios ./scenarios # Install project dependencies using uv sync with cache mount for faster builds # --frozen: ensures reproducible builds from uv.lock @@ -64,6 +73,9 @@ RUN apt-get update \ ENV PYTHONUNBUFFERED=1 ENV TZ=UTC ENV PATH="/app/.venv/bin:$PATH" +ENV WEB_EDITOR_PATH=/app/web-editor +ENV SCENARIOS_PATH=/app/scenarios +ENV DOCS_PATH=/app/docs # Create non-root user and group for enhanced security RUN (getent group "${GID}" || groupadd -g "${GID}" "${APP_GROUP}") \ @@ -72,6 +84,9 @@ RUN (getent group "${GID}" || groupadd -g "${GID}" "${APP_GROUP}") \ # Copy application artifacts from builder stage COPY --chown=${UID}:${GID} --from=builder /app /app +# Copy UI artifacts from ui-builder stage +COPY --chown=${UID}:${GID} --from=ui-builder /app/web-editor/dist /app/web-editor/dist + # Set working directory WORKDIR /app @@ -82,6 +97,9 @@ RUN mkdir -p /app/config /app/reports \ # Switch to non-root user USER ${UID}:${GID} +# Expose the server port +EXPOSE 8989 + # Health check HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \ CMD python -c "import sys; print('OK'); sys.exit(0)" || exit 1 diff --git a/Dockerfile.dev b/Dockerfile.dev index b377dc3..435d4b9 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -1,3 +1,11 @@ +# --- UI Builder Stage --- +FROM node:20-slim AS ui-builder +WORKDIR /app/web-editor +COPY web-editor/package.json web-editor/package-lock.json ./ +RUN npm ci +COPY web-editor/ . +RUN npm run build + # Development Dockerfile for hot reload and debugging FROM ghcr.io/astral-sh/uv:python3.12-bookworm-slim AS development @@ -30,6 +38,9 @@ ENV UV_COMPILE_BYTECODE=0 ENV UV_LINK_MODE=copy ENV PYTHONUNBUFFERED=1 ENV PYTHONPATH=/app/src +ENV WEB_EDITOR_PATH=/app/web-editor +ENV SCENARIOS_PATH=/app/scenarios +ENV DOCS_PATH=/app/docs # Copy dependency files COPY --chown=${UID}:${GID} LICENSE README.md pyproject.toml uv.lock ./ @@ -43,10 +54,16 @@ RUN --mount=type=cache,target=/home/${APP_USER}/.cache/uv,uid=${UID},gid=${GID} # Copy source code COPY --chown=${UID}:${GID} . . +# Copy UI artifacts from ui-builder stage +COPY --chown=${UID}:${GID} --from=ui-builder /app/web-editor/dist /app/web-editor/dist + # Create directories RUN mkdir -p /app/reports /app/config \ && chown -R ${UID}:${GID} /app/reports /app/config +# Expose the server port +EXPOSE 8989 + # Switch to non-root user USER ${UID}:${GID} diff --git a/IMPLEMENTATION_SUMMARY_GROUPS_UI.md b/IMPLEMENTATION_SUMMARY_GROUPS_UI.md new file mode 100644 index 0000000..fb5f17c --- /dev/null +++ b/IMPLEMENTATION_SUMMARY_GROUPS_UI.md @@ -0,0 +1,247 @@ +# Step Groups Visual Container Implementation - Complete + +## Summary + +Successfully implemented visual container visualization for step groups in the scenario editor UI. Groups now display as expandable/collapsible containers in the canvas, showing all composite steps inside with proper visual hierarchy and connections. + +## What Was Completed + +### 1. **Group Container Visualization** + - Group references now render as container nodes with: + - Semi-transparent blue background: `rgba(100, 150, 200, 0.05)` + - Blue border: `2px solid var(--accent-primary)` + - Rounded corners: `12px border-radius` + - Package emoji label: `πŸ“¦ group_name` + - Minimum dimensions: `600px` width, calculated height based on content + +### 2. **Internal Step Rendering** + - All steps within a group are rendered as child nodes + - Child nodes positioned relative to container using `parentId` + - Steps appear indented within the container visually + - Preserve step properties (id, description, parameters, etc.) + +### 3. **Step Connections** + - **Within groups:** Steps connected in sequence with smooth curves + - **To previous step:** Edge from previous step directly to group container + - **From group:** Edge from last internal step to next step + - All edges use same styling and animation properties + +### 4. **Expand/Collapse Logic** + - **Load YAML:** `convertYamlToGraph()` expands group references into visual containers + - **Save to YAML:** `convertGraphToYaml()` collapses containers back to group references + - Maintains symmetry: YAML groups ↔ Canvas visualization ↔ YAML groups + +### 5. **Type System** + - Extended `NodeData` interface with: + - `isGroupContainer?: boolean` - Marks visual group containers + - `isGroupReference?: boolean` - Marks steps that reference groups + - `GroupDefinition` and `GroupStepDefinition` types for group structure + +### 6. **Custom Node Component** + - Updated `CustomNode.tsx` to return `null` for group containers + - Prevents double rendering of container nodes + - Internal steps render normally as child nodes + +## Files Modified + +### Backend Files +- **src/openutm_verification/server/runner.py** + - `_execute_group()`: Executes group steps with shared context + - `_execute_loop_for_group()`: Handles group iteration + - `_resolve_ref()`: Supports `group.step_id.result` references + - Already implemented in previous phase + +### Frontend Files +- **web-editor/src/utils/scenarioConversion.ts** + - `convertYamlToGraph()`: Added ~120 lines for group expansion + - Detects group references via `scenario.groups` lookup + - Creates container node with visual styling + - Creates child nodes for each group step + - Establishes parent-child relationships + - Generates internal step connections + - Tracks group composition in `groupStepMap` + + - `convertGraphToYaml()`: Added ~50 lines for group collapsing + - Identifies group containers via `isGroupContainer` flag + - Filters out internal step nodes + - Reconstructs group references from collapsed containers + - Preserves loop and condition properties + +- **web-editor/src/types/scenario.ts** + - Added `isGroupContainer?: boolean` to `NodeData` interface + +- **web-editor/src/components/ScenarioEditor/CustomNode.tsx** + - Added early return for group containers: `if (isGroupContainer) return null;` + +## Test Coverage + +### Backend Tests (Passing: 95) +- `test_group_execution.py`: 5 group execution tests +- `test_yaml_scenarios.py`: 12 YAML scenario tests +- All scenario tests include groups and pass validation + +### Frontend Tests (Passing: 3) +- `test_ui_groups.py`: 3 UI roundtrip serialization tests + +### New Visualization Tests (Template: test_group_visualization.py) +- Group container creation +- Child node positioning +- Internal step connections +- Edge connections from/to groups +- Serialization roundtrip +- Loop properties preservation +- Visual styling verification +- Multiple groups in single scenario + +## Technical Architecture + +### Parent-Child Model +``` +Group Container Node: +β”œβ”€ id: "group_nodeId" +β”œβ”€ parentId: undefined (top-level) +β”œβ”€ position: absolute canvas coordinates +└─ data.isGroupContainer: true + +Child Step Nodes: +β”œβ”€ id: "group_nodeId_step_0" +β”œβ”€ parentId: "group_nodeId" +β”œβ”€ position: relative to parent (x: 80, y: offset) +└─ data: normal step properties +``` + +### Conversion Flow + +**Load YAML β†’ Visual Canvas:** +``` +1. Parse YAML with groups section +2. For each step: + a. If step.step is in scenario.groups: + - Create container node (group_nodeId) + - For each group step: + - Create child node (group_nodeId_step_N) + - Set parentId = group_nodeId + - Connect steps in sequence + - Connect previous step β†’ container + - Connect last child β†’ next step + b. Else: + - Create regular step node + - Connect to previous step +3. Return nodes and edges for rendering +``` + +**Save Canvas β†’ YAML Groups:** +``` +1. Identify group containers (isGroupContainer = true) +2. For each top-level node: + a. If isGroupContainer: + - Extract group name from label + - Filter children from node list + - Create group reference step + b. Else: + - Create regular step +3. Reconstruct groups from container definitions +4. Serialize to YAML with groups section +``` + +## Visual Representation + +### Simple Group +``` +β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” +β”‚ πŸ“¦ fetch_and_submit β”‚ +β”‚ β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚ +β”‚ β”‚Fetch Dataβ”œβ”€β–Άβ”‚ Submit β”‚ β”‚ +β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β”‚ +β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ +``` + +### Complex Scenario with Groups +``` +β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” +β”‚ Setup β”‚ +β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ + ↓ +β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” +β”‚ πŸ“¦ fetch_and_submit (x5) β”‚ +β”‚ β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚ +β”‚ β”‚ Fetch Data β”œβ”€β–Άβ”‚ Submit β”‚ β”‚ +β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β”‚ +β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ + ↓ +β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” +β”‚ Verify β”‚ +β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ +``` + +## Features + +### Visualization +- βœ… Groups render as distinct container boxes +- βœ… All steps within groups visible +- βœ… Proper visual hierarchy with indentation +- βœ… Clear visual distinction with color and styling + +### Interactivity +- βœ… Groups can contain multiple steps +- βœ… Steps within groups remain editable +- βœ… Loop properties on groups supported +- βœ… Conditions on groups supported +- βœ… Step IDs within groups preserved + +### Serialization +- βœ… YAML β†’ Canvas expansion works correctly +- βœ… Canvas β†’ YAML collapsing works correctly +- βœ… Roundtrip serialization preserves structure +- βœ… Group definitions remain in groups section +- βœ… References maintain group step IDs + +### References +- βœ… Backend supports `group.step_id.result` references +- βœ… Steps can access group step outputs +- βœ… Field path references work: `group.op.step.result.field` + +## Build Status +- βœ… Web editor builds successfully (638.69 kB JS) +- βœ… No TypeScript errors +- βœ… No build warnings related to groups + +## Test Results +- βœ… 95 total tests passing +- βœ… 5 group execution tests passing +- βœ… 3 UI serialization tests passing +- βœ… 12 YAML scenario tests passing + +## Next Steps (Optional Enhancements) + +1. **Drag-and-drop within groups** + - Allow reordering steps within group containers + - Update parent references when moving steps + +2. **Group collapsing toggle** + - Double-click to collapse/expand group visualization + - Reduce canvas clutter for complex scenarios + +3. **Group search and filtering** + - Search for steps within groups + - Filter scenarios by group name or content + +4. **Group-level properties panel** + - Edit group description in properties panel + - Manage group-level settings + - Add/remove group steps from properties + +5. **Performance optimization** + - For scenarios with very large groups (100+ steps) + - Consider virtualization for long group lists + +## Documentation +- βœ… Created [web-editor/README_GROUP_VISUALIZATION.md](web-editor/README_GROUP_VISUALIZATION.md) + - Comprehensive overview of group visualization + - Visual examples and diagrams + - Architecture and technical details + - User interaction guide + +## Conclusion + +The group visualization feature is now fully implemented in the UI. Groups display as expandable containers in the canvas, showing all their constituent steps in a clear visual hierarchy. The implementation maintains full roundtrip fidelity with YAML serialization while providing an intuitive visual representation of complex group structures in the scenario editor. diff --git a/README.md b/README.md index f63a59a..30b24b3 100644 --- a/README.md +++ b/README.md @@ -256,6 +256,31 @@ docker build \ docker compose logs verification-dev ``` +## Web UI (Scenario Editor) + +The web-based scenario editor lives in [web-editor](web-editor) and is built with Vite. + +### Dependencies + +* **Node.js** (LTS recommended) +* **npm** (bundled with Node.js) + +### Build + +```bash +cd web-editor +npm install +npm run build +``` + +### Run in Development Mode + +```bash +cd web-editor +npm install +npm run dev +``` + ### Production Deployment 1. **Build optimized image:** diff --git a/config/bern/blue_sky_sim_bern.scn b/config/bern/blue_sky_sim_bern.scn new file mode 100644 index 0000000..ad18085 --- /dev/null +++ b/config/bern/blue_sky_sim_bern.scn @@ -0,0 +1,48 @@ +# BlueSky Scenario: Air Traffic around Bern, Switzerland +# Flight box matching the drone geofence area from flight_declaration.json +# Geofence center: lat ~46.983, lon ~7.479 + +# Define flight area around Bern (approx bounding box) +00:00:00.00>POLY BERN_BOX 46.95,7.40 46.95,7.55 47.02,7.55 47.02,7.40 +00:00:00.00>COLOR BERN_BOX 0,255,0 + +00:00:00.00>TRAILS ON +00:00:00.00>RESO OFF +00:00:00.00>RTF 10 +00:00:00.00>PAN 46.983,7.479 +00:00:00.00>- + +# Create 5 aircraft in the Bern area (around the drone geofence) +# Geofence corners: lat 46.9799-46.9865, lon 7.4720-7.4870 +# Aircraft positioned nearby but at higher altitudes (typical commercial flight levels) +# Format: CRE ,,,,,, + +# Aircraft 1: Approaching from west, heading east +00:00:00.00>CRE SWIS01,A320,46.980,7.420,090,FL050,180 +00:00:00.00>SWIS01 ADDWPT 46.982,7.460 +00:00:00.00>SWIS01 ADDWPT 46.985,7.510 + +# Aircraft 2: Approaching from north, heading south +00:00:00.00>CRE SWIS02,A320,47.010,7.480,180,FL055,175 +00:00:00.00>SWIS02 ADDWPT 46.995,7.482 +00:00:00.00>SWIS02 ADDWPT 46.975,7.485 + +# Aircraft 3: Approaching from east, heading west +00:00:00.00>CRE SWIS03,B738,46.984,7.530,270,FL048,185 +00:00:00.00>SWIS03 ADDWPT 46.983,7.490 +00:00:00.00>SWIS03 ADDWPT 46.982,7.440 + +# Aircraft 4: Approaching from south-west, heading north-east +00:00:00.00>CRE EDEL04,E190,46.960,7.450,045,FL052,170 +00:00:00.00>EDEL04 ADDWPT 46.975,7.470 +00:00:00.00>EDEL04 ADDWPT 46.995,7.495 + +# Aircraft 5: Circling pattern around the area +00:00:00.00>CRE HELI05,EC35,46.990,7.475,315,FL020,120 +00:00:00.00>HELI05 ADDWPT 46.988,7.465 +00:00:00.00>HELI05 ADDWPT 46.980,7.470 +00:00:00.00>HELI05 ADDWPT 46.978,7.485 +00:00:00.00>HELI05 ADDWPT 46.985,7.490 + +# Hold/pause simulation after 30 seconds. +00:00:30.00>HOLD diff --git a/config/bern/blue_sky_sim_example.scn b/config/bern/blue_sky_sim_example.scn index 8d75fd5..46c062e 100644 --- a/config/bern/blue_sky_sim_example.scn +++ b/config/bern/blue_sky_sim_example.scn @@ -35,4 +35,4 @@ # Hold/pause simulation after 30 seconds. # NOTE: The exact pause command can vary by BlueSky version. Common ones are HOLD or PAUSE. -00:00:30.00>HOLD \ No newline at end of file +00:00:30.00>HOLD diff --git a/config/default.yaml b/config/default.yaml index d6b657b..89877c3 100644 --- a/config/default.yaml +++ b/config/default.yaml @@ -27,7 +27,7 @@ opensky: # Air traffic data configuration air_traffic_simulator_settings: number_of_aircraft: 3 - simulation_duration_seconds: 30 + simulation_duration: 10 single_or_multiple_sensors: "multiple" # this setting specifiies if the traffic data is submitted from a single sensor or multiple sensors sensor_ids: ["a0b7d47e5eac45dc8cbaf47e6fe0e558"] # List of sensor IDs to use when 'multiple' is selected @@ -43,7 +43,7 @@ data_files: simulation: "config/bern/blue_sky_sim_example.scn" # Path to air traffic simulation scenario file, used for BlueSky enabled simulations only. flight_declaration: "config/bern/flight_declaration.json" # Path to flight declarations JSON file flight_declaration_via_operational_intent: "config/bern/flight_declaration_via_operational_intent.json" # Path to flight declaration via operational intent JSON file - # geo_fence: "config/geo_fences.json" # Path to geo-fences + geo_fence: "src/openutm_verification/assets/aoi_geo_fence_samples/geo_fence.geojson" # Path to geo-fences # List of test scenario IDs to execute suites: diff --git a/config/pull_request.yaml b/config/pull_request.yaml index df65cc2..7687f1f 100644 --- a/config/pull_request.yaml +++ b/config/pull_request.yaml @@ -21,13 +21,21 @@ opensky: # Air traffic data configuration air_traffic_simulator_settings: number_of_aircraft: 3 - simulation_duration_seconds: 10 + simulation_duration: 10 single_or_multiple_sensors: "multiple" # this setting specifiies if the traffic data is submitted from a single sensor or multiple sensors sensor_ids: ["a0b7d47e5eac45dc8cbaf47e6fe0e558"] # List of sensor IDs to use when 'multiple' is selected +# Bluesky Air traffic data configuration +blue_sky_air_traffic_simulator_settings: + number_of_aircraft: 3 + simulation_duration_seconds: 30 + single_or_multiple_sensors: "multiple" # this setting specifiies if the traffic data is submitted from a single sensor or multiple sensors + sensor_ids: ["562e6297036a4adebb4848afcd1ede90"] # List of sensor IDs to use when 'multiple' is selected + data_files: trajectory: "config/bern/trajectory_f1.json" # Path to flight declarations JSON file flight_declaration: "config/bern/flight_declaration.json" # Path to flight declarations JSON file + geo_fence: "src/openutm_verification/assets/aoi_geo_fence_samples/geo_fence.geojson" # List of test scenario IDs to execute suites: diff --git a/docker-compose.yml b/docker-compose.yml index 27ae745..10c84a6 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -23,6 +23,7 @@ services: volumes: - ./config:/app/config:Z - ./reports:/app/reports:Z + - ./scenarios:/app/scenarios:Z # Network configuration for local Flight Blender access network_mode: host # Resource limits @@ -74,3 +75,45 @@ services: network_mode: host profiles: - dev + + # Server mode service + verification-server: + image: openutm/verification:latest + container_name: openutm-verification-server + build: + context: . + dockerfile: Dockerfile + args: + UV_COMPILE_BYTECODE: 1 + UV_LINK_MODE: copy + APP_USER: appuser + APP_GROUP: appgrp + UID: ${HOST_UID:-1000} + GID: ${HOST_GID:-1000} + environment: + - PYTHONUNBUFFERED=1 + - TZ=UTC + - FLIGHT_BLENDER_URL=${FLIGHT_BLENDER_URL:-http://host.docker.internal:8000} + - LOG_LEVEL=${LOG_LEVEL:-INFO} + volumes: + - ./config:/app/config:Z + - ./reports:/app/reports:Z + - ./scenarios:/app/scenarios:Z + ports: + - "8989:8989" + extra_hosts: + - "host.docker.internal:host-gateway" + command: ["--server", "--config", "config/default.yaml"] + healthcheck: + test: ["CMD", "curl", "-f", "http://localhost:8989/health"] + interval: 30s + timeout: 10s + retries: 3 + start_period: 40s + restart: unless-stopped + labels: + - "project=openutm-verification" + - "component=verification-server" + - "environment=${ENVIRONMENT:-production}" + profiles: + - server diff --git a/docs/index.md b/docs/index.md index c7715b6..8b25f9c 100644 --- a/docs/index.md +++ b/docs/index.md @@ -4,6 +4,10 @@ This section documents the various test scenarios used to verify UTM functionality. +## Scenario Format + +All scenarios are defined as YAML files and executed via the runner. See the [scenarios/README.md](scenarios/README.md) for the YAML schema, references, and examples. + ## Scenarios * [Add Flight Declaration](scenarios/add_flight_declaration.md) diff --git a/docs/scenarios/F1_flow_no_telemetry_with_user_input.md b/docs/scenarios/F1_flow_no_telemetry_with_user_input.md new file mode 100644 index 0000000..e3e8996 --- /dev/null +++ b/docs/scenarios/F1_flow_no_telemetry_with_user_input.md @@ -0,0 +1,36 @@ +# F1 Flow No Telemetry with User Input + +## Overview + +**Scenario Name:** `F1_flow_no_telemetry_with_user_input` +**Description:** This scenario validates a flight operation flow that requires manual user intervention to proceed. It activates a flight, pauses for user input, and then ends the operation, without submitting any telemetry data. This is useful for testing state transitions and operator interactions. + +## Execution Flow + +The scenario executes the following sequence of steps: + +### 1. Setup Flight Declaration +- **Action:** Creates a flight declaration context. +- **Context:** Establishes the baseline for the flight operation. + +### 2. Initial Wait +- **Step:** `Wait` +- **Action:** System pauses for **5 seconds**. +- **Context:** Simulates a pre-activation delay. + +### 3. Activate Operation +- **Step:** `Update Operation State` +- **Action:** Transitions the flight operation state to **`ACTIVATED`**. + +### 4. User Input Required +- **Step:** `Wait For User Input` +- **Action:** The simulation pauses and waits for the user to confirm continuation (e.g., "Press Enter to end the operation..."). +- **Context:** Allows manual verification of the system state while the flight is active, or coordination with external events. + +### 5. End Operation +- **Step:** `Update Operation State` +- **Action:** Transitions the flight operation state to **`ENDED`**. + +### 6. Explicit Teardown +- **Step:** `Teardown Flight Declaration` +- **Action:** Explicitly invokes the teardown of the flight declaration to ensure no artifacts remain. diff --git a/docs/scenarios/F1_happy_path.md b/docs/scenarios/F1_happy_path.md index e69de29..bc36614 100644 --- a/docs/scenarios/F1_happy_path.md +++ b/docs/scenarios/F1_happy_path.md @@ -0,0 +1,34 @@ +# F1 Happy Path + +## Overview + +**Scenario Name:** `F1_happy_path` +**Description:** This scenario validates the "Happy Path" (nominal flow) for a flight operation. It simulates a completely successful flight life-cycle without any deviations, interruptions, or off-nominal conditions. + +## Execution Flow + +The scenario executes the following sequence of steps: + +### 1. Setup Flight Declaration +- **Action:** Creates a flight declaration context (uploading necessary declaration and trajectory validation). +- **Context:** Establishes the baseline for the flight operation. + +### 2. Activate Operation +- **Step:** `Update Operation State` +- **Action:** Transitions the flight operation state to **`ACTIVATED`**. +- **Context:** Signals that the flight is ready to commence or has commenced. + +### 3. Submit Telemetry +- **Step:** `Submit Telemetry` +- **Action:** Streams telemetry data for the flight. +- **Duration:** **30 seconds** + - The system submits position updates securely for a half-minute duration to simulate active flight tracking. + +### 4. End Operation +- **Step:** `Update Operation State` +- **Action:** Transitions the flight operation state to **`ENDED`**. +- **Purpose:** Normally completes the flight operation. + +### 5. Explicit Teardown +- **Step:** `Teardown Flight Declaration` +- **Action:** Explicitly invokes the teardown of the flight declaration to ensure no artifacts remain. diff --git a/docs/scenarios/F2_contingent_path.md b/docs/scenarios/F2_contingent_path.md index e69de29..a35c646 100644 --- a/docs/scenarios/F2_contingent_path.md +++ b/docs/scenarios/F2_contingent_path.md @@ -0,0 +1,39 @@ +# F2 Contingent Path + +## Overview + +**Scenario Name:** `F2_contingent_path` +**Description:** This scenario validates the system's handling of off-nominal flight conditions, specifically the transition to a **Contingent** state. It simulates a flight that activates normally but then encounters an issue requiring a state change before ending. + +## Execution Flow + +The scenario executes the following sequence of steps: + +### 1. Setup Flight Declaration +- **Action:** Creates a flight declaration context. +- **Context:** Establishes the baseline for the flight operation. + +### 2. Activate Operation +- **Step:** `Update Operation State` +- **Action:** Transitions the flight operation state to **`ACTIVATED`**. +- **Context:** The flight begins normal operations. + +### 3. Normal Telemetry Stream +- **Step:** `Submit Telemetry` +- **Action:** Streams telemetry data for **10 seconds**. +- **Context:** Represents the initial phase of successful flight. + +### 4. Contingency Declaration +- **Step:** `Update Operation State` +- **Action:** Transitions the flight operation state to **`CONTINGENT`**. +- **Duration:** **7 seconds** + - The system holds this state for 7 seconds to simulate the duration of the contingent event or the time taken to resolve/acknowledge it. + +### 5. End Operation +- **Step:** `Update Operation State` +- **Action:** Transitions the flight operation state to **`ENDED`**. +- **Purpose:** Closes the operation after the contingency is resolved or the flight is terminated. + +### 6. Explicit Teardown +- **Step:** `Teardown Flight Declaration` +- **Action:** Explicitly invokes the teardown of the flight declaration to ensure no artifacts remain. diff --git a/docs/scenarios/F3_non_conforming_path.md b/docs/scenarios/F3_non_conforming_path.md index e69de29..6a99410 100644 --- a/docs/scenarios/F3_non_conforming_path.md +++ b/docs/scenarios/F3_non_conforming_path.md @@ -0,0 +1,44 @@ +# F3 Non-Conforming Path + +## Overview + +**Scenario Name:** `F3_non_conforming_path` +**Description:** This scenario verifies the system's ability to detect and handle **Non-Conforming** flights. It simulates an operation that activates normally but subsequently reports telemetry positions that deviate significantly from its declared flight plan (Operational Intent), expecting the system to automatically transition the operation state to `NONCONFORMING`. + +## Execution Flow + +The scenario executes the following sequence of steps: + +### 1. Setup Flight Declaration +- **Action:** Creates a flight declaration context. +- **Context:** Establishes the valid geometric boundaries (volumes) for the flight. + +### 2. Activate Operation +- **Step:** `Update Operation State` +- **Action:** Transitions the flight operation state to **`ACTIVATED`**. + +### 3. Initial Wait +- **Step:** `Wait` +- **Duration:** **5 seconds** +- **Context:** Short delay to allow system state to settle before data transmission begins. + +### 4. Inject Non-Conforming Telemetry +- **Step:** `Submit Telemetry` +- **Action:** Streams simulated telemetry data for **20 seconds**. +- **Context:** The telemetry path used in this scenario is designed to breach the conformance thresholds of the declared volumes. + +### 5. Verify State Transition +- **Step:** `Check Operation State` +- **Action:** Polls the operation status. +- **Expectation:** The state must be **`NONCONFORMING`**. +- **Wait Duration:** **5 seconds** + - Waits up to 5 seconds for the system to process the telemetry and flag the violation. + +### 6. End Operation +- **Step:** `Update Operation State` +- **Action:** Transitions the flight operation state to **`ENDED`**. +- **Purpose:** Closes the operation. + +### 7. Explicit Teardown +- **Step:** `Teardown Flight Declaration` +- **Action:** Clean up resources. diff --git a/docs/scenarios/F5_non_conforming_path.md b/docs/scenarios/F5_non_conforming_path.md index e69de29..d0346b7 100644 --- a/docs/scenarios/F5_non_conforming_path.md +++ b/docs/scenarios/F5_non_conforming_path.md @@ -0,0 +1,44 @@ +# F5 Non-Conforming Path (Contingent Transition) + +## Overview + +**Scenario Name:** `F5_non_conforming_path` +**Description:** This scenario validates the complex state transition flow where a flight becomes **Non-Conforming** due to telemetry deviations and subsequently transitions to a **Contingent** state. It tests the system's ability to first detect non-conformance and then accept a contingency declaration for the same operation. + +## Execution Flow + +The scenario executes the following sequence of steps: + +### 1. Setup Flight Declaration +- **Action:** Creates a flight declaration context. +- **Context:** Establishes the valid geometric boundaries for the flight. + +### 2. Activate Operation +- **Step:** `Update Operation State` +- **Action:** Transitions the flight operation state to **`ACTIVATED`**. + +### 3. Inject Non-Conforming Telemetry +- **Step:** `Submit Telemetry` +- **Action:** Streams simulated telemetry data for **20 seconds**. +- **Context:** The telemetry path breaches the declared volume, triggering a non-conformance event. + +### 4. Verify Non-Conformance +- **Step:** `Check Operation State (Connected)` +- **Action:** Checks the operation state via active connection/polling. +- **Expectation:** The state must be **`NONCONFORMING`**. +- **Wait Duration:** **5 seconds** + - Verifies that the system has correctly flagged the operation as non-conforming based on the uploaded telemetry. + +### 5. Declare Contingency +- **Step:** `Update Operation State` +- **Action:** Transitions the flight operation state from `NONCONFORMING` to **`CONTINGENT`**. +- **Context:** Simulates the operator or system acknowledging the issue and moving to a contingency plan to resolve the violation. + +### 6. End Operation +- **Step:** `Update Operation State` +- **Action:** Transitions the flight operation state to **`ENDED`**. +- **Purpose:** Closes the operation. + +### 7. Explicit Teardown +- **Step:** `Teardown Flight Declaration` +- **Action:** Clean up resources. diff --git a/docs/scenarios/add_flight_declaration.md b/docs/scenarios/add_flight_declaration.md index e69de29..1b7bbb2 100644 --- a/docs/scenarios/add_flight_declaration.md +++ b/docs/scenarios/add_flight_declaration.md @@ -0,0 +1,38 @@ +# Add Flight Declaration Scenario + +## Overview + +**Scenario Name:** `add_flight_declaration` +**Description:** This scenario validates the complete lifecycle of a flight declaration, from submission to activation, telemetry transmission, and cleanup. It verifies that the system correctly parses flight declarations, accepts state transitions, and processes telemetry updates. + +## Execution Flow + +The scenario executes the following sequence of steps: + +### 1. Setup Flight Declaration +- **Action:** Uploads a flight declaration JSON file to Flight Blender. +- **Verification:** Ensures the declaration is successfully parsed and approved by the system. +- **Outcome:** A new `flight_declaration_id` is created and stored in the execution context. + +### 2. Activate Operation +- **Step:** `Update Operation State` +- **Action:** Transitions the flight operation state to **`ACTIVATED`**. +- **Wait Duration:** **20 seconds** + - The system waits for 20 seconds after the state update to simulate pre-flight checks or operational delays. + +### 3. Submit Telemetry +- **Step:** `Submit Telemetry` +- **Action:** Streams simulated telemetry data (position, altitude, velocity) for the activated flight. +- **Duration:** **30 seconds** + - Telemetry points are submitted sequentially to the data ingest endpoint. +- **Verification:** Validates that the system accepts the telemetry stream without errors. + +### 4. End Operation +- **Step:** `Update Operation State` (ID: `update_state_ended`) +- **Action:** Transitions the flight operation state to **`ENDED`**. +- **Purpose:** Formally closes the flight operation, indicating the flight has completed. + +### 5. Teardown +- **Step:** `Teardown Flight Declaration` +- **Action:** Clean up resources (e.g., flight declaration, associated geo-fences). +- **Result:** Ensures the system returns to a clean state after the test. diff --git a/docs/scenarios/add_flight_declaration_via_operational_intent.md b/docs/scenarios/add_flight_declaration_via_operational_intent.md new file mode 100644 index 0000000..3dd8dc5 --- /dev/null +++ b/docs/scenarios/add_flight_declaration_via_operational_intent.md @@ -0,0 +1,37 @@ +# Add Flight Declaration via Operational Intent + +## Overview + +**Scenario Name:** `add_flight_declaration_via_operational_intent` +**Description:** This scenario validates the workflow for creating a flight declaration through the submission of an Operational Intent. It verifies that the system correctly initializes a declaration from an intent, handles state transitions, and manages the operational lifecycle. + +## Execution Flow + +The scenario executes the following sequence of steps: + +### 1. Setup Flight Declaration via Operational Intent +- **Action:** Submits a Flight Declaration via the Operational Intent interface. +- **Context:** Unlike the standard upload, this tests the specific path of deriving a declaration from a full operational intent submission. +- **Outcome:** A valid flight declaration is established in the system. + +### 2. Activate Operation +- **Step:** `Update Operation State` +- **Action:** Transitions the flight operation state to **`ACTIVATED`**. +- **Wait Duration:** **5 seconds** + - The system pauses for 5 seconds post-activation to ensure state propagation. + +### 3. Operational Wait +- **Step:** `Wait` +- **Action:** System idle wait. +- **Duration:** **10 seconds** + - Simulates the duration of the flight operation. Note that unlike the standard `add_flight_declaration` scenario, this test does not explicitly submit telemetry distinct from the intent. + +### 4. End Operation +- **Step:** `Update Operation State` +- **Action:** Transitions the flight operation state to **`ENDED`**. +- **Purpose:** Formally closes the operational intent and associated declaration. + +### 5. Teardown +- **Step:** Cleanup +- **Action:** Automatically tears down the created resources upon scenario completion. +- **Result:** Initializes system cleanup for the operational intent and declaration. diff --git a/docs/scenarios/geo_fence_upload.md b/docs/scenarios/geo_fence_upload.md index e69de29..3fe14c0 100644 --- a/docs/scenarios/geo_fence_upload.md +++ b/docs/scenarios/geo_fence_upload.md @@ -0,0 +1,25 @@ +# Geo Fence Upload + +## Overview + +**Scenario Name:** `geo_fence_upload` +**Description:** This scenario validates the capability to upload and retrieve a Geo-Fence (Area of Interest). It ensures that the system accepts valid GeoJSON definitions for geofencing and allows for their subsequent retrieval and verification. + +## Execution Flow + +The scenario executes the following sequence of steps: + +### 1. Upload Geo Fence +- **Step:** `Upload Geo Fence` +- **Action:** Uploads a GeoJSON file defining the Area of Interest (AOI) to Flight Blender. +- **Context:** Sets up the spatial constraints for operations. The client stores the ID of the created geo-fence. + +### 2. Verify Upload +- **Step:** `Get Geo Fence` +- **Action:** API call to retrieve the details of the uploaded geo-fence. +- **Verification:** Confirms that the geo-fence was successfully persisted and matches the uploaded definition. + +### 3. Teardown +- **Step:** Cleanup +- **Action:** Automatically tears down the created geo-fence resources upon scenario completion. +- **Result:** Ensures the system returns to a clean state. diff --git a/docs/scenarios/opensky_live_data.md b/docs/scenarios/opensky_live_data.md index e69de29..c7c6871 100644 --- a/docs/scenarios/opensky_live_data.md +++ b/docs/scenarios/opensky_live_data.md @@ -0,0 +1,28 @@ +# OpenSky Live Data + +## Overview + +**Scenario Name:** `opensky_live_data` +**Description:** This scenario tests the integration with live data sources by fetching real-time flight positions from OpenSky Network and submitting them to Flight Blender. It verifies that the system can ingest and process live air traffic streams. + +## Execution Flow + +The scenario executes the following sequence of steps: + +### 1. Iterative Data Fetch & Submission +- **Loop:** Runs for **5 iterations**. +- **Wait:** Pauses for **3 seconds** between iterations. + +#### Step A: Fetch Live Data +- **Step:** `OpenSkyClient.fetch_data` +- **Action:** Queries the OpenSky API to retrieve current state vectors for aircraft in the configured bounding box. +- **Context:** Provides a "real-world" dataset for system verification. + +#### Step B: Submit Traffic Data +- **Step:** `FlightBlenderClient.submit_air_traffic` +- **Action:** Submits the retrieved observations to Flight Blender. +- **Condition:** Executed only if valid observations are returned from OpenSky. +- **Verification:** Ensures the backend accepts the external data format. + +### 2. Completion +- **Action:** The scenario completes after all iterations are finished. diff --git a/docs/scenarios/openutm_sim_air_traffic_data.md b/docs/scenarios/openutm_sim_air_traffic_data.md index e69de29..36db4d5 100644 --- a/docs/scenarios/openutm_sim_air_traffic_data.md +++ b/docs/scenarios/openutm_sim_air_traffic_data.md @@ -0,0 +1,23 @@ +# OpenUTM Simulated Air Traffic Data + +## Overview + +**Scenario Name:** `openutm_sim_air_traffic_data` +**Description:** This scenario verifies the integration between the simulated air traffic generator and Flight Blender. It generates simulated air traffic observations and submits them to the backend to ensure they are correctly ingested. + +## Execution Flow + +The scenario executes the following sequence of steps: + +### 1. Generate Simulated Air Traffic +- **Step:** `AirTrafficClient.generate_simulated_air_traffic_data` +- **Action:** Generates a set of simulated flight observations (e.g., positions, velocities) representing local air traffic. +- **Context:** Unlike live tracking, this uses internal simulation logic/templates to create predictable traffic patterns for testing. + +### 2. Submit Traffic Data +- **Step:** `FlightBlenderClient.submit_simulated_air_traffic` +- **Action:** Submits the generated observations to Flight Blender's air traffic data feed. +- **Verification:** Ensures the API accepts the payload (typically a bulk submission of observations). + +### 3. Completion +- **Action:** The scenario completes successfully upon meaningful submission callback. diff --git a/docs/scenarios/sdsp_heartbeat.md b/docs/scenarios/sdsp_heartbeat.md index e69de29..a4efd49 100644 --- a/docs/scenarios/sdsp_heartbeat.md +++ b/docs/scenarios/sdsp_heartbeat.md @@ -0,0 +1,38 @@ +# SDSP Heartbeat + +## Overview + +**Scenario Name:** `sdsp_heartbeat` +**Description:** This scenario validates the heartbeat mechanism for Supplemental Data Service Providers (SDSP). It ensures that Flight Blender can successfully establish a session, monitor heartbeat signals at a specified frequency, and gracefully terminate the session. + +## Execution Flow + +The scenario executes the following sequence of steps: + +### 1. Start SDSP Session +- **Step:** `Start/Stop SDSP Session (START)` +- **Action:** Initiates a new SDSP session with a unique UUID. +- **Context:** Signals the beginning of a data provision session. + +### 2. Initial Wait +- **Step:** `Wait` +- **Duration:** **2 seconds** +- **Context:** Allows the session initialization to propagate. + +### 3. Verify Heartbeat +- **Step:** `Initialize Verify SDSP Heartbeat` +- **Action:** Configures the verification logic to listen for heartbeats. +- **Parameters:** + - **Interval:** 1 second + - **Expected Count:** 3 heartbeats +- **Verification:** Ensures the system detects the ongoing liveness of the SDSP connection. + +### 4. Operational Wait +- **Step:** `Wait` +- **Duration:** **5 seconds** +- **Context:** Provides the time window for the heartbeat verification to collect data and confirm the count. + +### 5. Stop SDSP Session +- **Step:** `Start/Stop SDSP Session (STOP)` +- **Action:** Terminates the SDSP session. +- **Purpose:** Cleanly closes the connection. diff --git a/docs/scenarios/sdsp_track.md b/docs/scenarios/sdsp_track.md index e69de29..e481543 100644 --- a/docs/scenarios/sdsp_track.md +++ b/docs/scenarios/sdsp_track.md @@ -0,0 +1,48 @@ +# SDSP Track Verification + +## Overview + +**Scenario Name:** `sdsp_track` +**Description:** This scenario validates the tracking capability of Supplemental Data Service Providers (SDSP). It verifies that Flight Blender can successfully establish a session, ingest simulated air traffic tracks concurrently, and monitor the reception of track updates at a specified frequency. + +## Execution Flow + +The scenario executes the following sequence of steps: + +### 1. Start SDSP Session +- **Step:** `Start/Stop SDSP Session (START)` +- **Action:** Initiates a new SDSP session with a unique UUID. +- **Context:** Signals the beginning of a data provision session. + +### 2. Generate and Submit Air Traffic +- **Step:** `Generate Simulated Air Traffic Data` +- **Action:** Generates simulated flight observations. +- **Step:** `Submit Simulated Air Traffic` (Background Task) +- **Action:** Starts submitting the generated observations to Flight Blender in a background process. +- **Context:** Simulates a live feed of aircraft tracking data being pushed to the system. + +### 3. Initial Wait +- **Step:** `Wait` +- **Duration:** **2 seconds** +- **Context:** Allows the data stream to initialize and reach the system. + +### 4. Verify Track Reception +- **Step:** `Initialize Verify SDSP Track` +- **Action:** Configures the verification logic to listen for track updates. +- **Parameters:** + - **Interval:** 1 second + - **Expected Count:** 3 track updates +- **Verification:** Ensures the system correctly processes and counts the incoming track data associated with the session. + +### 5. Operational Wait +- **Step:** `Wait` +- **Duration:** **5 seconds** +- **Context:** Provides the time window for the verification logic to confirm the track count. + +### 6. Stop SDSP Session +- **Step:** `Start/Stop SDSP Session (STOP)` +- **Action:** Terminates the SDSP session. +- **Purpose:** Cleanly closes the connection. + +### 7. Task Completion +- **Action:** Waits for the background air traffic submission task to complete fully before finishing the scenario. diff --git a/examples/conditional_execution.md b/examples/conditional_execution.md new file mode 100644 index 0000000..d58eaf6 --- /dev/null +++ b/examples/conditional_execution.md @@ -0,0 +1,252 @@ +# Conditional Workflow Execution + +This guide demonstrates how to use conditional expressions in workflow steps, similar to GitHub Actions. + +## Syntax Overview + +Add an `if` condition to any step to control whether it executes based on previous step results: + +```yaml +steps: + - id: step1 + step: Some Action + if: success() # Only runs if previous steps succeeded +``` + +## Available Condition Functions + +### `success()` +Returns `true` if all previous steps completed successfully (none failed). + +```yaml +- id: deploy + step: Deploy Application + if: success() + description: Only deploy if all tests passed +``` + +### `failure()` +Returns `true` if any previous step failed. + +```yaml +- id: send_alert + step: Send Notification + if: failure() + description: Alert team if any step failed +``` + +### `always()` +Always returns `true`, ensuring the step runs regardless of previous step outcomes. + +```yaml +- id: cleanup + step: Teardown Resources + if: always() + description: Always cleanup, even after failures +``` + +### `steps..status` +Access the status of a specific step by its ID. Status values: +- `'success'` - Step completed successfully +- `'failure'` - Step failed with an error +- `'skipped'` - Step was skipped due to condition +- `'not_run'` - Step hasn't executed yet + +```yaml +- id: test + step: Run Tests + +- id: deploy + step: Deploy + if: steps.test.status == 'success' + description: Deploy only if tests passed +``` + +## Complex Conditions + +Combine conditions using logical operators: + +### AND Operator (`&&`) +```yaml +- id: conditional_step + step: Some Action + if: success() && steps.build.status == 'success' + description: Runs if all succeeded AND build specifically succeeded +``` + +### OR Operator (`||`) +```yaml +- id: notify + step: Send Notification + if: failure() || steps.critical_check.status == 'failure' + description: Notify on any failure or specific critical check failure +``` + +### NOT Operator (`not`) +```yaml +- id: fallback + step: Use Fallback + if: not steps.primary.status == 'success' + description: Use fallback if primary didn't succeed +``` + +### Inequality (`!=`) +```yaml +- id: conditional + step: Some Action + if: steps.optional.status != 'skipped' + description: Only if optional step was not skipped +``` + +### `steps..result` +Access the return value/result data from a specific step. Steps may return data that can be used in conditions. + +```yaml +- id: check_data + step: Validate Data + description: This step returns validation results + +- id: process_if_valid + step: Process Data + if: steps.check_data.result != None + description: Only process if validation returned data + +- id: conditional_on_value + step: Handle Response + if: steps.check_data.result != None && steps.check_data.status == 'success' + description: Combine result check with status check +``` + +**Note**: The `result` field accesses the return value/details from the step execution. Use `!= None` to check if a step returned any data. + +## Complete Example + +```yaml +name: Conditional Workflow Demo +description: Full example demonstrating all conditional features + +steps: + # Step 1: Initial setup - no condition, always runs + - id: setup + step: Setup Environment + description: Initialize environment + + # Step 2: Build - runs after setup + - id: build + step: Build Application + if: success() + description: Build only if setup succeeded + + # Step 3: Test - runs if build succeeded + - id: test + step: Run Tests + if: steps.build.status == 'success' + description: Test only if build succeeded + + # Step 4: Deploy - complex condition + - id: deploy + step: Deploy Application + if: success() && steps.test.status == 'success' + description: Deploy only if everything passed including tests + + # Step 5: Rollback - runs on failure + - id: rollback + step: Rollback Deployment + if: failure() && steps.deploy.status == 'failure' + description: Rollback if deployment failed + + # Step 6: Notify success + - id: notify_success + step: Send Success Notification + if: steps.deploy.status == 'success' + description: Notify team of successful deployment + + # Step 7: Notify failure + - id: notify_failure + step: Send Failure Notification + if: failure() + description: Notify team if anything failed + + # Step 8: Cleanup - always runs + - id: cleanup + step: Cleanup Resources + if: always() + description: Always cleanup temporary resources + + # Step 9: Final report + - id: report + step: Generate Report + if: steps.cleanup.status == 'success' + description: Generate report after cleanup completes +``` + +## Evaluation Behavior + +1. **Sequential Evaluation**: Conditions are evaluated just before the step runs, so they see the current state of all previous steps. + +2. **Skip Propagation**: If a step is skipped, subsequent steps using `success()` will still see it as successful (skipped β‰  failed). + +3. **Early Termination**: If all remaining steps have conditions that can never be true, evaluation may stop early. + +4. **Status Access**: You can only reference steps that have already executed or been skipped. + +## Common Patterns + +### Cleanup on Error +```yaml +- id: error_cleanup + step: Cleanup After Error + if: failure() +``` + +### Conditional Retry +```yaml +- id: retry + step: Retry Operation + if: steps.first_attempt.status == 'failure' +``` + +### Fork-Join Pattern +```yaml +# Fork +- id: path_a + step: Path A + if: steps.condition.status == 'success' + +- id: path_b + step: Path B + if: steps.condition.status == 'failure' + +# Join +- id: merge + step: Merge Results + if: steps.path_a.status == 'success' || steps.path_b.status == 'success' +``` + +### Multiple Fallbacks +```yaml +- id: primary + step: Primary Method + +- id: fallback1 + step: Fallback Method 1 + if: steps.primary.status == 'failure' + +- id: fallback2 + step: Fallback Method 2 + if: steps.fallback1.status == 'failure' +``` + +## Tips and Best Practices + +1. **Use Descriptive Step IDs**: Make step IDs clear since they're used in conditions. + +2. **Document Complex Conditions**: Add descriptions explaining why a condition exists. + +3. **Test Both Paths**: Ensure your workflow handles both success and failure paths. + +4. **Always Cleanup**: Use `if: always()` for cleanup steps to prevent resource leaks. + +5. **Avoid Circular Dependencies**: Don't create conditions that depend on steps that haven't run yet. + +6. **Keep It Simple**: Complex conditions can be hard to debug; break into multiple simpler steps when possible. diff --git a/examples/conditional_workflow_demo.yaml b/examples/conditional_workflow_demo.yaml new file mode 100644 index 0000000..73ebb09 --- /dev/null +++ b/examples/conditional_workflow_demo.yaml @@ -0,0 +1,80 @@ +name: Conditional Workflow Demo +description: > + Demonstrates all conditional execution features including success(), failure(), + always(), and steps.X.status conditions. This scenario intentionally includes + steps that may fail to showcase conditional branching. + +steps: + - id: setup + step: Setup Flight Declaration + description: Initial setup - creates a flight declaration + + - id: risky_operation + step: Update Operation State + description: This operation might fail (simulates potential failure scenario) + arguments: + state: ACTIVATED + + - id: on_success_only + step: Submit Telemetry + if: success() + description: Only runs if all previous steps succeeded + arguments: + duration: 10 + + - id: on_failure_only + step: Teardown Flight Declaration + if: failure() + description: Only runs if any previous step failed (cleanup on error) + + - id: check_specific_step + step: Update Operation State + if: steps.risky_operation.status == 'success' + description: Runs only if risky_operation specifically succeeded + arguments: + state: CONTINGENT + + - id: complex_condition + step: Submit Telemetry + if: success() && steps.risky_operation.status != 'skipped' + description: Runs if all steps succeeded AND risky_operation was not skipped + arguments: + duration: 5 + + - id: another_complex + step: Update Operation State + if: steps.on_success_only.status == 'success' || steps.on_failure_only.status == 'success' + description: Runs if either success path OR failure path executed + arguments: + state: NONCONFORMING + + - id: cleanup + step: Teardown Flight Declaration + if: always() + description: Always runs for final cleanup, regardless of success or failure + + - id: post_cleanup_success + step: Submit Telemetry + if: success() && steps.cleanup.status == 'success' + description: Final telemetry only if everything succeeded including cleanup + arguments: + duration: 3 + + - id: check_telemetry_result + step: Update Operation State + if: steps.on_success_only.result != None + description: Runs only if on_success_only step returned a result value + arguments: + state: ENDED + + - id: conditional_on_result_value + step: Teardown Flight Declaration + if: steps.risky_operation.result != None && steps.risky_operation.status == 'success' + description: Uses both status and return value in condition + + - id: result_comparison + step: Submit Telemetry + if: steps.setup.result != None + description: Checks if setup returned any data + arguments: + duration: 2 diff --git a/examples/loop_examples.yaml b/examples/loop_examples.yaml new file mode 100644 index 0000000..42ec613 --- /dev/null +++ b/examples/loop_examples.yaml @@ -0,0 +1,85 @@ +name: Loop Examples +description: > + Demonstrates all loop features including fixed count loops, item iteration, + and while loops with conditions and loop variables. + +steps: + # Example 1: Fixed count loop + - id: retry_setup + step: Setup Flight Declaration + description: Retry setup 3 times if needed + loop: + count: 3 + + # Example 2: Loop with iteration variable in arguments + - id: batch_telemetry + step: Submit Telemetry + description: Submit telemetry 5 times with increasing durations + loop: + count: 5 + arguments: + duration: 10 # Each iteration will run for 10 seconds + + # Example 3: Iterate over a list of items + - id: process_states + step: Update Operation State + description: Process through different operational states + loop: + items: + - ACTIVATED + - CONTINGENT + - NONCONFORMING + - ENDED + arguments: + state: ${{ loop.item }} # Use ${{ loop.item }} to reference current item + + # Example 4: Loop with string interpolation + - id: batch_with_index + step: Submit Telemetry + description: Use loop.index in argument values + loop: + count: 3 + arguments: + duration: 5 + # Note: loop.index can be used directly or in expressions + + # Example 5: Conditional loop termination + - id: wait_for_success + step: Submit Telemetry + description: Keep submitting telemetry until a previous step succeeds + loop: + count: 10 + while: loop.index < 5 # Stop after 5 iterations + arguments: + duration: 2 + + # Example 6: Pure while loop + - id: monitor_until_ready + step: Setup Flight Declaration + description: Keep trying until loop index reaches threshold + loop: + while: loop.index < 3 + + # Example 7: Conditional execution with loop + - id: conditional_loop + step: Submit Telemetry + if: success() + description: Only loop if previous steps succeeded + loop: + count: 2 + arguments: + duration: 5 + + # Example 8: Check loop iteration in condition + - id: after_loops + step: Update Operation State + if: steps.retry_setup[0].status == 'success' + description: Run only if first iteration of retry_setup succeeded + arguments: + state: ENDED + + # Final cleanup + - id: cleanup + step: Teardown Flight Declaration + if: always() + description: Always cleanup after all loops complete diff --git a/examples/loops.md b/examples/loops.md new file mode 100644 index 0000000..a9330c3 --- /dev/null +++ b/examples/loops.md @@ -0,0 +1,272 @@ +# Loop Features + +This guide demonstrates how to use loops in workflow steps to repeat operations. + +## Loop Types + +### Fixed Count Loop + +Repeat a step a specific number of times using `loop.count`: + +```yaml +- id: retry_operation + step: Some Action + loop: + count: 3 + description: Retry up to 3 times +``` + +Access the current iteration index with `loop.index` (0-based): +- First iteration: `loop.index = 0` +- Second iteration: `loop.index = 1` +- Third iteration: `loop.index = 2` + +### Item Iteration Loop + +Iterate over a list of items using `loop.items`: + +```yaml +- id: process_states + step: Update Operation State + loop: + items: + - ACTIVATED + - CONTINGENT + - NONCONFORMING + - ENDED + arguments: + state: ACTIVATED # Can reference loop.item in arguments +``` + +Access values with: +- `loop.index` - Current iteration number (0, 1, 2, ...) +- `loop.item` - Current item from the list + +### While Loop + +Continue looping while a condition is true using `loop.while`: + +```yaml +- id: wait_for_ready + step: Check Status + loop: + while: loop.index < 10 + description: Check up to 10 times +``` + +**Safety Limit**: While loops have a maximum of 100 iterations to prevent infinite loops. + +### Combined Loop Types + +You can combine `count` or `items` with `while` to add early termination: + +```yaml +- id: retry_with_limit + step: Risky Operation + loop: + count: 10 + while: steps.previous_step.status != 'success' + description: Retry up to 10 times or until previous step succeeds +``` + +## Loop Variables + +### `loop.index` + +Zero-based iteration counter available in all loop types: + +```yaml +- id: batch_process + step: Process Batch + loop: + count: 5 + arguments: + batch_id: ${{ loop.index }} # Use ${{ loop.index }} in arguments + batch_size: 100 +``` + +You can reference `loop.index` in: +- **Arguments**: Use `${{ loop.index }}` - e.g., `value: ${{ loop.index }}` +- **While conditions**: Use bare `loop.index < 5` (no `${{ }}`) +- **If conditions**: Use bare `loop.index` - e.g., `if: loop.index == 0` + +### `loop.item` + +Current item value when using `loop.items`. **Must be explicitly referenced** using `${{ loop.item }}` syntax in arguments: + +```yaml +- id: process_states + step: Update Operation State + loop: + items: + - ACTIVATED + - CONTINGENT + - ENDED + arguments: + state: ${{ loop.item }} # Will be replaced with: ACTIVATED, CONTINGENT, ENDED + +- id: process_files + step: Process Data + loop: + items: + - "data1.json" + - "data2.json" + - "data3.json" + arguments: + filename: ${{ loop.item }} # Will be: "data1.json", "data2.json", "data3.json" +``` + +**Important**: Loop variables in arguments must use `${{ loop.item }}` or `${{ loop.index }}` syntax to distinguish them from literal strings. In conditions (like `if:` or `loop.while:`), use bare `loop.item` without the `${{ }}`. + +**Examples:** +```yaml +# In arguments - use ${{ }} +arguments: + state: ${{ loop.item }} + index: ${{ loop.index }} + literal: "loop.item" # This is a literal string + +# In conditions - no ${{ }} +if: loop.index > 0 +loop: + while: loop.index < 10 +``` + +## Loop Result Access + +Each loop iteration creates a separate result with an indexed ID: + +```yaml +- id: looped_step + step: Some Action + loop: + count: 3 + +# Later, reference specific iterations: +- id: check_first + step: Another Action + if: steps.looped_step[0].status == 'success' + description: Only if first iteration succeeded + +- id: check_second + step: Another Action + if: steps.looped_step[1].status == 'success' + description: Only if second iteration succeeded +``` + +**Note**: Use bracket notation `steps.step_id[index]` to access specific loop iterations. + +## Complete Example + +```yaml +name: Loop Demo +description: Comprehensive loop examples + +steps: + # Fixed count loop + - id: batch_process + step: Process Batch + loop: + count: 5 + description: Process 5 batches + + # Item iteration + - id: deploy_to_environments + step: Deploy Application + loop: + items: + - development + - staging + - production + arguments: + environment: ${{ loop.item }} # Use ${{ loop.item }} in arguments + description: Deploy to each environment + + # While loop with safety limit + - id: poll_status + step: Check Status + loop: + while: loop.index < 20 + description: Poll up to 20 times + + # Combined: items + while condition + - id: conditional_item_loop + step: Process Item + loop: + items: [1, 2, 3, 4, 5] + while: steps.previous_check.status == 'success' + description: Process items until previous check fails + + # Conditional execution after loop + - id: cleanup + step: Cleanup Resources + if: steps.batch_process[0].status == 'success' + description: Cleanup if first batch succeeded +``` + +## Common Patterns + +### Retry with Exponential Backoff + +```yaml +- id: retry_api_call + step: API Request + loop: + count: 5 + while: steps.retry_api_call[loop.index].status == 'failure' + description: Retry up to 5 times on failure +``` + +### Process List with Early Exit + +```yaml +- id: find_first_match + step: Check Item + loop: + items: ["opt1", "opt2", "opt3"] + while: steps.find_first_match[loop.index].status != 'success' + description: Stop at first successful match +``` + +### Batch Processing + +```yaml +- id: process_batch + step: Process Records + loop: + count: 10 + arguments: + batch_number: ${{ loop.index }} # Use ${{ }} syntax in arguments + batch_size: 100 +``` + +### State Machine + +```yaml +- id: state_transition + step: Update State + loop: + items: + - INITIALIZING + - READY + - ACTIVE + - COMPLETE + arguments: + new_state: ${{ loop.item }} # Use ${{ }} syntax in arguments +``` + +## Tips and Best Practices + +1. **Use Descriptive Step IDs**: Loop iterations use `[index]` suffix, so clear IDs help: `steps.retry_connection[0]` + +2. **Set Safety Limits**: While loops auto-limit to 100 iterations. Design conditions to terminate naturally. + +3. **Access Loop Results**: Reference specific iterations with bracket notation when checking loop outcomes. + +4. **Combine with Conditions**: Use `if` to conditionally start loops, and `loop.while` to conditionally continue them. + +5. **Monitor Performance**: Large loops can slow execution. Consider if parallel execution (future feature) is better. + +6. **Loop Variables in Arguments**: Reference `loop.index` and `loop.item` in step arguments for dynamic values. + +7. **Error Handling**: Loop breaks on error by default. Use conditions to implement custom retry logic. diff --git a/examples/test_fire_response.py b/examples/test_fire_response.py deleted file mode 100644 index 154ef7c..0000000 --- a/examples/test_fire_response.py +++ /dev/null @@ -1,9 +0,0 @@ -from openutm_verification.core.clients.flight_blender.flight_blender_client import FlightBlenderClient -from openutm_verification.core.execution.config_models import DataFiles -from openutm_verification.scenarios.registry import register_scenario - - -@register_scenario("fire_response") -async def test_fire_response(fb_client: FlightBlenderClient, data_files: DataFiles) -> None: - """Runs the Fire Response scenario.""" - pass diff --git a/examples/workflow_features.md b/examples/workflow_features.md new file mode 100644 index 0000000..3ae0e6d --- /dev/null +++ b/examples/workflow_features.md @@ -0,0 +1,265 @@ +# Workflow Features: Conditionals and Loops + +Complete guide to advanced workflow features including conditional execution and loops. + +## Quick Reference + +### Conditionals + +```yaml +- id: step_name + step: Operation Name + if: success() # Condition expression +``` + +**Available Functions:** +- `success()` - Run if all previous steps succeeded +- `failure()` - Run if any previous step failed +- `always()` - Always run regardless of outcomes +- `steps..status` - Check specific step status (`'success'`, `'failure'`, `'skipped'`) +- `steps..result` - Access step return values + +**Operators:** `==`, `!=`, `&&`, `||`, `not` + +### Loops + +```yaml +- id: step_name + step: Operation Name + loop: + count: 3 # Fixed iterations + # OR + items: [1, 2, 3] # Iterate over list + # OR + while: condition # Conditional looping +``` + +**Loop Variables:** +- `loop.index` - Current iteration (0-based) +- `loop.item` - Current item (when using items) + +## Feature Matrix + +| Feature | Syntax | Example | +|---------|--------|---------| +| **Fixed Loop** | `loop: { count: N }` | Retry 3 times | +| **Item Loop** | `loop: { items: [...] }` | Process list of files | +| **While Loop** | `loop: { while: condition }` | Poll until ready | +| **Conditional Step** | `if: expression` | Run only on success | +| **Step Status** | `steps.X.status` | Check if step passed | +| **Step Result** | `steps.X.result` | Access return value | +| **Loop Index** | `loop.index` | Get iteration number | +| **Loop Item** | `loop.item` | Get current item | + +## Complete Example + +```yaml +name: Advanced Workflow +description: Demonstrates conditionals and loops together + +steps: + # Step 1: Setup + - id: setup + step: Initialize Environment + description: Initial setup + + # Step 2: Retry loop + - id: fetch_data + step: Fetch Remote Data + loop: + count: 3 + while: steps.fetch_data[loop.index].status == 'failure' + description: Retry fetch up to 3 times on failure + + # Step 3: Conditional based on loop result + - id: process_if_fetched + step: Process Data + if: steps.fetch_data[0].status == 'success' + description: Only process if first fetch succeeded + + # Step 4: Item iteration with condition + - id: deploy_environments + step: Deploy Application + if: success() + loop: + items: + - dev + - staging + - prod + arguments: + environment: ${{ loop.item }} + description: Deploy to all environments if tests passed + + # Step 5: Conditional cleanup on failure + - id: rollback + step: Rollback Changes + if: failure() + description: Rollback if anything failed + + # Step 6: Always cleanup + - id: cleanup + step: Cleanup Resources + if: always() + description: Always cleanup temporary files + + # Step 7: Final report + - id: report + step: Generate Report + if: steps.cleanup.status == 'success' && steps.deploy_environments[2].status == 'success' + description: Report if cleanup succeeded and production deployed +``` + +## Integration Examples + +### Retry Pattern with Exponential Backoff + +```yaml +- id: retry_connection + step: Connect to Service + loop: + count: 5 + description: Retry connection up to 5 times + +- id: verify_connection + step: Verify Connection + if: steps.retry_connection[4].status != 'success' + description: Escalate if all retries failed +``` + +### Batch Processing with Progress Tracking + +```yaml +- id: process_batches + step: Process Batch + loop: + count: 10 + arguments: + batch_id: ${{ loop.index }} + total_batches: 10 + +- id: verify_all_batches + step: Verify Results + if: success() + description: Verify only if all batches succeeded +``` + +### Environment-Specific Deployment + +```yaml +- id: run_tests + step: Run Test Suite + +- id: deploy_nonprod + step: Deploy Application + if: success() + loop: + items: [dev, qa] + arguments: + environment: ${{ loop.item }} + +- id: manual_approval + step: Wait for Approval + if: steps.deploy_nonprod[1].status == 'success' + +- id: deploy_prod + step: Deploy Application + if: steps.manual_approval.status == 'success' + arguments: + environment: prod +``` + +### State Machine Implementation + +```yaml +- id: initialize + step: Initialize System + +- id: state_transitions + step: Transition State + if: success() + loop: + items: + - PENDING + - ACTIVE + - PROCESSING + - COMPLETE + arguments: + target_state: loop.item + +- id: error_state + step: Transition State + if: failure() + arguments: + target_state: ERROR +``` + +## Accessing Loop Results + +When a step has a loop, each iteration gets a unique ID with bracket notation: + +```yaml +- id: my_loop + step: Some Operation + loop: + count: 3 + +# Results are stored as: +# - steps.my_loop[0] - First iteration +# - steps.my_loop[1] - Second iteration +# - steps.my_loop[2] - Third iteration + +- id: check_specific + step: Another Operation + if: steps.my_loop[1].status == 'success' +``` + +## Best Practices + +### Conditionals + +1. **Be Explicit**: Use descriptive conditions: `steps.validation.status == 'success'` over `success()` +2. **Document Intent**: Add descriptions explaining why conditions exist +3. **Test Both Paths**: Ensure your workflow handles both success and failure scenarios +4. **Use always()**: For cleanup steps to prevent resource leaks +5. **Check Results**: Use `steps.X.result != None` to verify steps returned data + +### Loops + +1. **Limit Iterations**: Keep loop counts reasonable; while loops max at 100 +2. **Early Exit**: Use `loop.while` conditions to stop early when possible +3. **Descriptive IDs**: Clear step IDs help when referencing iterations +4. **Error Handling**: Loops break on error; plan for partial completion +5. **Progress Tracking**: Use `loop.index` in logging/arguments to track progress + +### Combined Features + +1. **Conditional Loops**: Start loops based on conditions: `if: success()` +2. **Loop Conditions**: Use `loop.while` to exit early based on results +3. **Result Checking**: Reference specific iterations: `steps.loop_id[0].status` +4. **Layered Logic**: Combine `if` and `loop.while` for complex control flow + +## Troubleshooting + +### Condition Not Working + +- Check syntax: Use `==` not `=`, `&&` not `and` +- Verify step IDs match exactly (case-sensitive) +- Ensure referenced steps have executed before condition evaluates + +### Loop Not Terminating + +- Check `while` condition evaluates to false eventually +- Remember 100 iteration safety limit +- Verify loop variables are updated correctly + +### Can't Access Loop Iteration + +- Use bracket notation: `steps.step_id[0]` not `steps.step_id.0` +- Ensure you're referencing the right iteration index (0-based) +- Check that the loop has executed before accessing results + +## See Also + +- [Conditional Execution Guide](conditional_execution.md) - Detailed conditional syntax +- [Loop Examples](../scenarios/loop_examples.yaml) - Working loop examples +- [Conditional Examples](../scenarios/conditional_workflow_demo.yaml) - Working conditional examples diff --git a/pyproject.toml b/pyproject.toml index 4ae4307..e0653ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,9 +42,11 @@ dependencies = [ "loguru>=0.7.2", "pydantic>=2.11.7", "pydantic-settings>=2.10.1", - "websocket-client==1.9.0", + "websockets>=12.0", "markdown>=3.10", "uas-standards==4.2.0", + "fastapi>=0.121.3", + "uvicorn>=0.38.0", "bluesky-simulator==1.1.0", "rtree==1.4.1", ] @@ -122,14 +124,9 @@ select = [ "I", # "UP", ] -ignore = [ - "F401", -] -fixable = [ - "I", -] -unfixable = [ -] +ignore = [] +fixable = ["ALL"] +unfixable = [] dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$" [tool.ruff.format] @@ -143,7 +140,7 @@ docstring-code-line-length = "dynamic" [tool.codespell] ignore-words = ".codespellignore" quiet-level = 2 -skip = "uv.lock" +skip = ["uv.lock", "*/package-lock.json"] [tool.pylint] load-plugins = "pylint_pytest" diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 0000000..6bbac54 --- /dev/null +++ b/pytest.ini @@ -0,0 +1,4 @@ +[pytest] +markers = + asyncio: mark test as asyncio +addopts = -q --tb=no diff --git a/scenarios/F1_flow_no_telemetry_with_user_input.yaml b/scenarios/F1_flow_no_telemetry_with_user_input.yaml new file mode 100644 index 0000000..c2b0733 --- /dev/null +++ b/scenarios/F1_flow_no_telemetry_with_user_input.yaml @@ -0,0 +1,18 @@ +name: F1_flow_no_telemetry_with_user_input +description: Runs the F1 no telemetry with user input scenario. +steps: +- step: Setup Flight Declaration +- step: Wait X seconds + arguments: + duration: 5 +- step: Update Operation State + arguments: + state: ACTIVATED +- step: Wait for User Input + arguments: + prompt: Press Enter to end the operation... +- id: update_state_ended + step: Update Operation State + arguments: + state: ENDED +- step: Teardown Flight Declaration diff --git a/scenarios/F1_happy_path.yaml b/scenarios/F1_happy_path.yaml new file mode 100644 index 0000000..68b0ab8 --- /dev/null +++ b/scenarios/F1_happy_path.yaml @@ -0,0 +1,23 @@ +name: F1_happy_path +description: > + This scenario verifies the nominal flow (Happy Path) for a flight operation. + It walks through the lifecycle of a flight from declaration to activation, + submission of telemetry, and finally ending the operation. +steps: +- step: Setup Flight Declaration + description: Creates a fresh flight declaration in the DSS. +- step: Update Operation State + description: Activates the flight operation, transitioning it to the active state. + arguments: + state: ACTIVATED +- step: Submit Telemetry + description: Simulates the broadcast of telemetry data for 30 seconds. + arguments: + duration: 30 +- id: update_state_ended + step: Update Operation State + description: Marks the operation as ended after the flight is complete. + arguments: + state: ENDED +- step: Teardown Flight Declaration + description: Cleans up the flight declaration and any associated resources. diff --git a/scenarios/F2_contingent_path.yaml b/scenarios/F2_contingent_path.yaml new file mode 100644 index 0000000..503754b --- /dev/null +++ b/scenarios/F2_contingent_path.yaml @@ -0,0 +1,20 @@ +name: F2_contingent_path +description: Runs the F2 contingent path scenario. +steps: +- step: Setup Flight Declaration +- step: Update Operation State + arguments: + state: ACTIVATED +- step: Submit Telemetry + arguments: + duration: 10 +- id: update_state_contingent + step: Update Operation State + arguments: + state: CONTINGENT + duration: 7 +- id: update_state_ended + step: Update Operation State + arguments: + state: ENDED +- step: Teardown Flight Declaration diff --git a/scenarios/F3_non_conforming_path.yaml b/scenarios/F3_non_conforming_path.yaml new file mode 100644 index 0000000..9b2811a --- /dev/null +++ b/scenarios/F3_non_conforming_path.yaml @@ -0,0 +1,32 @@ +name: F3_non_conforming_path +description: > + Verifies the system's ability to detect and handle a non-conforming flight. + The flight deviates from its declared intent, and we expect the system + to transition the operation state to NONCONFORMING. +steps: +- step: Setup Flight Declaration + description: Initializes the flight declaration. +- step: Update Operation State + description: Activates the operation. + arguments: + state: ACTIVATED +- step: Wait X seconds + description: Pauses execution to allow initial state propagation. + arguments: + duration: 5 +- step: Submit Telemetry + description: Sends telemetry updates that intentionally deviate from the plan. + arguments: + duration: 20 +- step: Check Operation State + description: Verifies that the system has correctly identified the Non-Conforming state. + arguments: + expected_state: NONCONFORMING + duration: 5 +- id: update_state_ended + step: Update Operation State + description: Ends the operation. + arguments: + state: ENDED +- step: Teardown Flight Declaration + description: Cleanup. diff --git a/scenarios/F5_non_conforming_path.yaml b/scenarios/F5_non_conforming_path.yaml new file mode 100644 index 0000000..793cd08 --- /dev/null +++ b/scenarios/F5_non_conforming_path.yaml @@ -0,0 +1,23 @@ +name: F5_non_conforming_path +description: Runs the F5 non-conforming path scenario. +steps: +- step: Setup Flight Declaration +- step: Update Operation State + arguments: + state: ACTIVATED +- step: Submit Telemetry + arguments: + duration: 20 +- step: Check Operation State Connected + arguments: + expected_state: NONCONFORMING + duration: 5 +- id: update_state_contingent + step: Update Operation State + arguments: + state: CONTINGENT +- id: update_state_ended + step: Update Operation State + arguments: + state: ENDED +- step: Teardown Flight Declaration diff --git a/scenarios/README.md b/scenarios/README.md new file mode 100644 index 0000000..21bb209 --- /dev/null +++ b/scenarios/README.md @@ -0,0 +1,143 @@ +# YAML Scenarios + +Scenarios are defined as YAML files in this folder. Python-based scenario modules have been removed; YAML is the single source of truth. + +## Quick Start +- Create a new file in this directory with a `.yaml` extension. +- Provide `name`, optional `description`, and a list of `steps`. +- Each `step` references a registered operation by its display name and can provide `arguments`. + +Example: + +```yaml +name: sdsp_heartbeat +description: Runs the SDSP heartbeat scenario. + +steps: + - step: Generate UUID + + - id: start_session + step: Start / Stop SDSP Session + arguments: + action: START + session_id: ${{ steps.Generate UUID.result }} + + - step: Wait X seconds + arguments: + duration: 2 + + - step: Verify SDSP Heartbeat + arguments: + session_id: ${{ steps.Generate UUID.result }} + expected_heartbeat_interval_seconds: 1 + expected_heartbeat_count: 3 + + - id: wait_verification + step: Wait X seconds + arguments: + duration: 5 + + - step: Start / Stop SDSP Session + arguments: + action: STOP + session_id: ${{ steps.Generate UUID.result }} +``` + +## Step Groups (Reusable Step Collections) + +Groups allow you to define reusable collections of steps that can be referenced multiple times or looped as a single unit. + +### Defining Groups + +Use the optional `groups` section to define named step collections: + +```yaml +name: opensky_live_data +description: Fetch live flight data and submit to Flight Blender. + +groups: + fetch_and_submit_opensky: + description: Fetches OpenSky data and submits it to Flight Blender + steps: + - id: fetch + step: Fetch OpenSky Data + + - id: submit + step: Submit Air Traffic + arguments: + observations: ${{ group.fetch.result }} + + - id: wait + step: Wait X seconds + arguments: + duration: 3 + +steps: + # Execute the group once + - step: fetch_and_submit_opensky + + # Execute the group in a loop + - step: fetch_and_submit_opensky + loop: + count: 5 +``` + +### Group Features + +- **Step References Within Groups**: Use `${{ group..result }}` to reference results from other steps within the same group execution. +- **Looping Groups**: Groups can be looped just like regular steps using `loop.count`, `loop.items`, or `loop.while`. +- **Group Reuse**: The same group can be referenced multiple times in the `steps` section. +- **Conditions on Groups**: Groups can have conditions (`if` field) just like regular steps. + +### Example: Looped Group with Internal References + +```yaml +groups: + process_data: + steps: + - id: fetch + step: Fetch Data + + - id: process + step: Process Data + arguments: + data: ${{ group.fetch.result }} + + - id: submit + step: Submit Results + arguments: + results: ${{ group.process.result }} + +steps: + - step: process_data + loop: + count: 3 +``` + +## Referencing Prior Step Results +- Use the expression syntax: `${{ steps..result }}` to inject values from previous steps. +- Within groups, use: `${{ group..result }}` to reference other steps in the same group execution. +- Loop indices can be referenced with bracket notation: `steps.my_step[2].result`. +- Loop variables are available via `loop.index` and `loop.item` inside looped steps. + +## Conditions & Status +- Default step condition: runs only if prior steps are `success()`. +- Available status strings: `success`, `failure`, `running`, `skipped`. +- You can use conditions like `always()`, `success()`, `failure()` and combined references (e.g., `steps.Upload Flight Declaration.status == 'success'`). + +## Validation +To validate scenarios locally: + +```bash +cd .. +python -m pytest tests/test_yaml_scenarios.py -q --tb=no +``` + +## Discovering Available Operations +The system exposes registered operations used in YAML (e.g., `Generate UUID`, `Wait X seconds`, `Start / Stop SDSP Session`). These are provided by clients and discovered at runtime. In the web editor, you can browse and insert these operations directly. + +## Tips +- Keep `id` short and unique if you plan to reference a step later. +- Use `arguments` to pass parameters; file paths and IDs can be injected via references. +- Prefer bracket references when using loops to access specific iterations. +- Use groups to reduce repetition when the same sequence of steps needs to be executed multiple times or with loops. diff --git a/scenarios/add_flight_declaration.yaml b/scenarios/add_flight_declaration.yaml new file mode 100644 index 0000000..b10b3dc --- /dev/null +++ b/scenarios/add_flight_declaration.yaml @@ -0,0 +1,16 @@ +name: add_flight_declaration +description: Runs the add flight declaration scenario. +steps: +- step: Setup Flight Declaration +- step: Update Operation State + arguments: + state: ACTIVATED + duration: 20 +- step: Submit Telemetry + arguments: + duration: 30 +- id: update_state_ended + step: Update Operation State + arguments: + state: ENDED +- step: Teardown Flight Declaration diff --git a/scenarios/add_flight_declaration_via_operational_intent.yaml b/scenarios/add_flight_declaration_via_operational_intent.yaml new file mode 100644 index 0000000..f3743f0 --- /dev/null +++ b/scenarios/add_flight_declaration_via_operational_intent.yaml @@ -0,0 +1,16 @@ +name: add_flight_declaration_via_operational_intent +description: Runs the add flight declaration via operational intent scenario. +steps: +- step: Setup Flight Declaration via Operational Intent +- step: Update Operation State + arguments: + state: ACTIVATED + duration: 5 +- step: Wait X seconds + arguments: + duration: 10 +- id: update_state_ended + step: Update Operation State + arguments: + state: ENDED +- step: Teardown Flight Declaration diff --git a/scenarios/bluesky_sim_air_traffic_data.yaml b/scenarios/bluesky_sim_air_traffic_data.yaml new file mode 100644 index 0000000..d10a168 --- /dev/null +++ b/scenarios/bluesky_sim_air_traffic_data.yaml @@ -0,0 +1,8 @@ +name: bluesky_sim_air_traffic_data +description: Blue Sky test +steps: +- id: generate_bluesky_simulation_air_traffic_data + step: Generate BlueSky Simulation Air Traffic Data +- step: Submit Simulated Air Traffic + arguments: + observations: ${{ steps.generate_bluesky_simulation_air_traffic_data.result }} diff --git a/scenarios/geo_fence_upload.yaml b/scenarios/geo_fence_upload.yaml new file mode 100644 index 0000000..e956292 --- /dev/null +++ b/scenarios/geo_fence_upload.yaml @@ -0,0 +1,6 @@ +name: geo_fence_upload +description: Upload a geo-fence (Area of Interest) and then delete it (teardown). + +steps: + - step: Upload Geo Fence + - step: Get Geo Fence diff --git a/scenarios/opensky_live_data.yaml b/scenarios/opensky_live_data.yaml new file mode 100644 index 0000000..0b4729e --- /dev/null +++ b/scenarios/opensky_live_data.yaml @@ -0,0 +1,24 @@ +name: opensky_live_data +description: Fetch live flight data from OpenSky and submit to Flight Blender. + +groups: + fetch_and_submit_opensky: + description: Fetches OpenSky data and submits it to Flight Blender + steps: + - id: fetch + step: Fetch OpenSky Data + + - id: submit + step: Submit Air Traffic + arguments: + observations: ${{ steps.fetch.result }} + + - id: wait + step: Wait X seconds + arguments: + duration: 3 + +steps: + - step: fetch_and_submit_opensky + loop: + count: 5 diff --git a/scenarios/openutm_sim_air_traffic_data.yaml b/scenarios/openutm_sim_air_traffic_data.yaml new file mode 100644 index 0000000..c3e6352 --- /dev/null +++ b/scenarios/openutm_sim_air_traffic_data.yaml @@ -0,0 +1,9 @@ +name: openutm_sim_air_traffic_data +description: Generate simulated air traffic data using OpenSky client and submit to Flight Blender. + +steps: + - step: Generate Simulated Air Traffic Data + + - step: Submit Simulated Air Traffic + arguments: + observations: ${{ steps.Generate Simulated Air Traffic Data.result }} diff --git a/scenarios/sdsp_heartbeat.yaml b/scenarios/sdsp_heartbeat.yaml new file mode 100644 index 0000000..e34fa1d --- /dev/null +++ b/scenarios/sdsp_heartbeat.yaml @@ -0,0 +1,31 @@ +name: sdsp_heartbeat +description: Runs the SDSP heartbeat scenario. + +steps: + - step: Generate UUID + + - id: start_session + step: Start / Stop SDSP Session + arguments: + action: START + session_id: ${{ steps.Generate UUID.result }} + + - step: Wait X seconds + arguments: + duration: 2 + + - step: Verify SDSP Heartbeat + arguments: + session_id: ${{ steps.Generate UUID.result }} + expected_heartbeat_interval_seconds: 1 + expected_heartbeat_count: 3 + + - id: wait_verification + step: Wait X seconds + arguments: + duration: 5 + + - step: Start / Stop SDSP Session + arguments: + action: STOP + session_id: ${{ steps.Generate UUID.result }} diff --git a/scenarios/sdsp_track.yaml b/scenarios/sdsp_track.yaml new file mode 100644 index 0000000..c3013d9 --- /dev/null +++ b/scenarios/sdsp_track.yaml @@ -0,0 +1,34 @@ +name: sdsp_track +description: Runs the SDSP track scenario. +steps: +- step: Generate UUID +- id: start_sdsp_session + step: Start / Stop SDSP Session + arguments: + session_id: ${{ steps.Generate UUID.result }} + action: START +- step: Generate Simulated Air Traffic Data +- step: Submit Simulated Air Traffic + arguments: + observations: ${{ steps.Generate Simulated Air Traffic Data.result }} + background: true +- id: wait_2_seconds + step: Wait X seconds + arguments: + duration: 2 +- step: Verify SDSP Track + arguments: + expected_track_interval_seconds: 1 + expected_track_count: 3 + session_id: ${{ steps.Generate UUID.result }} +- id: wait_5_seconds + step: Wait X seconds + arguments: + duration: 5 +- id: stop_sdsp_session + step: Start / Stop SDSP Session + arguments: + session_id: ${{ steps.Generate UUID.result }} + action: STOP + needs: + - Submit Simulated Air Traffic diff --git a/scripts/generate_docs.py b/scripts/generate_docs.py new file mode 100644 index 0000000..34dc018 --- /dev/null +++ b/scripts/generate_docs.py @@ -0,0 +1,78 @@ +from pathlib import Path + +import yaml + +# Define paths +BASE_DIR = Path(__file__).resolve().parents[1] +SCENARIOS_DIR = BASE_DIR / "scenarios" +DOCS_DIR = BASE_DIR / "docs" / "scenarios" + + +def format_title(name): + return name.replace("_", " ").title() + + +def generate_markdown(scenario_data): + name = scenario_data.get("name", "Unknown Scenario") + description = scenario_data.get("description", "No description provided.") + steps = scenario_data.get("steps", []) + + md_content = f"# {format_title(name)}\n\n" + md_content += f"{description}\n\n" + md_content += "## Steps Sequence\n\n" + + for idx, step in enumerate(steps, 1): + step_name = step.get("step", "Unknown Step") + step_id = step.get("id") + step_desc = step.get("description") + arguments = step.get("arguments") + + md_content += f"### {idx}. {step_name}\n" + if step_desc: + md_content += f"{step_desc}\n\n" + + if step_id: + md_content += f"**ID:** `{step_id}`\n\n" + + if arguments: + md_content += "**Arguments:**\n" + for key, value in arguments.items(): + md_content += f"- `{key}`: {value}\n" + md_content += "\n" + else: + md_content += "\n" + + return md_content + + +def main(): + if not SCENARIOS_DIR.exists(): + print(f"Scenarios directory not found: {SCENARIOS_DIR}") + return + + DOCS_DIR.mkdir(parents=True, exist_ok=True) + + for yaml_file in SCENARIOS_DIR.glob("*.yaml"): + print(f"Processing {yaml_file.name}...") + try: + with open(yaml_file, "r") as f: + data = yaml.safe_load(f) + + if not data: + print(f"Skipping empty file: {yaml_file.name}") + continue + + md_content = generate_markdown(data) + + md_filename = DOCS_DIR / yaml_file.with_suffix(".md").name + with open(md_filename, "w") as f: + f.write(md_content) + + print(f"Generated {md_filename}") + + except Exception as e: + print(f"Error processing {yaml_file.name}: {e}") + + +if __name__ == "__main__": + main() diff --git a/scripts/run.sh b/scripts/run.sh index a65cae2..c72e692 100755 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -13,6 +13,7 @@ source "$SCRIPT_DIR/common.sh" readonly COMPOSE_FILE="docker-compose.yml" readonly SERVICE_NAME="verification-tool" readonly DEV_SERVICE_NAME="verification-dev" +readonly SERVER_SERVICE_NAME="verification-server" # Check if Docker and Docker Compose are available # Note: check_dependencies is now sourced from common.sh @@ -49,6 +50,7 @@ Usage: $0 [OPTIONS] [ARGS...] Options: -d, --dev Run in development mode with hot reload -p, --production Run in production mode (default) + -s, --server Run in server mode (starts API and UI) -b, --build Build images before running --clean Clean up containers and images after run -v, --verbose Enable verbose output @@ -60,6 +62,7 @@ Arguments: Examples: $0 # Run with default config $0 --config config/custom.yaml # Run with custom config + $0 --server # Run in server mode $0 --debug # Run with debug logging $0 --dev --build # Build and run in development mode $0 --clean --config config/test.yaml # Clean up after run @@ -120,6 +123,32 @@ run_development() { -e HOST_UID="${HOST_UID}" -e HOST_GID="${HOST_GID}" \ "${DEV_SERVICE_NAME}" "$@" } +# Run in server mode +run_server() { + log_info "Running verification tool in server mode..." + + local build_opts=() + if [[ "${VERBOSE}" == "true" ]]; then + log_info "Verbose mode enabled - additional logging will be shown" + build_opts+=("-v") + fi + + if [[ "${BUILD_FIRST}" == "true" ]]; then + log_info "Building production image first..." + ./scripts/build.sh ${build_opts[@]+"${build_opts[@]}"} production + fi + + local compose_opts=() + if [[ "${VERBOSE}" == "true" ]]; then + log_info "Starting container with verbose output..." + compose_opts+=("--verbose") + fi + + # For server mode, we use 'up' instead of 'run' to keep the service running + # and we don't use --rm because we might want to inspect logs + docker compose ${compose_opts[@]+"${compose_opts[@]}"} --profile server up \ + "${SERVER_SERVICE_NAME}" +} # Cleanup function for run script run_cleanup() { @@ -159,6 +188,10 @@ main() { VERBOSE="true" shift ;; + -s|--server) + RUN_MODE="server" + shift + ;; -h|--help) show_usage exit 0 @@ -190,6 +223,9 @@ main() { "development") run_development "$@" ;; + "server") + run_server "$@" + ;; *) log_error "Invalid run mode: ${RUN_MODE}" exit 1 diff --git a/src/openutm_verification/cli/__init__.py b/src/openutm_verification/cli/__init__.py index 6184ae2..6bfcb3e 100644 --- a/src/openutm_verification/cli/__init__.py +++ b/src/openutm_verification/cli/__init__.py @@ -10,9 +10,11 @@ import yaml from openutm_verification.cli.parser import create_parser -from openutm_verification.core import run_verification_scenarios from openutm_verification.core.execution.config_models import AppConfig, ConfigProxy +from openutm_verification.core.execution.execution import run_verification_scenarios +from openutm_verification.server.runner import SessionManager from openutm_verification.utils.logging import setup_logging +from openutm_verification.utils.time_utils import get_run_timestamp_str def main(): @@ -22,6 +24,12 @@ def main(): parser = create_parser() args = parser.parse_args() + if args.server: + from openutm_verification.server.main import start_server_mode + + start_server_mode(config_path=args.config) + sys.exit(0) + # Load configuration config_path = Path(args.config) with open(config_path, "r", encoding="utf-8") as f: @@ -43,20 +51,23 @@ def main(): # Setup logging run_timestamp = datetime.now(timezone.utc) - timestamp_str = run_timestamp.strftime("%Y-%m-%dT%H-%M-%SZ") + timestamp_str = get_run_timestamp_str(run_timestamp) base_output_dir = Path(config.reporting.output_dir) - output_dir = base_output_dir / f"run_{timestamp_str}" + config.reporting.timestamp_subdir = timestamp_str + output_dir = base_output_dir / timestamp_str output_dir.mkdir(parents=True, exist_ok=True) - # Update config so downstream components use the new directory - config.reporting.output_dir = str(output_dir) - base_filename = "report" log_file = setup_logging(output_dir, base_filename, config.reporting.formats, args.debug) + # Reuse the same SessionManager object as the server + session_manager = SessionManager(config_path=str(config_path)) + session_manager.config = config + session_manager.config_path = config_path + # Run verification scenarios - failed = asyncio.run(run_verification_scenarios(config, args.config)) + failed = asyncio.run(run_verification_scenarios(config, config_path, session_manager=session_manager)) if log_file: from loguru import logger diff --git a/src/openutm_verification/cli/parser.py b/src/openutm_verification/cli/parser.py index 94f0374..1b3fd3e 100644 --- a/src/openutm_verification/cli/parser.py +++ b/src/openutm_verification/cli/parser.py @@ -27,4 +27,9 @@ def create_parser() -> argparse.ArgumentParser: action="append", help="Name of the test suite to run (overrides individual scenarios). Can be specified multiple times.", ) + parser.add_argument( + "--server", + action="store_true", + help="Run in server mode (starts the API and Web UI).", + ) return parser diff --git a/src/openutm_verification/core/__init__.py b/src/openutm_verification/core/__init__.py index 1e6ca90..67ddc78 100644 --- a/src/openutm_verification/core/__init__.py +++ b/src/openutm_verification/core/__init__.py @@ -2,6 +2,4 @@ Core execution logic for the OpenUTM Verification Tool. """ -from openutm_verification.core.execution import run_verification_scenarios - -__all__ = ["run_verification_scenarios"] +__all__ = [] diff --git a/src/openutm_verification/core/clients/air_traffic/air_traffic_client.py b/src/openutm_verification/core/clients/air_traffic/air_traffic_client.py index d6a2f0f..d7813ff 100644 --- a/src/openutm_verification/core/clients/air_traffic/air_traffic_client.py +++ b/src/openutm_verification/core/clients/air_traffic/air_traffic_client.py @@ -50,7 +50,7 @@ async def generate_simulated_air_traffic_data( List of simulated flight observation dictionaries, or None if generation fails. """ config_path = config_path or self.settings.simulation_config_path - duration = duration or self.settings.simulation_duration_seconds + duration = duration or self.settings.simulation_duration number_of_aircraft = self.settings.number_of_aircraft session_ids = self.settings.sensor_ids diff --git a/src/openutm_verification/core/clients/air_traffic/base_client.py b/src/openutm_verification/core/clients/air_traffic/base_client.py index a29206e..cbcdc48 100644 --- a/src/openutm_verification/core/clients/air_traffic/base_client.py +++ b/src/openutm_verification/core/clients/air_traffic/base_client.py @@ -14,7 +14,7 @@ class AirTrafficSettings(BaseSettings): # Simulation settings simulation_config_path: str - simulation_duration_seconds: int = 30 + simulation_duration: int = 30 number_of_aircraft: int = 2 single_or_multiple_sensors: str = "single" sensor_ids: list[str] = [] @@ -35,7 +35,7 @@ def create_air_traffic_settings() -> AirTrafficSettings: """Factory function to create AirTrafficSettings from config after initialization.""" return AirTrafficSettings( simulation_config_path=config.data_files.trajectory or "", - simulation_duration_seconds=config.air_traffic_simulator_settings.simulation_duration_seconds or 30, + simulation_duration=config.air_traffic_simulator_settings.simulation_duration or 30, number_of_aircraft=config.air_traffic_simulator_settings.number_of_aircraft or 2, single_or_multiple_sensors=config.air_traffic_simulator_settings.single_or_multiple_sensors or "single", sensor_ids=config.air_traffic_simulator_settings.sensor_ids or [], diff --git a/src/openutm_verification/core/clients/air_traffic/blue_sky_client.py b/src/openutm_verification/core/clients/air_traffic/blue_sky_client.py index 82352ae..55e4046 100644 --- a/src/openutm_verification/core/clients/air_traffic/blue_sky_client.py +++ b/src/openutm_verification/core/clients/air_traffic/blue_sky_client.py @@ -1,5 +1,7 @@ from __future__ import annotations +import os +import tempfile import uuid from collections.abc import Iterable from uuid import UUID @@ -66,65 +68,69 @@ async def generate_bluesky_sim_air_traffic_data( # ---- Init BlueSky headless ---- # detached=True prevents UI/event loop from blocking. - bs.init(mode="sim", detached=True) - - # Route console output to stdout (useful for debugging stack commands) - bs.scr = ScreenDummy() - now = arrow.now() - logger.info(f"Initializing BlueSky (headless) and loading scenario: {scn_path} with duration {duration_s}s") - - # ---- Load scenario ---- - # BlueSky scenario files (like scenario/DEMO/bluesky_flight.scn) are typically loaded with IC. - # NOTE: Use absolute paths if relative paths cause issues inside Docker. - bs.stack.stack(f"IC {scn_path}") - - # Ensure 1 Hz stepping; FF starts fast-time running mode, but we will still step manually. - # Some setups work fine with DT 1 and calling bs.sim.step(). - bs.stack.stack("DT 1.0") - - # ---- Sample data at 1 Hz for duration_s seconds ---- - # Store per-aircraft series - results_by_acid: dict[str, list[FlightObservationSchema]] = {} - - for t in range(1, duration_s + 1): - # Advance sim by one step (DT=1 sec) - bs.sim.step() - timestamp = now.shift(seconds=t) - timestamp_microseconds = int(timestamp.float_timestamp * 1_000_000) # microseconds - - # Snapshot traffic arrays - acids: list[str] = list(getattr(bs.traf, "id", [])) - lats: list[float] = _tolist(getattr(bs.traf, "lat", [])) - lons: list[float] = _tolist(getattr(bs.traf, "lon", [])) - alts: list[float] = _tolist(getattr(bs.traf, "alt", [])) - - for i, acid in enumerate(acids): - lat = float(lats[i]) - lon = float(lons[i]) - alt_m_or_ft = float(alts[i]) - - # BlueSky typically uses meters internally for alt, but some scenarios use FL/ft inputs. - # We store altitude_mm as "millimeters"; keep it consistent with your schema. - # If alt is actually feet, you can convert here: alt_m = alt_ft * 0.3048 - altitude_mm = alt_m_or_ft * 1000.0 - metadata = {"session_id": current_session_id} if current_session_id else {} - - obs = FlightObservationSchema( - lat_dd=lat, - lon_dd=lon, - altitude_mm=altitude_mm, - traffic_source=0, - source_type=0, - icao_address=acid, - timestamp=timestamp_microseconds, - metadata=metadata, - ) - results_by_acid.setdefault(acid, []).append(obs) - - logger.debug(f"{acid:>6} lat={lat:.6f} lon={lon:.6f} alt_mm={altitude_mm:.1f}") - - # Convert dict -> list[list[FlightObservationSchema]] with stable ordering - return [results_by_acid[acid] for acid in sorted(results_by_acid.keys())] + # Use a temporary directory for BlueSky working files to avoid polluting ~/bluesky + # BlueSky's pathfinder.init() auto-creates required subdirs (scenario, plugins, output, cache) + with tempfile.TemporaryDirectory(prefix="openutm-bluesky-") as tmp_dir: + cfg_path = os.path.join(tmp_dir, "settings.cfg") + bs.init(mode="sim", detached=True, workdir=tmp_dir, configfile=cfg_path) + + # Route console output to stdout (useful for debugging stack commands) + bs.scr = ScreenDummy() + now = arrow.now() + logger.info(f"Initializing BlueSky (headless) and loading scenario: {scn_path} with duration {duration_s}s") + + # ---- Load scenario ---- + # BlueSky scenario files (like scenario/DEMO/bluesky_flight.scn) are typically loaded with IC. + # NOTE: Use absolute paths if relative paths cause issues inside Docker. + bs.stack.stack(f"IC {scn_path}") + + # Ensure 1 Hz stepping; FF starts fast-time running mode, but we will still step manually. + # Some setups work fine with DT 1 and calling bs.sim.step(). + bs.stack.stack("DT 1.0") + + # ---- Sample data at 1 Hz for duration_s seconds ---- + # Store per-aircraft series + results_by_acid: dict[str, list[FlightObservationSchema]] = {} + + for t in range(1, duration_s + 1): + # Advance sim by one step (DT=1 sec) + bs.sim.step() + timestamp = now.shift(seconds=t) + timestamp_microseconds = int(timestamp.float_timestamp * 1_000_000) # microseconds + + # Snapshot traffic arrays + acids: list[str] = list(getattr(bs.traf, "id", [])) + lats: list[float] = _tolist(getattr(bs.traf, "lat", [])) + lons: list[float] = _tolist(getattr(bs.traf, "lon", [])) + alts: list[float] = _tolist(getattr(bs.traf, "alt", [])) + + for i, acid in enumerate(acids): + lat = float(lats[i]) + lon = float(lons[i]) + alt_m_or_ft = float(alts[i]) + + # BlueSky typically uses meters internally for alt, but some scenarios use FL/ft inputs. + # We store altitude_mm as "millimeters"; keep it consistent with your schema. + # If alt is actually feet, you can convert here: alt_m = alt_ft * 0.3048 + altitude_mm = alt_m_or_ft * 1000.0 + metadata = {"session_id": current_session_id} if current_session_id else {} + + obs = FlightObservationSchema( + lat_dd=lat, + lon_dd=lon, + altitude_mm=altitude_mm, + traffic_source=0, + source_type=0, + icao_address=acid, + timestamp=timestamp_microseconds, + metadata=metadata, + ) + results_by_acid.setdefault(acid, []).append(obs) + + logger.debug(f"{acid:>6} lat={lat:.6f} lon={lon:.6f} alt_mm={altitude_mm:.1f}") + + # Convert dict -> list[list[FlightObservationSchema]] with stable ordering + return [results_by_acid[acid] for acid in sorted(results_by_acid.keys())] def _tolist(x: Iterable[float] | object) -> list[float]: diff --git a/src/openutm_verification/core/clients/common/common_client.py b/src/openutm_verification/core/clients/common/common_client.py new file mode 100644 index 0000000..1c30e6b --- /dev/null +++ b/src/openutm_verification/core/clients/common/common_client.py @@ -0,0 +1,21 @@ +import asyncio +import uuid + +from loguru import logger + +from openutm_verification.core.execution.scenario_runner import scenario_step + + +class CommonClient: + @scenario_step("Generate UUID") + async def generate_uuid(self) -> str: + """Generates a random UUID.""" + return str(uuid.uuid4()) + + @scenario_step("Wait X seconds") + async def wait(self, duration: int = 5) -> str: + """Wait for a specified number of seconds.""" + logger.info(f"Waiting for {duration} seconds...") + await asyncio.sleep(duration) + logger.info(f"Waited for {duration} seconds.") + return f"Waited for Flight Blender to process {duration} seconds." diff --git a/src/openutm_verification/core/clients/flight_blender/base_client.py b/src/openutm_verification/core/clients/flight_blender/base_client.py index af2b4d4..f5725f6 100644 --- a/src/openutm_verification/core/clients/flight_blender/base_client.py +++ b/src/openutm_verification/core/clients/flight_blender/base_client.py @@ -1,6 +1,6 @@ import httpx from loguru import logger -from websocket import WebSocket, create_connection +from websockets.asyncio.client import ClientConnection, connect from openutm_verification.models import FlightBlenderError @@ -63,7 +63,7 @@ async def __aenter__(self): async def __aexit__(self, exc_type, exc_val, exc_tb): await self.client.aclose() - def create_websocket_connection(self, endpoint) -> WebSocket: + async def create_websocket_connection(self, endpoint) -> ClientConnection: """Create and return a WebSocket connection to the Flight Blender service. This method establishes a WebSocket connection using the configured @@ -76,18 +76,18 @@ def create_websocket_connection(self, endpoint) -> WebSocket: websocket_base_url = self.base_url.replace("http", "ws") websocket_url = f"{websocket_base_url}{endpoint}" try: - websocket_connection = create_connection(websocket_url) + websocket_connection = await connect(websocket_url) except ConnectionRefusedError: logger.error(f"Failed to connect to WebSocket at {websocket_url}") raise FlightBlenderError("WebSocket connection failed") from None if "Authorization" in self.client.headers: - websocket_connection.send(self.client.headers["Authorization"]) + await websocket_connection.send(self.client.headers["Authorization"]) return websocket_connection - def close_websocket_connection(self, ws_connection: WebSocket) -> None: + async def close_websocket_connection(self, ws_connection: ClientConnection) -> None: """Close the given WebSocket connection. Args: ws_connection: The WebSocket connection object to close. """ - ws_connection.close() + await ws_connection.close() diff --git a/src/openutm_verification/core/clients/flight_blender/flight_blender_client.py b/src/openutm_verification/core/clients/flight_blender/flight_blender_client.py index 79ef550..8ed772b 100644 --- a/src/openutm_verification/core/clients/flight_blender/flight_blender_client.py +++ b/src/openutm_verification/core/clients/flight_blender/flight_blender_client.py @@ -10,12 +10,11 @@ from loguru import logger from pydantic import BaseModel from uas_standards.astm.f3411.v22a.api import RIDAircraftState -from websocket import WebSocket +from websockets.asyncio.client import ClientConnection from openutm_verification.core.clients.flight_blender.base_client import ( BaseBlenderAPIClient, ) -from openutm_verification.core.execution.config_models import DataFiles from openutm_verification.core.execution.scenario_runner import ( ScenarioContext, scenario_step, @@ -43,6 +42,8 @@ from openutm_verification.simulator.models.flight_data_types import ( FlightObservationSchema, ) +from openutm_verification.utils.time_utils import parse_duration +from openutm_verification.utils.websocket_utils import receive_messages_for_duration def _create_rid_operator_details(operation_id: str) -> RIDOperatorDetails: @@ -86,7 +87,16 @@ class FlightBlenderClient(BaseBlenderAPIClient): latest_flight_declaration_id: The ID of the most recently uploaded flight declaration. """ - def __init__(self, base_url: str, credentials: dict, request_timeout: int = 10) -> None: + def __init__( + self, + base_url: str, + credentials: dict, + request_timeout: int = 10, + flight_declaration_path: str | None = None, + flight_declaration_via_operational_intent: str | None = None, + trajectory_path: str | None = None, + geo_fence_path: str | None = None, + ) -> None: super().__init__(base_url=base_url, credentials=credentials, request_timeout=request_timeout) # Context: store the most recently created geo-fence id for teardown convenience self.latest_geo_fence_id: str | None = None @@ -94,6 +104,12 @@ def __init__(self, base_url: str, credentials: dict, request_timeout: int = 10) self.latest_flight_declaration_id: str | None = None # Context: store the generated telemetry states for the current scenario self.telemetry_states: list[RIDAircraftState] | None = None + + self.flight_declaration_path = flight_declaration_path + self.trajectory_path = trajectory_path + self.geo_fence_path = geo_fence_path + self.flight_declaration_via_operational_intent = flight_declaration_via_operational_intent + logger.debug(f"Initialized FlightBlenderClient with base_url={base_url}, request_timeout={request_timeout}") async def __aexit__(self, exc_type: Any, exc_val: Any, exc_tb: Any) -> None: @@ -121,8 +137,9 @@ async def upload_geo_fence(self, filename: str | None = None) -> dict[str, Any]: FlightBlenderError: If the upload request fails. json.JSONDecodeError: If the file content is invalid JSON. """ + filename = filename or self.geo_fence_path if filename is None: - raise ValueError("filename parameter is required for upload_geo_fence") + raise ValueError("filename parameter is required for upload_geo_fence and no default found in config") endpoint = "/geo_fence_ops/set_geo_fence" logger.debug(f"Uploading geo fence from {filename}") with open(filename, "r", encoding="utf-8") as geo_fence_json_file: @@ -324,14 +341,14 @@ async def wait_for_user_input(self, prompt: str = "Press Enter to continue...") return input(prompt) @scenario_step("Update Operation State") - async def update_operation_state(self, new_state: OperationState, duration_seconds: int = 0) -> dict[str, Any]: + async def update_operation_state(self, state: OperationState, duration: str | int | float = 0) -> dict[str, Any]: """Update the state of a flight operation. Posts the new state and optionally waits for the specified duration. Args: - new_state: The new OperationState to set. - duration_seconds: Optional seconds to sleep after update (default 0). + state: The new OperationState to set. + duration: Optional duration to sleep after update (default 0). Can be a number (seconds) or a string (e.g., "5s", "1m"). Returns: The JSON response from the API. @@ -339,12 +356,13 @@ async def update_operation_state(self, new_state: OperationState, duration_secon Raises: FlightBlenderError: If the update request fails. """ + duration_seconds = parse_duration(duration) endpoint = f"/flight_declaration_ops/flight_declaration_state/{self.latest_flight_declaration_id}" - logger.debug(f"Updating operation {self.latest_flight_declaration_id} to state {new_state.name}") - payload = {"state": new_state.value, "submitted_by": "hh@auth.com"} + logger.debug(f"Updating operation {self.latest_flight_declaration_id} to state {state.name}") + payload = {"state": state.value, "submitted_by": "hh@auth.com"} response = await self.put(endpoint, json=payload) - logger.info(f"Operation state updated for {self.latest_flight_declaration_id} to {new_state.name}") + logger.info(f"Operation state updated for {self.latest_flight_declaration_id} to {state.name}") if duration_seconds > 0: logger.debug(f"Sleeping for {duration_seconds} seconds after state update") await asyncio.sleep(duration_seconds) @@ -367,12 +385,13 @@ def _load_telemetry_file(self, filename: str) -> list[RIDAircraftState]: rid_json = json.loads(rid_json_file.read()) return [RIDAircraftState(**state) for state in rid_json["current_states"]] - async def _submit_telemetry_states_impl(self, states: list[RIDAircraftState], duration_seconds: int = 0) -> dict[str, Any] | None: + async def _submit_telemetry_states_impl(self, states: list[RIDAircraftState], duration: str | int | float = 0) -> dict[str, Any] | None: """Internal implementation for submitting telemetry states. Args: states: List of telemetry state dictionaries. - duration_seconds: Optional maximum duration in seconds to submit telemetry (default 0 for unlimited). + duration: Optional maximum duration to submit telemetry (default 0 for unlimited). Can be a number (seconds) or a string + (e.g., "5s", "1m"). Returns: The JSON response from the last telemetry submission, or None if no submissions occurred. @@ -380,6 +399,7 @@ async def _submit_telemetry_states_impl(self, states: list[RIDAircraftState], du Raises: FlightBlenderError: If maximum waiting time is exceeded due to rate limits. """ + duration_seconds = parse_duration(duration) endpoint = "/flight_stream/set_telemetry" assert self.latest_flight_declaration_id is not None, "Latest flight declaration ID must be set" logger.debug(f"Submitting telemetry for operation {self.latest_flight_declaration_id}") @@ -422,7 +442,7 @@ async def _submit_telemetry_states_impl(self, states: list[RIDAircraftState], du return last_response @scenario_step("Submit Telemetry (from file)") - async def submit_telemetry_from_file(self, filename: str, duration_seconds: int = 0) -> dict[str, Any] | None: + async def submit_telemetry_from_file(self, filename: str, duration: str | int | float = 0) -> dict[str, Any] | None: """Submit telemetry data for a flight operation. Loads telemetry states from file and submits them sequentially, with optional @@ -430,7 +450,8 @@ async def submit_telemetry_from_file(self, filename: str, duration_seconds: int Args: filename: Path to the JSON file containing telemetry data. - duration_seconds: Optional maximum duration in seconds to submit telemetry (default 0 for unlimited). + duration: Optional maximum duration to submit telemetry (default 0 for unlimited). Can be a number (seconds) or a string + (e.g., "5s", "1m"). Returns: The JSON response from the last telemetry submission, or None if no submissions occurred. @@ -439,18 +460,10 @@ async def submit_telemetry_from_file(self, filename: str, duration_seconds: int FlightBlenderError: If maximum waiting time is exceeded due to rate limits. """ states = self._load_telemetry_file(filename) - return await self._submit_telemetry_states_impl(states, duration_seconds) - - @scenario_step("Wait X seconds") - async def wait_x_seconds(self, wait_time_seconds: int = 5) -> str: - """Wait for a specified number of seconds.""" - logger.info(f"Waiting for {wait_time_seconds} seconds...") - await asyncio.sleep(wait_time_seconds) - logger.info(f"Waited for {wait_time_seconds} seconds.") - return f"Waited for Flight Blender to process {wait_time_seconds} seconds." + return await self._submit_telemetry_states_impl(states, duration) @scenario_step("Submit Telemetry") - async def submit_telemetry(self, states: list[RIDAircraftState] | None = None, duration_seconds: int = 0) -> dict[str, Any] | None: + async def submit_telemetry(self, states: list[RIDAircraftState] | None = None, duration: str | int | float = 0) -> dict[str, Any] | None: """Submit telemetry data for a flight operation from in-memory states. Submits telemetry states sequentially from the provided list, with optional @@ -458,7 +471,8 @@ async def submit_telemetry(self, states: list[RIDAircraftState] | None = None, d Args: states: List of telemetry state dictionaries. If None, uses the generated telemetry states from context. - duration_seconds: Optional maximum duration in seconds to submit telemetry (default 0 for unlimited). + duration: Optional maximum duration to submit telemetry (default 0 for unlimited). Can be a number (seconds) or a string + (e.g., "5s", "1m"). Returns: The JSON response from the last telemetry submission, or None if no submissions occurred. @@ -470,13 +484,13 @@ async def submit_telemetry(self, states: list[RIDAircraftState] | None = None, d if telemetry_states is None: raise ValueError("Telemetry states are required and could not be resolved from context.") - return await self._submit_telemetry_states_impl(telemetry_states, duration_seconds) + return await self._submit_telemetry_states_impl(telemetry_states, duration) @scenario_step("Check Operation State") async def check_operation_state( self, expected_state: OperationState, - duration_seconds: int = 0, + duration: str | int | float = 0, ) -> str: """Check the operation state (simulated). @@ -485,11 +499,12 @@ async def check_operation_state( Args: expected_state: The expected OperationState. - duration_seconds: Seconds to wait for processing. + duration: Duration to wait for processing. Can be a number (seconds) or a string (e.g., "5s", "1m"). Returns: A dictionary with the check result. """ + duration_seconds = parse_duration(duration) logger.info(f"Checking operation state for {self.latest_flight_declaration_id} (simulated)...") logger.info(f"Waiting for {duration_seconds} seconds for Flight Blender to process state...") await asyncio.sleep(duration_seconds) @@ -500,13 +515,13 @@ async def check_operation_state( async def check_operation_state_connected( self, expected_state: OperationState, - duration_seconds: int = 0, + duration: str | int | float = 0, ) -> dict[str, Any]: """Check the operation state by polling the API until the expected state is reached. Args: expected_state: The expected OperationState. - duration_seconds: Maximum seconds to poll for the state. + duration: Maximum duration to poll for the state. Can be a number (seconds) or a string (e.g., "5s", "1m"). Returns: The JSON response from the API when the state is reached. @@ -514,6 +529,7 @@ async def check_operation_state_connected( Raises: FlightBlenderError: If the expected state is not reached within the timeout. """ + duration_seconds = parse_duration(duration) endpoint = f"/flight_declaration_ops/flight_declaration/{self.latest_flight_declaration_id}" logger.info(f"Checking operation state for {self.latest_flight_declaration_id}, expecting {expected_state.name}") start_time = time.time() @@ -680,14 +696,14 @@ async def start_stop_sdsp_session(self, session_id: str, action: SDSPSessionActi logger.error(f"Failed to perform action {action.value} on SDSP session {session_id}. Response: {response.text}") raise FlightBlenderError(f"{action.value} Heartbeat Track message not received for {session_id}") - def initialize_heartbeat_websocket_connection(self, session_id: str) -> WebSocket: + async def initialize_heartbeat_websocket_connection(self, session_id: str) -> ClientConnection: endpoint = f"/ws/surveillance/heartbeat/{session_id}" - ws = self.create_websocket_connection(endpoint=endpoint) + ws = await self.create_websocket_connection(endpoint=endpoint) return ws - def initialize_track_websocket_connection(self, session_id: str) -> WebSocket: + async def initialize_track_websocket_connection(self, session_id: str) -> ClientConnection: endpoint = f"/ws/surveillance/track/{session_id}" - ws = self.create_websocket_connection(endpoint=endpoint) + ws = await self.create_websocket_connection(endpoint=endpoint) return ws @scenario_step("Verify SDSP Track") @@ -697,17 +713,12 @@ async def initialize_verify_sdsp_track( expected_track_count: int, session_id: str, ) -> StepResult: - ws_connection = self.initialize_track_websocket_connection(session_id=session_id) + ws_connection = await self.initialize_track_websocket_connection(session_id=session_id) start_time = time.time() - logger.info("Starting to receive track messages...") - now = arrow.now() - six_seconds_from_now = now.shift(seconds=6) all_received_messages = [] # Start Receiving messages from now till six seconds from now - while arrow.now() < six_seconds_from_now: - await asyncio.sleep(0.1) - message = await asyncio.to_thread(ws_connection.recv) + async for message in receive_messages_for_duration(ws_connection, 6): message = json.loads(message) if "track_data" not in message or not message["track_data"]: logger.debug("WebSocket connection established message received or empty track data") @@ -719,7 +730,7 @@ async def initialize_verify_sdsp_track( all_received_messages.append(SDSPTrackMessage(message=track, timestamp=arrow.now().isoformat())) logger.info(f"Received {len(all_received_messages)} messages in the first six seconds") - self.close_heartbeat_websocket_connection(ws_connection) + await self.close_heartbeat_websocket_connection(ws_connection) end_time = time.time() duration = end_time - start_time # Sort messages by timestamp @@ -745,7 +756,7 @@ async def initialize_verify_sdsp_track( return StepResult( name=f"Track message received {expected_track_interval_seconds} seconds", status=Status.FAIL, - details=f"Track message not processed {expected_track_interval_seconds} seconds", + result=f"Track message not processed {expected_track_interval_seconds} seconds", duration=duration, ) else: @@ -753,7 +764,7 @@ async def initialize_verify_sdsp_track( return StepResult( name=f"Track message received {expected_track_interval_seconds} seconds", status=Status.PASS, - details=f"Track message processed {expected_track_interval_seconds} seconds", + result=f"Track message processed {expected_track_interval_seconds} seconds", duration=duration, ) @@ -764,21 +775,12 @@ async def initialize_verify_sdsp_heartbeat( expected_heartbeat_count: int, session_id: str, ) -> StepResult: - ws_connection = self.initialize_heartbeat_websocket_connection(session_id=session_id) + ws_connection = await self.initialize_heartbeat_websocket_connection(session_id=session_id) start_time = time.time() - now = arrow.now() - - six_seconds_from_now = now.shift(seconds=6) all_received_messages = [] # Start Receiving messages from now till six seconds from now - logger.debug("Starting to receive heartbeat messages...") - while arrow.now() < six_seconds_from_now: - logger.debug("Waiting for heartbeat message...") - await asyncio.sleep(0.1) - logger.debug("Receiving heartbeat message...") - message = await asyncio.to_thread(ws_connection.recv) - logger.debug(f"Raw WebSocket message received: {message}") + async for message in receive_messages_for_duration(ws_connection, 6): message = json.loads(message) if "heartbeat_data" not in message: logger.debug("WebSocket connection established message received") @@ -787,7 +789,7 @@ async def initialize_verify_sdsp_heartbeat( logger.debug(f"Received WebSocket message: {message}") all_received_messages.append(SDSPHeartbeatMessage(message=heartbeat_message, timestamp=arrow.now().isoformat())) logger.info(f"Received {len(all_received_messages)} messages in the first six seconds") - self.close_heartbeat_websocket_connection(ws_connection) + await self.close_heartbeat_websocket_connection(ws_connection) end_time = time.time() logger.debug("Verifying heartbeat message intervals...") @@ -821,7 +823,7 @@ async def initialize_verify_sdsp_heartbeat( return StepResult( name=f"Heartbeat message received {expected_heartbeat_interval_seconds} seconds", status=Status.FAIL, - details=f"Heartbeat message not processed {expected_heartbeat_interval_seconds} seconds", + result=f"Heartbeat message not processed {expected_heartbeat_interval_seconds} seconds", duration=duration, ) else: @@ -831,12 +833,12 @@ async def initialize_verify_sdsp_heartbeat( return StepResult( name=f"Heartbeat message received {expected_heartbeat_interval_seconds} seconds", status=Status.PASS, - details=f"Heartbeat message processed {expected_heartbeat_interval_seconds} seconds", + result=f"Heartbeat message processed {expected_heartbeat_interval_seconds} seconds", duration=duration, ) - def close_heartbeat_websocket_connection(self, ws_connection: WebSocket) -> None: - ws_connection.close() + async def close_heartbeat_websocket_connection(self, ws_connection: ClientConnection) -> None: + await ws_connection.close() @scenario_step("Teardown Flight Declaration") async def teardown_flight_declaration(self): @@ -872,7 +874,11 @@ async def setup_flight_declaration_via_operational_intent( raise FlightBlenderError("Failed to upload flight declaration during setup_flight_declaration_via_operational_intent") @scenario_step("Setup Flight Declaration") - async def setup_flight_declaration(self, flight_declaration_path: str, trajectory_path: str) -> None: + async def setup_flight_declaration( + self, + flight_declaration_path: str | None = None, + trajectory_path: str | None = None, + ) -> None: """Generates data and uploads flight declaration.""" from openutm_verification.scenarios.common import ( @@ -880,6 +886,16 @@ async def setup_flight_declaration(self, flight_declaration_path: str, trajector generate_telemetry, ) + # Use instance attributes if arguments are not provided + flight_declaration_path = flight_declaration_path or self.flight_declaration_path + trajectory_path = trajectory_path or self.trajectory_path + + if not flight_declaration_path: + raise ValueError("flight_declaration_path not provided and not found in config") + + if not trajectory_path: + raise ValueError("trajectory_path not provided and not found in config") + flight_declaration = generate_flight_declaration(flight_declaration_path) telemetry_states = generate_telemetry(trajectory_path) @@ -896,26 +912,24 @@ async def setup_flight_declaration(self, flight_declaration_path: str, trajector raise FlightBlenderError("Failed to upload flight declaration during setup_flight_declaration") @asynccontextmanager - async def create_flight_declaration(self, data_files: DataFiles): + async def create_flight_declaration(self): """Context manager to setup and teardown a flight operation based on scenario config.""" - assert data_files.flight_declaration is not None, "Flight declaration file path must be provided" - assert data_files.trajectory is not None, "Trajectory file path must be provided" - await self.setup_flight_declaration(data_files.flight_declaration, data_files.trajectory) + assert self.flight_declaration_path is not None, "Flight declaration file path must be provided" + assert self.trajectory_path is not None, "Trajectory file path must be provided" + await self.setup_flight_declaration(self.flight_declaration_path, self.trajectory_path) try: yield finally: logger.info("All test steps complete..") @asynccontextmanager - async def create_flight_declaration_via_operational_intent(self, data_files: DataFiles): + async def create_flight_declaration_via_operational_intent(self): """Context manager to setup and teardown a flight operation based on scenario config.""" - assert data_files.flight_declaration_via_operational_intent is not None, ( - "Flight declaration via operational intent file path must be provided" - ) - assert data_files.trajectory is not None, "Trajectory file path must be provided" + assert self.flight_declaration_via_operational_intent is not None, "Flight declaration via operational intent file path must be provided" + assert self.trajectory_path is not None, "Trajectory file path must be provided" await self.setup_flight_declaration_via_operational_intent( - flight_declaration_via_operational_intent_path=data_files.flight_declaration_via_operational_intent, - trajectory_path=data_files.trajectory, + flight_declaration_via_operational_intent_path=self.flight_declaration_via_operational_intent, + trajectory_path=self.trajectory_path, ) try: yield diff --git a/src/openutm_verification/core/clients/opensky/base_client.py b/src/openutm_verification/core/clients/opensky/base_client.py index 5273d51..4e3d378 100644 --- a/src/openutm_verification/core/clients/opensky/base_client.py +++ b/src/openutm_verification/core/clients/opensky/base_client.py @@ -29,7 +29,7 @@ class OpenSkySettings(BaseSettings): # Simulation settings simulation_config_path: str - simulation_duration_seconds: int = 30 + simulation_duration: int = 30 def create_opensky_settings() -> OpenSkySettings: @@ -38,7 +38,7 @@ def create_opensky_settings() -> OpenSkySettings: opensky_client_id=config.opensky.auth.client_id or "", opensky_client_secret=config.opensky.auth.client_secret or "", simulation_config_path=config.data_files.trajectory or "", - simulation_duration_seconds=30, + simulation_duration=30, ) diff --git a/src/openutm_verification/core/execution/__init__.py b/src/openutm_verification/core/execution/__init__.py index 05d7d54..67ddc78 100644 --- a/src/openutm_verification/core/execution/__init__.py +++ b/src/openutm_verification/core/execution/__init__.py @@ -2,6 +2,4 @@ Core execution logic for the OpenUTM Verification Tool. """ -from openutm_verification.core.execution.execution import run_verification_scenarios - -__all__ = ["run_verification_scenarios"] +__all__ = [] diff --git a/src/openutm_verification/core/execution/conditions.py b/src/openutm_verification/core/execution/conditions.py new file mode 100644 index 0000000..7cc328c --- /dev/null +++ b/src/openutm_verification/core/execution/conditions.py @@ -0,0 +1,189 @@ +"""Condition evaluation for step execution. + +Supports GitHub Actions-style conditions: +- success(): Previous step succeeded +- failure(): Previous step failed +- always(): Always run (regardless of previous steps) +- steps..result: Access step results +- Comparison operators: ==, !=, <, >, <=, >= +- Logical operators: &&, || +- String literals: 'value' or \"value\" +""" + +import re +from typing import Any + +from loguru import logger + +from openutm_verification.core.reporting.reporting_models import Status, StepResult + + +class ConditionEvaluator: + """Evaluates conditional expressions for step execution.""" + + def __init__(self, steps: dict[str, StepResult[Any]], loop_context: dict[str, Any] | None = None): + """Initialize evaluator with step results. + + Args: + steps: Dictionary mapping step IDs to their results + loop_context: Optional loop context with 'index' and 'item' values + """ + self.steps = steps + self.loop_context = loop_context or {} + self.last_step_status: Status | None = None + + # Determine last step status (excluding skipped steps) + if steps: + completed_steps = [s for s in steps.values() if s.status != Status.SKIP] + if completed_steps: + self.last_step_status = completed_steps[-1].status + + def evaluate(self, condition: str) -> bool: + """Evaluate a condition string. + + Args: + condition: Condition expression to evaluate + + Returns: + True if condition passes, False otherwise + """ + if not condition or not condition.strip(): + return True + + try: + # Replace function calls + condition = self._replace_functions(condition) + + # Replace step references + condition = self._replace_step_references(condition) + + # Evaluate the expression + result = self._evaluate_expression(condition) + logger.debug(f"Condition '{condition}' evaluated to {result}") + return result + + except Exception as e: + logger.warning(f"Error evaluating condition '{condition}': {e}") + return False + + def _replace_functions(self, condition: str) -> str: + """Replace GitHub Actions-style functions.""" + # success() - previous step succeeded + if "success()" in condition: + result = self.last_step_status == Status.PASS if self.last_step_status else True + condition = condition.replace("success()", str(result)) + + # failure() - previous step failed + if "failure()" in condition: + result = self.last_step_status == Status.FAIL if self.last_step_status else False + condition = condition.replace("failure()", str(result)) + + # always() - always run + if "always()" in condition: + condition = condition.replace("always()", "True") + + return condition + + def _replace_step_references(self, condition: str) -> str: + """Replace step.X.Y and loop.X references with actual values.""" + # Replace loop variables first + condition = self._replace_loop_variables(condition) + + # Pattern: steps.[]. (for loop iterations) + bracket_pattern = r"steps\.([a-zA-Z0-9_-]+)\[(\d+)\]\.([a-zA-Z0-9_]+)" + + def replace_bracket_match(match: re.Match) -> str: + step_id = match.group(1) + index = int(match.group(2)) + field = match.group(3) + + # For looped steps, results are stored as step_id[index] + actual_step_id = f"{step_id}[{index}]" + + if actual_step_id not in self.steps: + logger.warning(f"Step iteration '{actual_step_id}' not found in results") + return "None" + + step = self.steps[actual_step_id] + + if field == "status": + return f"'{step.status.value}'" + elif field == "result": + if step.result is None: + return "None" + return repr(step.result) + else: + logger.warning(f"Unknown field '{field}' for step '{actual_step_id}'") + return "None" + + # Replace bracket notation first + condition = re.sub(bracket_pattern, replace_bracket_match, condition) + + # Pattern: steps..status or steps..result + pattern = r"steps\.([a-zA-Z0-9_-]+)\.([a-zA-Z0-9_]+)" + + def replace_match(match: re.Match) -> str: + step_id = match.group(1) + field = match.group(2) + + if step_id not in self.steps: + logger.warning(f"Step '{step_id}' not found in results") + return "None" + + step = self.steps[step_id] + + if field == "status": + # Return status as string for comparison + return f"'{step.status.value}'" + elif field == "result": + # Return result value as repr'd value + # If result is None, return None (without quotes) + if step.result is None: + return "None" + # Otherwise return the repr which will be a valid Python literal + return repr(step.result) + else: + logger.warning(f"Unknown field '{field}' for step '{step_id}'") + return "None" + + return re.sub(pattern, replace_match, condition) + + def _replace_loop_variables(self, condition: str) -> str: + """Replace loop.X references with actual values.""" + # Replace loop.index + if "loop.index" in condition and "index" in self.loop_context: + condition = condition.replace("loop.index", str(self.loop_context["index"])) + + # Replace loop.item + if "loop.item" in condition and "item" in self.loop_context: + item_value = repr(self.loop_context["item"]) + condition = condition.replace("loop.item", item_value) + + return condition + + def _evaluate_expression(self, expr: str) -> bool: + """Safely evaluate a boolean expression. + + Supports: + - Comparison operators: ==, !=, <, >, <=, >= + - Logical operators: &&, ||, ! + - Boolean literals: True, False + - String literals: 'value' + """ + # Replace logical operators with Python equivalents + # Note: Must handle "!" carefully to not replace it in "!=" + expr = expr.replace("&&", " and ").replace("||", " or ") + # Only replace "!" when not followed by "=" + + expr = re.sub(r"!(?!=)", " not ", expr) + + # Only allow safe evaluation + # Create a restricted namespace + namespace = {"True": True, "False": False, "None": None, "__builtins__": {}} + + try: + result = eval(expr, namespace, {}) + return bool(result) + except Exception as e: + logger.error(f"Failed to evaluate expression '{expr}': {e}") + return False diff --git a/src/openutm_verification/core/execution/config_models.py b/src/openutm_verification/core/execution/config_models.py index 09a30dc..f318a6e 100644 --- a/src/openutm_verification/core/execution/config_models.py +++ b/src/openutm_verification/core/execution/config_models.py @@ -9,6 +9,8 @@ from pydantic import BaseModel, ConfigDict, Field, field_validator +from openutm_verification.utils.time_utils import parse_duration + class StrictBaseModel(BaseModel): model_config = ConfigDict(extra="forbid") @@ -35,10 +37,15 @@ class FlightBlenderConfig(StrictBaseModel): class AirTrafficSimulatorSettings(StrictBaseModel): number_of_aircraft: int - simulation_duration_seconds: int + simulation_duration: int | str single_or_multiple_sensors: Literal["single", "multiple"] = "single" sensor_ids: list[str] = Field(default_factory=list) + @field_validator("simulation_duration") + @classmethod + def validate_duration(cls, v: int | str) -> int: + return int(parse_duration(v)) + class BlueSkyAirTrafficSimulatorSettings(StrictBaseModel): number_of_aircraft: int @@ -64,6 +71,7 @@ class DeploymentDetails(StrictBaseModel): class ReportingConfig(StrictBaseModel): """Configuration for generating reports.""" + timestamp_subdir: str = "" output_dir: str = "reports" formats: list[str] = Field(default_factory=lambda: ["json", "html", "log"]) deployment_details: DeploymentDetails = Field(default_factory=DeploymentDetails) diff --git a/src/openutm_verification/core/execution/definitions.py b/src/openutm_verification/core/execution/definitions.py new file mode 100644 index 0000000..7737a3f --- /dev/null +++ b/src/openutm_verification/core/execution/definitions.py @@ -0,0 +1,40 @@ +from typing import Any, Dict, List + +from pydantic import BaseModel, Field + + +class LoopConfig(BaseModel): + """Configuration for step looping.""" + + model_config = {"populate_by_name": True} + + count: int | None = Field(default=None, description="Number of times to repeat (fixed iteration)") + items: List[Any] | None = Field(default=None, description="List of items to iterate over") + while_condition: str | None = Field(default=None, alias="while", description="Condition to continue looping") + + +class StepDefinition(BaseModel): + model_config = {"populate_by_name": True} + + id: str | None = Field(default=None, description="Unique identifier for the step. If not provided, it defaults to the step name.") + step: str = Field(..., description="The operation/function to execute (human-readable name) or group name") + arguments: Dict[str, Any] = Field(default_factory=dict, description="Arguments for the operation") + needs: List[str] = Field(default_factory=list, description="List of step IDs this step depends on") + background: bool = Field(default=False, description="Whether to run this step in the background") + description: str | None = None + if_condition: str | None = Field(default=None, alias="if", description="Conditional expression to determine if step should run") + loop: LoopConfig | None = Field(default=None, description="Loop configuration for repeating the step") + + +class GroupDefinition(BaseModel): + """Definition of a reusable group of steps.""" + + description: str | None = None + steps: List[StepDefinition] = Field(..., description="Steps that make up this group") + + +class ScenarioDefinition(BaseModel): + name: str + description: str | None = None + groups: Dict[str, GroupDefinition] = Field(default_factory=dict, description="Named groups of steps that can be referenced") + steps: List[StepDefinition] diff --git a/src/openutm_verification/core/execution/dependencies.py b/src/openutm_verification/core/execution/dependencies.py index 22d4837..7539d3c 100644 --- a/src/openutm_verification/core/execution/dependencies.py +++ b/src/openutm_verification/core/execution/dependencies.py @@ -1,8 +1,5 @@ from typing import ( - Any, AsyncGenerator, - Callable, - Coroutine, Generator, Iterable, TypeVar, @@ -22,6 +19,7 @@ from openutm_verification.core.clients.air_traffic.blue_sky_client import ( BlueSkyClient, ) +from openutm_verification.core.clients.common.common_client import CommonClient from openutm_verification.core.clients.flight_blender.flight_blender_client import ( FlightBlenderClient, ) @@ -39,30 +37,30 @@ CONTEXT, dependency, ) -from openutm_verification.core.reporting.reporting_models import ScenarioResult -from openutm_verification.scenarios.registry import SCENARIO_REGISTRY +from openutm_verification.server.runner import SessionManager +from openutm_verification.utils.paths import get_docs_directory T = TypeVar("T") def get_scenario_docs(scenario_id: str) -> str | None: - docs_path = SCENARIO_REGISTRY[scenario_id].get("docs") - if docs_path and docs_path.exists(): - try: - return docs_path.read_text(encoding="utf-8") - except Exception as e: - logger.warning(f"Failed to read docs file {docs_path}: {e}") - else: - logger.warning(f"Docs file not found: {docs_path}") + docs_dir = get_docs_directory() + if not docs_dir: return None + docs_path = docs_dir / f"{scenario_id}.md" + if not docs_path.exists(): + return None -def scenarios() -> Iterable[tuple[str, Callable[..., Coroutine[Any, Any, ScenarioResult]]]]: - """Provides scenarios to run with their functions. + try: + return docs_path.read_text(encoding="utf-8") + except Exception as e: + logger.warning(f"Failed to read docs file {docs_path}: {e}") + return None - Returns: - An iterable of tuples containing (scenario_id, scenario_function). - """ + +def scenarios() -> Iterable[str]: + """Provides scenario IDs to run (YAML-only).""" config = get_settings() scenarios_to_iterate = [] @@ -88,24 +86,20 @@ def scenarios() -> Iterable[tuple[str, Callable[..., Coroutine[Any, Any, Scenari scenario_id = item.name suite_scenario = item - if scenario_id in SCENARIO_REGISTRY: - logger.info("=" * 100) - logger.info(f"Running scenario: {scenario_id}") - - scenario_func = SCENARIO_REGISTRY[scenario_id].get("func") - docs_content = get_scenario_docs(scenario_id) - - CONTEXT.set( - { - "scenario_id": scenario_id, - "suite_scenario": suite_scenario, - "suite_name": suite_name, - "docs": docs_content, - } - ) - yield scenario_id, scenario_func - else: - logger.warning(f"Scenario {scenario_id} not found in registry.") + logger.info("=" * 100) + logger.info(f"Running YAML scenario: {scenario_id}") + + docs_content = get_scenario_docs(scenario_id) + + CONTEXT.set( + { + "scenario_id": scenario_id, + "suite_scenario": suite_scenario, + "suite_name": suite_name, + "docs": docs_content, + } + ) + yield scenario_id logger.info("=" * 100) @@ -133,23 +127,30 @@ def data_files(scenario_id: ScenarioId) -> Generator[DataFiles, None, None]: if suite_scenario: # Merge suite overrides with base config - trajectory = suite_scenario.trajectory or config.data_files.trajectory + if suite_scenario.simulation and suite_scenario.trajectory is None: + trajectory = None + else: + trajectory = suite_scenario.trajectory or config.data_files.trajectory flight_declaration = suite_scenario.flight_declaration or config.data_files.flight_declaration flight_declaration_via_operational_intent = ( suite_scenario.flight_declaration_via_operational_intent or config.data_files.flight_declaration_via_operational_intent ) geo_fence = suite_scenario.geo_fence or config.data_files.geo_fence + simulation = suite_scenario.simulation or config.data_files.simulation else: # Use base config trajectory = config.data_files.trajectory flight_declaration = config.data_files.flight_declaration geo_fence = config.data_files.geo_fence + flight_declaration_via_operational_intent = config.data_files.flight_declaration_via_operational_intent + simulation = config.data_files.simulation data = DataFiles( trajectory=trajectory, flight_declaration=flight_declaration, flight_declaration_via_operational_intent=flight_declaration_via_operational_intent, geo_fence=geo_fence, + simulation=simulation, ) yield data @@ -165,13 +166,12 @@ def app_config() -> Generator[AppConfig, None, None]: @dependency(FlightBlenderClient) -async def flight_blender_client( - config: AppConfig, -) -> AsyncGenerator[FlightBlenderClient, None]: +async def flight_blender_client(config: AppConfig, data_files: DataFiles) -> AsyncGenerator[FlightBlenderClient, None]: """Provides a FlightBlenderClient instance for dependency injection. Args: config: The application configuration containing Flight Blender settings. + data_files: The data files configuration. Returns: An instance of FlightBlenderClient. """ @@ -180,7 +180,14 @@ async def flight_blender_client( audience=config.flight_blender.auth.audience or "", scopes=config.flight_blender.auth.scopes or [], ) - async with FlightBlenderClient(base_url=config.flight_blender.url, credentials=credentials) as fb_client: + async with FlightBlenderClient( + base_url=config.flight_blender.url, + credentials=credentials, + flight_declaration_path=data_files.flight_declaration, + flight_declaration_via_operational_intent=data_files.flight_declaration_via_operational_intent, + trajectory_path=data_files.trajectory, + geo_fence_path=data_files.geo_fence, + ) as fb_client: yield fb_client @@ -193,20 +200,26 @@ async def opensky_client(config: AppConfig) -> AsyncGenerator[OpenSkyClient, Non @dependency(AirTrafficClient) -async def air_traffic_client( - config: AppConfig, -) -> AsyncGenerator[AirTrafficClient, None]: +async def air_traffic_client() -> AsyncGenerator[AirTrafficClient, None]: """Provides an AirTrafficClient instance for dependency injection.""" settings = create_air_traffic_settings() - async with AirTrafficClient(settings) as air_traffic_client: - yield air_traffic_client + async with AirTrafficClient(settings) as client: + yield client + + +@dependency(SessionManager) +async def session_manager() -> AsyncGenerator[SessionManager, None]: + yield SessionManager() + + +@dependency(CommonClient) +async def common_client() -> AsyncGenerator[CommonClient, None]: + yield CommonClient() @dependency(BlueSkyClient) -async def bluesky_client( - config: AppConfig, -) -> AsyncGenerator[BlueSkyClient, None]: +async def bluesky_client() -> AsyncGenerator[BlueSkyClient, None]: """Provides a BlueSkyClient instance for dependency injection.""" settings = create_blue_sky_air_traffic_settings() - async with BlueSkyClient(settings) as bluesky_client: - yield bluesky_client + async with BlueSkyClient(settings) as client: + yield client diff --git a/src/openutm_verification/core/execution/dependency_resolution.py b/src/openutm_verification/core/execution/dependency_resolution.py index d1736d1..12cd2a8 100644 --- a/src/openutm_verification/core/execution/dependency_resolution.py +++ b/src/openutm_verification/core/execution/dependency_resolution.py @@ -2,6 +2,9 @@ from contextlib import AsyncExitStack, asynccontextmanager, contextmanager from contextvars import ContextVar from typing import Any, AsyncContextManager, AsyncGenerator, Callable, ContextManager, Coroutine, Generator, TypeVar, cast +from unittest.mock import Mock + +from pydantic import ConfigDict, validate_call from openutm_verification.core.execution.config_models import RunContext @@ -29,21 +32,6 @@ def wrapper(func: Callable[..., Generator | AsyncGenerator]) -> Callable[..., Ge return wrapper -async def call_with_dependencies(func: Callable[..., Coroutine[Any, Any, T]]) -> T: - """Call a function with its dependencies automatically provided. - - Args: - func: The function to call. - Returns: - The result of the function call. - """ - sig = inspect.signature(func) - async with provide(*(p.annotation for p in sig.parameters.values())) as dependencies: - if inspect.iscoroutinefunction(func): - return await func(*dependencies) - raise ValueError(f"Function {func.__name__} must be async") - - class DependencyResolver: """Resolves dependencies using a provided ExitStack.""" @@ -100,3 +88,37 @@ async def provide(*types: object) -> AsyncGenerator[tuple[object, ...], None]: for t in types: instances.append(await resolver.resolve(t)) yield tuple(instances) + + +async def call_with_dependencies(func: Callable[..., Coroutine[Any, Any, T]], resolver: DependencyResolver | None = None, **kwargs: Any) -> T: + """Call a function with its dependencies automatically provided. + + Args: + func: The function to call. + resolver: Optional DependencyResolver to use. If None, a new one is created. + **kwargs: Additional arguments to pass to the function. + Returns: + The result of the function call. + """ + if resolver: + sig = inspect.signature(func) + call_kwargs = kwargs.copy() + + for name, param in sig.parameters.items(): + if name in call_kwargs: + continue + + if param.annotation in DEPENDENCIES: + call_kwargs[name] = await resolver.resolve(param.annotation) + + if inspect.iscoroutinefunction(func): + if isinstance(func, Mock): + validated_func = func + else: + validated_func = validate_call(func, config=ConfigDict(arbitrary_types_allowed=True)) # type: ignore + return await validated_func(**call_kwargs) + raise ValueError(f"Function {func.__name__} must be async") + else: + async with AsyncExitStack() as stack: + temp_resolver = DependencyResolver(stack) + return await call_with_dependencies(func, resolver=temp_resolver, **kwargs) diff --git a/src/openutm_verification/core/execution/execution.py b/src/openutm_verification/core/execution/execution.py index bd93ed3..e636fea 100644 --- a/src/openutm_verification/core/execution/execution.py +++ b/src/openutm_verification/core/execution/execution.py @@ -4,9 +4,8 @@ import json from datetime import datetime, timezone -from importlib.metadata import version from pathlib import Path -from typing import TypeVar +from typing import TYPE_CHECKING from loguru import logger from pydantic import ValidationError @@ -19,49 +18,25 @@ ) from openutm_verification.core.execution.config_models import AppConfig from openutm_verification.core.execution.dependencies import scenarios -from openutm_verification.core.execution.dependency_resolution import CONTEXT, call_with_dependencies -from openutm_verification.core.reporting.reporting import generate_reports +from openutm_verification.core.execution.dependency_resolution import CONTEXT +from openutm_verification.core.execution.scenario_loader import load_yaml_scenario_definition +from openutm_verification.core.reporting.reporting import _sanitize_config, create_report_data, generate_reports from openutm_verification.core.reporting.reporting_models import ( - ReportData, - ReportSummary, ScenarioResult, Status, ) from openutm_verification.utils.paths import get_docs_directory -T = TypeVar("T") +if TYPE_CHECKING: + from openutm_verification.server.runner import SessionManager -def _sanitize_config(data: T) -> T: - """ - Recursively sanitize sensitive fields in the configuration data for logging and reporting. - - Masks client_id, client_secret, audience, and scopes anywhere in the data structure. - """ - sensitive_mask = "***MASKED***" - sensitive_keys = ["client_id", "client_secret", "audience", "scopes"] - - if isinstance(data, dict): - sanitized = {} - for key, value in data.items(): - if key in sensitive_keys: - sanitized[key] = sensitive_mask - else: - sanitized[key] = _sanitize_config(value) - return sanitized # type: ignore - elif isinstance(data, list): - return [_sanitize_config(item) for item in data] # type: ignore - else: - return data - - -async def run_verification_scenarios(config: AppConfig, config_path: Path): +async def run_verification_scenarios(config: AppConfig, config_path: Path, session_manager: "SessionManager | None" = None): """ Executes the verification scenarios based on the provided configuration. """ - run_timestamp = datetime.now(timezone.utc) - start_time_utc = run_timestamp.isoformat() - start_time_obj = run_timestamp + + start_time = datetime.now(timezone.utc) logger.info("Starting verification run...") logger.info(f"Using configuration: {config_path}") @@ -70,20 +45,47 @@ async def run_verification_scenarios(config: AppConfig, config_path: Path): sanitized_config_dict = _sanitize_config(config.model_dump()) logger.debug(f"Configuration details:\n{json.dumps(sanitized_config_dict, indent=2)}") + # Initialize SessionManager + if session_manager is None: + from openutm_verification.server.runner import SessionManager as RunnerSessionManager + + session_manager = RunnerSessionManager(config_path=str(config_path)) + scenario_results = [] - for scenario_id, scenario_func in scenarios(): + for scenario_id in scenarios(): try: - result = await call_with_dependencies(scenario_func) + # Initialize session with the current context + await session_manager.initialize_session() + + scenario_def = load_yaml_scenario_definition(scenario_id) + await session_manager.run_scenario(scenario_def) + state = session_manager.session_context.state if session_manager.session_context else None + steps = state.steps if state else [] + failed = any(s.status == Status.FAIL for s in steps) + status = Status.FAIL if failed else Status.PASS + result = ScenarioResult( + name=scenario_id, + status=status, + duration=0, + steps=steps, + flight_declaration_data=state.flight_declaration_data if state else None, + flight_declaration_via_operational_intent_data=state.flight_declaration_via_operational_intent_data if state else None, + telemetry_data=state.telemetry_data if state else None, + air_traffic_data=state.air_traffic_data if state else [], + ) except (AirTrafficError, OpenSkyError, ValidationError) as e: logger.error(f"Failed to run scenario '{scenario_id}': {e}") result = ScenarioResult( name=scenario_id, status=Status.FAIL, - duration_seconds=0, + duration=0, steps=[], error_message=str(e), docs=None, ) + finally: + # Ensure session is closed after each scenario to clean up resources + await session_manager.close_session() # Enrich result with context data context_data = CONTEXT.get() @@ -94,36 +96,18 @@ async def run_verification_scenarios(config: AppConfig, config_path: Path): logger.info(f"Scenario {scenario_id} finished with status: {result.status}") end_time_obj = datetime.now(timezone.utc) - end_time_utc = end_time_obj.isoformat() - total_duration_seconds = (end_time_obj - start_time_obj).total_seconds() - - failed_scenarios = sum(1 for r in scenario_results if r.status == Status.FAIL) - overall_status = Status.FAIL if failed_scenarios > 0 else Status.PASS docs_dir = get_docs_directory() - - report_data = ReportData( - run_id=config.run_id, - tool_version=version("openutm-verification"), - start_time_utc=start_time_utc, - end_time_utc=end_time_utc, - total_duration_seconds=total_duration_seconds, - overall_status=overall_status, - flight_blender_url=config.flight_blender.url, - deployment_details=config.reporting.deployment_details, - config_file=str(config_path), - config=sanitized_config_dict, # Use sanitized config in the report + report_data = create_report_data( + config=config, + config_path=str(config_path), results=scenario_results, - summary=ReportSummary( - total_scenarios=len(scenario_results), - passed=sum(1 for r in scenario_results if r.status == Status.PASS), - failed=failed_scenarios, - ), + start_time=start_time, + end_time=end_time_obj, docs_dir=str(docs_dir) if docs_dir else None, ) - logger.info(f"Verification run complete with overall status: {overall_status}") + logger.info(f"Verification run complete with overall status: {report_data.overall_status}") - base_filename = "report" - generate_reports(report_data, config.reporting, base_filename) - return failed_scenarios + generate_reports(report_data, config.reporting) + return report_data.summary.failed diff --git a/src/openutm_verification/core/execution/scenario_loader.py b/src/openutm_verification/core/execution/scenario_loader.py new file mode 100644 index 0000000..e279dca --- /dev/null +++ b/src/openutm_verification/core/execution/scenario_loader.py @@ -0,0 +1,29 @@ +from pathlib import Path + +import yaml + +from openutm_verification.core.execution.definitions import ScenarioDefinition +from openutm_verification.utils.paths import get_scenarios_directory + + +def load_yaml_scenario_definition(scenario_id: str, base_dir: Path | None = None) -> ScenarioDefinition: + """Load and validate a YAML scenario definition. + + Args: + scenario_id: Scenario file stem (without extension). + base_dir: Optional override directory; defaults to get_scenarios_directory(). + + Raises: + FileNotFoundError: if the YAML file does not exist. + ValidationError: if the YAML content fails validation. + """ + + scenarios_dir = base_dir or get_scenarios_directory() + scenario_path = scenarios_dir / f"{scenario_id}.yaml" + if not scenario_path.exists(): + raise FileNotFoundError(f"Scenario YAML not found: {scenario_path}") + + with open(scenario_path, "r", encoding="utf-8") as f: + scenario_data = yaml.safe_load(f) + + return ScenarioDefinition.model_validate(scenario_data) diff --git a/src/openutm_verification/core/execution/scenario_runner.py b/src/openutm_verification/core/execution/scenario_runner.py index 5d96c2e..a039008 100644 --- a/src/openutm_verification/core/execution/scenario_runner.py +++ b/src/openutm_verification/core/execution/scenario_runner.py @@ -1,6 +1,8 @@ import contextvars import inspect import time +import uuid +from asyncio import Queue from dataclasses import dataclass, field from functools import wraps from pathlib import Path @@ -10,17 +12,16 @@ Callable, Coroutine, ParamSpec, - Protocol, TypedDict, TypeVar, - cast, - overload, ) from loguru import logger +from pydantic import BaseModel, ConfigDict, Field, create_model from uas_standards.astm.f3411.v22a.api import RIDAircraftState from openutm_verification.core.clients.opensky.base_client import OpenSkyError +from openutm_verification.core.execution.dependency_resolution import DEPENDENCIES from openutm_verification.core.reporting.reporting_models import ( ScenarioResult, Status, @@ -40,6 +41,13 @@ R = TypeVar("R", bound=StepResult[Any]) +@dataclass +class StepRegistryEntry: + client_class: type + method_name: str + param_model: type[BaseModel] + + @dataclass class ScenarioState: steps: list[StepResult[Any]] = field(default_factory=list) @@ -48,6 +56,15 @@ class ScenarioState: flight_declaration_via_operational_intent_data: FlightDeclarationViaOperationalIntent | None = None telemetry_data: list[RIDAircraftState] | None = None air_traffic_data: list[list[FlightObservationSchema]] = field(default_factory=list) + added_results: Queue[StepResult[Any]] = field(default_factory=Queue) + + @property + def step_results(self) -> dict[str, StepResult[Any]]: + """ + Returns a dictionary mapping step IDs to their result details. + Only includes steps that have an ID. + """ + return {step.id: step for step in self.steps if step.id} class ScenarioRegistry(TypedDict): @@ -55,16 +72,25 @@ class ScenarioRegistry(TypedDict): docs: Path | None +class RefModel(BaseModel, serialize_by_alias=True): + ref: str = Field(..., alias="$ref") + + _scenario_state: contextvars.ContextVar[ScenarioState | None] = contextvars.ContextVar("scenario_state", default=None) +STEP_REGISTRY: dict[str, StepRegistryEntry] = {} + class ScenarioContext: - def __init__(self): + def __init__(self, state: ScenarioState | None = None): self._token = None - self._state: ScenarioState | None = None + self._state: ScenarioState | None = state def __enter__(self): - self._state = ScenarioState(active=True) + if self._state is None: + self._state = ScenarioState(active=True) + else: + self._state.active = True self._token = _scenario_state.set(self._state) return self @@ -78,7 +104,10 @@ def __exit__(self, exc_type, exc_val, exc_tb): def add_result(cls, result: StepResult[Any]) -> None: state = _scenario_state.get() if state and state.active: + if result.id and state.step_results.get(result.id): + state.steps.remove(state.step_results[result.id]) state.steps.append(result) + state.added_results.put_nowait(result) @classmethod def set_flight_declaration_data(cls, data: FlightDeclaration) -> None: @@ -104,6 +133,10 @@ def add_air_traffic_data(cls, data: list[FlightObservationSchema]) -> None: if state and state.active: state.air_traffic_data.append(data) + @property + def state(self) -> ScenarioState | None: + return self._state + @property def steps(self) -> list[StepResult[Any]]: if self._state: @@ -142,24 +175,47 @@ def air_traffic_data(self) -> list[list[FlightObservationSchema]]: return state.air_traffic_data if state else [] -class StepDecorator(Protocol): - @overload - def __call__(self, func: Callable[P, Awaitable[R]]) -> Callable[P, Coroutine[Any, Any, R]]: ... +class ScenarioStepDescriptor: + def __init__(self, func: Callable[..., Awaitable[Any]], step_name: str): + self.func = func + self.step_name = step_name + self.wrapper = self._create_wrapper(func, step_name) + self.param_model = self._create_param_model(func, step_name) - @overload - def __call__(self, func: Callable[P, Awaitable[T]]) -> Callable[P, Coroutine[Any, Any, StepResult[T]]]: ... + def _create_param_model(self, func: Callable[..., Any], step_name: str) -> type[BaseModel]: + sig = inspect.signature(func) + fields = {} - def __call__(self, func: Callable[P, Awaitable[Any]]) -> Callable[P, Coroutine[Any, Any, Any]]: ... + for param_name, param in sig.parameters.items(): + if param_name == "self": + continue + # Skip dependencies that are automatically injected + if param.annotation in DEPENDENCIES: + continue + + annotation = param.annotation + if annotation == inspect.Parameter.empty: + annotation = Any + + default = param.default + if default == inspect.Parameter.empty: + fields[param_name] = (annotation, ...) + else: + fields[param_name] = (annotation, default) -def scenario_step(step_name: str) -> StepDecorator: - def decorator( - func: Callable[P, Awaitable[Any]], - ) -> Callable[P, Coroutine[Any, Any, Any]]: + return create_model( # type: ignore[call-overload] + f"Params_{step_name}", + __config__=ConfigDict(arbitrary_types_allowed=True), + **fields, + ) + + def _create_wrapper(self, func: Callable[..., Awaitable[Any]], step_name: str) -> Callable[..., Awaitable[Any]]: def handle_result(result: Any, start_time: float) -> StepResult[Any]: duration = time.time() - start_time logger.info(f"Step '{step_name}' successful in {duration:.2f} seconds.") + step_result: StepResult[Any] if isinstance(result, StepResult): step_result = result else: @@ -167,7 +223,7 @@ def handle_result(result: Any, start_time: float) -> StepResult[Any]: name=step_name, status=Status.PASS, duration=duration, - details=result, + result=result, ) ScenarioContext.add_result(step_result) @@ -175,6 +231,7 @@ def handle_result(result: Any, start_time: float) -> StepResult[Any]: def handle_exception(e: Exception, start_time: float) -> StepResult[Any]: duration = time.time() - start_time + step_result: StepResult[Any] if isinstance(e, (FlightBlenderError, OpenSkyError)): logger.error(f"Step '{step_name}' failed after {duration:.2f} seconds: {e}") step_result = StepResult( @@ -198,16 +255,58 @@ def handle_exception(e: Exception, start_time: float) -> StepResult[Any]: raise ValueError(f"Step function {func.__name__} must be async") @wraps(func) - async def async_wrapper(*args: P.args, **kwargs: P.kwargs) -> StepResult[Any]: - logger.info("-" * 50) - logger.info(f"Executing step: '{step_name}'...") - start_time = time.time() + async def async_wrapper(*args: Any, **kwargs: Any) -> StepResult[Any]: + step_execution_id = uuid.uuid4().hex + captured_logs: list[str] = [] + + def log_filter(record): + return record["extra"].get("step_execution_id") == step_execution_id + + handler_id = logger.add(lambda msg: captured_logs.append(msg), filter=log_filter, format="{time:HH:mm:ss} | {level} | {message}") + + step_result: StepResult[Any] try: - result = await func(*args, **kwargs) - return handle_result(result, start_time) - except Exception as e: - return handle_exception(e, start_time) + with logger.contextualize(step_execution_id=step_execution_id): + logger.info("-" * 50) + logger.info(f"Executing step: '{step_name}'...") + start_time = time.time() + try: + result = await func(*args, **kwargs) + step_result = handle_result(result, start_time) + except Exception as e: + step_result = handle_exception(e, start_time) + finally: + logger.remove(handler_id) + if step_result: + step_result.logs = captured_logs + + return step_result + + # Attach metadata for introspection + setattr(async_wrapper, "_is_scenario_step", True) + setattr(async_wrapper, "_step_name", step_name) return async_wrapper - return cast(StepDecorator, decorator) + def __set_name__(self, owner: type, name: str): + # Register using the human-readable step name + registry_key = self.step_name + if registry_key in STEP_REGISTRY: + logger.warning(f"Overwriting step registry for '{registry_key}'. Ensure step names are unique.") + + STEP_REGISTRY[registry_key] = StepRegistryEntry( + client_class=owner, + method_name=name, + param_model=self.param_model, + ) + setattr(owner, name, self.wrapper) + + def __call__(self, *args: Any, **kwargs: Any): + return self.wrapper(*args, **kwargs) + + +def scenario_step(step_name: str) -> Callable[[Callable[..., Awaitable[Any]]], Any]: + def decorator(func: Callable[..., Awaitable[Any]]) -> Any: + return ScenarioStepDescriptor(func, step_name) + + return decorator diff --git a/src/openutm_verification/core/reporting/reporting.py b/src/openutm_verification/core/reporting/reporting.py index 51243b9..13099da 100644 --- a/src/openutm_verification/core/reporting/reporting.py +++ b/src/openutm_verification/core/reporting/reporting.py @@ -1,25 +1,102 @@ import json import shutil +from datetime import datetime, timezone +from importlib.metadata import version from pathlib import Path +from typing import Any, TypeVar import markdown from jinja2 import Environment, FileSystemLoader, select_autoescape from loguru import logger -from openutm_verification.core.execution.config_models import ReportingConfig -from openutm_verification.core.reporting.reporting_models import ReportData, ScenarioResult +from openutm_verification.core.execution.config_models import AppConfig, ReportingConfig +from openutm_verification.core.reporting.reporting_models import ( + ReportData, + ReportSummary, + ScenarioResult, + Status, +) from openutm_verification.core.reporting.visualize_flight import visualize_flight_path_2d, visualize_flight_path_3d +from openutm_verification.utils.time_utils import get_run_timestamp_str + +T = TypeVar("T") + + +def _sanitize_config(data: Any) -> Any: + """ + Recursively sanitize sensitive fields in the configuration data. + """ + sensitive_mask = "***MASKED***" + sensitive_keys = ["client_id", "client_secret", "audience", "scopes"] + + if isinstance(data, dict): + sanitized = {} + for key, value in data.items(): + if key in sensitive_keys: + sanitized[key] = sensitive_mask + else: + sanitized[key] = _sanitize_config(value) + return sanitized + elif isinstance(data, list): + return [_sanitize_config(item) for item in data] + else: + return data + + +def create_report_data( + config: AppConfig, + config_path: str, + results: list[ScenarioResult], + start_time: datetime, + end_time: datetime, + run_id: str | None = None, + docs_dir: str | None = None, +) -> ReportData: + """ + Creates validation and validation report data from run results. + """ + sanitized_config = _sanitize_config(config.model_dump()) + + try: + tool_version = version("openutm-verification") + except Exception: + tool_version = "unknown" + + failed_scenarios = sum(1 for r in results if r.status == Status.FAIL) + overall_status = Status.FAIL if failed_scenarios > 0 else Status.PASS + + return ReportData( + run_id=run_id or config.run_id, + tool_version=tool_version, + start_time=start_time, + end_time=end_time, + total_duration=(end_time - start_time).total_seconds(), + overall_status=overall_status, + flight_blender_url=config.flight_blender.url, + deployment_details=config.reporting.deployment_details, + config_file=config_path, + config=sanitized_config, + results=results, + summary=ReportSummary( + total_scenarios=len(results), + passed=sum(1 for r in results if r.status == Status.PASS), + failed=failed_scenarios, + ), + docs_dir=docs_dir, + ) def generate_reports( report_data: ReportData, reporting_config: ReportingConfig, - base_filename: str, + base_filename: str = "report", ): """ Generates reports based on the provided configuration. """ output_dir = Path(reporting_config.output_dir) + reporting_config.timestamp_subdir = reporting_config.timestamp_subdir or get_run_timestamp_str(datetime.now(timezone.utc)) + output_dir = output_dir / reporting_config.timestamp_subdir output_dir.mkdir(parents=True, exist_ok=True) _save_scenario_data(report_data, output_dir) @@ -121,16 +198,19 @@ def _generate_scenario_visualizations(result: ScenarioResult, output_dir: Path): scenario_dir = output_dir / result.name scenario_dir.mkdir(parents=True, exist_ok=True) + # Get air traffic data if available + air_traffic_data = result.air_traffic_data + # Generate 2D visualization vis_2d_filename = "visualization_2d.html" vis_2d_path = scenario_dir / vis_2d_filename - visualize_flight_path_2d(result.telemetry_data, flight_declaration_dict, vis_2d_path) + visualize_flight_path_2d(result.telemetry_data, flight_declaration_dict, vis_2d_path, air_traffic_data) result.visualization_2d_path = str(vis_2d_path.relative_to(output_dir)) # Generate 3D visualization vis_3d_filename = "visualization_3d.html" vis_3d_path = scenario_dir / vis_3d_filename - visualize_flight_path_3d(result.telemetry_data, flight_declaration_dict, vis_3d_path) + visualize_flight_path_3d(result.telemetry_data, flight_declaration_dict, vis_3d_path, air_traffic_data) result.visualization_3d_path = str(vis_3d_path.relative_to(output_dir)) diff --git a/src/openutm_verification/core/reporting/reporting_models.py b/src/openutm_verification/core/reporting/reporting_models.py index 85237e4..6e6833c 100644 --- a/src/openutm_verification/core/reporting/reporting_models.py +++ b/src/openutm_verification/core/reporting/reporting_models.py @@ -2,6 +2,7 @@ Pydantic models for reporting configuration. """ +from datetime import datetime from enum import StrEnum from typing import Any, Generic, TypeVar @@ -21,8 +22,10 @@ class Status(StrEnum): """Enumeration for status values.""" - PASS = "PASS" - FAIL = "FAIL" + PASS = "success" + FAIL = "failure" + RUNNING = "running" + SKIP = "skipped" T = TypeVar("T") @@ -31,11 +34,13 @@ class Status(StrEnum): class StepResult(BaseModel, Generic[T]): """Data model for a single step within a scenario.""" + id: str | None = None name: str status: Status duration: float - details: T = None # type: ignore + result: T = None # type: ignore error_message: str | None = None + logs: list[str] = [] class ScenarioResult(BaseModel): @@ -46,7 +51,7 @@ class ScenarioResult(BaseModel): name: str suite_name: str | None = None status: Status - duration_seconds: float + duration: float steps: list[StepResult[Any]] error_message: str | None = None flight_declaration_filename: str | None = None @@ -73,9 +78,9 @@ class ReportData(BaseModel): run_id: str tool_version: str - start_time_utc: str - end_time_utc: str - total_duration_seconds: float + start_time: datetime + end_time: datetime + total_duration: float overall_status: Status flight_blender_url: str deployment_details: DeploymentDetails diff --git a/src/openutm_verification/core/reporting/visualize_flight.py b/src/openutm_verification/core/reporting/visualize_flight.py index 2e6d171..f549e0d 100644 --- a/src/openutm_verification/core/reporting/visualize_flight.py +++ b/src/openutm_verification/core/reporting/visualize_flight.py @@ -22,8 +22,18 @@ from loguru import logger from uas_standards.astm.f3411.v22a.api import RIDAircraftState +from openutm_verification.simulator.models.flight_data_types import FlightObservationSchema -def visualize_flight_path_2d(telemetry_data: list[RIDAircraftState], declaration_data: dict, output_html_path: Path): +# Color palette for airplane tracks (orange-based colors for distinction from drone blue) +AIRPLANE_COLORS = ["#FF8C00", "#FF6347", "#FFA500", "#FF4500", "#FFD700", "#FF7F50", "#FF69B4", "#DC143C"] + + +def visualize_flight_path_2d( + telemetry_data: list[RIDAircraftState], + declaration_data: dict, + output_html_path: Path, + air_traffic_data: list[list[FlightObservationSchema]] | None = None, +): """ Creates an interactive 2D map from flight telemetry and declaration data. @@ -31,6 +41,7 @@ def visualize_flight_path_2d(telemetry_data: list[RIDAircraftState], declaration telemetry_data (dict): The flight telemetry data as a dictionary. declaration_data (dict): The flight declaration data as a dictionary. output_html_path (Path): The full path where the output HTML map will be saved. + air_traffic_data (list[list[FlightObservationSchema]] | None): Optional air traffic data from simulators. """ logger.info("Starting 2D flight path visualization") @@ -100,10 +111,140 @@ def visualize_flight_path_2d(telemetry_data: list[RIDAircraftState], declaration ).add_to(flight_map) logger.debug("Added flight path and markers to map") + # Add airplane/air traffic paths if available + if air_traffic_data: + _add_air_traffic_to_2d_map(flight_map, air_traffic_data) + flight_map.save(output_html_path) logger.info(f"2D flight path visualization saved to: {output_html_path}") +def _reorganize_air_traffic_by_aircraft( + air_traffic_data: list[list[FlightObservationSchema]], +) -> dict[str, list]: + """ + Reorganizes air traffic data from timestamp-based to aircraft-based grouping. + + The input data may be organized as list of timestamps, where each timestamp + contains observations from multiple aircraft. This function reorganizes it + into a dict keyed by ICAO address with all observations for that aircraft. + + Args: + air_traffic_data: Air traffic data (may be organized by timestamp or aircraft). + + Returns: + Dict mapping ICAO address to list of observations for that aircraft. + """ + aircraft_tracks: dict[str, list] = {} + + for observations in air_traffic_data: + for obs in observations: + # Handle both dict and Pydantic model + if isinstance(obs, dict): + icao = obs.get("icao_address", "UNKNOWN") + else: + icao = obs.icao_address + + if icao not in aircraft_tracks: + aircraft_tracks[icao] = [] + aircraft_tracks[icao].append(obs) + + return aircraft_tracks + + +def _add_air_traffic_to_2d_map( + flight_map: folium.Map, + air_traffic_data: list[list[FlightObservationSchema]], +) -> None: + """ + Adds airplane/air traffic paths to the 2D map with distinct colors. + + Args: + flight_map: The Folium map to add paths to. + air_traffic_data: Air traffic data as list of aircraft, each with list of observations. + """ + # Reorganize data by aircraft ICAO address + aircraft_tracks = _reorganize_air_traffic_by_aircraft(air_traffic_data) + logger.debug(f"Adding {len(aircraft_tracks)} airplane tracks to 2D map") + + for idx, (icao_address, aircraft_observations) in enumerate(sorted(aircraft_tracks.items())): + if not aircraft_observations: + continue + + # Get color from palette (cycle if more aircraft than colors) + color = AIRPLANE_COLORS[idx % len(AIRPLANE_COLORS)] + + # Extract path coordinates - handle both dict and Pydantic model + path_points_with_alt = [] + for obs in aircraft_observations: + if isinstance(obs, dict): + lat = obs.get("lat_dd") + lon = obs.get("lon_dd") + alt = obs.get("altitude_mm", 0) / 1000 # Convert mm to meters + else: + lat = obs.lat_dd + lon = obs.lon_dd + alt = obs.altitude_mm / 1000 # Convert mm to meters + if lat is not None and lon is not None: + path_points_with_alt.append((lat, lon, alt)) + + if not path_points_with_alt: + continue + + coordinates = [(p[0], p[1]) for p in path_points_with_alt] + + # Draw the airplane path (icao_address already from loop) + folium.PolyLine( + locations=coordinates, + color=color, + weight=4, + opacity=0.9, + dash_array="10, 5", # Dashed line to distinguish from drone + tooltip=f"Airplane {icao_address}", + ).add_to(flight_map) + + # Add small markers along the path for all data points + for lat, lon, alt in path_points_with_alt: + folium.CircleMarker( + location=(lat, lon), + radius=3, + color=color, + fill=True, + fill_color=color, + tooltip=f"Airplane {icao_address}: Alt={alt:.0f}m", + ).add_to(flight_map) + + # Map hex colors to folium color names for markers + marker_color_map = { + "#FF8C00": "orange", + "#FF6347": "red", + "#FFA500": "beige", + "#FF4500": "darkred", + "#FFD700": "lightgreen", + "#FF7F50": "pink", + "#FF69B4": "purple", + "#DC143C": "cadetblue", + } + marker_color = marker_color_map.get(color, "orange") + + # Add start marker for airplane + folium.Marker( + location=coordinates[0], + popup=f"Airplane {icao_address} Start
Lat={coordinates[0][0]:.6f}
Lng={coordinates[0][1]:.6f}", + icon=folium.Icon(color=marker_color, icon="plane", prefix="fa"), + ).add_to(flight_map) + + # Add end marker for airplane + if len(coordinates) > 1: + folium.Marker( + location=coordinates[-1], + popup=f"Airplane {icao_address} End
Lat={coordinates[-1][0]:.6f}
Lng={coordinates[-1][1]:.6f}", + icon=folium.Icon(color="black", icon="plane", prefix="fa"), + ).add_to(flight_map) + + logger.debug(f"Added airplane track for {icao_address} with {len(coordinates)} points") + + # ============================================================================== # 3D Visualization (pythreejs) - Refactored into Helper Functions # ============================================================================== @@ -201,8 +342,118 @@ def create_cap_mesh(vertices_2d_xz, altitude, material): return geofence_group -def visualize_flight_path_3d(telemetry_data: list[RIDAircraftState], declaration_data: dict, output_html_path: Path): - """Creates an interactive 3D visualization of the flight path and geofence.""" +# Color palette for airplane tracks in 3D (hex colors for pythreejs) +AIRPLANE_COLORS_3D = ["#FF8C00", "#FF6347", "#FFA500", "#FF4500", "#FFD700", "#FF7F50", "#FF69B4", "#DC143C"] + + +def _create_airplane_path_group(projected_path: list[tuple[float, float, float]], color: str) -> three.Group | None: + """Creates a three.js group containing an airplane flight path with distinct color. + + Args: + projected_path: List of (x, y, z) projected coordinates. + color: Hex color string for the path. + + Returns: + three.Group containing the airplane path visualization, or None if no path. + """ + if not projected_path: + return None + + path_group = three.Group() + + # Create the line path + path_geometry = three.BufferGeometry(attributes={"position": three.BufferAttribute(np.array(projected_path, dtype="float32"))}) + path_material = three.LineBasicMaterial(color=color, linewidth=2) + path_group.add(three.Line(path_geometry, path_material)) + + # Add small dots for each coordinate + points_material = three.PointsMaterial(color=color, size=2, sizeAttenuation=False) + path_group.add(three.Points(path_geometry, points_material)) + + # Add start marker (small sphere) + start_marker = three.Mesh(three.SphereBufferGeometry(10), three.MeshBasicMaterial(color=color)) + start_marker.position = projected_path[0] + path_group.add(start_marker) + + # Add end marker (slightly larger sphere) + if len(projected_path) > 1: + end_marker = three.Mesh(three.SphereBufferGeometry(12), three.MeshBasicMaterial(color="#8B0000")) # Dark red + end_marker.position = projected_path[-1] + path_group.add(end_marker) + + return path_group + + +def _add_air_traffic_to_3d_scene( + scene: three.Scene, + air_traffic_data: list[list[FlightObservationSchema]], + project_fn, +) -> list[tuple[float, float, float]]: + """ + Adds airplane/air traffic paths to the 3D scene with distinct colors. + + Args: + scene: The pythreejs Scene to add paths to. + air_traffic_data: Air traffic data as list of aircraft, each with list of observations. + project_fn: Projection function (lon, lat, alt) -> (x, y, z). + + Returns: + List of all projected points added to the scene (useful for auto-framing if needed). + """ + all_plane_points = [] + # Reorganize data by aircraft ICAO address + aircraft_tracks = _reorganize_air_traffic_by_aircraft(air_traffic_data) + logger.debug(f"Adding {len(aircraft_tracks)} airplane tracks to 3D scene") + + for idx, (icao_address, aircraft_observations) in enumerate(sorted(aircraft_tracks.items())): + if not aircraft_observations: + continue + + # Get color from palette (cycle if more aircraft than colors) + color = AIRPLANE_COLORS_3D[idx % len(AIRPLANE_COLORS_3D)] + + # Extract and project path coordinates - handle both dict and Pydantic model + projected_airplane_path = [] + for obs in aircraft_observations: + if isinstance(obs, dict): + lon = obs.get("lon_dd") + lat = obs.get("lat_dd") + alt = obs.get("altitude_mm", 0) / 1000 # Convert mm to meters + else: + lon = obs.lon_dd + lat = obs.lat_dd + alt = obs.altitude_mm / 1000 # Convert mm to meters + + if lat is not None and lon is not None: + projected_point = project_fn(lon, lat, alt) + projected_airplane_path.append(projected_point) + all_plane_points.append(projected_point) + + if not projected_airplane_path: + continue + + # Create and add the airplane path group (icao_address already from loop) + if airplane_group := _create_airplane_path_group(projected_airplane_path, color): + scene.add(airplane_group) + logger.debug(f"Added airplane track for {icao_address} with {len(projected_airplane_path)} points") + + return all_plane_points + + +def visualize_flight_path_3d( + telemetry_data: list[RIDAircraftState], + declaration_data: dict, + output_html_path: Path, + air_traffic_data: list[list[FlightObservationSchema]] | None = None, +): + """Creates an interactive 3D visualization of the flight path and geofence. + + Args: + telemetry_data: The flight telemetry data as a list of RID aircraft states. + declaration_data: The flight declaration data as a dictionary. + output_html_path: The full path where the output HTML will be saved. + air_traffic_data: Optional air traffic data from simulators. + """ logger.info("Starting 3D flight path visualization") states = telemetry_data @@ -218,12 +469,31 @@ def visualize_flight_path_3d(telemetry_data: list[RIDAircraftState], declaration logger.debug(f"Extracted {len(path_coords_ll)} path coordinates from telemetry data") - if not path_coords_ll and not geofence_coords_ll: + # Check if we have any data to visualize (including air traffic) + has_drone_data = bool(path_coords_ll) or bool(geofence_coords_ll) + has_air_traffic = bool(air_traffic_data) + + if not has_drone_data and not has_air_traffic: logger.warning("No data to visualize in 3D.") return + # Calculate center from available data all_lons = [p[0] for p in path_coords_ll] + [p[0] for p in geofence_coords_ll] all_lats = [p[1] for p in path_coords_ll] + [p[1] for p in geofence_coords_ll] + + # If we only have air traffic data, get center from that + if not all_lons and air_traffic_data: + aircraft_tracks = _reorganize_air_traffic_by_aircraft(air_traffic_data) + for observations in aircraft_tracks.values(): + for obs in observations: + if isinstance(obs, dict): + lon, lat = obs.get("lon_dd"), obs.get("lat_dd") + else: + lon, lat = obs.lon_dd, obs.lat_dd + if lon is not None and lat is not None: + all_lons.append(lon) + all_lats.append(lat) + if not all_lons: logger.warning("No longitude data available for centering.") return @@ -244,18 +514,35 @@ def project(lon, lat, alt): camera, scene = _setup_3d_scene() logger.debug("Initialized 3D scene and camera") + if flight_path_group := _create_flight_path_group(projected_path): + scene.add(flight_path_group) + logger.debug("Added flight path group to scene") + if geofence_box_group := _create_geofence_box_group(projected_geofence_corners_2d, min_alt, max_alt): + scene.add(geofence_box_group) + logger.debug("Added geofence box group to scene") + + # Add airplane/air traffic paths if available + plane_points = [] + if air_traffic_data: + plane_points = _add_air_traffic_to_3d_scene(scene, air_traffic_data, project) + # --- Auto-framing logic --- - all_points = [] + framing_points = [] if projected_path: - all_points.extend(projected_path) + framing_points.extend(projected_path) if projected_geofence_corners_2d: bottom_verts = [[x, min_alt, z] for x, z in projected_geofence_corners_2d] top_verts = [[x, max_alt, z] for x, z in projected_geofence_corners_2d] - all_points.extend(bottom_verts) - all_points.extend(top_verts) + framing_points.extend(bottom_verts) + framing_points.extend(top_verts) + + # Only use plane points for framing if we have no drone/geofence data + # This prevents distant air traffic from ruining the scale of the drone visualization + if not framing_points and plane_points: + framing_points = plane_points - if all_points: - points_arr = np.array(all_points) + if framing_points: + points_arr = np.array(framing_points) min_coords = points_arr.min(axis=0) max_coords = points_arr.max(axis=0) @@ -264,7 +551,8 @@ def project(lon, lat, alt): max_dimension = max(scene_size) # Position camera for a side view, looking at the center of the scene - distance = max_dimension + # Ensure a minimum distance to avoid camera being inside the object if dimension is small + distance = max(max_dimension, 200) camera.position = (scene_center[0] + distance, scene_center[1] + distance * 0.5, scene_center[2]) # The OrbitControls will orbit around this target @@ -274,13 +562,6 @@ def project(lon, lat, alt): controls = [three.OrbitControls(controlling=camera)] logger.debug("No points for auto-framing, using default controls") - if flight_path_group := _create_flight_path_group(projected_path): - scene.add(flight_path_group) - logger.debug("Added flight path group to scene") - if geofence_box_group := _create_geofence_box_group(projected_geofence_corners_2d, min_alt, max_alt): - scene.add(geofence_box_group) - logger.debug("Added geofence box group to scene") - renderer = three.Renderer(camera=camera, scene=scene, controls=controls, width=1000, height=800) logger.debug("Created renderer") diff --git a/src/openutm_verification/core/templates/report_template.html b/src/openutm_verification/core/templates/report_template.html index 23c9058..475a2a8 100644 --- a/src/openutm_verification/core/templates/report_template.html +++ b/src/openutm_verification/core/templates/report_template.html @@ -16,8 +16,10 @@ .scenario-summary:hover { background-color: #f1f1f1; } .scenario-details { padding: 15px; border-top: 1px solid #ddd; } .status { font-weight: bold; padding: 5px 10px; border-radius: 15px; color: white; } - .status-PASS { background-color: #28a745; } - .status-FAIL { background-color: #dc3545; } + .status-success { background-color: #28a745; } + .status-failure { background-color: #dc3545; } + .status-running { background-color: #007bff; } + .status-skipped { background-color: #6c757d; } .steps-table { width: 100%; border-collapse: collapse; margin-top: 10px; } .steps-table th, .steps-table td { border: 1px solid #eee; padding: 8px; text-align: left; } .steps-table th { background-color: #fafafa; } @@ -32,7 +34,7 @@

Run Summary

Tool Version{{ report_data.tool_version }} Start Time (UTC){{ report_data.start_time_utc }} End Time (UTC){{ report_data.end_time_utc }} - Duration{{ "%.2f"|format(report_data.total_duration_seconds) }} seconds + Duration{{ "%.2f"|format(report_data.total_duration) }} seconds Overall Status{{ report_data.overall_status }} Config File{{ report_data.config_file }} @@ -73,7 +75,7 @@

Scenario Results ({{ report_data.results|length }} executed)

{{ result.status }}
-

Duration: {{ "%.2f"|format(result.duration_seconds) }} seconds

+

Duration: {{ "%.2f"|format(result.duration) }} seconds

{% if result.visualization_2d_path or result.visualization_3d_path %}

Flight Visualizations: {% if result.visualization_2d_path %} @@ -85,7 +87,7 @@

Scenario Results ({{ report_data.results|length }} executed)

{% endif %}

{% endif %} - {% if result.status == 'FAIL' and result.error_message %} + {% if result.status == 'failure' and result.error_message %}

Error Message:

{{ result.error_message }}
{% endif %} @@ -102,7 +104,7 @@

Steps:

Step Name Status Duration (s) - Details + Result @@ -111,7 +113,7 @@

Steps:

{{ step.name }} {{ step.status }} {{ "%.2f"|format(step.duration) }} -
{{ step.details | tojson(indent=2) }}
+
{{ step.result | tojson(indent=2) }}
{% endfor %} diff --git a/src/openutm_verification/models.py b/src/openutm_verification/models.py index f89e73c..38d55ab 100644 --- a/src/openutm_verification/models.py +++ b/src/openutm_verification/models.py @@ -6,7 +6,17 @@ class FlightBlenderError(Exception): """Custom exception for Flight Blender API errors.""" -class OperationState(int, Enum): +class CaseInsensitiveEnum(Enum): + @classmethod + def _missing_(cls, value): + if isinstance(value, str): + for member in cls: + if member.name.lower() == value.lower(): + return member + return super()._missing_(value) + + +class OperationState(int, CaseInsensitiveEnum): """An enumeration for the state of a flight operation.""" PROCESSING = 0 @@ -20,7 +30,7 @@ class OperationState(int, Enum): REJECTED = 8 -class SDSPSessionAction(str, Enum): +class SDSPSessionAction(str, CaseInsensitiveEnum): START = "start" STOP = "stop" diff --git a/src/openutm_verification/scenarios/__init__.py b/src/openutm_verification/scenarios/__init__.py index 553c4e9..f8f75aa 100644 --- a/src/openutm_verification/scenarios/__init__.py +++ b/src/openutm_verification/scenarios/__init__.py @@ -1,11 +1,5 @@ -import importlib -from pathlib import Path +"""Scenarios package. -# Get the path to the current directory -scenarios_path = Path(__file__).parent - -# Dynamically import all modules matching 'test_*.py' -# This ensures that the @register_scenario decorator in each file is executed. -for file in scenarios_path.glob("test_*.py"): - module_name = f"openutm_verification.scenarios.{file.stem}" - importlib.import_module(module_name) +Scenarios are now defined in YAML files under the repository-level 'scenarios/' folder. +Python-based scenario modules have been removed to standardize on YAML-only scenarios. +""" diff --git a/src/openutm_verification/scenarios/common.py b/src/openutm_verification/scenarios/common.py index 396f1f0..9a06199 100644 --- a/src/openutm_verification/scenarios/common.py +++ b/src/openutm_verification/scenarios/common.py @@ -1,9 +1,11 @@ import json +import uuid from pathlib import Path from loguru import logger from uas_standards.astm.f3411.v22a.api import RIDAircraftState +from openutm_verification.core.execution.scenario_runner import scenario_step from openutm_verification.simulator.flight_declaration import FlightDeclarationGenerator from openutm_verification.simulator.geo_json_telemetry import GeoJSONFlightsSimulator from openutm_verification.simulator.models.declaration_models import FlightDeclaration, FlightDeclarationViaOperationalIntent @@ -55,3 +57,9 @@ def get_geo_fence_path(geo_fence_filename: str) -> str: """Helper to get the full path to a geo-fence file.""" parent_dir = Path(__file__).parent.resolve() return str(parent_dir / f"../assets/aoi_geo_fence_samples/{geo_fence_filename}") + + +@scenario_step("Generate UUID") +async def generate_uuid() -> str: + """Generates a random UUID.""" + return str(uuid.uuid4()) diff --git a/src/openutm_verification/scenarios/registry.py b/src/openutm_verification/scenarios/registry.py index 42b1b71..f58a79d 100644 --- a/src/openutm_verification/scenarios/registry.py +++ b/src/openutm_verification/scenarios/registry.py @@ -22,6 +22,7 @@ def run_my_scenario(client, scenario_id): from openutm_verification.core.execution.scenario_runner import ( ScenarioContext, ScenarioRegistry, + _scenario_state, ) from openutm_verification.core.reporting.reporting_models import ( ScenarioResult, @@ -37,7 +38,11 @@ def run_my_scenario(client, scenario_id): async def _run_scenario_simple_async(scenario_id: str, func: Callable, args, kwargs) -> ScenarioResult: """Runs a scenario without auto-setup (async).""" try: - with ScenarioContext() as ctx: + # Reuse existing state if available (e.g. from SessionManager) + current_state = _scenario_state.get() + ctx_manager = ScenarioContext(state=current_state) if current_state else ScenarioContext() + + with ctx_manager as ctx: result = await func(*args, **kwargs) if isinstance(result, ScenarioResult): @@ -54,7 +59,7 @@ async def _run_scenario_simple_async(scenario_id: str, func: Callable, args, kwa return ScenarioResult( name=scenario_id, status=final_status, - duration_seconds=total_duration, + duration=total_duration, steps=steps, flight_declaration_data=flight_declaration_data, flight_declaration_via_operational_intent_data=flight_declaration_via_operational_intent_data, diff --git a/src/openutm_verification/scenarios/test_add_flight_declaration.py b/src/openutm_verification/scenarios/test_add_flight_declaration.py deleted file mode 100644 index 3415149..0000000 --- a/src/openutm_verification/scenarios/test_add_flight_declaration.py +++ /dev/null @@ -1,28 +0,0 @@ -from openutm_verification.core.clients.flight_blender.flight_blender_client import FlightBlenderClient -from openutm_verification.core.execution.config_models import DataFiles -from openutm_verification.models import OperationState -from openutm_verification.scenarios.registry import register_scenario - - -@register_scenario("add_flight_declaration") -async def test_add_flight_declaration(fb_client: FlightBlenderClient, data_files: DataFiles) -> None: - """Runs the add flight declaration scenario. - - This scenario replicates the behavior of the add_flight_declaration.py importer: - 1. Upload flight declaration (handled by template). - 2. Wait 20 seconds. - 3. Set flight operation state to ACTIVATED. - 4. Submit telemetry data for 30 seconds. - 5. Set flight operation state to ENDED. - - Args: - fb_client: The FlightBlenderClient instance for API interaction. - data_files: The DataFiles instance containing file paths for telemetry, flight declaration, and geo-fence. - - Returns: - A ScenarioResult object containing the results of the scenario execution. - """ - async with fb_client.create_flight_declaration(data_files): - await fb_client.update_operation_state(new_state=OperationState.ACTIVATED, duration_seconds=20) - await fb_client.submit_telemetry(duration_seconds=30) - await fb_client.update_operation_state(new_state=OperationState.ENDED) diff --git a/src/openutm_verification/scenarios/test_add_operational_intent.py b/src/openutm_verification/scenarios/test_add_operational_intent.py deleted file mode 100644 index d80ed72..0000000 --- a/src/openutm_verification/scenarios/test_add_operational_intent.py +++ /dev/null @@ -1,29 +0,0 @@ -from openutm_verification.core.clients.flight_blender.flight_blender_client import FlightBlenderClient -from openutm_verification.core.execution.config_models import DataFiles -from openutm_verification.models import OperationState -from openutm_verification.scenarios.registry import register_scenario - - -@register_scenario("add_flight_declaration_via_operational_intent") -async def test_add_flight_declaration_via_operational_intent(fb_client: FlightBlenderClient, data_files: DataFiles) -> None: - """Runs the add flight declaration scenario. - - This scenario replicates the behavior of the add_flight_declaration.py importer: - 1. Upload flight declaration (handled by template). - 2. Wait 20 seconds. - 3. Set flight operation state to ACTIVATED. - 4. Submit telemetry data for 30 seconds. - 5. Set flight operation state to ENDED. - - Args: - fb_client: The FlightBlenderClient instance for API interaction. - data_files: The DataFiles instance containing file paths for telemetry, flight declaration, and geo-fence. - - Returns: - A ScenarioResult object containing the results of the scenario execution. - """ - - async with fb_client.create_flight_declaration_via_operational_intent(data_files): - await fb_client.update_operation_state(new_state=OperationState.ACTIVATED, duration_seconds=5) - await fb_client.wait_x_seconds(10) - await fb_client.update_operation_state(new_state=OperationState.ENDED) diff --git a/src/openutm_verification/scenarios/test_airtraffic_data_bluesky_sim.py b/src/openutm_verification/scenarios/test_airtraffic_data_bluesky_sim.py index f6b77ae..930764d 100644 --- a/src/openutm_verification/scenarios/test_airtraffic_data_bluesky_sim.py +++ b/src/openutm_verification/scenarios/test_airtraffic_data_bluesky_sim.py @@ -1,8 +1,3 @@ -from loguru import logger - -from openutm_verification.core.clients.air_traffic.air_traffic_client import ( - AirTrafficClient, -) from openutm_verification.core.clients.air_traffic.blue_sky_client import BlueSkyClient from openutm_verification.core.clients.flight_blender.flight_blender_client import ( FlightBlenderClient, @@ -20,10 +15,6 @@ async def test_bluesky_sim_air_traffic_data( The OpenSky client is provided by the caller; this function focuses on orchestration only. """ - logger.info("Generating simulated air traffic data using BlueSky client") result = await blue_sky_client.generate_bluesky_sim_air_traffic_data() - logger.info("Submitting simulated air traffic data to Flight Blender") - - observations = result.details - await fb_client.submit_simulated_air_traffic(observations=observations) + await fb_client.submit_simulated_air_traffic(observations=result.details) diff --git a/src/openutm_verification/scenarios/test_airtraffic_data_openutm_sim.py b/src/openutm_verification/scenarios/test_airtraffic_data_openutm_sim.py deleted file mode 100644 index 914d6ea..0000000 --- a/src/openutm_verification/scenarios/test_airtraffic_data_openutm_sim.py +++ /dev/null @@ -1,21 +0,0 @@ -from openutm_verification.core.clients.air_traffic.air_traffic_client import ( - AirTrafficClient, -) -from openutm_verification.core.clients.flight_blender.flight_blender_client import ( - FlightBlenderClient, -) -from openutm_verification.scenarios.registry import register_scenario - - -@register_scenario("openutm_sim_air_traffic_data") -async def test_openutm_sim_air_traffic_data( - fb_client: FlightBlenderClient, - air_traffic_client: AirTrafficClient, -) -> None: - """Generate simulated air traffic data using OpenSky client and submit to Flight Blender using template. - - The OpenSky client is provided by the caller; this function focuses on orchestration only. - """ - step_result = await air_traffic_client.generate_simulated_air_traffic_data() - observations = step_result.details - await fb_client.submit_simulated_air_traffic(observations=observations) diff --git a/src/openutm_verification/scenarios/test_f1_flow.py b/src/openutm_verification/scenarios/test_f1_flow.py deleted file mode 100644 index 02dffb6..0000000 --- a/src/openutm_verification/scenarios/test_f1_flow.py +++ /dev/null @@ -1,28 +0,0 @@ -from openutm_verification.core.clients.flight_blender.flight_blender_client import FlightBlenderClient -from openutm_verification.core.execution.config_models import DataFiles -from openutm_verification.models import OperationState -from openutm_verification.scenarios.registry import register_scenario - - -@register_scenario("F1_happy_path") -async def test_f1_happy_path(fb_client: FlightBlenderClient, data_files: DataFiles): - """Runs the F1 happy path scenario. - - This scenario simulates a complete, successful flight operation: - 1. The flight operation state is set to ACTIVATED. - 2. Telemetry data is submitted for a duration of 30 seconds. - 3. The flight operation state is set to ENDED. - - Args: - fb_client: The FlightBlenderClient instance for API interaction. - scenario_id: The unique name of the scenario being run. - - Returns: - A ScenarioResult object containing the results of the scenario execution. - """ - async with fb_client.create_flight_declaration(data_files): - await fb_client.update_operation_state(new_state=OperationState.ACTIVATED) - await fb_client.submit_telemetry(duration_seconds=30) - await fb_client.update_operation_state(new_state=OperationState.ENDED) - - await fb_client.teardown_flight_declaration() diff --git a/src/openutm_verification/scenarios/test_f1_no_telemetry_with_user_input.py b/src/openutm_verification/scenarios/test_f1_no_telemetry_with_user_input.py deleted file mode 100644 index fe118d2..0000000 --- a/src/openutm_verification/scenarios/test_f1_no_telemetry_with_user_input.py +++ /dev/null @@ -1,28 +0,0 @@ -from openutm_verification.core.clients.flight_blender.flight_blender_client import FlightBlenderClient -from openutm_verification.core.execution.config_models import DataFiles -from openutm_verification.models import OperationState -from openutm_verification.scenarios.registry import register_scenario - - -@register_scenario("F1_flow_no_telemetry_with_user_input") -async def test_f1_no_telemetry_with_user_input(fb_client: FlightBlenderClient, data_files: DataFiles): - """Runs the F1 no telemetry with user input scenario. - - This scenario simulates a complete, successful flight operation: - 1. The flight operation state is set to ACTIVATED. - 2. Telemetry data is submitted for a duration of 30 seconds. - 3. The flight operation state is set to ENDED. - - Args: - fb_client: The FlightBlenderClient instance for API interaction. - scenario_id: The unique name of the scenario being run. - - Returns: - A ScenarioResult object containing the results of the scenario execution. - """ - async with fb_client.create_flight_declaration(data_files): - await fb_client.wait_x_seconds(wait_time_seconds=5) - await fb_client.update_operation_state(new_state=OperationState.ACTIVATED) - await fb_client.wait_for_user_input(prompt="Press Enter to end the operation...") - await fb_client.update_operation_state(new_state=OperationState.ENDED) - await fb_client.teardown_flight_declaration() diff --git a/src/openutm_verification/scenarios/test_f2_flow.py b/src/openutm_verification/scenarios/test_f2_flow.py deleted file mode 100644 index 8acd8a9..0000000 --- a/src/openutm_verification/scenarios/test_f2_flow.py +++ /dev/null @@ -1,30 +0,0 @@ -from openutm_verification.core.clients.flight_blender.flight_blender_client import FlightBlenderClient -from openutm_verification.core.execution.config_models import DataFiles -from openutm_verification.models import OperationState -from openutm_verification.scenarios.registry import register_scenario - - -@register_scenario("F2_contingent_path") -async def test_f2_contingent_path(fb_client: FlightBlenderClient, data_files: DataFiles): - """Runs the F2 contingent path scenario. - - This scenario simulates a flight operation that enters a contingent state: - 1. The flight operation state is set to ACTIVATED. - 2. Telemetry data is submitted for 10 seconds. - 3. The flight operation state is updated to CONTINGENT and held for 7 seconds. - 4. The flight operation state is set to ENDED. - - Args: - fb_client: The FlightBlenderClient instance for API interaction. - scenario_id: The unique name of the scenario being run. - - Returns: - A ScenarioResult object containing the results of the scenario execution. - """ - async with fb_client.create_flight_declaration(data_files): - await fb_client.update_operation_state(new_state=OperationState.ACTIVATED) - await fb_client.submit_telemetry(duration_seconds=10) - await fb_client.update_operation_state(new_state=OperationState.CONTINGENT, duration_seconds=7) - await fb_client.update_operation_state(new_state=OperationState.ENDED) - - await fb_client.teardown_flight_declaration() diff --git a/src/openutm_verification/scenarios/test_f3_flow.py b/src/openutm_verification/scenarios/test_f3_flow.py deleted file mode 100644 index 686338a..0000000 --- a/src/openutm_verification/scenarios/test_f3_flow.py +++ /dev/null @@ -1,32 +0,0 @@ -from openutm_verification.core.clients.flight_blender.flight_blender_client import FlightBlenderClient -from openutm_verification.core.execution.config_models import DataFiles -from openutm_verification.models import OperationState -from openutm_verification.scenarios.registry import register_scenario - - -@register_scenario("F3_non_conforming_path") -async def test_f3_non_conforming_path(fb_client: FlightBlenderClient, data_files: DataFiles): - """Runs the F3 non-conforming path scenario. - - This scenario simulates a flight that deviates from its declared flight plan, - triggering a NONCONFORMING state. - 1. The flight operation state is set to ACTIVATED. - 2. Non-conforming telemetry is submitted for 20 seconds. - 3. The operation state is checked to ensure it has become NONCONFORMING. - 4. The flight operation state is set to ENDED. - - Args: - fb_client: The FlightBlenderClient instance for API interaction. - data_files: The DataFiles instance containing file paths for telemetry, flight declaration, and geo-fence. - - Returns: - A ScenarioResult object containing the results of the scenario execution. - """ - async with fb_client.create_flight_declaration(data_files): - await fb_client.update_operation_state(new_state=OperationState.ACTIVATED) - await fb_client.wait_x_seconds(5) - await fb_client.submit_telemetry(duration_seconds=20) - await fb_client.check_operation_state(expected_state=OperationState.NONCONFORMING, duration_seconds=5) - await fb_client.update_operation_state(new_state=OperationState.ENDED) - - await fb_client.teardown_flight_declaration() diff --git a/src/openutm_verification/scenarios/test_f5_flow.py b/src/openutm_verification/scenarios/test_f5_flow.py deleted file mode 100644 index 232ffea..0000000 --- a/src/openutm_verification/scenarios/test_f5_flow.py +++ /dev/null @@ -1,16 +0,0 @@ -from openutm_verification.core.clients.flight_blender.flight_blender_client import FlightBlenderClient -from openutm_verification.core.execution.config_models import DataFiles -from openutm_verification.models import OperationState -from openutm_verification.scenarios.registry import register_scenario - - -@register_scenario("F5_non_conforming_path") -async def test_f5_non_conforming_contingent_path(fb_client: FlightBlenderClient, data_files: DataFiles) -> None: - async with fb_client.create_flight_declaration(data_files): - await fb_client.update_operation_state(new_state=OperationState.ACTIVATED) - await fb_client.submit_telemetry(duration_seconds=20) - await fb_client.check_operation_state_connected(expected_state=OperationState.NONCONFORMING, duration_seconds=5) - await fb_client.update_operation_state(new_state=OperationState.CONTINGENT) - await fb_client.update_operation_state(new_state=OperationState.ENDED) - - await fb_client.teardown_flight_declaration() diff --git a/src/openutm_verification/scenarios/test_geo_fence_upload.py b/src/openutm_verification/scenarios/test_geo_fence_upload.py deleted file mode 100644 index 974c3e6..0000000 --- a/src/openutm_verification/scenarios/test_geo_fence_upload.py +++ /dev/null @@ -1,10 +0,0 @@ -from openutm_verification.core.clients.flight_blender.flight_blender_client import FlightBlenderClient -from openutm_verification.scenarios.common import get_geo_fence_path -from openutm_verification.scenarios.registry import register_scenario - - -@register_scenario("geo_fence_upload") -async def test_geo_fence_upload(fb_client: FlightBlenderClient) -> None: - """Upload a geo-fence (Area of Interest) and then delete it (teardown).""" - await fb_client.upload_geo_fence(filename=get_geo_fence_path("geo_fence.geojson")) - await fb_client.get_geo_fence() diff --git a/src/openutm_verification/scenarios/test_opensky_live_data.py b/src/openutm_verification/scenarios/test_opensky_live_data.py deleted file mode 100644 index 7856ae7..0000000 --- a/src/openutm_verification/scenarios/test_opensky_live_data.py +++ /dev/null @@ -1,34 +0,0 @@ -import asyncio - -from loguru import logger - -from openutm_verification.core.clients.flight_blender.flight_blender_client import ( - FlightBlenderClient, -) -from openutm_verification.core.clients.opensky.opensky_client import OpenSkyClient -from openutm_verification.scenarios.registry import register_scenario - - -@register_scenario("opensky_live_data") -async def test_opensky_live_data(fb_client: FlightBlenderClient, opensky_client: OpenSkyClient) -> None: - """Fetch live flight data from OpenSky and submit to Flight Blender using template. - - The OpenSky client is provided by the caller; this function focuses on orchestration only. - """ - - # Loop control - iteration_count = 5 # total number of iterations - wait_time = 3 # seconds to sleep between iterations - - for i in range(iteration_count): - logger.info(f"OpenSky iteration {i + 1}/{iteration_count}") - - step_result = await opensky_client.fetch_data() - observations = step_result.details - - if observations: - await fb_client.submit_air_traffic(observations=observations) - - if i < iteration_count - 1: - logger.info(f"Waiting {wait_time} seconds before next iteration...") - await asyncio.sleep(wait_time) diff --git a/src/openutm_verification/scenarios/test_sdsp_heartbeat.py b/src/openutm_verification/scenarios/test_sdsp_heartbeat.py deleted file mode 100644 index fa8f917..0000000 --- a/src/openutm_verification/scenarios/test_sdsp_heartbeat.py +++ /dev/null @@ -1,38 +0,0 @@ -import uuid - -from loguru import logger - -from openutm_verification.core.clients.flight_blender.flight_blender_client import ( - FlightBlenderClient, -) -from openutm_verification.models import SDSPSessionAction -from openutm_verification.scenarios.registry import register_scenario - - -@register_scenario("sdsp_heartbeat") -async def sdsp_heartbeat(fb_client: FlightBlenderClient): - """Runs the SDSP heartbeat scenario. - This scenario - """ - session_id = str(uuid.uuid4()) - logger.info(f"Starting SDSP heartbeat scenario with session ID: {session_id}") - - await fb_client.start_stop_sdsp_session( - action=SDSPSessionAction.START, - session_id=session_id, - ) - # Wait for some time to simulate heartbeat period - await fb_client.wait_x_seconds(wait_time_seconds=2) - - await fb_client.initialize_verify_sdsp_heartbeat( - session_id=session_id, - expected_heartbeat_interval_seconds=1, - expected_heartbeat_count=3, - ) - - await fb_client.wait_x_seconds(wait_time_seconds=5) - - await fb_client.start_stop_sdsp_session( - action=SDSPSessionAction.STOP, - session_id=session_id, - ) diff --git a/src/openutm_verification/scenarios/test_sdsp_track.py b/src/openutm_verification/scenarios/test_sdsp_track.py deleted file mode 100644 index 8e65864..0000000 --- a/src/openutm_verification/scenarios/test_sdsp_track.py +++ /dev/null @@ -1,48 +0,0 @@ -import asyncio -import uuid - -from loguru import logger - -from openutm_verification.core.clients.air_traffic.air_traffic_client import AirTrafficClient -from openutm_verification.core.clients.flight_blender.flight_blender_client import ( - FlightBlenderClient, -) -from openutm_verification.models import SDSPSessionAction -from openutm_verification.scenarios.registry import register_scenario - - -@register_scenario("sdsp_track") -async def sdsp_track(fb_client: FlightBlenderClient, air_traffic_client: AirTrafficClient) -> None: - """Runs the SDSP track scenario. - This scenario - """ - session_id = str(uuid.uuid4()) - logger.info(f"Starting SDSP track scenario with session ID: {session_id}") - - await fb_client.start_stop_sdsp_session( - action=SDSPSessionAction.START, - session_id=session_id, - ) - - observations = (await air_traffic_client.generate_simulated_air_traffic_data()).details - # to start a background parallel task, instead of await, use create_task: - task = asyncio.create_task(fb_client.submit_simulated_air_traffic(observations=observations)) - # Task is now running, concurrently while any other `async await` calls are done. - # Wait for some time to simulate track period - await fb_client.wait_x_seconds(wait_time_seconds=2) - - await fb_client.initialize_verify_sdsp_track( - session_id=session_id, - expected_track_interval_seconds=1, - expected_track_count=3, - ) - - await fb_client.wait_x_seconds(wait_time_seconds=5) - - await fb_client.start_stop_sdsp_session( - action=SDSPSessionAction.STOP, - session_id=session_id, - ) - - # task.cancel() # Cancel the background task if still running - await task # Wait for the task to complete diff --git a/src/openutm_verification/scenarios/test_sdsp_track_with_bluesky_sim.py b/src/openutm_verification/scenarios/test_sdsp_track_with_bluesky_sim.py index 3451d7a..af7dd12 100644 --- a/src/openutm_verification/scenarios/test_sdsp_track_with_bluesky_sim.py +++ b/src/openutm_verification/scenarios/test_sdsp_track_with_bluesky_sim.py @@ -27,9 +27,7 @@ async def sdsp_track_with_bluesky_sim( session_id=session_id, ) - logger.info("Generating simulated air traffic data using BlueSky client") result = await blue_sky_client.generate_bluesky_sim_air_traffic_data() - logger.info("Submitting simulated air traffic data to Flight Blender") observations = result.details logger.info(f"Generated {len(observations)} observations from BlueSky simulation") diff --git a/src/openutm_verification/server/introspection.py b/src/openutm_verification/server/introspection.py new file mode 100644 index 0000000..0f89fe5 --- /dev/null +++ b/src/openutm_verification/server/introspection.py @@ -0,0 +1,91 @@ +import inspect +import re +from enum import Enum +from typing import Any, Dict, Type + +from openutm_verification.core.execution.dependency_resolution import DEPENDENCIES + + +def _get_type_info(annotation: Any) -> tuple[str, bool, list[dict[str, Any]] | None]: + """Extracts type string, enum status, and options from an annotation.""" + type_str = "Any" + is_enum = False + options = None + + if annotation != inspect.Parameter.empty: + if inspect.isclass(annotation) and issubclass(annotation, Enum): + is_enum = True + type_str = annotation.__name__ + options = [{"name": e.name, "value": e.value} for e in annotation] + else: + type_str = str(annotation) + # Use regex to remove module paths + type_str = re.sub(r"([a-zA-Z_]\w*\.)+", "", type_str) + # Remove wrapper if present + if type_str.startswith(""): + type_str = type_str[8:-2] + + return type_str, is_enum, options + + +def _get_default_value(default: Any) -> Any: + """Extracts the default value for a parameter.""" + if default == inspect.Parameter.empty: + return None + if default is None: + return None + if isinstance(default, Enum): + return default.value + return str(default) + + +def process_parameter(param_name: str, param: inspect.Parameter) -> Dict[str, Any] | None: + """ + Extracts metadata from a function parameter for API generation. + """ + if param_name == "self": + return None + + type_str, is_enum, options = _get_type_info(param.annotation) + default_val = _get_default_value(param.default) + + param_info = { + "name": param_name, + "type": type_str, + "default": default_val, + "required": param.default == inspect.Parameter.empty, + } + + if is_enum: + param_info["isEnum"] = True + param_info["options"] = options + + return param_info + + +def process_method(client_class: Type, method: Any) -> Dict[str, Any] | None: + """ + Extracts metadata from a client method if it's a scenario step. + """ + if not hasattr(method, "_is_scenario_step"): + return None + + step_name = getattr(method, "_step_name") + sig = inspect.signature(method) + parameters = [] + for param_name, param in sig.parameters.items(): + # Skip dependencies that are automatically injected + if param.annotation in DEPENDENCIES: + continue + + param_info = process_parameter(param_name, param) + if param_info: + parameters.append(param_info) + + return { + "id": step_name, + "name": step_name, + "category": client_class.__name__, + "description": inspect.getdoc(method) or "", + "parameters": parameters, + } diff --git a/src/openutm_verification/server/main.py b/src/openutm_verification/server/main.py new file mode 100644 index 0000000..4a0b761 --- /dev/null +++ b/src/openutm_verification/server/main.py @@ -0,0 +1,263 @@ +import asyncio +import json +import os +from contextlib import asynccontextmanager +from datetime import datetime, timezone +from pathlib import Path +from typing import Optional, TypeVar + +import uvicorn +from fastapi import Body, Depends, FastAPI, Request +from fastapi.middleware.cors import CORSMiddleware +from fastapi.responses import StreamingResponse +from fastapi.staticfiles import StaticFiles +from loguru import logger +from pydantic import BaseModel + +# Import dependencies to ensure they are registered and steps are populated +import openutm_verification.core.execution.dependencies # noqa: F401 +from openutm_verification.core.execution.config_models import ( + AirTrafficSimulatorSettings, + ConfigProxy, + DataFiles, + FlightBlenderConfig, +) +from openutm_verification.core.execution.definitions import ScenarioDefinition +from openutm_verification.core.reporting.reporting import create_report_data, generate_reports +from openutm_verification.core.reporting.reporting_models import ( + ScenarioResult, + Status, +) +from openutm_verification.server.router import scenario_router +from openutm_verification.server.runner import SessionManager + +T = TypeVar("T") + +session_manager = SessionManager() + + +@asynccontextmanager +async def lifespan(app: FastAPI): + # Startup + app.state.runner = session_manager + yield + # Shutdown + await session_manager.close_session() + + +app = FastAPI(lifespan=lifespan) + +# Configure CORS +app.add_middleware( + CORSMiddleware, + allow_origins=["*"], # Allow all origins for development + allow_credentials=True, + allow_methods=["*"], + allow_headers=["*"], +) + +app.include_router(scenario_router) + + +def get_session_manager(request: Request) -> SessionManager: + return request.app.state.runner + + +class SessionResetRequest(BaseModel): + """Request model for session reset with optional configuration.""" + + flight_blender: Optional[FlightBlenderConfig] = None + data_files: Optional[DataFiles] = None + air_traffic_simulator_settings: Optional[AirTrafficSimulatorSettings] = None + + +def start_server_mode(config_path: str | None = None, reload: bool = False): + if config_path: + os.environ["OPENUTM_CONFIG_PATH"] = str(config_path) + uvicorn.run( + "openutm_verification.server.main:app", + host="0.0.0.0", + port=8989, + reload=reload, + ) + + +@app.get("/api/info") +async def api_info(): + return {"message": "OpenUTM Verification API is running"} + + +@app.get("/health") +async def health_check(): + return {"status": "ok"} + + +@app.get("/operations") +async def get_operations(runner: SessionManager = Depends(get_session_manager)): + return runner.get_available_operations() + + +@app.post("/session/reset") +async def reset_session( + config: SessionResetRequest = Body(default_factory=SessionResetRequest, embed=True), + runner: SessionManager = Depends(get_session_manager), +): + """Reset session and optionally apply new configuration. + + The configuration from the frontend allows users to: + - Override Flight Blender connection details + - Specify data file paths + - Configure air traffic simulator settings + """ + + logger.debug(f"Session reset request received: {config.model_dump()}") + + await runner.close_session() + + # If configuration is provided from the frontend, apply it + if config.flight_blender: + runner.config.flight_blender = config.flight_blender + logger.info(f"Applied Flight Blender config: {config.flight_blender.url}") + if config.data_files: + current_data_files = runner.config.data_files + updates = {k: v for k, v in config.data_files.model_dump().items() if v is not None} + runner.config.data_files = current_data_files.model_copy(update=updates) + logger.info("Applied data files config (merged overrides)") + if config.air_traffic_simulator_settings: + runner.config.air_traffic_simulator_settings = config.air_traffic_simulator_settings + logger.info("Applied air traffic simulator settings") + + # Refresh global config proxy so dependency settings use updated values + ConfigProxy.override(runner.config) + + await runner.initialize_session() + return {"status": "session_reset"} + + +class GenerateReportRequest(BaseModel): + scenario_name: str = "Interactive Session" + + +@app.post("/session/generate-report") +async def generate_report_endpoint(request: GenerateReportRequest, runner: SessionManager = Depends(get_session_manager)): + if not runner.session_context or not runner.session_context.state: + return {"status": "error", "message": "No active session"} + + # Construct ScenarioResult + state = runner.session_context.state + # Filter out steps without ID or name (though name is required) + steps = state.steps + + # Determine status + failed = any(s.status == Status.FAIL for s in steps) + status = Status.FAIL if failed else Status.PASS + + scenario_result = ScenarioResult( + name=request.scenario_name, + status=status, + duration=0.0, # TODO: Track duration + steps=steps, + flight_declaration_data=state.flight_declaration_data, + flight_declaration_via_operational_intent_data=state.flight_declaration_via_operational_intent_data, + telemetry_data=state.telemetry_data, + air_traffic_data=state.air_traffic_data, + ) + + # Construct ReportData + run_timestamp = datetime.now(timezone.utc) + # Sanitize scenario name for filename: keep only alphanumerics and underscores + safe_name = "".join(c if c.isalnum() else "_" for c in request.scenario_name) + run_id = f"{safe_name}_{run_timestamp.strftime('%Y%m%d_%H%M%S')}" + + # Get config + config = runner.config + + report_data = create_report_data( + config=config, + config_path=str(runner.config_path), + results=[scenario_result], + start_time=run_timestamp, + end_time=run_timestamp, + run_id=run_id, + docs_dir=None, + ) + + try: + # Save report to a specifically named run subdirectory + generate_reports( + report_data, + config.reporting, + ) + return {"status": "success", "report_id": run_id} + except Exception as e: + print(f"Error generating report: {e}") + return {"status": "error", "message": str(e)} + + +@app.post("/run-scenario") +async def run_scenario(scenario: ScenarioDefinition, runner: SessionManager = Depends(get_session_manager)): + return await runner.run_scenario(scenario) + + +@app.post("/run-scenario-async") +async def run_scenario_async(scenario: ScenarioDefinition, runner: SessionManager = Depends(get_session_manager)): + run_id = await runner.start_scenario_task(scenario) + return {"run_id": run_id} + + +@app.get("/run-scenario-events") +async def run_scenario_events(runner: SessionManager = Depends(get_session_manager)): + async def event_stream(): + while True: + status_payload = runner.get_run_status() + while not runner.session_context.state.added_results.empty(): + result = runner.session_context.state.added_results.get_nowait() + yield f"data: {result.model_dump_json()}\n\n" + + if status_payload.get("status") != "running": + done_payload = { + "status": status_payload.get("status"), + "error": status_payload.get("error"), + } + yield f"event: done\ndata: {json.dumps(done_payload)}\n\n" + break + + await asyncio.sleep(0.3) + + return StreamingResponse(event_stream(), media_type="text/event-stream") + + +# Mount static files for web-editor +# Calculate path relative to this file +# src/openutm_verification/server/main.py -> ../../../web-editor/dist +web_editor_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), "../../../web-editor")) + +# Allow override via environment variable (e.g. for Docker production builds) +web_editor_dir = os.environ.get("WEB_EDITOR_PATH", web_editor_dir) + +static_dir = os.path.join(web_editor_dir, "dist") + +# Mount reports directory BEFORE the catch-all "/" route +# This ensures /reports requests are handled correctly +try: + output_dir = Path(session_manager.config.reporting.output_dir) + output_dir.mkdir(parents=True, exist_ok=True) + app.mount("/reports", StaticFiles(directory=str(output_dir)), name="reports") + logger.info(f"Mounted reports directory at /reports -> {output_dir}") +except Exception as e: + logger.warning(f"Could not mount reports directory: {e}") + +if os.path.exists(static_dir): + app.mount("/", StaticFiles(directory=static_dir, html=True), name="static") +else: + + @app.get("/") + async def root(): + return { + "message": "OpenUTM Verification API is running.", + "hint": "To use the web editor, run 'npm run build' in the web-editor directory. Automatic build failed or npm was not found.", + } + + +if __name__ == "__main__": + start_server_mode(reload=True) diff --git a/src/openutm_verification/server/router.py b/src/openutm_verification/server/router.py new file mode 100644 index 0000000..d966c40 --- /dev/null +++ b/src/openutm_verification/server/router.py @@ -0,0 +1,121 @@ +from pathlib import Path +from typing import Any, Type, TypeVar + +import yaml +from fastapi import APIRouter, Depends, HTTPException, Request +from fastapi.responses import PlainTextResponse, RedirectResponse + +from openutm_verification.core.execution.definitions import ScenarioDefinition, StepDefinition +from openutm_verification.core.execution.scenario_loader import load_yaml_scenario_definition +from openutm_verification.utils.paths import get_docs_directory, get_scenarios_directory + +T = TypeVar("T") + +scenario_router = APIRouter() + + +def get_runner(request: Request) -> Any: + return request.app.state.runner + + +def get_dependency(dep_type: Type[T]): + async def dependency(runner: Any = Depends(get_runner)) -> T: + # Ensure session is initialized + if not runner.session_resolver: + await runner.initialize_session() + return await runner.session_resolver.resolve(dep_type) + + return dependency + + +@scenario_router.post("/api/step") +async def execute_step(step: StepDefinition, runner: Any = Depends(get_runner)): + return await runner.execute_single_step(step) + + +@scenario_router.get("/api/scenarios") +async def list_scenarios(): + """List all available scenarios.""" + path = get_scenarios_directory() + if not path.exists(): + return [] + return [f.stem for f in path.glob("*.yaml")] + + +@scenario_router.get("/api/scenarios/{scenario}") +async def get_scenario(scenario: str): + """Get the content of a specific scenario.""" + try: + scenario_def = load_yaml_scenario_definition(scenario) + return scenario_def.model_dump() + except FileNotFoundError: + raise HTTPException(status_code=404, detail="Scenario not found") + except Exception as e: + raise HTTPException(status_code=500, detail=f"Invalid YAML: {e}") + + +@scenario_router.post("/api/scenarios/{name}") +async def save_scenario(name: str, scenario: ScenarioDefinition): + """Save a scenario to a YAML file.""" + path = get_scenarios_directory() + file_path = (path / name).with_suffix(".yaml") + + # Ensure directory exists + path.mkdir(parents=True, exist_ok=True) + + try: + # Convert Pydantic model to dict, excluding None values to keep YAML clean + data = scenario.model_dump(exclude_none=True, exclude_defaults=True) + + with open(file_path, "w") as f: + yaml.dump(data, f, sort_keys=False, default_flow_style=False) + + return {"message": f"Scenario saved to {file_path.name}"} + except Exception as e: + raise HTTPException(status_code=500, detail=f"Failed to save scenario: {e}") + + +@scenario_router.get("/api/scenarios/{scenario}/docs") +async def get_scenario_docs(scenario: str): + """Get the documentation for a specific scenario.""" + file_path = (get_docs_directory() / scenario).with_suffix(".md") + + if not file_path.exists(): + raise HTTPException(status_code=404, detail="Documentation not found") + + with open(file_path, "r") as f: + content = f.read() + return PlainTextResponse(content) + + +@scenario_router.get("/api/reports/latest") +async def get_latest_report(request: Request, scenario: str | None = None): + """Redirect to the latest generated report. Optionally filter by scenario name.""" + runner = request.app.state.runner + output_dir = Path(runner.config.reporting.output_dir) + + if not output_dir.exists(): + raise HTTPException(status_code=404, detail="Reports directory not found") + + # Get all subdirectories that might contain reports + runs = [d for d in output_dir.iterdir() if d.is_dir()] + if not runs: + raise HTTPException(status_code=404, detail="No reports found") + + if scenario: + runs = [d for d in runs if (d / scenario).exists()] + if not runs: + raise HTTPException(status_code=404, detail=f"No reports found for scenario '{scenario}'") + + # Sort by directory name (timestamp) to find the latest + latest_run = sorted(runs, key=lambda d: d.name)[-1] + + report_file = latest_run / "report.html" + if not report_file.exists(): + raise HTTPException(status_code=404, detail="Report file not found in latest run") + + # Construct URL relative to the mounted /reports path + relative_path = report_file.relative_to(output_dir) + url = f"/reports/{relative_path}" + + return RedirectResponse(url=url) diff --git a/src/openutm_verification/server/runner.py b/src/openutm_verification/server/runner.py new file mode 100644 index 0000000..5620082 --- /dev/null +++ b/src/openutm_verification/server/runner.py @@ -0,0 +1,698 @@ +import asyncio +import os +import re +from contextlib import AsyncExitStack +from pathlib import Path +from typing import Any, Callable, Coroutine, Dict, List, Type, TypeVar, cast + +import yaml +from loguru import logger +from pydantic import BaseModel + +from openutm_verification.core.execution.conditions import ConditionEvaluator +from openutm_verification.core.execution.config_models import AppConfig, ConfigProxy, DataFiles +from openutm_verification.core.execution.definitions import ScenarioDefinition, StepDefinition +from openutm_verification.core.execution.dependency_resolution import CONTEXT, DEPENDENCIES, DependencyResolver, call_with_dependencies +from openutm_verification.core.execution.scenario_runner import STEP_REGISTRY, ScenarioContext, _scenario_state +from openutm_verification.core.reporting.reporting_models import Status, StepResult +from openutm_verification.scenarios.common import generate_flight_declaration, generate_telemetry +from openutm_verification.server.introspection import process_method + +T = TypeVar("T") + + +class SessionManager: + _instance = None + _initialized: bool + + def __new__(cls, *args, **kwargs): + if cls._instance is None: + cls._instance = super().__new__(cls) + return cls._instance + + def __init__(self, config_path: str = "config/default.yaml"): + if hasattr(self, "_initialized") and self._initialized: + return + + config_path = os.environ.get("OPENUTM_CONFIG_PATH", config_path) + + self.config_path = Path(config_path) + self.config = self._load_config() + self.client_map: Dict[str, Type] = {} + for dep_type in DEPENDENCIES: + if isinstance(dep_type, type) and dep_type.__name__.endswith("Client"): + self.client_map[dep_type.__name__] = dep_type + + self.session_stack: AsyncExitStack | None = None + self.session_resolver: DependencyResolver | None = None + self.session_context: ScenarioContext | None = None + self.session_tasks: Dict[str, asyncio.Task] = {} + self.data_files: DataFiles | None = None + self.current_run_task: asyncio.Task | None = None + self.current_run_error: str | None = None + self._initialized = True + + async def start_scenario_task(self, scenario: ScenarioDefinition): + if not self.session_resolver: + await self.initialize_session() + + if self.current_run_task and not self.current_run_task.done(): + self.current_run_task.cancel() + + self.current_run_error = None + + task = asyncio.create_task(self.run_scenario(scenario)) + self.current_run_task = task + + def _on_done(t: asyncio.Task) -> None: + try: + t.result() + except Exception as exc: # noqa: BLE001 + self.current_run_error = str(exc) + + task.add_done_callback(_on_done) + + def get_run_status(self) -> Dict[str, Any]: + status = "running" + if self.current_run_task and self.current_run_task.done(): + status = "error" if self.current_run_error else "completed" + + return { + "status": status, + "error": self.current_run_error, + } + + async def initialize_session(self): + logger.info("Initializing new session") + if self.session_stack: + await self.close_session() + + self.session_stack = AsyncExitStack() + self.session_resolver = DependencyResolver(self.session_stack) + + # We use a default context so dependencies like DataFiles can be resolved + suite_name = next(iter(self.config.suites.keys()), "default") + + CONTEXT.set( + { + "scenario_id": "interactive_session", + "suite_scenario": None, + "suite_name": suite_name, + "docs": None, + } + ) + + # Pre-generate data using resolved DataFiles + try: + self.data_files = cast(DataFiles, await self.session_resolver.resolve(DataFiles)) + flight_declaration, telemetry_states = self._generate_data(self.data_files) + + self.session_context = ScenarioContext() + with self.session_context: + if flight_declaration: + ScenarioContext.set_flight_declaration_data(flight_declaration) + if telemetry_states: + ScenarioContext.set_telemetry_data(telemetry_states) + + except Exception as e: + logger.error(f"Data generation failed: {e}") + + async def close_session(self): + logger.info("Closing session") + if self.session_stack: + await self.session_stack.aclose() + self.session_stack = None + self.session_resolver = None + self.session_context = None + _scenario_state.set(None) + + def _resolve_ref(self, ref: str, loop_context: Dict[str, Any] | None = None) -> Any: + # Handle loop variables first + if ref.startswith("loop."): + if not loop_context: + raise ValueError(f"Loop variable '{ref}' used outside of loop context") + parts = ref.split(".") + if len(parts) != 2: + raise ValueError(f"Loop reference must be 'loop.index' or 'loop.item', got '{ref}'") + field = parts[1] + if field == "index": + return loop_context.get("index", 0) + elif field == "item": + if "item" not in loop_context: + raise ValueError("loop.item used but no item in loop context") + return loop_context["item"] + else: + raise ValueError(f"Unknown loop field '{field}', must be 'index' or 'item'") + + if ref.startswith("data_files."): + if not self.data_files: + raise ValueError("Data files not initialized") + parts = ref.split(".") + if len(parts) != 2: + raise ValueError(f"Invalid data_files reference: {ref}") + attr = parts[1] + if not hasattr(self.data_files, attr): + raise ValueError(f"Data file '{attr}' not found") + return getattr(self.data_files, attr) + + if not ref.startswith("steps."): + # Fallback for legacy refs if any, or just error + raise ValueError(f"Invalid reference format: {ref}. Expected 'steps..result...' or 'data_files.'") + + parts = ref.split(".") + if len(parts) < 3: + raise ValueError(f"Invalid reference format: {ref}. Expected 'steps..result...'") + + step_name = parts[1] + + if not self.session_context or not self.session_context.state: + raise ValueError("No active scenario context or state available") + + state = self.session_context.state + + step_result: Any | None = None + if step_name in state.step_results: + step_result = state.step_results[step_name] + elif loop_context and "group_context" in loop_context: + group_context = loop_context["group_context"] + if step_name in group_context: + step_result = group_context[step_name] + else: + matching_ids = [key for key in state.step_results.keys() if key.endswith(f".{step_name}") or key == step_name] + if matching_ids: + step_result = state.step_results[matching_ids[-1]] + + if step_result is None: + logger.error(f"Step '{step_name}' not found in results. Available steps: {list(state.step_results.keys())}") + raise ValueError(f"Referenced step '{step_name}' not found in results") + + # Start traversing from the step result object + current_value = step_result + + # Skip "steps" and "step_name" + remaining_parts = parts[2:] + + for part in remaining_parts: + if not part: + continue + if isinstance(current_value, dict): + current_value = current_value.get(part) + elif hasattr(current_value, part): + current_value = getattr(current_value, part) + else: + raise ValueError( + f"Could not resolve '{part}' in '{ref}'." + f"Available keys: {list(current_value.keys()) if isinstance(current_value, dict) else dir(current_value)}" + ) + + return current_value + + def resolve_references_in_params(self, params: Dict[str, Any], loop_context: Dict[str, Any] | None = None) -> None: + # Regex to find ${{ ... }} patterns + pattern = re.compile(r"\$\{\{\s*(.*?)\s*\}\}") + loop_context = loop_context or {} + + def resolve_value(value: Any) -> Any: + if isinstance(value, str): + match = pattern.fullmatch(value) + if match: + # Entire string is a reference + ref = match.group(1) + try: + resolved = self._resolve_ref(ref, loop_context) + logger.info(f"Resolved reference {ref} to {resolved}") + return resolved + except Exception as e: + logger.error(f"Failed to resolve reference {ref}: {e}") + raise + + # Check for partial matches (string interpolation) + # For now, let's only support full matches for simplicity and type safety + # If we need interpolation "Session ID: ${{ ... }}", we can add it later. + return value + elif isinstance(value, dict): + return {k: resolve_value(v) for k, v in value.items()} + elif isinstance(value, list): + return [resolve_value(v) for v in value] + return value + + for key, value in params.items(): + params[key] = resolve_value(value) + + def get_available_operations(self) -> List[Dict[str, Any]]: + operations = [] + for entry in STEP_REGISTRY.values(): + method = getattr(entry.client_class, entry.method_name) + op_info = process_method(entry.client_class, method) + if op_info: + operations.append(op_info) + return operations + + def _load_config(self) -> AppConfig: + if not self.config_path.exists(): + # Try to find it relative to project root if we are in src/... + pass + + # Fallback to absolute path if needed, but for now assume running from root + with open(self.config_path, "r", encoding="utf-8") as f: + config_data = yaml.safe_load(f) + + config = AppConfig.model_validate(config_data) + project_root = self.config_path.parent.parent + config.resolve_paths(project_root) + + # Only initialize ConfigProxy if it hasn't been initialized yet + try: + ConfigProxy.initialize(config) + except TypeError: + # If already initialized, we can optionally override it or just ignore + # For now, let's override to ensure we have the latest config + ConfigProxy._config = None + ConfigProxy.initialize(config) + + return config + + def _generate_data(self, data_files: DataFiles): + flight_declaration = None + telemetry_states = None + + if data_files.flight_declaration: + try: + flight_declaration = generate_flight_declaration(data_files.flight_declaration) + except Exception as e: + logger.warning(f"Could not generate flight declaration: {e}") + + if data_files.trajectory: + try: + telemetry_states = generate_telemetry(data_files.trajectory) + except Exception as e: + logger.warning(f"Could not generate telemetry: {e}") + + return flight_declaration, telemetry_states + + def _prepare_params(self, step: StepDefinition, loop_context: Dict[str, Any] | None = None) -> Dict[str, Any]: + params = step.arguments.copy() if step.arguments else {} + self.resolve_references_in_params(params, loop_context) + return params + + def _serialize_result(self, result: Any) -> Any: + if isinstance(result, BaseModel): + return result.model_dump() + return result + + def _determine_status(self, result: Any) -> str: + if isinstance(result, StepResult): + if result.status == Status.FAIL: + return "failure" + elif result.status == Status.PASS: + return "success" + return "success" + + def _record_background_result(self, step_id: str, step_name: str, task: asyncio.Task) -> None: + """Attach a completion handler so background steps store their final result.""" + + def _on_done(t: asyncio.Task) -> None: + if not self.session_context: + return + + try: + res = t.result() + if isinstance(res, StepResult): + res.id = step_id + self.session_context.add_result(res) + return + + result_data = self._serialize_result(res) + status_str = self._determine_status(res) + status = Status.PASS if status_str == "success" else Status.FAIL + self.session_context.add_result(StepResult(id=step_id, name=step_name, status=status, result=result_data, duration=0.0)) + except Exception as exc: # noqa: BLE001 + self.session_context.add_result(StepResult(id=step_id, name=step_name, status=Status.FAIL, error_message=str(exc), duration=0.0)) + + task.add_done_callback(_on_done) + + async def _record_step_running(self, step: StepDefinition, task_id: Any = None) -> StepResult: + assert self.session_context is not None + result = StepResult( + id=step.id or step.step, + name=step.step, + status=Status.RUNNING, + duration=0.0, + result={"task_id": task_id} if task_id is not None else None, + ) + self.session_context.add_result(result) + return result + + async def _execute_step(self, step: StepDefinition, loop_context: Dict[str, Any] | None = None) -> StepResult: + assert self.session_resolver is not None and self.session_context is not None + if step.step not in STEP_REGISTRY: + raise ValueError(f"Step '{step.step}' not found in registry") + + entry = STEP_REGISTRY[step.step] + client = await self.session_resolver.resolve(entry.client_class) + + method = getattr(client, entry.method_name) + + # Prepare parameters (resolve refs, inject context) + kwargs = self._prepare_params(step, loop_context) + + if step.background: + step_id = step.id or step.step + logger.info(f"Executing step '{step_id}' ({step.step}) in background") + task = asyncio.create_task(call_with_dependencies(method, resolver=self.session_resolver, **kwargs)) + self.session_tasks[step_id] = task + self._record_background_result(step_id, step.step, task) + return await self._record_step_running(step, task_id=step_id) + await self._record_step_running(step) + + # Execute with dependencies + result = await call_with_dependencies(method, resolver=self.session_resolver, **kwargs) + + # If result is a StepResult and we have a step ID, update the ID in the result object + # This updates the object in state.steps as well since it's the same reference + if step.id and hasattr(result, "id"): + result.id = step.id + # Add result to context + step_id = step.id or step.step + logger.info(f"Adding result for step '{step_id}' (name: {step.step}) to context") + + # If the result is already a StepResult (from scenario_step decorator), use it directly but ensure ID is correct + if isinstance(result, StepResult): + result.id = step_id + self.session_context.add_result(result) + return result + + step_result = StepResult(id=step_id, name=step.step, status=Status.PASS, result=result, duration=0.0) + self.session_context.add_result(step_result) + return step_result + + async def execute_single_step(self, step: StepDefinition, loop_context: Dict[str, Any] | None = None) -> StepResult: + if not self.session_resolver or not self.session_context: + logger.info("Session resolver not found, initializing session") + await self.initialize_session() + + assert self.session_resolver is not None + + # Set scenario state context for this execution + if not self.session_context: + raise ValueError("Session context not initialized") + + try: + with self.session_context: + # Ensure state is available after entering context + if not self.session_context.state: + raise ValueError("Scenario state not initialized") + return await self._execute_step(step, loop_context) + except Exception as e: + step_id = step.id or step.step + logger.error(f"Error executing step {step_id}: {e}") + raise + + def _is_group_reference(self, step_name: str, scenario: ScenarioDefinition) -> bool: + """Check if a step name references a group.""" + return step_name in scenario.groups + + async def _execute_group( + self, step: StepDefinition, scenario: ScenarioDefinition, loop_context: Dict[str, Any] | None = None + ) -> List[StepResult]: + """Execute a group of steps.""" + group_name = step.step + if group_name not in scenario.groups: + raise ValueError(f"Group '{group_name}' not found in scenario") + + group = scenario.groups[group_name] + results = [] + group_context = {} # Store results within this group execution + + # Create enhanced loop context with group_context + enhanced_loop_context = (loop_context or {}).copy() + enhanced_loop_context["group_context"] = group_context + + logger.info(f"Executing group '{group_name}' with {len(group.steps)} steps") + + for step in group.steps: + await self._record_step_running(step) + + for group_step in group.steps: + # Ensure each step has an ID + if not group_step.id: + group_step.id = group_step.step + + original_id = group_step.id + exec_step = group_step + + if loop_context and "index" in loop_context: + loop_index = loop_context.get("index") + exec_step = group_step.model_copy(deep=True) + exec_step.id = f"{group_name}[{loop_index}].{original_id}" + + # Execute the step with the enhanced context + result = await self.execute_single_step(exec_step, enhanced_loop_context) + results.append(result) + + # Store result in group context for subsequent steps + # Store the entire result dict so nested access works (group.step_id.result) + group_context[original_id] = result + + # If step failed and it's not allowed to fail, break the group + if result.status == Status.FAIL: + logger.error(f"Group step '{group_step.id}' failed, stopping group execution") + break + + return results + + async def _wait_for_dependencies(self, step: StepDefinition) -> None: + """Wait for any declared dependencies (by step ID) before executing a step.""" + if not step.needs: + return + + for dep_id in step.needs: + # If dependency already completed and recorded, continue + if self.session_context and self.session_context.state and dep_id in self.session_context.state.step_results: + continue + + if dep_id not in self.session_tasks: + raise ValueError(f"Dependency '{dep_id}' not found or not running") + + logger.info(f"Waiting for dependency '{dep_id}' to complete") + task = self.session_tasks[dep_id] + try: + await task + finally: + # Leave the result in context; drop the handle so it doesn't pile up + self.session_tasks.pop(dep_id, None) + + async def run_scenario(self, scenario: ScenarioDefinition) -> List[StepResult]: + if not self.session_resolver: + await self.initialize_session() + + # Validate and prepare steps + seen_ids = set() + for step in scenario.steps: + if not step.id: + step.id = step.step + + if step.id in seen_ids: + raise ValueError(f"Duplicate step ID found: '{step.id}'. Step IDs must be unique within a scenario.") + seen_ids.add(step.id) + + for step in scenario.steps: + # Evaluate condition if present + # If no condition is specified, default to success() - only run if no failures so far + condition_to_evaluate = step.if_condition or "success()" + + logger.debug(f"Step '{step.id}': if_condition='{step.if_condition}', evaluating: '{condition_to_evaluate}'") + + step_results_dict = {} + if self.session_context and self.session_context.state: + step_results_dict = self.session_context.state.step_results + + evaluator = ConditionEvaluator(step_results_dict) + should_run = evaluator.evaluate(condition_to_evaluate) + + if not should_run: + logger.info(f"Skipping step '{step.id}' due to condition: {condition_to_evaluate}") + # Record as skipped + skipped_result = StepResult( + id=step.id or step.step, + name=step.step, + status=Status.SKIP, + duration=0.0, + result=None, + error_message=f"Skipped due to condition: {condition_to_evaluate}", + ) + if self.session_context: + with self.session_context: + self.session_context.add_result(skipped_result) + continue + + # Wait for declared dependencies (useful for background steps) + await self._wait_for_dependencies(step) + + # Check if this step references a group + if self._is_group_reference(step.step, scenario): + # Handle loop execution for groups + if step.loop: + loop_results = await self._execute_loop_for_group(step, scenario) + if loop_results and any(r.status == Status.FAIL for r in loop_results): + logger.error(f"Loop for group '{step.id}' failed, breaking scenario") + break + else: + group_results = await self._execute_group(step, scenario) + if any(r.status == Status.FAIL for r in group_results): + logger.error(f"Group '{step.id}' failed, breaking scenario") + break + else: + # Regular step execution + # Handle loop execution + if step.loop: + loop_results = await self._execute_loop(step) + # Check if any loop iteration failed + if loop_results and any(r.status == Status.FAIL for r in loop_results): + logger.error(f"Loop for step '{step.id}' failed, breaking scenario") + break + else: + await self.execute_single_step(step) + return self.session_context.state.steps + + async def _execute_loop_for_group(self, step: StepDefinition, scenario: ScenarioDefinition) -> List[StepResult]: + """Execute a group multiple times based on loop configuration.""" + results = [] + loop_config = step.loop + + if not loop_config: + return results + + # Determine loop iterations + iterations = [] + if loop_config.count is not None: + iterations = list(range(loop_config.count)) + elif loop_config.items is not None: + iterations = loop_config.items + + if iterations: + for index, item in enumerate(iterations): + loop_context = {"index": index, "item": item if loop_config.items else index} + + # Check while condition if present + if loop_config.while_condition: + step_results_dict = {} + if self.session_context and self.session_context.state: + step_results_dict = self.session_context.state.step_results + + evaluator = ConditionEvaluator(step_results_dict, loop_context) + should_continue = evaluator.evaluate(loop_config.while_condition) + if not should_continue: + logger.info(f"Breaking loop for group '{step.id}' at iteration {index} due to while condition") + break + + logger.info(f"Executing loop iteration {index} for group '{step.id}'") + group_results = await self._execute_group(step, scenario, loop_context) + results.extend(group_results) + + if any(r.status == Status.FAIL for r in group_results): + logger.error(f"Loop iteration {index} for group failed, breaking loop") + break + + return results + + async def _execute_loop(self, step: StepDefinition) -> List[StepResult]: + """Execute a step multiple times based on loop configuration.""" + results = [] + loop_config = step.loop + + if not loop_config: + return results + + # Determine loop iterations + iterations = [] + if loop_config.count is not None: + # Fixed count loop + iterations = list(range(loop_config.count)) + elif loop_config.items is not None: + # Items loop + iterations = loop_config.items + else: + # while loop - we'll handle separately + pass + + if iterations: + # Execute for each iteration + for index, item in enumerate(iterations): + loop_context = {"index": index, "item": item if loop_config.items else index} + + # Check if condition for continuing loop + if loop_config.while_condition: + step_results_dict = {} + if self.session_context and self.session_context.state: + step_results_dict = self.session_context.state.step_results + + evaluator = ConditionEvaluator(step_results_dict, loop_context) + should_continue = evaluator.evaluate(loop_config.while_condition) + if not should_continue: + logger.info(f"Breaking loop for step '{step.id}' at iteration {index} due to while condition") + break + + # Create a modified step with loop-aware ID + loop_step = step.model_copy(deep=True) + loop_step.id = f"{step.id}[{index}]" + + logger.info(f"Executing loop iteration {index} for step '{step.id}'") + result = await self.execute_single_step(loop_step, loop_context) + results.append(result) + + if result.status == Status.FAIL: + logger.error(f"Loop iteration {index} failed, breaking loop") + break + + elif loop_config.while_condition: + # Pure while loop (no items, no count) + index = 0 + max_iterations = 100 # Safety limit + + while index < max_iterations: + step_results_dict = {} + if self.session_context and self.session_context.state: + step_results_dict = self.session_context.state.step_results + + loop_context = {"index": index, "item": index} + evaluator = ConditionEvaluator(step_results_dict, loop_context) + should_continue = evaluator.evaluate(loop_config.while_condition) + + if not should_continue: + logger.info(f"Exiting while loop for step '{step.id}' at iteration {index}") + break + + loop_step = step.model_copy(deep=True) + loop_step.id = f"{step.id}[{index}]" + + logger.info(f"Executing while loop iteration {index} for step '{step.id}'") + result = await self.execute_single_step(loop_step, loop_context) + results.append(result) + + if result.status == Status.FAIL: + logger.error(f"While loop iteration {index} failed, breaking loop") + break + + index += 1 + + if index >= max_iterations: + logger.warning(f"While loop for step '{step.id}' reached maximum iterations ({max_iterations})") + + return results + + async def execute_function(self, func: Callable[..., Coroutine[Any, Any, T]]) -> T: + if not self.session_resolver: + await self.initialize_session() + + assert self.session_resolver is not None + + if not self.session_context: + raise ValueError("Session context not initialized") + + with self.session_context: + return await call_with_dependencies(func, resolver=self.session_resolver) + + +# Import dependencies to ensure they are registered +import openutm_verification.core.execution.dependencies # noqa: E402, F401 diff --git a/src/openutm_verification/utils/paths.py b/src/openutm_verification/utils/paths.py index 7d0f95a..dba01be 100644 --- a/src/openutm_verification/utils/paths.py +++ b/src/openutm_verification/utils/paths.py @@ -1,26 +1,23 @@ +import functools +import os from pathlib import Path -def get_docs_directory() -> Path | None: +@functools.cache +def get_docs_directory() -> Path: """ Determines the directory containing documentation and images. - - Strategies: - 1. Installed package location: openutm_verification/docs/ - 2. Development location: project_root/docs/ """ - # 1. Try installed package location: src/openutm_verification/docs/scenarios/ - # This file is in src/openutm_verification/utils/ - package_root = Path(__file__).parent.parent - docs_dir = package_root / "docs" / "scenarios" - - if docs_dir.exists(): - return docs_dir + package_root = Path(__file__).parents[3] # Dev location + docs_dir = os.getenv("DOCS_PATH", str(package_root / "docs" / "scenarios")) + return Path(docs_dir) - # 2. Try development location: project_root/docs/scenarios/ - # src/openutm_verification/utils/ -> src/openutm_verification/ -> src/ -> root/ (4 levels) - docs_dir = Path(__file__).parents[3] / "docs" / "scenarios" - if docs_dir.exists(): - return docs_dir - return None +@functools.cache +def get_scenarios_directory() -> Path: + """ + Determines the directory containing scenario definitions. + """ + package_root = Path(__file__).parents[3] # Dev location + scenarios_dir = os.getenv("SCENARIOS_PATH", str(package_root / "scenarios")) + return Path(scenarios_dir) diff --git a/src/openutm_verification/utils/time_utils.py b/src/openutm_verification/utils/time_utils.py new file mode 100644 index 0000000..4998dc4 --- /dev/null +++ b/src/openutm_verification/utils/time_utils.py @@ -0,0 +1,50 @@ +import re +from datetime import datetime + + +def get_run_timestamp_str(dt: datetime) -> str: + """Safely format a datetime for use in filenames/directories.""" + # Ensure UTC for consistency if naive? Or just format as is. + # The requirement is YYYY-MM-DD_HH-MM-SS + return dt.strftime("%Y-%m-%d_%H-%M-%S") + + +def parse_duration(duration: str | int | float) -> float: + """ + Parses a duration string (e.g., "5s", "10m", "1h") into seconds. + If no suffix is provided, defaults to seconds. + """ + if isinstance(duration, (int, float)): + return float(duration) + + if not isinstance(duration, str): + raise ValueError(f"Invalid duration type: {type(duration)}") + + duration = duration.strip().lower() + if not duration: + return 0.0 + + # Check for simple number string + try: + return float(duration) + except ValueError: + pass + + # Parse with suffix + match = re.match(r"^(\d+(?:\.\d+)?)\s*([a-z]+)$", duration) + if not match: + raise ValueError(f"Invalid duration format: {duration}") + + value, unit = match.groups() + value = float(value) + + if unit in ("s", "sec", "seconds"): + return value + elif unit in ("m", "min", "minutes"): + return value * 60 + elif unit in ("h", "hr", "hours"): + return value * 3600 + elif unit in ("d", "day", "days"): + return value * 86400 + else: + raise ValueError(f"Unknown time unit: {unit}") diff --git a/src/openutm_verification/utils/websocket_utils.py b/src/openutm_verification/utils/websocket_utils.py new file mode 100644 index 0000000..0d00c80 --- /dev/null +++ b/src/openutm_verification/utils/websocket_utils.py @@ -0,0 +1,27 @@ +import asyncio +from typing import AsyncGenerator + +import arrow +from loguru import logger +from websockets.asyncio.client import ClientConnection + + +async def receive_messages_for_duration( + ws_connection: ClientConnection, + duration_seconds: float, +) -> AsyncGenerator[str | bytes, None]: + """ + Yields messages from a WebSocket connection for a specified duration. + Stops when the duration expires or a timeout occurs. + """ + end_time = arrow.now().shift(seconds=duration_seconds) + while arrow.now() < end_time: + remaining_time = (end_time - arrow.now()).total_seconds() + if remaining_time <= 0: + break + try: + message = await asyncio.wait_for(ws_connection.recv(), timeout=remaining_time) + yield message + except asyncio.TimeoutError: + logger.debug("Timeout waiting for websocket message") + break diff --git a/tests/test_client_steps.py b/tests/test_client_steps.py index c9a34d2..32d6d4f 100644 --- a/tests/test_client_steps.py +++ b/tests/test_client_steps.py @@ -4,6 +4,7 @@ import pytest from openutm_verification.core.clients.air_traffic.air_traffic_client import AirTrafficClient +from openutm_verification.core.clients.common.common_client import CommonClient from openutm_verification.core.clients.flight_blender.flight_blender_client import FlightBlenderClient from openutm_verification.core.clients.opensky.opensky_client import OpenSkyClient from openutm_verification.core.reporting.reporting_models import Status @@ -42,6 +43,12 @@ def os_client(): return client +@pytest.fixture +def common_client(): + client = CommonClient() + return client + + # FlightBlenderClient Tests @@ -53,7 +60,7 @@ async def test_upload_geo_fence(fb_client): with patch("builtins.open", mock_open(read_data='{"type": "FeatureCollection"}')): result = await fb_client.upload_geo_fence(filename="test.geojson") - assert result.details["id"] == "geo_fence_123" + assert result.result["id"] == "geo_fence_123" assert fb_client.latest_geo_fence_id == "geo_fence_123" fb_client.put.assert_called_once() @@ -66,7 +73,7 @@ async def test_get_geo_fence(fb_client): result = await fb_client.get_geo_fence() - assert result.details["id"] == "geo_fence_123" + assert result.result["id"] == "geo_fence_123" fb_client.get.assert_called_once_with("/geo_fence_ops/geo_fence/geo_fence_123") @@ -78,8 +85,8 @@ async def test_delete_geo_fence(fb_client): result = await fb_client.delete_geo_fence() - assert result.details["id"] == "geo_fence_123" - assert result.details["deleted"] is True + assert result.result["id"] == "geo_fence_123" + assert result.result["deleted"] is True assert fb_client.latest_geo_fence_id is None fb_client.delete.assert_called_once_with("/geo_fence_ops/geo_fence/geo_fence_123/delete") @@ -93,7 +100,7 @@ async def test_upload_flight_declaration_file(fb_client): mock_now.return_value.shift.return_value.isoformat.return_value = "2023-01-01T00:00:00Z" result = await fb_client.upload_flight_declaration(declaration="test.json") - assert result.details["id"] == "fd_123" + assert result.result["id"] == "fd_123" assert fb_client.latest_flight_declaration_id == "fd_123" fb_client.post.assert_called_once() @@ -104,7 +111,7 @@ async def test_update_operation_state(fb_client): mock_response.json.return_value = {"status": "success"} fb_client.put.return_value = mock_response - result = await fb_client.update_operation_state(new_state=OperationState.ACTIVATED) + result = await fb_client.update_operation_state(state=OperationState.ACTIVATED) assert result.status == Status.PASS fb_client.put.assert_called_once() @@ -147,11 +154,11 @@ async def test_submit_telemetry_from_file(fb_client): fb_client.put.assert_called_once() -async def test_wait_x_seconds(fb_client): +async def test_wait_x_seconds(common_client): with patch("asyncio.sleep", AsyncMock()) as mock_sleep: - result = await fb_client.wait_x_seconds(wait_time_seconds=2) + result = await common_client.wait(duration=2) - assert "Waited for Flight Blender to process 2 seconds" in result.details + assert "Waited for Flight Blender to process 2 seconds" in result.result mock_sleep.assert_called_once_with(2) @@ -201,9 +208,9 @@ async def test_submit_telemetry(fb_client): async def test_check_operation_state(fb_client): with patch("asyncio.sleep", AsyncMock()) as mock_sleep: - result = await fb_client.check_operation_state(expected_state=OperationState.ACTIVATED, duration_seconds=1) + result = await fb_client.check_operation_state(expected_state=OperationState.ACTIVATED, duration=1) - assert "Waited for Flight Blender to process OperationState.ACTIVATED state" in result.details + assert "Waited for Flight Blender to process OperationState.ACTIVATED state" in result.result mock_sleep.assert_called_once_with(1) @@ -213,9 +220,9 @@ async def test_check_operation_state_connected(fb_client): mock_response.json.return_value = {"state": OperationState.ACTIVATED.value} fb_client.get.return_value = mock_response - result = await fb_client.check_operation_state_connected(expected_state=OperationState.ACTIVATED, duration_seconds=5) + result = await fb_client.check_operation_state_connected(expected_state=OperationState.ACTIVATED, duration=5) - assert result.details["state"] == OperationState.ACTIVATED.value + assert result.result["state"] == OperationState.ACTIVATED.value fb_client.get.assert_called() @@ -227,8 +234,8 @@ async def test_delete_flight_declaration(fb_client): result = await fb_client.delete_flight_declaration() - assert result.details["id"] == "fd_123" - assert result.details["deleted"] is True + assert result.result["id"] == "fd_123" + assert result.result["deleted"] is True assert fb_client.latest_flight_declaration_id is None fb_client.delete.assert_called_once_with("/flight_declaration_ops/flight_declaration/fd_123/delete") @@ -263,7 +270,7 @@ async def test_start_stop_sdsp_session(fb_client): result = await fb_client.start_stop_sdsp_session(session_id="sess_123", action=SDSPSessionAction.START) - assert "start Heartbeat Track message received" in result.details + assert "start Heartbeat Track message received" in result.result fb_client.put.assert_called_once() @@ -432,7 +439,7 @@ def side_effect_get(arg): result = await fb_client.submit_simulated_air_traffic(observations=obs) - assert result.details is True + assert result.result is True assert fb_client.post.called @@ -511,7 +518,7 @@ async def test_generate_simulated_air_traffic_data(at_client): result = await at_client.generate_simulated_air_traffic_data() - assert result.details == [[{"obs": 1}]] + assert result.result == [[{"obs": 1}]] mock_sim_instance.generate_air_traffic_data.assert_called_once() @@ -529,6 +536,6 @@ async def test_fetch_data(os_client): result = await os_client.fetch_data() - assert len(result.details) == 1 - assert result.details[0].icao_address == "icao1" + assert len(result.result) == 1 + assert result.result[0].icao_address == "icao1" os_client.get.assert_called_once() diff --git a/tests/test_conditions.py b/tests/test_conditions.py new file mode 100644 index 0000000..f4f2203 --- /dev/null +++ b/tests/test_conditions.py @@ -0,0 +1,173 @@ +"""Tests for conditional execution and loop features.""" + +from openutm_verification.core.execution.conditions import ConditionEvaluator +from openutm_verification.core.reporting.reporting_models import Status, StepResult + + +class TestConditionEvaluator: + """Test the ConditionEvaluator class.""" + + def test_success_function_with_all_passed(self): + """Test success() returns True when all steps passed.""" + steps = { + "step1": StepResult(id="step1", name="Step 1", status=Status.PASS, duration=1.0), + "step2": StepResult(id="step2", name="Step 2", status=Status.PASS, duration=1.0), + } + evaluator = ConditionEvaluator(steps) + assert evaluator.evaluate("success()") is True + + def test_success_function_with_failure(self): + """Test success() returns False when any step failed.""" + steps = { + "step1": StepResult(id="step1", name="Step 1", status=Status.PASS, duration=1.0), + "step2": StepResult(id="step2", name="Step 2", status=Status.FAIL, duration=1.0), + } + evaluator = ConditionEvaluator(steps) + assert evaluator.evaluate("success()") is False + + def test_success_function_ignores_skipped(self): + """Test success() ignores skipped steps.""" + steps = { + "step1": StepResult(id="step1", name="Step 1", status=Status.PASS, duration=1.0), + "step2": StepResult(id="step2", name="Step 2", status=Status.SKIP, duration=0.0), + } + evaluator = ConditionEvaluator(steps) + assert evaluator.evaluate("success()") is True + + def test_failure_function_with_failure(self): + """Test failure() returns True when any step failed.""" + steps = { + "step1": StepResult(id="step1", name="Step 1", status=Status.PASS, duration=1.0), + "step2": StepResult(id="step2", name="Step 2", status=Status.FAIL, duration=1.0), + } + evaluator = ConditionEvaluator(steps) + assert evaluator.evaluate("failure()") is True + + def test_failure_function_with_all_passed(self): + """Test failure() returns False when all steps passed.""" + steps = { + "step1": StepResult(id="step1", name="Step 1", status=Status.PASS, duration=1.0), + "step2": StepResult(id="step2", name="Step 2", status=Status.PASS, duration=1.0), + } + evaluator = ConditionEvaluator(steps) + assert evaluator.evaluate("failure()") is False + + def test_always_function(self): + """Test always() always returns True.""" + steps = { + "step1": StepResult(id="step1", name="Step 1", status=Status.FAIL, duration=1.0), + } + evaluator = ConditionEvaluator(steps) + assert evaluator.evaluate("always()") is True + + def test_step_status_check(self): + """Test checking specific step status.""" + steps = { + "step1": StepResult(id="step1", name="Step 1", status=Status.PASS, duration=1.0), + "step2": StepResult(id="step2", name="Step 2", status=Status.FAIL, duration=1.0), + } + evaluator = ConditionEvaluator(steps) + assert evaluator.evaluate("steps.step1.status == 'success'") is True + assert evaluator.evaluate("steps.step2.status == 'success'") is False + assert evaluator.evaluate("steps.step2.status == 'failure'") is True + + def test_step_result_check(self): + """Test accessing step result values.""" + steps = { + "step1": StepResult(id="step1", name="Step 1", status=Status.PASS, duration=1.0, result={"data": "value"}), + } + evaluator = ConditionEvaluator(steps) + assert evaluator.evaluate("steps.step1.result != None") is True + + def test_complex_condition_with_and(self): + """Test complex condition with AND operator.""" + steps = { + "step1": StepResult(id="step1", name="Step 1", status=Status.PASS, duration=1.0), + "step2": StepResult(id="step2", name="Step 2", status=Status.PASS, duration=1.0), + } + evaluator = ConditionEvaluator(steps) + assert evaluator.evaluate("success() && steps.step1.status == 'success'") is True + assert evaluator.evaluate("success() && steps.step1.status == 'failure'") is False + + def test_complex_condition_with_or(self): + """Test complex condition with OR operator.""" + steps = { + "step1": StepResult(id="step1", name="Step 1", status=Status.FAIL, duration=1.0), + "step2": StepResult(id="step2", name="Step 2", status=Status.PASS, duration=1.0), + } + evaluator = ConditionEvaluator(steps) + assert evaluator.evaluate("failure() || steps.step2.status == 'success'") is True + assert evaluator.evaluate("success() || steps.step2.status == 'success'") is True + + def test_condition_with_not(self): + """Test condition with NOT operator.""" + steps = { + "step1": StepResult(id="step1", name="Step 1", status=Status.SKIP, duration=0.0), + } + evaluator = ConditionEvaluator(steps) + assert evaluator.evaluate("steps.step1.status != 'skipped'") is False + assert evaluator.evaluate("not steps.step1.status == 'skipped'") is False + + def test_empty_condition_returns_true(self): + """Test that empty condition defaults to True.""" + evaluator = ConditionEvaluator({}) + assert evaluator.evaluate("") is True + assert evaluator.evaluate(" ") is True + + def test_unknown_step_reference(self): + """Test referencing unknown step returns False.""" + steps = { + "step1": StepResult(id="step1", name="Step 1", status=Status.PASS, duration=1.0), + } + evaluator = ConditionEvaluator(steps) + # Should not raise, but return False due to warning and None replacement + result = evaluator.evaluate("steps.unknown_step.status == 'success'") + assert result is False + + def test_loop_index_in_condition(self): + """Test using loop.index in condition.""" + steps = {} + loop_context = {"index": 5, "item": "test"} + evaluator = ConditionEvaluator(steps, loop_context) + assert evaluator.evaluate("loop.index < 10") is True + assert evaluator.evaluate("loop.index > 10") is False + assert evaluator.evaluate("loop.index == 5") is True + + def test_loop_item_in_condition(self): + """Test using loop.item in condition.""" + steps = {} + loop_context = {"index": 0, "item": "ACTIVATED"} + evaluator = ConditionEvaluator(steps, loop_context) + assert evaluator.evaluate("loop.item == 'ACTIVATED'") is True + assert evaluator.evaluate("loop.item == 'ENDED'") is False + + def test_loop_context_with_numeric_item(self): + """Test loop.item with numeric value.""" + steps = {} + loop_context = {"index": 2, "item": 42} + evaluator = ConditionEvaluator(steps, loop_context) + assert evaluator.evaluate("loop.item == 42") is True + assert evaluator.evaluate("loop.item > 40") is True + + def test_combined_step_and_loop_conditions(self): + """Test combining step status checks with loop variables.""" + steps = { + "step1": StepResult(id="step1", name="Step 1", status=Status.PASS, duration=1.0), + } + loop_context = {"index": 3, "item": "value"} + evaluator = ConditionEvaluator(steps, loop_context) + assert evaluator.evaluate("success() && loop.index < 5") is True + assert evaluator.evaluate("steps.step1.status == 'success' && loop.index > 2") is True + + def test_loop_index_boundary_conditions(self): + """Test loop.index at boundaries.""" + steps = {} + loop_context = {"index": 0, "item": "first"} + evaluator = ConditionEvaluator(steps, loop_context) + assert evaluator.evaluate("loop.index == 0") is True + assert evaluator.evaluate("loop.index > 0") is False + + loop_context = {"index": 99, "item": "last"} + evaluator = ConditionEvaluator(steps, loop_context) + assert evaluator.evaluate("loop.index < 100") is True + assert evaluator.evaluate("loop.index >= 99") is True diff --git a/tests/test_flight_blender_base_client.py b/tests/test_flight_blender_base_client.py index 775b387..56ae295 100644 --- a/tests/test_flight_blender_base_client.py +++ b/tests/test_flight_blender_base_client.py @@ -109,40 +109,45 @@ async def test_http_verbs_delegate_to_request(mock_request: AsyncMock): mock_request.assert_any_call("DELETE", "/d", silent_status=None) -@patch("openutm_verification.core.clients.flight_blender.base_client.create_connection") -def test_create_websocket_connection_sends_auth(create_conn: MagicMock): - ws = MagicMock() - create_conn.return_value = ws +@pytest.mark.asyncio +@patch("openutm_verification.core.clients.flight_blender.base_client.connect", new_callable=AsyncMock) +async def test_create_websocket_connection_sends_auth(mock_connect: AsyncMock): + ws = AsyncMock() + mock_connect.return_value = ws client = make_client(with_token=True) - conn = client.create_websocket_connection("/ws") + conn = await client.create_websocket_connection("/ws") - create_conn.assert_called_once_with("wss://example.com/ws") + mock_connect.assert_called_once_with("wss://example.com/ws") ws.send.assert_called_once_with("Bearer token123") assert conn is ws -@patch("openutm_verification.core.clients.flight_blender.base_client.create_connection") -def test_create_websocket_connection_no_auth_does_not_send(create_conn: MagicMock): - ws = MagicMock() - create_conn.return_value = ws +@pytest.mark.asyncio +@patch("openutm_verification.core.clients.flight_blender.base_client.connect", new_callable=AsyncMock) +async def test_create_websocket_connection_no_auth_does_not_send(mock_connect: AsyncMock): + ws = AsyncMock() + mock_connect.return_value = ws client = make_client(with_token=False) - client.create_websocket_connection("/ws") + await client.create_websocket_connection("/ws") - create_conn.assert_called_once_with("wss://example.com/ws") + mock_connect.assert_called_once_with("wss://example.com/ws") ws.send.assert_not_called() -@patch("openutm_verification.core.clients.flight_blender.base_client.create_connection", side_effect=ConnectionRefusedError) -def test_create_websocket_connection_refused_raises(_: MagicMock): +@pytest.mark.asyncio +@patch("openutm_verification.core.clients.flight_blender.base_client.connect", new_callable=AsyncMock) +async def test_create_websocket_connection_refused_raises(mock_connect: AsyncMock): + mock_connect.side_effect = ConnectionRefusedError client = make_client() with pytest.raises(FlightBlenderError): - client.create_websocket_connection("/ws") + await client.create_websocket_connection("/ws") -def test_close_websocket_connection_calls_close(): +@pytest.mark.asyncio +async def test_close_websocket_connection_calls_close(): client = make_client() - ws = MagicMock() - client.close_websocket_connection(ws) + ws = AsyncMock() + await client.close_websocket_connection(ws) ws.close.assert_called_once() diff --git a/tests/test_group_execution.py b/tests/test_group_execution.py new file mode 100644 index 0000000..e206f01 --- /dev/null +++ b/tests/test_group_execution.py @@ -0,0 +1,172 @@ +"""Tests for step group execution.""" + +import pytest +import yaml + +from openutm_verification.core.execution.definitions import ScenarioDefinition + + +@pytest.mark.asyncio +async def test_group_definition_parsing(): + """Test that group definitions are correctly parsed from YAML.""" + yaml_content = """ +name: test_groups +description: Test scenario with groups + +groups: + my_group: + description: A test group + steps: + - id: step1 + step: Setup Flight Declaration + - id: step2 + step: Wait X seconds + arguments: + duration: 1 + +steps: + - step: my_group +""" + + data = yaml.safe_load(yaml_content) + scenario = ScenarioDefinition.model_validate(data) + + # Verify groups are parsed + assert "my_group" in scenario.groups + assert scenario.groups["my_group"].description == "A test group" + assert len(scenario.groups["my_group"].steps) == 2 + assert scenario.groups["my_group"].steps[0].id == "step1" + assert scenario.groups["my_group"].steps[1].arguments["duration"] == 1 + + +@pytest.mark.asyncio +async def test_group_with_loop(): + """Test that groups can be looped.""" + yaml_content = """ +name: test_group_loop +description: Test scenario with looped groups + +groups: + fetch_data: + steps: + - id: fetch + step: Fetch OpenSky Data + - id: wait + step: Wait X seconds + arguments: + duration: 1 + +steps: + - step: fetch_data + loop: + count: 3 +""" + + data = yaml.safe_load(yaml_content) + scenario = ScenarioDefinition.model_validate(data) + + # Verify group definition + assert "fetch_data" in scenario.groups + assert len(scenario.groups["fetch_data"].steps) == 2 + + # Verify the step references the group with a loop + assert scenario.steps[0].step == "fetch_data" + assert scenario.steps[0].loop is not None + assert scenario.steps[0].loop.count == 3 + + +@pytest.mark.asyncio +async def test_group_references_within_group(): + """Test that steps within a group can reference other steps in the same group.""" + yaml_content = """ +name: test_group_refs +description: Test scenario with group internal references + +groups: + process_data: + steps: + - id: fetch + step: Fetch OpenSky Data + - id: submit + step: Submit Air Traffic + arguments: + observations: ${{ group.fetch.result }} + +steps: + - step: process_data +""" + + data = yaml.safe_load(yaml_content) + scenario = ScenarioDefinition.model_validate(data) + + # Verify group definition + assert "process_data" in scenario.groups + group = scenario.groups["process_data"] + + # Verify the submit step has a reference to fetch + assert group.steps[1].arguments["observations"] == "${{ group.fetch.result }}" + + +@pytest.mark.asyncio +async def test_multiple_groups(): + """Test scenario with multiple groups.""" + yaml_content = """ +name: test_multiple_groups +description: Test scenario with multiple groups + +groups: + group1: + description: First group + steps: + - id: step1 + step: Setup Flight Declaration + + group2: + description: Second group + steps: + - id: step2 + step: Wait X seconds + arguments: + duration: 1 + +steps: + - step: group1 + - step: group2 + - step: group1 + if: ${{ always() }} +""" + + data = yaml.safe_load(yaml_content) + scenario = ScenarioDefinition.model_validate(data) + + # Verify both groups are defined + assert "group1" in scenario.groups + assert "group2" in scenario.groups + assert scenario.groups["group1"].description == "First group" + assert scenario.groups["group2"].description == "Second group" + + # Verify steps reference groups + assert len(scenario.steps) == 3 + assert scenario.steps[0].step == "group1" + assert scenario.steps[1].step == "group2" + assert scenario.steps[2].step == "group1" + assert scenario.steps[2].if_condition == "${{ always() }}" + + +@pytest.mark.asyncio +async def test_empty_groups_section(): + """Test that scenarios work without groups section.""" + yaml_content = """ +name: test_no_groups +description: Test scenario without groups + +steps: + - step: Setup Flight Declaration +""" + + data = yaml.safe_load(yaml_content) + scenario = ScenarioDefinition.model_validate(data) + + # Verify groups is empty dict + assert scenario.groups == {} + assert len(scenario.steps) == 1 diff --git a/tests/test_loops.py b/tests/test_loops.py new file mode 100644 index 0000000..1a9bfb9 --- /dev/null +++ b/tests/test_loops.py @@ -0,0 +1,264 @@ +"""Tests for loop execution in the runner.""" + +from unittest.mock import AsyncMock, patch + +import pytest + +from openutm_verification.core.execution.definitions import LoopConfig, ScenarioDefinition, StepDefinition +from openutm_verification.core.reporting.reporting_models import Status, StepResult +from openutm_verification.server.runner import SessionManager + + +@pytest.fixture +def session_manager(): + """Create a SessionManager instance for testing.""" + manager = SessionManager() + manager.session_resolver = None + manager.session_context = None + manager.session_stack = None + if manager.session_context and manager.session_context.state: + manager.session_context.state.steps.clear() + return manager + + +class TestLoopExecution: + """Test loop execution functionality.""" + + @pytest.mark.asyncio + async def test_fixed_count_loop(self, session_manager): + """Test loop with fixed count.""" + scenario = ScenarioDefinition( + name="Test Loop", + description="Test fixed count loop", + steps=[StepDefinition(id="test_loop", step="Setup Flight Declaration", arguments={}, loop=LoopConfig(count=3))], + ) + + with patch.object(session_manager, "execute_single_step", new_callable=AsyncMock) as mock_execute: + mock_execute.return_value = StepResult(id="test_loop[0]", name="Setup Flight Declaration", status=Status.PASS, duration=0.0, result=None) + + results = await session_manager._execute_loop(scenario.steps[0]) + + assert len(results) == 3 + assert mock_execute.call_count == 3 + + # Verify loop context was passed + for i, call in enumerate(mock_execute.call_args_list): + loop_context = call[0][1] # Second argument + assert loop_context["index"] == i + assert loop_context["item"] == i + + @pytest.mark.asyncio + async def test_items_loop(self, session_manager): + """Test loop with items.""" + items = ["ACTIVATED", "CONTINGENT", "ENDED"] + scenario = ScenarioDefinition( + name="Test Loop", + description="Test items loop", + steps=[ + StepDefinition(id="test_loop", step="Update Operation State", arguments={"state": "${{ loop.item }}"}, loop=LoopConfig(items=items)) + ], + ) + + with patch.object(session_manager, "execute_single_step", new_callable=AsyncMock) as mock_execute: + mock_execute.return_value = StepResult(id="test_loop[0]", name="Update Operation State", status=Status.PASS, duration=0.0, result=None) + + results = await session_manager._execute_loop(scenario.steps[0]) + + assert len(results) == 3 + + # Verify loop context contains correct items + for i, call in enumerate(mock_execute.call_args_list): + loop_context = call[0][1] + assert loop_context["index"] == i + assert loop_context["item"] == items[i] + + @pytest.mark.asyncio + async def test_while_loop_with_limit(self, session_manager): + """Test while loop with condition.""" + scenario = ScenarioDefinition( + name="Test Loop", + description="Test while loop", + steps=[StepDefinition(id="test_loop", step="Setup Flight Declaration", arguments={}, loop=LoopConfig(while_condition="loop.index < 3"))], + ) + + with patch.object(session_manager, "execute_single_step", new_callable=AsyncMock) as mock_execute: + mock_execute.return_value = StepResult(id="test_loop[0]", name="Setup Flight Declaration", status=Status.PASS, duration=0.0, result=None) + + results = await session_manager._execute_loop(scenario.steps[0]) + + # Should execute while index < 3 (0, 1, 2) + assert len(results) == 3 + assert mock_execute.call_count == 3 + + @pytest.mark.asyncio + async def test_loop_with_early_termination(self, session_manager): + """Test loop that terminates early on error.""" + scenario = ScenarioDefinition( + name="Test Loop", + description="Test loop early termination", + steps=[StepDefinition(id="test_loop", step="Setup Flight Declaration", arguments={}, loop=LoopConfig(count=5))], + ) + + call_count = 0 + + async def mock_execute_with_failure(*args, **kwargs): + nonlocal call_count + call_count += 1 + if call_count == 2: + return StepResult(id=f"test_loop[{call_count - 1}]", name="Setup Flight Declaration", status=Status.FAIL, duration=0.0, result=None) + return StepResult(id=f"test_loop[{call_count - 1}]", name="Setup Flight Declaration", status=Status.PASS, duration=0.0, result=None) + + with patch.object(session_manager, "execute_single_step", new_callable=AsyncMock) as mock_execute: + mock_execute.side_effect = mock_execute_with_failure + + results = await session_manager._execute_loop(scenario.steps[0]) + + # Should stop after error on iteration 2 + assert len(results) == 2 + assert results[0].status == Status.PASS + assert results[1].status == Status.FAIL + + @pytest.mark.asyncio + async def test_combined_count_and_while(self, session_manager): + """Test loop with both count and while condition.""" + scenario = ScenarioDefinition( + name="Test Loop", + description="Test combined loop", + steps=[ + StepDefinition( + id="test_loop", step="Setup Flight Declaration", arguments={}, loop=LoopConfig(count=10, while_condition="loop.index < 3") + ) + ], + ) + + with patch.object(session_manager, "execute_single_step", new_callable=AsyncMock) as mock_execute: + mock_execute.return_value = StepResult(id="test_loop[0]", name="Setup Flight Declaration", status=Status.PASS, duration=0.0, result=None) + + results = await session_manager._execute_loop(scenario.steps[0]) + + # Should stop at 3 due to while condition, not reach 10 + assert len(results) == 3 + + @pytest.mark.asyncio + async def test_loop_creates_indexed_step_ids(self, session_manager): + """Test that loop iterations create proper step IDs.""" + scenario = ScenarioDefinition( + name="Test Loop", + description="Test step ID generation", + steps=[StepDefinition(id="my_loop", step="Setup Flight Declaration", arguments={}, loop=LoopConfig(count=2))], + ) + + with patch.object(session_manager, "execute_single_step", new_callable=AsyncMock) as mock_execute: + mock_execute.return_value = StepResult(id="my_loop[0]", name="Setup Flight Declaration", status=Status.PASS, duration=0.0, result=None) + + await session_manager._execute_loop(scenario.steps[0]) + + # Check that step IDs were modified with index + for i, call in enumerate(mock_execute.call_args_list): + step = call[0][0] # First argument is the step + assert step.id == f"my_loop[{i}]" + + @pytest.mark.asyncio + async def test_while_loop_max_iterations(self, session_manager): + """Test while loop respects max iteration limit.""" + scenario = ScenarioDefinition( + name="Test Loop", + description="Test max iterations", + steps=[ + StepDefinition( + id="infinite_loop", + step="Setup Flight Declaration", + arguments={}, + loop=LoopConfig(while_condition="loop.index < 200"), # Would exceed max + ) + ], + ) + + with patch.object(session_manager, "execute_single_step", new_callable=AsyncMock) as mock_execute: + mock_execute.return_value = StepResult( + id="infinite_loop[0]", name="Setup Flight Declaration", status=Status.PASS, duration=0.0, result=None + ) + + results = await session_manager._execute_loop(scenario.steps[0]) + + # Should stop at max iterations (100) + assert len(results) == 100 + + @pytest.mark.asyncio + async def test_loop_variable_replacement_in_arguments(self, session_manager): + """Test that loop variables are properly resolved in arguments.""" + # Initialize session to ensure resolver exists + await session_manager.initialize_session() + + items = ["item1", "item2", "item3"] + step = StepDefinition( + id="test", step="Some Action", arguments={"value": "${{ loop.item }}", "index": "${{ loop.index }}"}, loop=LoopConfig(items=items) + ) + + loop_context = {"index": 1, "item": "item2"} + + # Test _prepare_params with loop context + params = session_manager._prepare_params(step, loop_context) + + assert params["value"] == "item2" + assert params["index"] == 1 + + @pytest.mark.asyncio + async def test_nested_loop_items(self, session_manager): + """Test loop with complex nested items.""" + items = [{"name": "dev", "url": "dev.example.com"}, {"name": "prod", "url": "prod.example.com"}] + + scenario = ScenarioDefinition( + name="Test Loop", + description="Test nested items", + steps=[ + StepDefinition( + id="test_loop", step="Setup Flight Declaration", arguments={"config": "${{ loop.item }}"}, loop=LoopConfig(items=items) + ) + ], + ) + + with patch.object(session_manager, "execute_single_step", new_callable=AsyncMock) as mock_execute: + mock_execute.return_value = StepResult(id="test_loop[0]", name="Update Operation State", status=Status.PASS, duration=0.0, result=None) + + results = await session_manager._execute_loop(scenario.steps[0]) + + assert len(results) == 2 + + # Verify complex items are passed correctly + for i, call in enumerate(mock_execute.call_args_list): + loop_context = call[0][1] + assert loop_context["item"] == items[i] + + @pytest.mark.asyncio + async def test_empty_items_list(self, session_manager): + """Test loop with empty items list.""" + scenario = ScenarioDefinition( + name="Test Loop", + description="Test empty items", + steps=[StepDefinition(id="test_loop", step="Setup Flight Declaration", arguments={}, loop=LoopConfig(items=[]))], + ) + + with patch.object(session_manager, "execute_single_step", new_callable=AsyncMock) as mock_execute: + results = await session_manager._execute_loop(scenario.steps[0]) + + # Should not execute anything + assert len(results) == 0 + assert mock_execute.call_count == 0 + + +class TestLoopWithConditions: + """Test interaction between loops and conditions.""" + + @pytest.mark.asyncio + async def test_conditional_loop_execution(self, session_manager): + """Test loop that only runs if condition is met.""" + # This would be tested in the run_scenario method + # where if conditions are evaluated before loops + pass + + @pytest.mark.asyncio + async def test_loop_with_step_reference_in_while(self, session_manager): + """Test while condition referencing previous step results.""" + # This requires full scenario context with step results + pass diff --git a/tests/test_reporting_output.py b/tests/test_reporting_output.py new file mode 100644 index 0000000..4ff9d0c --- /dev/null +++ b/tests/test_reporting_output.py @@ -0,0 +1,82 @@ +import json +from datetime import UTC, datetime +from pathlib import Path + +from openutm_verification.core.execution.config_models import ( + AirTrafficSimulatorSettings, + AppConfig, + AuthConfig, + BlueSkyAirTrafficSimulatorSettings, + DataFiles, + DeploymentDetails, + FlightBlenderConfig, + OpenSkyConfig, + ReportingConfig, +) +from openutm_verification.core.reporting.reporting import create_report_data, generate_reports +from openutm_verification.core.reporting.reporting_models import ScenarioResult, Status, StepResult + + +def test_report_outputs_use_result(tmp_path: Path): + # Minimal AppConfig + app_config = AppConfig( + version="1.0", + run_id="test-run", + flight_blender=FlightBlenderConfig(url="http://localhost:8000", auth=AuthConfig()), + opensky=OpenSkyConfig(auth=AuthConfig()), + air_traffic_simulator_settings=AirTrafficSimulatorSettings( + number_of_aircraft=1, simulation_duration=1, single_or_multiple_sensors="single", sensor_ids=[] + ), + blue_sky_air_traffic_simulator_settings=BlueSkyAirTrafficSimulatorSettings( + number_of_aircraft=1, simulation_duration_seconds=1, single_or_multiple_sensors="single", sensor_ids=[] + ), + data_files=DataFiles(), + suites={}, + reporting=ReportingConfig(output_dir=str(tmp_path), formats=["json", "html"], deployment_details=DeploymentDetails()), + ) + + # Build a simple scenario result with a single step + step = StepResult(id="Generate UUID", name="Generate UUID", status=Status.PASS, duration=0.01, result={"uuid": "abc-123"}) + scenario_result = ScenarioResult( + name="sample_scenario", + suite_name=None, + status=Status.PASS, + duration=0.01, + steps=[step], + error_message=None, + flight_declaration_filename=None, + telemetry_filename=None, + flight_declaration_data=None, + flight_declaration_via_operational_intent_data=None, + telemetry_data=None, + air_traffic_data=None, + visualization_2d_path=None, + visualization_3d_path=None, + docs=None, + ) + + report_data = create_report_data( + config=app_config, + config_path="config/default.yaml", + results=[scenario_result], + start_time=datetime.now(UTC), + end_time=datetime.now(UTC), + run_id="test-run", + docs_dir=None, + ) + + # Generate reports + generate_reports(report_data, app_config.reporting, base_filename="report") + + # Assert JSON contains 'result' for steps and not 'details' + json_path = next(tmp_path.rglob("report.json")) + content = json.loads(json_path.read_text(encoding="utf-8")) + assert "results" in content + assert content["results"][0]["steps"][0].get("result") == {"uuid": "abc-123"} + assert "details" not in content["results"][0]["steps"][0] + + # Check HTML contains 'Result' header and prints the uuid value + html_path = next(tmp_path.rglob("report.html")) + html = html_path.read_text(encoding="utf-8") + assert "Result" in html + assert "abc-123" in html diff --git a/tests/test_scenario_integration.py b/tests/test_scenario_integration.py new file mode 100644 index 0000000..28347d0 --- /dev/null +++ b/tests/test_scenario_integration.py @@ -0,0 +1,376 @@ +"""Integration tests for conditional execution and loops in scenarios.""" + +from unittest.mock import AsyncMock, patch + +import pytest + +from openutm_verification.core.execution.definitions import LoopConfig, ScenarioDefinition, StepDefinition +from openutm_verification.core.reporting.reporting_models import Status, StepResult +from openutm_verification.server.runner import SessionManager + + +@pytest.fixture +def session_manager(): + """Create a SessionManager instance for testing.""" + manager = SessionManager() + manager.session_resolver = None + manager.session_context = None + manager.session_stack = None + if manager.session_context and manager.session_context.state: + manager.session_context.state.steps.clear() + return manager + + +class TestScenarioWithConditions: + """Integration tests for scenarios with conditional execution.""" + + @pytest.mark.asyncio + async def test_success_condition_execution(self, session_manager): + """Test that steps with success() condition run when previous steps succeed.""" + scenario = ScenarioDefinition( + name="Test Conditional", + description="Test success condition", + steps=[ + StepDefinition(id="step1", step="Setup Flight Declaration", arguments={}), + StepDefinition(id="step2", step="Submit Telemetry", arguments={"duration": 10}, if_condition="success()"), + ], + ) + + with patch.object(session_manager, "execute_single_step", new_callable=AsyncMock) as mock_execute: + + async def mock_execute_step(step, loop_context=None): + step_result = StepResult(id=step.id, name=step.step, status=Status.PASS, duration=0.0, result=None) + if session_manager.session_context: + with session_manager.session_context: + session_manager.session_context.add_result(step_result) + return step_result + + mock_execute.side_effect = mock_execute_step + + results = await session_manager.run_scenario(scenario) + + # Both steps should execute + assert len([r for r in results if r.status != Status.RUNNING]) == 2 + assert mock_execute.call_count == 2 + + @pytest.mark.asyncio + async def test_failure_condition_skips_on_success(self, session_manager): + """Test that steps with failure() condition are skipped when all succeed.""" + scenario = ScenarioDefinition( + name="Test Conditional", + description="Test failure condition", + steps=[ + StepDefinition(id="step1", step="Setup Flight Declaration", arguments={}), + StepDefinition(id="error_handler", step="Teardown Flight Declaration", arguments={}, if_condition="failure()"), + ], + ) + + async def mock_execute_with_context(step, loop_context=None): + """Mock that adds results to session context.""" + step_result = StepResult(id=step.id, name=step.step, status=Status.PASS, duration=0.0, result=None) + if session_manager.session_context: + with session_manager.session_context: + session_manager.session_context.add_result(step_result) + return step_result + + with patch.object(session_manager, "execute_single_step", new_callable=AsyncMock) as mock_execute: + mock_execute.side_effect = mock_execute_with_context + + results = await session_manager.run_scenario(scenario) + + # First step executes, second is skipped + completed = [r for r in results if r.status != Status.RUNNING] + assert len(completed) == 2 + assert completed[0].status == Status.PASS + assert completed[1].status == Status.SKIP + + @pytest.mark.asyncio + async def test_always_condition_runs_regardless(self, session_manager): + """Test that steps with always() condition always run.""" + scenario = ScenarioDefinition( + name="Test Conditional", + description="Test always condition", + steps=[ + StepDefinition(id="step1", step="Setup Flight Declaration", arguments={}), + StepDefinition(id="cleanup", step="Teardown Flight Declaration", arguments={}, if_condition="always()"), + ], + ) + + call_count = 0 + + async def mock_execute_with_context(step, loop_context=None): + """Mock that adds results to session context.""" + nonlocal call_count + call_count += 1 + if call_count == 1: + step_result = StepResult(id=step.id, name=step.step, status=Status.FAIL, duration=0.0, result=None) + else: + step_result = StepResult(id=step.id, name=step.step, status=Status.PASS, duration=0.0, result=None) + if session_manager.session_context: + with session_manager.session_context: + session_manager.session_context.add_result(step_result) + return step_result + + with patch.object(session_manager, "execute_single_step", new_callable=AsyncMock) as mock_execute: + mock_execute.side_effect = mock_execute_with_context + + results = await session_manager.run_scenario(scenario) + + # Cleanup should run despite failure + assert mock_execute.call_count == 2 + assert len([r for r in results if r.status != Status.RUNNING]) == 2 + + @pytest.mark.asyncio + async def test_step_status_condition(self, session_manager): + """Test condition checking specific step status.""" + scenario = ScenarioDefinition( + name="Test Conditional", + description="Test step status check", + steps=[ + StepDefinition(id="validation", step="Setup Flight Declaration", arguments={}), + StepDefinition( + id="dependent", step="Submit Telemetry", arguments={"duration": 10}, if_condition="steps.validation.status == 'success'" + ), + ], + ) + + with patch.object(session_manager, "_execute_step", new_callable=AsyncMock) as mock_execute: + + async def mock_execute_step(step, loop_context=None): + step_result = StepResult(id=step.id, name=step.step, status=Status.PASS, duration=0.0, result=None) + if session_manager.session_context: + session_manager.session_context.add_result(step_result) + return step_result + + mock_execute.side_effect = mock_execute_step + + results = await session_manager.run_scenario(scenario) + + # Both should execute since validation succeeds + assert len([r for r in results if r.status != Status.RUNNING]) == 2 + assert mock_execute.call_count == 2 + + +class TestScenarioWithLoops: + """Integration tests for scenarios with loops.""" + + @pytest.mark.asyncio + async def test_scenario_with_fixed_count_loop(self, session_manager): + """Test scenario with fixed count loop.""" + scenario = ScenarioDefinition( + name="Test Loop Scenario", + description="Test fixed count loop in scenario", + steps=[ + StepDefinition(id="retry", step="Setup Flight Declaration", arguments={}, loop=LoopConfig(count=3)), + ], + ) + + with patch.object(session_manager, "execute_single_step", new_callable=AsyncMock) as mock_execute: + + async def mock_execute_step(step, loop_context=None): + step_result = StepResult(id=step.id, name=step.step, status=Status.PASS, duration=0.0, result=None) + if session_manager.session_context: + with session_manager.session_context: + session_manager.session_context.add_result(step_result) + return step_result + + mock_execute.side_effect = mock_execute_step + + results = await session_manager.run_scenario(scenario) + + # Should execute 3 times + assert len([r for r in results if r.status != Status.RUNNING]) == 3 + + @pytest.mark.asyncio + async def test_scenario_with_items_loop(self, session_manager): + """Test scenario with items loop.""" + scenario = ScenarioDefinition( + name="Test Loop Scenario", + description="Test items loop in scenario", + steps=[ + StepDefinition( + id="deploy", step="Update Operation State", arguments={"state": "${{ loop.item }}"}, loop=LoopConfig(items=["ACTIVATED", "ENDED"]) + ), + ], + ) + + with patch.object(session_manager, "execute_single_step", new_callable=AsyncMock) as mock_execute: + + async def mock_execute_step(step, loop_context=None): + step_result = StepResult(id=step.id, name=step.step, status=Status.PASS, duration=0.0, result=None) + if session_manager.session_context: + with session_manager.session_context: + session_manager.session_context.add_result(step_result) + return step_result + + mock_execute.side_effect = mock_execute_step + + results = await session_manager.run_scenario(scenario) + + assert len([r for r in results if r.status != Status.RUNNING]) == 2 + + @pytest.mark.asyncio + async def test_scenario_with_conditional_loop(self, session_manager): + """Test scenario where loop has a condition.""" + scenario = ScenarioDefinition( + name="Test Conditional Loop", + description="Test conditional loop execution", + steps=[ + StepDefinition(id="setup", step="Setup Flight Declaration", arguments={}), + StepDefinition( + id="conditional_loop", step="Submit Telemetry", arguments={"duration": 5}, if_condition="success()", loop=LoopConfig(count=2) + ), + ], + ) + + with patch.object(session_manager, "execute_single_step", new_callable=AsyncMock) as mock_execute: + + async def mock_execute_step(step, loop_context=None): + step_result = StepResult(id=step.id, name=step.step, status=Status.PASS, duration=0.0, result=None) + if session_manager.session_context: + with session_manager.session_context: + session_manager.session_context.add_result(step_result) + return step_result + + mock_execute.side_effect = mock_execute_step + + await session_manager.run_scenario(scenario) + + # Setup + 2 loop iterations = 3 executions + assert mock_execute.call_count == 3 + + @pytest.mark.asyncio + async def test_accessing_loop_iteration_results(self, session_manager): + """Test that loop iteration results can be referenced by later steps.""" + scenario = ScenarioDefinition( + name="Test Loop Results", + description="Test accessing loop iteration results", + steps=[ + StepDefinition(id="looped", step="Setup Flight Declaration", arguments={}, loop=LoopConfig(count=2)), + StepDefinition( + id="check_first", step="Submit Telemetry", arguments={"duration": 5}, if_condition="steps.looped[0].status == 'success'" + ), + ], + ) + + with patch.object(session_manager, "_execute_step", new_callable=AsyncMock) as mock_execute: + + async def mock_execute_step(step, loop_context=None): + step_result = StepResult(id=step.id, name=step.step, status=Status.PASS, duration=0.0, result=None) + if session_manager.session_context: + session_manager.session_context.add_result(step_result) + return step_result + + mock_execute.side_effect = mock_execute_step + + await session_manager.run_scenario(scenario) + + # 2 loop iterations + 1 conditional step + assert mock_execute.call_count == 3 + + +class TestComplexScenarios: + """Integration tests for complex scenarios combining multiple features.""" + + @pytest.mark.asyncio + async def test_conditional_with_loop_and_result_check(self, session_manager): + """Test complex scenario with conditions, loops, and result checks.""" + scenario = ScenarioDefinition( + name="Complex Test", + description="Test complex interaction", + steps=[ + StepDefinition(id="init", step="Setup Flight Declaration", arguments={}), + StepDefinition( + id="batch", + step="Submit Telemetry", + arguments={"duration": "${{ loop.index }}"}, + if_condition="success()", + loop=LoopConfig(count=3), + ), + StepDefinition( + id="verify", step="Update Operation State", arguments={"state": "ENDED"}, if_condition="steps.batch[2].status == 'success'" + ), + StepDefinition(id="cleanup", step="Teardown Flight Declaration", arguments={}, if_condition="always()"), + ], + ) + + with patch.object(session_manager, "_execute_step", new_callable=AsyncMock) as mock_execute: + + async def mock_execute_step(step, loop_context=None): + step_result = StepResult(id=step.id, name=step.step, status=Status.PASS, duration=0.0, result=None) + if session_manager.session_context: + session_manager.session_context.add_result(step_result) + return step_result + + mock_execute.side_effect = mock_execute_step + + await session_manager.run_scenario(scenario) + + # init + 3 batch iterations + verify + cleanup = 6 executions + assert mock_execute.call_count == 6 + + @pytest.mark.asyncio + async def test_loop_early_exit_affects_subsequent_conditions(self, session_manager): + """Test that loop early exit properly affects subsequent condition evaluation.""" + scenario = ScenarioDefinition( + name="Early Exit Test", + description="Test loop early exit impact", + steps=[ + StepDefinition(id="retry", step="Setup Flight Declaration", arguments={}, loop=LoopConfig(count=5)), + StepDefinition(id="on_complete", step="Submit Telemetry", arguments={"duration": 10}, if_condition="success()"), + ], + ) + + call_count = 0 + + async def mock_with_error(*args, **kwargs): + nonlocal call_count + call_count += 1 + if call_count == 2: + step_result = StepResult( + id=f"retry[{call_count - 1}]", name="Setup Flight Declaration", status=Status.FAIL, duration=0.0, result=None + ) + else: + step_result = StepResult(id="step", name="Setup Flight Declaration", status=Status.PASS, duration=0.0, result=None) + if session_manager.session_context: + with session_manager.session_context: + session_manager.session_context.add_result(step_result) + return step_result + + with patch.object(session_manager, "execute_single_step", new_callable=AsyncMock) as mock_execute: + mock_execute.side_effect = mock_with_error + + await session_manager.run_scenario(scenario) + + # Loop exits early on iteration 2, subsequent step shouldn't run + # 2 loop iterations (second fails, breaks scenario) + assert call_count == 2 + + @pytest.mark.asyncio + async def test_multiple_loops_in_sequence(self, session_manager): + """Test scenario with multiple sequential loops.""" + scenario = ScenarioDefinition( + name="Multiple Loops", + description="Test multiple sequential loops", + steps=[ + StepDefinition(id="loop1", step="Setup Flight Declaration", arguments={}, loop=LoopConfig(count=2)), + StepDefinition(id="loop2", step="Submit Telemetry", arguments={"duration": 5}, loop=LoopConfig(count=3)), + ], + ) + + with patch.object(session_manager, "execute_single_step", new_callable=AsyncMock) as mock_execute: + + async def mock_execute_step(step, loop_context=None): + step_result = StepResult(id=step.id, name=step.step, status=Status.PASS, duration=0.0, result=None) + if session_manager.session_context: + with session_manager.session_context: + session_manager.session_context.add_result(step_result) + return step_result + + mock_execute.side_effect = mock_execute_step + + results = await session_manager.run_scenario(scenario) + + # 2 + 3 = 5 executions + assert mock_execute.call_count == 5 + assert len([r for r in results if r.status != Status.RUNNING]) == 5 diff --git a/tests/test_scenarios.py b/tests/test_scenarios.py deleted file mode 100644 index 5cd66a7..0000000 --- a/tests/test_scenarios.py +++ /dev/null @@ -1,144 +0,0 @@ -from unittest.mock import ANY, AsyncMock, MagicMock, patch - -import pytest - -from openutm_verification.core.execution.config_models import DataFiles -from openutm_verification.models import OperationState, SDSPSessionAction -from openutm_verification.scenarios.test_add_flight_declaration import test_add_flight_declaration as scenario_add_flight_declaration -from openutm_verification.scenarios.test_airtraffic_data_openutm_sim import test_openutm_sim_air_traffic_data as scenario_openutm_sim_air_traffic_data -from openutm_verification.scenarios.test_f1_flow import test_f1_happy_path as scenario_f1_happy_path -from openutm_verification.scenarios.test_f2_flow import test_f2_contingent_path as scenario_f2_contingent_path -from openutm_verification.scenarios.test_f3_flow import test_f3_non_conforming_path as scenario_f3_non_conforming_path -from openutm_verification.scenarios.test_f5_flow import test_f5_non_conforming_contingent_path as scenario_f5_non_conforming_contingent_path -from openutm_verification.scenarios.test_geo_fence_upload import test_geo_fence_upload as scenario_geo_fence_upload -from openutm_verification.scenarios.test_opensky_live_data import test_opensky_live_data as scenario_opensky_live_data -from openutm_verification.scenarios.test_sdsp_heartbeat import sdsp_heartbeat as scenario_sdsp_heartbeat -from openutm_verification.scenarios.test_sdsp_track import sdsp_track as scenario_sdsp_track - - -@pytest.fixture -def fb_client(): - client = AsyncMock() - # Mock the async context manager for flight_declaration - flight_declaration_cm = MagicMock() - flight_declaration_cm.__aenter__ = AsyncMock(return_value=None) - flight_declaration_cm.__aexit__ = AsyncMock(return_value=None) - - # flight_declaration should return the context manager object directly, not a coroutine - client.create_flight_declaration = MagicMock(return_value=flight_declaration_cm) - return client - - -@pytest.fixture -def data_files(): - return MagicMock(spec=DataFiles) - - -async def test_add_flight_declaration_scenario(fb_client, data_files): - await scenario_add_flight_declaration(fb_client, data_files) - - fb_client.create_flight_declaration.assert_called_once_with(data_files) - fb_client.update_operation_state.assert_any_call(new_state=OperationState.ACTIVATED, duration_seconds=20) - fb_client.submit_telemetry.assert_called_once_with(duration_seconds=30) - fb_client.update_operation_state.assert_any_call(new_state=OperationState.ENDED) - - -async def test_f1_happy_path_scenario(fb_client, data_files): - await scenario_f1_happy_path(fb_client, data_files) - - fb_client.create_flight_declaration.assert_called_once_with(data_files) - fb_client.update_operation_state.assert_any_call(new_state=OperationState.ACTIVATED) - fb_client.submit_telemetry.assert_called_once_with(duration_seconds=30) - fb_client.update_operation_state.assert_any_call(new_state=OperationState.ENDED) - - -async def test_f2_contingent_path_scenario(fb_client, data_files): - await scenario_f2_contingent_path(fb_client, data_files) - - fb_client.create_flight_declaration.assert_called_once_with(data_files) - fb_client.update_operation_state.assert_any_call(new_state=OperationState.ACTIVATED) - fb_client.submit_telemetry.assert_called_once_with(duration_seconds=10) - fb_client.update_operation_state.assert_any_call(new_state=OperationState.CONTINGENT, duration_seconds=7) - fb_client.update_operation_state.assert_any_call(new_state=OperationState.ENDED) - - -async def test_f3_non_conforming_path_scenario(fb_client, data_files): - await scenario_f3_non_conforming_path(fb_client, data_files) - - fb_client.create_flight_declaration.assert_called_once_with(data_files) - fb_client.update_operation_state.assert_any_call(new_state=OperationState.ACTIVATED) - fb_client.wait_x_seconds.assert_called_once_with(5) - fb_client.submit_telemetry.assert_called_once_with(duration_seconds=20) - fb_client.check_operation_state.assert_called_once_with(expected_state=OperationState.NONCONFORMING, duration_seconds=5) - fb_client.update_operation_state.assert_any_call(new_state=OperationState.ENDED) - - -async def test_f5_non_conforming_contingent_path_scenario(fb_client, data_files): - await scenario_f5_non_conforming_contingent_path(fb_client, data_files) - - fb_client.create_flight_declaration.assert_called_once_with(data_files) - fb_client.update_operation_state.assert_any_call(new_state=OperationState.ACTIVATED) - fb_client.submit_telemetry.assert_called_once_with(duration_seconds=20) - fb_client.check_operation_state_connected.assert_called_once_with(expected_state=OperationState.NONCONFORMING, duration_seconds=5) - fb_client.update_operation_state.assert_any_call(new_state=OperationState.CONTINGENT) - fb_client.update_operation_state.assert_any_call(new_state=OperationState.ENDED) - - -@patch("openutm_verification.scenarios.test_geo_fence_upload.get_geo_fence_path") -async def test_geo_fence_upload_scenario(mock_get_path, fb_client): - mock_get_path.return_value = "/path/to/geo_fence.geojson" - - await scenario_geo_fence_upload(fb_client) - - fb_client.upload_geo_fence.assert_called_once_with(filename="/path/to/geo_fence.geojson") - fb_client.get_geo_fence.assert_called_once() - - -@patch("openutm_verification.scenarios.test_opensky_live_data.asyncio.sleep") -async def test_opensky_live_data_scenario(mock_sleep, fb_client): - opensky_client = AsyncMock() - step_result = MagicMock() - step_result.details = ["obs1", "obs2"] - opensky_client.fetch_data.return_value = step_result - - await scenario_opensky_live_data(fb_client, opensky_client) - - assert opensky_client.fetch_data.call_count == 5 - assert fb_client.submit_air_traffic.call_count == 5 - assert mock_sleep.call_count == 4 # Sleeps between iterations - - -async def test_sdsp_heartbeat_scenario(fb_client): - await scenario_sdsp_heartbeat(fb_client) - - fb_client.start_stop_sdsp_session.assert_any_call(action=SDSPSessionAction.START, session_id=ANY) - fb_client.wait_x_seconds.assert_any_call(wait_time_seconds=2) - fb_client.initialize_verify_sdsp_heartbeat.assert_called_once() - fb_client.wait_x_seconds.assert_any_call(wait_time_seconds=5) - fb_client.start_stop_sdsp_session.assert_any_call(action=SDSPSessionAction.STOP, session_id=ANY) - - -async def test_sdsp_track_scenario(fb_client): - air_traffic_client = AsyncMock() - step_result = MagicMock() - step_result.details = ["obs1"] - air_traffic_client.generate_simulated_air_traffic_data.return_value = step_result - await scenario_sdsp_track(fb_client, air_traffic_client) - - fb_client.start_stop_sdsp_session.assert_any_call(action=SDSPSessionAction.START, session_id=ANY) - fb_client.wait_x_seconds.assert_any_call(wait_time_seconds=2) - fb_client.initialize_verify_sdsp_track.assert_called_once() - fb_client.wait_x_seconds.assert_any_call(wait_time_seconds=5) - fb_client.start_stop_sdsp_session.assert_any_call(action=SDSPSessionAction.STOP, session_id=ANY) - - -async def test_openutm_sim_air_traffic_data_scenario(fb_client): - air_traffic_client = AsyncMock() - step_result = MagicMock() - step_result.details = ["obs1"] - air_traffic_client.generate_simulated_air_traffic_data.return_value = step_result - - await scenario_openutm_sim_air_traffic_data(fb_client, air_traffic_client) - - air_traffic_client.generate_simulated_air_traffic_data.assert_called_once() - fb_client.submit_simulated_air_traffic.assert_called_once_with(observations=["obs1"]) diff --git a/tests/test_server_main.py b/tests/test_server_main.py new file mode 100644 index 0000000..6fb51f9 --- /dev/null +++ b/tests/test_server_main.py @@ -0,0 +1,59 @@ +from unittest.mock import AsyncMock, MagicMock + +from fastapi.testclient import TestClient + +from openutm_verification.server.main import app, get_session_manager + +client = TestClient(app) + + +def test_read_root(): + response = client.get("/") + assert response.status_code == 200 + + # If static files are mounted, we get HTML. If not, we get JSON. + content_type = response.headers.get("content-type", "") + if "text/html" in content_type: + assert "" in response.text.lower() + else: + json_response = response.json() + assert "message" in json_response + assert "OpenUTM Verification API is running" in json_response["message"] + + +def test_health_check(): + response = client.get("/health") + assert response.status_code == 200 + assert response.json() == {"status": "ok"} + + +def test_get_operations(): + mock_runner = MagicMock() + mock_runner.get_available_operations.return_value = ["op1", "op2"] + + app.dependency_overrides[get_session_manager] = lambda: mock_runner + + try: + response = client.get("/operations") + assert response.status_code == 200 + assert response.json() == ["op1", "op2"] + finally: + app.dependency_overrides = {} + + +def test_reset_session(): + mock_runner = MagicMock() + mock_runner.close_session = AsyncMock() + mock_runner.initialize_session = AsyncMock() + + app.dependency_overrides[get_session_manager] = lambda: mock_runner + + try: + response = client.post("/session/reset") + assert response.status_code == 200 + assert response.json() == {"status": "session_reset"} + + mock_runner.close_session.assert_called_once() + mock_runner.initialize_session.assert_called_once() + finally: + app.dependency_overrides = {} diff --git a/tests/test_ui_groups.py b/tests/test_ui_groups.py new file mode 100644 index 0000000..64d26e4 --- /dev/null +++ b/tests/test_ui_groups.py @@ -0,0 +1,70 @@ +"""Tests for UI group functionality.""" + +from openutm_verification.core.execution.definitions import ScenarioDefinition + + +def test_group_roundtrip(): + """Test that groups are correctly serialized and deserialized.""" + # Create scenario with groups + scenario_data = { + "name": "test_groups", + "description": "Test scenario", + "groups": { + "process_data": { + "description": "Process some data", + "steps": [ + {"id": "fetch", "step": "Fetch OpenSky Data"}, + {"id": "submit", "step": "Submit Air Traffic", "arguments": {"observations": "${{ group.fetch.result }}"}}, + ], + } + }, + "steps": [{"step": "process_data", "loop": {"count": 3}}], + } + + # Parse to model + scenario = ScenarioDefinition.model_validate(scenario_data) + + # Verify structure + assert "process_data" in scenario.groups + assert scenario.groups["process_data"].description == "Process some data" + assert len(scenario.groups["process_data"].steps) == 2 + assert scenario.groups["process_data"].steps[0].id == "fetch" + assert scenario.groups["process_data"].steps[1].arguments["observations"] == "${{ group.fetch.result }}" + + # Verify the group is referenced in steps + assert scenario.steps[0].step == "process_data" + assert scenario.steps[0].loop.count == 3 + + # Serialize back to dict + serialized = scenario.model_dump() + + # Verify roundtrip + assert serialized["groups"]["process_data"]["description"] == "Process some data" + assert len(serialized["groups"]["process_data"]["steps"]) == 2 + assert serialized["steps"][0]["step"] == "process_data" + assert serialized["steps"][0]["loop"]["count"] == 3 + + +def test_group_with_condition(): + """Test that groups work with conditional execution.""" + scenario_data = { + "name": "test", + "groups": {"cleanup": {"steps": [{"id": "step1", "step": "Clean Up"}]}}, + "steps": [{"step": "cleanup", "if": "${{ always() }}"}], + } + + scenario = ScenarioDefinition.model_validate(scenario_data) + assert scenario.steps[0].if_condition == "${{ always() }}" + + +def test_multiple_group_references(): + """Test scenario that references the same group multiple times.""" + scenario_data = { + "name": "test", + "groups": {"fetch": {"steps": [{"id": "f", "step": "Fetch Data"}]}}, + "steps": [{"step": "fetch"}, {"step": "fetch", "if": "${{ success() }}"}, {"step": "fetch", "if": "${{ always() }}"}], + } + + scenario = ScenarioDefinition.model_validate(scenario_data) + assert len(scenario.steps) == 3 + assert all(s.step == "fetch" for s in scenario.steps) diff --git a/tests/test_yaml_scenarios.py b/tests/test_yaml_scenarios.py new file mode 100644 index 0000000..d72cd44 --- /dev/null +++ b/tests/test_yaml_scenarios.py @@ -0,0 +1,124 @@ +import os +from pathlib import Path +from unittest.mock import AsyncMock, MagicMock, patch + +import pytest +import yaml + +from openutm_verification.core.execution.config_models import DataFiles +from openutm_verification.core.execution.definitions import ScenarioDefinition +from openutm_verification.core.reporting.reporting_models import Status +from openutm_verification.server.runner import SessionManager + +SCENARIOS_DIR = Path(os.getenv("SCENARIOS_PATH", Path(__file__).parent.parent / "scenarios")) +YAML_FILES = list(SCENARIOS_DIR.glob("*.yaml")) + + +@pytest.fixture +def mock_clients(): + """Create mocks for all client classes.""" + mocks = {} + + # FlightBlenderClient mock + fb_client = AsyncMock() + # Mock context managers + fb_client.create_flight_declaration = MagicMock() + cm = AsyncMock() + cm.__aenter__ = AsyncMock(return_value=None) + cm.__aexit__ = AsyncMock(return_value=None) + fb_client.create_flight_declaration.return_value = cm + + # Mock methods that return values used in other steps + fb_client.upload_geo_fence.return_value = {"id": "geo_fence_123"} + fb_client.upload_flight_declaration.return_value = {"id": "flight_decl_123", "is_approved": True} + fb_client.start_stop_sdsp_session.return_value = "Session Started" + + # Mock methods that return objects with attributes accessed in YAML + # e.g. ${{ steps.Generate Simulated Air Traffic Data.result.result }} + # But wait, we changed it to just .result in the previous turn. + # Let's check if any other steps return complex objects. + + mocks["FlightBlenderClient"] = fb_client + + # AirTrafficClient mock + at_client = AsyncMock() + # Mock generate_simulated_air_traffic_data to return a list of observations + # The YAML expects .result to be the observations list directly now + at_client.generate_simulated_air_traffic_data.return_value = [{"lat_dd": 47.0, "lon_dd": 7.5}] + mocks["AirTrafficClient"] = at_client + + # OpenSkyClient mock + os_client = AsyncMock() + os_client.fetch_data.return_value = [{"lat_dd": 47.0, "lon_dd": 7.5}] + mocks["OpenSkyClient"] = os_client + + # CommonClient mock + common_client = AsyncMock() + common_client.generate_uuid.return_value = "uuid-1234" + mocks["CommonClient"] = common_client + + return mocks + + +@pytest.fixture +def mock_data_files(): + return DataFiles( + trajectory="path/to/trajectory.json", flight_declaration="path/to/flight_declaration.json", geo_fence="path/to/geo_fence.geojson" + ) + + +@pytest.mark.asyncio +@pytest.mark.parametrize("yaml_file", YAML_FILES, ids=[f.name for f in YAML_FILES]) +async def test_yaml_scenario_execution(yaml_file, mock_clients, mock_data_files): + """Verify that each YAML scenario can be loaded and executed with mocked clients.""" + + # Load YAML + with open(yaml_file, "r") as f: + scenario_data = yaml.safe_load(f) + scenario = ScenarioDefinition(**scenario_data) + + # Initialize SessionManager + # We mock _load_config to avoid reading real config files + with ( + patch("openutm_verification.server.runner.SessionManager._load_config") as mock_load_config, + patch("openutm_verification.server.runner.SessionManager._generate_data") as mock_gen_data, + ): + mock_load_config.return_value = MagicMock() + mock_load_config.return_value.suites = {"default": {}} + + # Mock _generate_data to return None, None (we don't need real data for this test) + mock_gen_data.return_value = (None, None) + + manager = SessionManager() + + # Initialize session (creates resolver) + # We need to patch DependencyResolver.resolve to return our mocks + with patch("openutm_verification.core.execution.dependency_resolution.DependencyResolver.resolve", new_callable=AsyncMock) as mock_resolve: + + async def resolve_side_effect(dependency_type): + if dependency_type == DataFiles: + return mock_data_files + + client_name = dependency_type.__name__ + if client_name in mock_clients: + return mock_clients[client_name] + + return AsyncMock() + + mock_resolve.side_effect = resolve_side_effect + + # We need to manually set session_resolver because initialize_session creates a new one + # Alternatively, we can mock DependencyResolver class + with patch("openutm_verification.server.runner.DependencyResolver") as MockResolverCls: + mock_resolver_instance = MockResolverCls.return_value + mock_resolver_instance.resolve = mock_resolve + + await manager.initialize_session() + + # Run scenario + results = await manager.run_scenario(scenario) + + # Verify results + for step_result in results: + if step_result.status == Status.RUNNING: + continue diff --git a/uv.lock b/uv.lock index 538de0f..cf12c95 100644 --- a/uv.lock +++ b/uv.lock @@ -2,6 +2,15 @@ version = 1 revision = 3 requires-python = ">=3.12" +[[package]] +name = "annotated-doc" +version = "0.0.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/57/ba/046ceea27344560984e26a590f90bc7f4a75b06701f653222458922b558c/annotated_doc-0.0.4.tar.gz", hash = "sha256:fbcda96e87e9c92ad167c2e53839e57503ecfda18804ea28102353485033faa4", size = 7288, upload-time = "2025-11-10T22:07:42.062Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1e/d3/26bf1008eb3d2daa8ef4cacc7f3bfdc11818d111f7e2d0201bc6e3b49d45/annotated_doc-0.0.4-py3-none-any.whl", hash = "sha256:571ac1dc6991c450b25a9c2d84a3705e2ae7a53467b5d111c24fa8baabbed320", size = 5303, upload-time = "2025-11-10T22:07:40.673Z" }, +] + [[package]] name = "annotated-types" version = "0.7.0" @@ -13,16 +22,15 @@ wheels = [ [[package]] name = "anyio" -version = "4.11.0" +version = "4.12.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "idna" }, - { name = "sniffio" }, { name = "typing-extensions", marker = "python_full_version < '3.13'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/c6/78/7d432127c41b50bccba979505f272c16cbcadcc33645d5fa3a738110ae75/anyio-4.11.0.tar.gz", hash = "sha256:82a8d0b81e318cc5ce71a5f1f8b5c4e63619620b63141ef8c995fa0db95a57c4", size = 219094, upload-time = "2025-09-23T09:19:12.58Z" } +sdist = { url = "https://files.pythonhosted.org/packages/96/f0/5eb65b2bb0d09ac6776f2eb54adee6abe8228ea05b20a5ad0e4945de8aac/anyio-4.12.1.tar.gz", hash = "sha256:41cfcc3a4c85d3f05c932da7c26d0201ac36f72abd4435ba90d0464a3ffed703", size = 228685, upload-time = "2026-01-06T11:45:21.246Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/15/b3/9b1a8074496371342ec1e796a96f99c82c945a339cd81a8e73de28b4cf9e/anyio-4.11.0-py3-none-any.whl", hash = "sha256:0287e96f4d26d4149305414d4e3bc32f0dcd0862365a4bddea19d7a1ec38c4fc", size = 109097, upload-time = "2025-09-23T09:19:10.601Z" }, + { url = "https://files.pythonhosted.org/packages/38/0e/27be9fdef66e72d64c0cdc3cc2823101b80585f8119b5c112c2e8f5f7dab/anyio-4.12.1-py3-none-any.whl", hash = "sha256:d405828884fc140aa80a3c667b8beed277f1dfedec42ba031bd6ac3db606ab6c", size = 113592, upload-time = "2026-01-06T11:45:19.497Z" }, ] [[package]] @@ -40,29 +48,29 @@ wheels = [ [[package]] name = "astroid" -version = "3.3.11" +version = "4.0.3" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/18/74/dfb75f9ccd592bbedb175d4a32fc643cf569d7c218508bfbd6ea7ef9c091/astroid-3.3.11.tar.gz", hash = "sha256:1e5a5011af2920c7c67a53f65d536d65bfa7116feeaf2354d8b94f29573bb0ce", size = 400439, upload-time = "2025-07-13T18:04:23.177Z" } +sdist = { url = "https://files.pythonhosted.org/packages/a1/ca/c17d0f83016532a1ad87d1de96837164c99d47a3b6bbba28bd597c25b37a/astroid-4.0.3.tar.gz", hash = "sha256:08d1de40d251cc3dc4a7a12726721d475ac189e4e583d596ece7422bc176bda3", size = 406224, upload-time = "2026-01-03T22:14:26.096Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/af/0f/3b8fdc946b4d9cc8cc1e8af42c4e409468c84441b933d037e101b3d72d86/astroid-3.3.11-py3-none-any.whl", hash = "sha256:54c760ae8322ece1abd213057c4b5bba7c49818853fc901ef09719a60dbf9dec", size = 275612, upload-time = "2025-07-13T18:04:21.07Z" }, + { url = "https://files.pythonhosted.org/packages/ce/66/686ac4fc6ef48f5bacde625adac698f41d5316a9753c2b20bb0931c9d4e2/astroid-4.0.3-py3-none-any.whl", hash = "sha256:864a0a34af1bd70e1049ba1e61cee843a7252c826d97825fcee9b2fcbd9e1b14", size = 276443, upload-time = "2026-01-03T22:14:24.412Z" }, ] [[package]] name = "asttokens" -version = "3.0.0" +version = "3.0.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/4a/e7/82da0a03e7ba5141f05cce0d302e6eed121ae055e0456ca228bf693984bc/asttokens-3.0.0.tar.gz", hash = "sha256:0dcd8baa8d62b0c1d118b399b2ddba3c4aff271d0d7a9e0d4c1681c79035bbc7", size = 61978, upload-time = "2024-11-30T04:30:14.439Z" } +sdist = { url = "https://files.pythonhosted.org/packages/be/a5/8e3f9b6771b0b408517c82d97aed8f2036509bc247d46114925e32fe33f0/asttokens-3.0.1.tar.gz", hash = "sha256:71a4ee5de0bde6a31d64f6b13f2293ac190344478f081c3d1bccfcf5eacb0cb7", size = 62308, upload-time = "2025-11-15T16:43:48.578Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/25/8a/c46dcc25341b5bce5472c718902eb3d38600a903b14fa6aeecef3f21a46f/asttokens-3.0.0-py3-none-any.whl", hash = "sha256:e3078351a059199dd5138cb1c706e6430c05eff2ff136af5eb4790f9d28932e2", size = 26918, upload-time = "2024-11-30T04:30:10.946Z" }, + { url = "https://files.pythonhosted.org/packages/d2/39/e7eaf1799466a4aef85b6a4fe7bd175ad2b1c6345066aa33f1f58d4b18d0/asttokens-3.0.1-py3-none-any.whl", hash = "sha256:15a3ebc0f43c2d0a50eeafea25e19046c68398e487b9f1f5b517f7c0f40f976a", size = 27047, upload-time = "2025-11-15T16:43:16.109Z" }, ] [[package]] name = "attrs" -version = "25.3.0" +version = "25.4.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/5a/b0/1367933a8532ee6ff8d63537de4f1177af4bff9f3e829baf7331f595bb24/attrs-25.3.0.tar.gz", hash = "sha256:75d7cefc7fb576747b2c81b4442d4d4a1ce0900973527c011d1030fd3bf4af1b", size = 812032, upload-time = "2025-03-13T11:10:22.779Z" } +sdist = { url = "https://files.pythonhosted.org/packages/6b/5c/685e6633917e101e5dcb62b9dd76946cbb57c26e133bae9e0cd36033c0a9/attrs-25.4.0.tar.gz", hash = "sha256:16d5969b87f0859ef33a48b35d55ac1be6e42ae49d5e853b597db70c35c57e11", size = 934251, upload-time = "2025-10-06T13:54:44.725Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/77/06/bb80f5f86020c4551da315d78b3ab75e8228f89f0162f2c3a819e407941a/attrs-25.3.0-py3-none-any.whl", hash = "sha256:427318ce031701fea540783410126f03899a97ffc6f61596ad581ac2e40e3bc3", size = 63815, upload-time = "2025-03-13T11:10:21.14Z" }, + { url = "https://files.pythonhosted.org/packages/3a/2a/7cc015f5b9f5db42b7d48157e23356022889fc354a2813c15934b7cb5c0e/attrs-25.4.0-py3-none-any.whl", hash = "sha256:adcf7e2a1fb3b36ac48d97835bb6d8ade15b8dcce26aba8bf1d14847b57a3373", size = 67615, upload-time = "2025-10-06T13:54:43.17Z" }, ] [[package]] @@ -105,23 +113,23 @@ wheels = [ [[package]] name = "branca" -version = "0.8.1" +version = "0.8.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "jinja2" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/e8/1d/bec5cb6669b7bf98b632b20bbbb25200bdc44298e7a39d588b0028a78300/branca-0.8.1.tar.gz", hash = "sha256:ac397c2d79bd13af0d04193b26d5ed17031d27609a7f1fab50c438b8ae712390", size = 27743, upload-time = "2024-12-16T20:29:46.853Z" } +sdist = { url = "https://files.pythonhosted.org/packages/32/14/9d409124bda3f4ab7af3802aba07181d1fd56aa96cc4b999faea6a27a0d2/branca-0.8.2.tar.gz", hash = "sha256:e5040f4c286e973658c27de9225c1a5a7356dd0702a7c8d84c0f0dfbde388fe7", size = 27890, upload-time = "2025-10-06T10:28:20.305Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/f8/9d/91cddd38bd00170aad1a4b198c47b4ed716be45c234e09b835af41f4e717/branca-0.8.1-py3-none-any.whl", hash = "sha256:d29c5fab31f7c21a92e34bf3f854234e29fecdcf5d2df306b616f20d816be425", size = 26071, upload-time = "2024-12-16T20:29:43.692Z" }, + { url = "https://files.pythonhosted.org/packages/7e/50/fc9680058e63161f2f63165b84c957a0df1415431104c408e8104a3a18ef/branca-0.8.2-py3-none-any.whl", hash = "sha256:2ebaef3983e3312733c1ae2b793b0a8ba3e1c4edeb7598e10328505280cf2f7c", size = 26193, upload-time = "2025-10-06T10:28:19.255Z" }, ] [[package]] name = "certifi" -version = "2025.8.3" +version = "2026.1.4" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/dc/67/960ebe6bf230a96cda2e0abcf73af550ec4f090005363542f0765df162e0/certifi-2025.8.3.tar.gz", hash = "sha256:e564105f78ded564e3ae7c923924435e1daa7463faeab5bb932bc53ffae63407", size = 162386, upload-time = "2025-08-03T03:07:47.08Z" } +sdist = { url = "https://files.pythonhosted.org/packages/e0/2d/a891ca51311197f6ad14a7ef42e2399f36cf2f9bd44752b3dc4eab60fdc5/certifi-2026.1.4.tar.gz", hash = "sha256:ac726dd470482006e014ad384921ed6438c457018f4b3d204aea4281258b2120", size = 154268, upload-time = "2026-01-04T02:42:41.825Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e5/48/1549795ba7742c948d2ad169c1c8cdbae65bc450d6cd753d124b17c8cd32/certifi-2025.8.3-py3-none-any.whl", hash = "sha256:f6c12493cfb1b06ba2ff328595af9350c65d6644968e5d3a2ffd78699af217a5", size = 161216, upload-time = "2025-08-03T03:07:45.777Z" }, + { url = "https://files.pythonhosted.org/packages/e6/ad/3cc14f097111b4de0040c83a525973216457bbeeb63739ef1ed275c1c021/certifi-2026.1.4-py3-none-any.whl", hash = "sha256:9943707519e4add1115f44c2bc244f782c0249876bf51b6599fee1ffbedd685c", size = 152900, upload-time = "2026-01-04T02:42:40.15Z" }, ] [[package]] @@ -183,53 +191,80 @@ wheels = [ [[package]] name = "cfgv" -version = "3.4.0" +version = "3.5.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/11/74/539e56497d9bd1d484fd863dd69cbbfa653cd2aa27abfe35653494d85e94/cfgv-3.4.0.tar.gz", hash = "sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560", size = 7114, upload-time = "2023-08-12T20:38:17.776Z" } +sdist = { url = "https://files.pythonhosted.org/packages/4e/b5/721b8799b04bf9afe054a3899c6cf4e880fcf8563cc71c15610242490a0c/cfgv-3.5.0.tar.gz", hash = "sha256:d5b1034354820651caa73ede66a6294d6e95c1b00acc5e9b098e917404669132", size = 7334, upload-time = "2025-11-19T20:55:51.612Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c5/55/51844dd50c4fc7a33b653bfaba4c2456f06955289ca770a5dbd5fd267374/cfgv-3.4.0-py2.py3-none-any.whl", hash = "sha256:b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9", size = 7249, upload-time = "2023-08-12T20:38:16.269Z" }, + { url = "https://files.pythonhosted.org/packages/db/3c/33bac158f8ab7f89b2e59426d5fe2e4f63f7ed25df84c036890172b412b5/cfgv-3.5.0-py2.py3-none-any.whl", hash = "sha256:a8dc6b26ad22ff227d2634a65cb388215ce6cc96bbcc5cfde7641ae87e8dacc0", size = 7445, upload-time = "2025-11-19T20:55:50.744Z" }, ] [[package]] name = "charset-normalizer" -version = "3.4.3" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/83/2d/5fd176ceb9b2fc619e63405525573493ca23441330fcdaee6bef9460e924/charset_normalizer-3.4.3.tar.gz", hash = "sha256:6fce4b8500244f6fcb71465d4a4930d132ba9ab8e71a7859e6a5d59851068d14", size = 122371, upload-time = "2025-08-09T07:57:28.46Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/e9/5e/14c94999e418d9b87682734589404a25854d5f5d0408df68bc15b6ff54bb/charset_normalizer-3.4.3-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:e28e334d3ff134e88989d90ba04b47d84382a828c061d0d1027b1b12a62b39b1", size = 205655, upload-time = "2025-08-09T07:56:08.475Z" }, - { url = "https://files.pythonhosted.org/packages/7d/a8/c6ec5d389672521f644505a257f50544c074cf5fc292d5390331cd6fc9c3/charset_normalizer-3.4.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0cacf8f7297b0c4fcb74227692ca46b4a5852f8f4f24b3c766dd94a1075c4884", size = 146223, upload-time = "2025-08-09T07:56:09.708Z" }, - { url = "https://files.pythonhosted.org/packages/fc/eb/a2ffb08547f4e1e5415fb69eb7db25932c52a52bed371429648db4d84fb1/charset_normalizer-3.4.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c6fd51128a41297f5409deab284fecbe5305ebd7e5a1f959bee1c054622b7018", size = 159366, upload-time = "2025-08-09T07:56:11.326Z" }, - { url = "https://files.pythonhosted.org/packages/82/10/0fd19f20c624b278dddaf83b8464dcddc2456cb4b02bb902a6da126b87a1/charset_normalizer-3.4.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:3cfb2aad70f2c6debfbcb717f23b7eb55febc0bb23dcffc0f076009da10c6392", size = 157104, upload-time = "2025-08-09T07:56:13.014Z" }, - { url = "https://files.pythonhosted.org/packages/16/ab/0233c3231af734f5dfcf0844aa9582d5a1466c985bbed6cedab85af9bfe3/charset_normalizer-3.4.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1606f4a55c0fd363d754049cdf400175ee96c992b1f8018b993941f221221c5f", size = 151830, upload-time = "2025-08-09T07:56:14.428Z" }, - { url = "https://files.pythonhosted.org/packages/ae/02/e29e22b4e02839a0e4a06557b1999d0a47db3567e82989b5bb21f3fbbd9f/charset_normalizer-3.4.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:027b776c26d38b7f15b26a5da1044f376455fb3766df8fc38563b4efbc515154", size = 148854, upload-time = "2025-08-09T07:56:16.051Z" }, - { url = "https://files.pythonhosted.org/packages/05/6b/e2539a0a4be302b481e8cafb5af8792da8093b486885a1ae4d15d452bcec/charset_normalizer-3.4.3-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:42e5088973e56e31e4fa58eb6bd709e42fc03799c11c42929592889a2e54c491", size = 160670, upload-time = "2025-08-09T07:56:17.314Z" }, - { url = "https://files.pythonhosted.org/packages/31/e7/883ee5676a2ef217a40ce0bffcc3d0dfbf9e64cbcfbdf822c52981c3304b/charset_normalizer-3.4.3-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:cc34f233c9e71701040d772aa7490318673aa7164a0efe3172b2981218c26d93", size = 158501, upload-time = "2025-08-09T07:56:18.641Z" }, - { url = "https://files.pythonhosted.org/packages/c1/35/6525b21aa0db614cf8b5792d232021dca3df7f90a1944db934efa5d20bb1/charset_normalizer-3.4.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:320e8e66157cc4e247d9ddca8e21f427efc7a04bbd0ac8a9faf56583fa543f9f", size = 153173, upload-time = "2025-08-09T07:56:20.289Z" }, - { url = "https://files.pythonhosted.org/packages/50/ee/f4704bad8201de513fdc8aac1cabc87e38c5818c93857140e06e772b5892/charset_normalizer-3.4.3-cp312-cp312-win32.whl", hash = "sha256:fb6fecfd65564f208cbf0fba07f107fb661bcd1a7c389edbced3f7a493f70e37", size = 99822, upload-time = "2025-08-09T07:56:21.551Z" }, - { url = "https://files.pythonhosted.org/packages/39/f5/3b3836ca6064d0992c58c7561c6b6eee1b3892e9665d650c803bd5614522/charset_normalizer-3.4.3-cp312-cp312-win_amd64.whl", hash = "sha256:86df271bf921c2ee3818f0522e9a5b8092ca2ad8b065ece5d7d9d0e9f4849bcc", size = 107543, upload-time = "2025-08-09T07:56:23.115Z" }, - { url = "https://files.pythonhosted.org/packages/65/ca/2135ac97709b400c7654b4b764daf5c5567c2da45a30cdd20f9eefe2d658/charset_normalizer-3.4.3-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:14c2a87c65b351109f6abfc424cab3927b3bdece6f706e4d12faaf3d52ee5efe", size = 205326, upload-time = "2025-08-09T07:56:24.721Z" }, - { url = "https://files.pythonhosted.org/packages/71/11/98a04c3c97dd34e49c7d247083af03645ca3730809a5509443f3c37f7c99/charset_normalizer-3.4.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:41d1fc408ff5fdfb910200ec0e74abc40387bccb3252f3f27c0676731df2b2c8", size = 146008, upload-time = "2025-08-09T07:56:26.004Z" }, - { url = "https://files.pythonhosted.org/packages/60/f5/4659a4cb3c4ec146bec80c32d8bb16033752574c20b1252ee842a95d1a1e/charset_normalizer-3.4.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:1bb60174149316da1c35fa5233681f7c0f9f514509b8e399ab70fea5f17e45c9", size = 159196, upload-time = "2025-08-09T07:56:27.25Z" }, - { url = "https://files.pythonhosted.org/packages/86/9e/f552f7a00611f168b9a5865a1414179b2c6de8235a4fa40189f6f79a1753/charset_normalizer-3.4.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:30d006f98569de3459c2fc1f2acde170b7b2bd265dc1943e87e1a4efe1b67c31", size = 156819, upload-time = "2025-08-09T07:56:28.515Z" }, - { url = "https://files.pythonhosted.org/packages/7e/95/42aa2156235cbc8fa61208aded06ef46111c4d3f0de233107b3f38631803/charset_normalizer-3.4.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:416175faf02e4b0810f1f38bcb54682878a4af94059a1cd63b8747244420801f", size = 151350, upload-time = "2025-08-09T07:56:29.716Z" }, - { url = "https://files.pythonhosted.org/packages/c2/a9/3865b02c56f300a6f94fc631ef54f0a8a29da74fb45a773dfd3dcd380af7/charset_normalizer-3.4.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6aab0f181c486f973bc7262a97f5aca3ee7e1437011ef0c2ec04b5a11d16c927", size = 148644, upload-time = "2025-08-09T07:56:30.984Z" }, - { url = "https://files.pythonhosted.org/packages/77/d9/cbcf1a2a5c7d7856f11e7ac2d782aec12bdfea60d104e60e0aa1c97849dc/charset_normalizer-3.4.3-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:fdabf8315679312cfa71302f9bd509ded4f2f263fb5b765cf1433b39106c3cc9", size = 160468, upload-time = "2025-08-09T07:56:32.252Z" }, - { url = "https://files.pythonhosted.org/packages/f6/42/6f45efee8697b89fda4d50580f292b8f7f9306cb2971d4b53f8914e4d890/charset_normalizer-3.4.3-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:bd28b817ea8c70215401f657edef3a8aa83c29d447fb0b622c35403780ba11d5", size = 158187, upload-time = "2025-08-09T07:56:33.481Z" }, - { url = "https://files.pythonhosted.org/packages/70/99/f1c3bdcfaa9c45b3ce96f70b14f070411366fa19549c1d4832c935d8e2c3/charset_normalizer-3.4.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:18343b2d246dc6761a249ba1fb13f9ee9a2bcd95decc767319506056ea4ad4dc", size = 152699, upload-time = "2025-08-09T07:56:34.739Z" }, - { url = "https://files.pythonhosted.org/packages/a3/ad/b0081f2f99a4b194bcbb1934ef3b12aa4d9702ced80a37026b7607c72e58/charset_normalizer-3.4.3-cp313-cp313-win32.whl", hash = "sha256:6fb70de56f1859a3f71261cbe41005f56a7842cc348d3aeb26237560bfa5e0ce", size = 99580, upload-time = "2025-08-09T07:56:35.981Z" }, - { url = "https://files.pythonhosted.org/packages/9a/8f/ae790790c7b64f925e5c953b924aaa42a243fb778fed9e41f147b2a5715a/charset_normalizer-3.4.3-cp313-cp313-win_amd64.whl", hash = "sha256:cf1ebb7d78e1ad8ec2a8c4732c7be2e736f6e5123a4146c5b89c9d1f585f8cef", size = 107366, upload-time = "2025-08-09T07:56:37.339Z" }, - { url = "https://files.pythonhosted.org/packages/8e/91/b5a06ad970ddc7a0e513112d40113e834638f4ca1120eb727a249fb2715e/charset_normalizer-3.4.3-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:3cd35b7e8aedeb9e34c41385fda4f73ba609e561faedfae0a9e75e44ac558a15", size = 204342, upload-time = "2025-08-09T07:56:38.687Z" }, - { url = "https://files.pythonhosted.org/packages/ce/ec/1edc30a377f0a02689342f214455c3f6c2fbedd896a1d2f856c002fc3062/charset_normalizer-3.4.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b89bc04de1d83006373429975f8ef9e7932534b8cc9ca582e4db7d20d91816db", size = 145995, upload-time = "2025-08-09T07:56:40.048Z" }, - { url = "https://files.pythonhosted.org/packages/17/e5/5e67ab85e6d22b04641acb5399c8684f4d37caf7558a53859f0283a650e9/charset_normalizer-3.4.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2001a39612b241dae17b4687898843f254f8748b796a2e16f1051a17078d991d", size = 158640, upload-time = "2025-08-09T07:56:41.311Z" }, - { url = "https://files.pythonhosted.org/packages/f1/e5/38421987f6c697ee3722981289d554957c4be652f963d71c5e46a262e135/charset_normalizer-3.4.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:8dcfc373f888e4fb39a7bc57e93e3b845e7f462dacc008d9749568b1c4ece096", size = 156636, upload-time = "2025-08-09T07:56:43.195Z" }, - { url = "https://files.pythonhosted.org/packages/a0/e4/5a075de8daa3ec0745a9a3b54467e0c2967daaaf2cec04c845f73493e9a1/charset_normalizer-3.4.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:18b97b8404387b96cdbd30ad660f6407799126d26a39ca65729162fd810a99aa", size = 150939, upload-time = "2025-08-09T07:56:44.819Z" }, - { url = "https://files.pythonhosted.org/packages/02/f7/3611b32318b30974131db62b4043f335861d4d9b49adc6d57c1149cc49d4/charset_normalizer-3.4.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:ccf600859c183d70eb47e05a44cd80a4ce77394d1ac0f79dbd2dd90a69a3a049", size = 148580, upload-time = "2025-08-09T07:56:46.684Z" }, - { url = "https://files.pythonhosted.org/packages/7e/61/19b36f4bd67f2793ab6a99b979b4e4f3d8fc754cbdffb805335df4337126/charset_normalizer-3.4.3-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:53cd68b185d98dde4ad8990e56a58dea83a4162161b1ea9272e5c9182ce415e0", size = 159870, upload-time = "2025-08-09T07:56:47.941Z" }, - { url = "https://files.pythonhosted.org/packages/06/57/84722eefdd338c04cf3030ada66889298eaedf3e7a30a624201e0cbe424a/charset_normalizer-3.4.3-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:30a96e1e1f865f78b030d65241c1ee850cdf422d869e9028e2fc1d5e4db73b92", size = 157797, upload-time = "2025-08-09T07:56:49.756Z" }, - { url = "https://files.pythonhosted.org/packages/72/2a/aff5dd112b2f14bcc3462c312dce5445806bfc8ab3a7328555da95330e4b/charset_normalizer-3.4.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:d716a916938e03231e86e43782ca7878fb602a125a91e7acb8b5112e2e96ac16", size = 152224, upload-time = "2025-08-09T07:56:51.369Z" }, - { url = "https://files.pythonhosted.org/packages/b7/8c/9839225320046ed279c6e839d51f028342eb77c91c89b8ef2549f951f3ec/charset_normalizer-3.4.3-cp314-cp314-win32.whl", hash = "sha256:c6dbd0ccdda3a2ba7c2ecd9d77b37f3b5831687d8dc1b6ca5f56a4880cc7b7ce", size = 100086, upload-time = "2025-08-09T07:56:52.722Z" }, - { url = "https://files.pythonhosted.org/packages/ee/7a/36fbcf646e41f710ce0a563c1c9a343c6edf9be80786edeb15b6f62e17db/charset_normalizer-3.4.3-cp314-cp314-win_amd64.whl", hash = "sha256:73dc19b562516fc9bcf6e5d6e596df0b4eb98d87e4f79f3ae71840e6ed21361c", size = 107400, upload-time = "2025-08-09T07:56:55.172Z" }, - { url = "https://files.pythonhosted.org/packages/8a/1f/f041989e93b001bc4e44bb1669ccdcf54d3f00e628229a85b08d330615c5/charset_normalizer-3.4.3-py3-none-any.whl", hash = "sha256:ce571ab16d890d23b5c278547ba694193a45011ff86a9162a71307ed9f86759a", size = 53175, upload-time = "2025-08-09T07:57:26.864Z" }, +version = "3.4.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/13/69/33ddede1939fdd074bce5434295f38fae7136463422fe4fd3e0e89b98062/charset_normalizer-3.4.4.tar.gz", hash = "sha256:94537985111c35f28720e43603b8e7b43a6ecfb2ce1d3058bbe955b73404e21a", size = 129418, upload-time = "2025-10-14T04:42:32.879Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f3/85/1637cd4af66fa687396e757dec650f28025f2a2f5a5531a3208dc0ec43f2/charset_normalizer-3.4.4-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0a98e6759f854bd25a58a73fa88833fba3b7c491169f86ce1180c948ab3fd394", size = 208425, upload-time = "2025-10-14T04:40:53.353Z" }, + { url = "https://files.pythonhosted.org/packages/9d/6a/04130023fef2a0d9c62d0bae2649b69f7b7d8d24ea5536feef50551029df/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b5b290ccc2a263e8d185130284f8501e3e36c5e02750fc6b6bdeb2e9e96f1e25", size = 148162, upload-time = "2025-10-14T04:40:54.558Z" }, + { url = "https://files.pythonhosted.org/packages/78/29/62328d79aa60da22c9e0b9a66539feae06ca0f5a4171ac4f7dc285b83688/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:74bb723680f9f7a6234dcf67aea57e708ec1fbdf5699fb91dfd6f511b0a320ef", size = 144558, upload-time = "2025-10-14T04:40:55.677Z" }, + { url = "https://files.pythonhosted.org/packages/86/bb/b32194a4bf15b88403537c2e120b817c61cd4ecffa9b6876e941c3ee38fe/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f1e34719c6ed0b92f418c7c780480b26b5d9c50349e9a9af7d76bf757530350d", size = 161497, upload-time = "2025-10-14T04:40:57.217Z" }, + { url = "https://files.pythonhosted.org/packages/19/89/a54c82b253d5b9b111dc74aca196ba5ccfcca8242d0fb64146d4d3183ff1/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:2437418e20515acec67d86e12bf70056a33abdacb5cb1655042f6538d6b085a8", size = 159240, upload-time = "2025-10-14T04:40:58.358Z" }, + { url = "https://files.pythonhosted.org/packages/c0/10/d20b513afe03acc89ec33948320a5544d31f21b05368436d580dec4e234d/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:11d694519d7f29d6cd09f6ac70028dba10f92f6cdd059096db198c283794ac86", size = 153471, upload-time = "2025-10-14T04:40:59.468Z" }, + { url = "https://files.pythonhosted.org/packages/61/fa/fbf177b55bdd727010f9c0a3c49eefa1d10f960e5f09d1d887bf93c2e698/charset_normalizer-3.4.4-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:ac1c4a689edcc530fc9d9aa11f5774b9e2f33f9a0c6a57864e90908f5208d30a", size = 150864, upload-time = "2025-10-14T04:41:00.623Z" }, + { url = "https://files.pythonhosted.org/packages/05/12/9fbc6a4d39c0198adeebbde20b619790e9236557ca59fc40e0e3cebe6f40/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:21d142cc6c0ec30d2efee5068ca36c128a30b0f2c53c1c07bd78cb6bc1d3be5f", size = 150647, upload-time = "2025-10-14T04:41:01.754Z" }, + { url = "https://files.pythonhosted.org/packages/ad/1f/6a9a593d52e3e8c5d2b167daf8c6b968808efb57ef4c210acb907c365bc4/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:5dbe56a36425d26d6cfb40ce79c314a2e4dd6211d51d6d2191c00bed34f354cc", size = 145110, upload-time = "2025-10-14T04:41:03.231Z" }, + { url = "https://files.pythonhosted.org/packages/30/42/9a52c609e72471b0fc54386dc63c3781a387bb4fe61c20231a4ebcd58bdd/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:5bfbb1b9acf3334612667b61bd3002196fe2a1eb4dd74d247e0f2a4d50ec9bbf", size = 162839, upload-time = "2025-10-14T04:41:04.715Z" }, + { url = "https://files.pythonhosted.org/packages/c4/5b/c0682bbf9f11597073052628ddd38344a3d673fda35a36773f7d19344b23/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:d055ec1e26e441f6187acf818b73564e6e6282709e9bcb5b63f5b23068356a15", size = 150667, upload-time = "2025-10-14T04:41:05.827Z" }, + { url = "https://files.pythonhosted.org/packages/e4/24/a41afeab6f990cf2daf6cb8c67419b63b48cf518e4f56022230840c9bfb2/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:af2d8c67d8e573d6de5bc30cdb27e9b95e49115cd9baad5ddbd1a6207aaa82a9", size = 160535, upload-time = "2025-10-14T04:41:06.938Z" }, + { url = "https://files.pythonhosted.org/packages/2a/e5/6a4ce77ed243c4a50a1fecca6aaaab419628c818a49434be428fe24c9957/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:780236ac706e66881f3b7f2f32dfe90507a09e67d1d454c762cf642e6e1586e0", size = 154816, upload-time = "2025-10-14T04:41:08.101Z" }, + { url = "https://files.pythonhosted.org/packages/a8/ef/89297262b8092b312d29cdb2517cb1237e51db8ecef2e9af5edbe7b683b1/charset_normalizer-3.4.4-cp312-cp312-win32.whl", hash = "sha256:5833d2c39d8896e4e19b689ffc198f08ea58116bee26dea51e362ecc7cd3ed26", size = 99694, upload-time = "2025-10-14T04:41:09.23Z" }, + { url = "https://files.pythonhosted.org/packages/3d/2d/1e5ed9dd3b3803994c155cd9aacb60c82c331bad84daf75bcb9c91b3295e/charset_normalizer-3.4.4-cp312-cp312-win_amd64.whl", hash = "sha256:a79cfe37875f822425b89a82333404539ae63dbdddf97f84dcbc3d339aae9525", size = 107131, upload-time = "2025-10-14T04:41:10.467Z" }, + { url = "https://files.pythonhosted.org/packages/d0/d9/0ed4c7098a861482a7b6a95603edce4c0d9db2311af23da1fb2b75ec26fc/charset_normalizer-3.4.4-cp312-cp312-win_arm64.whl", hash = "sha256:376bec83a63b8021bb5c8ea75e21c4ccb86e7e45ca4eb81146091b56599b80c3", size = 100390, upload-time = "2025-10-14T04:41:11.915Z" }, + { url = "https://files.pythonhosted.org/packages/97/45/4b3a1239bbacd321068ea6e7ac28875b03ab8bc0aa0966452db17cd36714/charset_normalizer-3.4.4-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e1f185f86a6f3403aa2420e815904c67b2f9ebc443f045edd0de921108345794", size = 208091, upload-time = "2025-10-14T04:41:13.346Z" }, + { url = "https://files.pythonhosted.org/packages/7d/62/73a6d7450829655a35bb88a88fca7d736f9882a27eacdca2c6d505b57e2e/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6b39f987ae8ccdf0d2642338faf2abb1862340facc796048b604ef14919e55ed", size = 147936, upload-time = "2025-10-14T04:41:14.461Z" }, + { url = "https://files.pythonhosted.org/packages/89/c5/adb8c8b3d6625bef6d88b251bbb0d95f8205831b987631ab0c8bb5d937c2/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:3162d5d8ce1bb98dd51af660f2121c55d0fa541b46dff7bb9b9f86ea1d87de72", size = 144180, upload-time = "2025-10-14T04:41:15.588Z" }, + { url = "https://files.pythonhosted.org/packages/91/ed/9706e4070682d1cc219050b6048bfd293ccf67b3d4f5a4f39207453d4b99/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:81d5eb2a312700f4ecaa977a8235b634ce853200e828fbadf3a9c50bab278328", size = 161346, upload-time = "2025-10-14T04:41:16.738Z" }, + { url = "https://files.pythonhosted.org/packages/d5/0d/031f0d95e4972901a2f6f09ef055751805ff541511dc1252ba3ca1f80cf5/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5bd2293095d766545ec1a8f612559f6b40abc0eb18bb2f5d1171872d34036ede", size = 158874, upload-time = "2025-10-14T04:41:17.923Z" }, + { url = "https://files.pythonhosted.org/packages/f5/83/6ab5883f57c9c801ce5e5677242328aa45592be8a00644310a008d04f922/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a8a8b89589086a25749f471e6a900d3f662d1d3b6e2e59dcecf787b1cc3a1894", size = 153076, upload-time = "2025-10-14T04:41:19.106Z" }, + { url = "https://files.pythonhosted.org/packages/75/1e/5ff781ddf5260e387d6419959ee89ef13878229732732ee73cdae01800f2/charset_normalizer-3.4.4-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:bc7637e2f80d8530ee4a78e878bce464f70087ce73cf7c1caf142416923b98f1", size = 150601, upload-time = "2025-10-14T04:41:20.245Z" }, + { url = "https://files.pythonhosted.org/packages/d7/57/71be810965493d3510a6ca79b90c19e48696fb1ff964da319334b12677f0/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f8bf04158c6b607d747e93949aa60618b61312fe647a6369f88ce2ff16043490", size = 150376, upload-time = "2025-10-14T04:41:21.398Z" }, + { url = "https://files.pythonhosted.org/packages/e5/d5/c3d057a78c181d007014feb7e9f2e65905a6c4ef182c0ddf0de2924edd65/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:554af85e960429cf30784dd47447d5125aaa3b99a6f0683589dbd27e2f45da44", size = 144825, upload-time = "2025-10-14T04:41:22.583Z" }, + { url = "https://files.pythonhosted.org/packages/e6/8c/d0406294828d4976f275ffbe66f00266c4b3136b7506941d87c00cab5272/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:74018750915ee7ad843a774364e13a3db91682f26142baddf775342c3f5b1133", size = 162583, upload-time = "2025-10-14T04:41:23.754Z" }, + { url = "https://files.pythonhosted.org/packages/d7/24/e2aa1f18c8f15c4c0e932d9287b8609dd30ad56dbe41d926bd846e22fb8d/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:c0463276121fdee9c49b98908b3a89c39be45d86d1dbaa22957e38f6321d4ce3", size = 150366, upload-time = "2025-10-14T04:41:25.27Z" }, + { url = "https://files.pythonhosted.org/packages/e4/5b/1e6160c7739aad1e2df054300cc618b06bf784a7a164b0f238360721ab86/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:362d61fd13843997c1c446760ef36f240cf81d3ebf74ac62652aebaf7838561e", size = 160300, upload-time = "2025-10-14T04:41:26.725Z" }, + { url = "https://files.pythonhosted.org/packages/7a/10/f882167cd207fbdd743e55534d5d9620e095089d176d55cb22d5322f2afd/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9a26f18905b8dd5d685d6d07b0cdf98a79f3c7a918906af7cc143ea2e164c8bc", size = 154465, upload-time = "2025-10-14T04:41:28.322Z" }, + { url = "https://files.pythonhosted.org/packages/89/66/c7a9e1b7429be72123441bfdbaf2bc13faab3f90b933f664db506dea5915/charset_normalizer-3.4.4-cp313-cp313-win32.whl", hash = "sha256:9b35f4c90079ff2e2edc5b26c0c77925e5d2d255c42c74fdb70fb49b172726ac", size = 99404, upload-time = "2025-10-14T04:41:29.95Z" }, + { url = "https://files.pythonhosted.org/packages/c4/26/b9924fa27db384bdcd97ab83b4f0a8058d96ad9626ead570674d5e737d90/charset_normalizer-3.4.4-cp313-cp313-win_amd64.whl", hash = "sha256:b435cba5f4f750aa6c0a0d92c541fb79f69a387c91e61f1795227e4ed9cece14", size = 107092, upload-time = "2025-10-14T04:41:31.188Z" }, + { url = "https://files.pythonhosted.org/packages/af/8f/3ed4bfa0c0c72a7ca17f0380cd9e4dd842b09f664e780c13cff1dcf2ef1b/charset_normalizer-3.4.4-cp313-cp313-win_arm64.whl", hash = "sha256:542d2cee80be6f80247095cc36c418f7bddd14f4a6de45af91dfad36d817bba2", size = 100408, upload-time = "2025-10-14T04:41:32.624Z" }, + { url = "https://files.pythonhosted.org/packages/2a/35/7051599bd493e62411d6ede36fd5af83a38f37c4767b92884df7301db25d/charset_normalizer-3.4.4-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:da3326d9e65ef63a817ecbcc0df6e94463713b754fe293eaa03da99befb9a5bd", size = 207746, upload-time = "2025-10-14T04:41:33.773Z" }, + { url = "https://files.pythonhosted.org/packages/10/9a/97c8d48ef10d6cd4fcead2415523221624bf58bcf68a802721a6bc807c8f/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8af65f14dc14a79b924524b1e7fffe304517b2bff5a58bf64f30b98bbc5079eb", size = 147889, upload-time = "2025-10-14T04:41:34.897Z" }, + { url = "https://files.pythonhosted.org/packages/10/bf/979224a919a1b606c82bd2c5fa49b5c6d5727aa47b4312bb27b1734f53cd/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:74664978bb272435107de04e36db5a9735e78232b85b77d45cfb38f758efd33e", size = 143641, upload-time = "2025-10-14T04:41:36.116Z" }, + { url = "https://files.pythonhosted.org/packages/ba/33/0ad65587441fc730dc7bd90e9716b30b4702dc7b617e6ba4997dc8651495/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:752944c7ffbfdd10c074dc58ec2d5a8a4cd9493b314d367c14d24c17684ddd14", size = 160779, upload-time = "2025-10-14T04:41:37.229Z" }, + { url = "https://files.pythonhosted.org/packages/67/ed/331d6b249259ee71ddea93f6f2f0a56cfebd46938bde6fcc6f7b9a3d0e09/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d1f13550535ad8cff21b8d757a3257963e951d96e20ec82ab44bc64aeb62a191", size = 159035, upload-time = "2025-10-14T04:41:38.368Z" }, + { url = "https://files.pythonhosted.org/packages/67/ff/f6b948ca32e4f2a4576aa129d8bed61f2e0543bf9f5f2b7fc3758ed005c9/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ecaae4149d99b1c9e7b88bb03e3221956f68fd6d50be2ef061b2381b61d20838", size = 152542, upload-time = "2025-10-14T04:41:39.862Z" }, + { url = "https://files.pythonhosted.org/packages/16/85/276033dcbcc369eb176594de22728541a925b2632f9716428c851b149e83/charset_normalizer-3.4.4-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:cb6254dc36b47a990e59e1068afacdcd02958bdcce30bb50cc1700a8b9d624a6", size = 149524, upload-time = "2025-10-14T04:41:41.319Z" }, + { url = "https://files.pythonhosted.org/packages/9e/f2/6a2a1f722b6aba37050e626530a46a68f74e63683947a8acff92569f979a/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:c8ae8a0f02f57a6e61203a31428fa1d677cbe50c93622b4149d5c0f319c1d19e", size = 150395, upload-time = "2025-10-14T04:41:42.539Z" }, + { url = "https://files.pythonhosted.org/packages/60/bb/2186cb2f2bbaea6338cad15ce23a67f9b0672929744381e28b0592676824/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:47cc91b2f4dd2833fddaedd2893006b0106129d4b94fdb6af1f4ce5a9965577c", size = 143680, upload-time = "2025-10-14T04:41:43.661Z" }, + { url = "https://files.pythonhosted.org/packages/7d/a5/bf6f13b772fbb2a90360eb620d52ed8f796f3c5caee8398c3b2eb7b1c60d/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:82004af6c302b5d3ab2cfc4cc5f29db16123b1a8417f2e25f9066f91d4411090", size = 162045, upload-time = "2025-10-14T04:41:44.821Z" }, + { url = "https://files.pythonhosted.org/packages/df/c5/d1be898bf0dc3ef9030c3825e5d3b83f2c528d207d246cbabe245966808d/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:2b7d8f6c26245217bd2ad053761201e9f9680f8ce52f0fcd8d0755aeae5b2152", size = 149687, upload-time = "2025-10-14T04:41:46.442Z" }, + { url = "https://files.pythonhosted.org/packages/a5/42/90c1f7b9341eef50c8a1cb3f098ac43b0508413f33affd762855f67a410e/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:799a7a5e4fb2d5898c60b640fd4981d6a25f1c11790935a44ce38c54e985f828", size = 160014, upload-time = "2025-10-14T04:41:47.631Z" }, + { url = "https://files.pythonhosted.org/packages/76/be/4d3ee471e8145d12795ab655ece37baed0929462a86e72372fd25859047c/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:99ae2cffebb06e6c22bdc25801d7b30f503cc87dbd283479e7b606f70aff57ec", size = 154044, upload-time = "2025-10-14T04:41:48.81Z" }, + { url = "https://files.pythonhosted.org/packages/b0/6f/8f7af07237c34a1defe7defc565a9bc1807762f672c0fde711a4b22bf9c0/charset_normalizer-3.4.4-cp314-cp314-win32.whl", hash = "sha256:f9d332f8c2a2fcbffe1378594431458ddbef721c1769d78e2cbc06280d8155f9", size = 99940, upload-time = "2025-10-14T04:41:49.946Z" }, + { url = "https://files.pythonhosted.org/packages/4b/51/8ade005e5ca5b0d80fb4aff72a3775b325bdc3d27408c8113811a7cbe640/charset_normalizer-3.4.4-cp314-cp314-win_amd64.whl", hash = "sha256:8a6562c3700cce886c5be75ade4a5db4214fda19fede41d9792d100288d8f94c", size = 107104, upload-time = "2025-10-14T04:41:51.051Z" }, + { url = "https://files.pythonhosted.org/packages/da/5f/6b8f83a55bb8278772c5ae54a577f3099025f9ade59d0136ac24a0df4bde/charset_normalizer-3.4.4-cp314-cp314-win_arm64.whl", hash = "sha256:de00632ca48df9daf77a2c65a484531649261ec9f25489917f09e455cb09ddb2", size = 100743, upload-time = "2025-10-14T04:41:52.122Z" }, + { url = "https://files.pythonhosted.org/packages/0a/4c/925909008ed5a988ccbb72dcc897407e5d6d3bd72410d69e051fc0c14647/charset_normalizer-3.4.4-py3-none-any.whl", hash = "sha256:7a32c560861a02ff789ad905a2fe94e3f840803362c84fecf1851cb4cf3dc37f", size = 53402, upload-time = "2025-10-14T04:42:31.76Z" }, +] + +[[package]] +name = "click" +version = "8.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/3d/fa/656b739db8587d7b5dfa22e22ed02566950fbfbcdc20311993483657a5c0/click-8.3.1.tar.gz", hash = "sha256:12ff4785d337a1bb490bb7e9c2b1ee5da3112e94a8622f26a6c77f5d2fc6842a", size = 295065, upload-time = "2025-11-15T20:45:42.706Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/98/78/01c019cdb5d6498122777c1a43056ebb3ebfeef2076d9d026bfe15583b2b/click-8.3.1-py3-none-any.whl", hash = "sha256:981153a64e25f12d547d3426c367a4857371575ee7ad18df2a6183ab0545b2a6", size = 108274, upload-time = "2025-11-15T20:45:41.139Z" }, ] [[package]] @@ -427,13 +462,28 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/8b/01/0a08bb86b33fa0813401d05b5b624bafad0ff93a551008da949b4e016a7b/Faker-9.3.1-py3-none-any.whl", hash = "sha256:429a91d73dbac02609d6b616ef15bd4c3f22ed6532dcfceb46f3b8c28c78257a", size = 1192590, upload-time = "2021-10-11T19:39:03.32Z" }, ] +[[package]] +name = "fastapi" +version = "0.128.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "annotated-doc" }, + { name = "pydantic" }, + { name = "starlette" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/52/08/8c8508db6c7b9aae8f7175046af41baad690771c9bcde676419965e338c7/fastapi-0.128.0.tar.gz", hash = "sha256:1cc179e1cef10a6be60ffe429f79b829dce99d8de32d7acb7e6c8dfdf7f2645a", size = 365682, upload-time = "2025-12-27T15:21:13.714Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5c/05/5cbb59154b093548acd0f4c7c474a118eda06da25aa75c616b72d8fcd92a/fastapi-0.128.0-py3-none-any.whl", hash = "sha256:aebd93f9716ee3b4f4fcfe13ffb7cf308d99c9f3ab5622d8877441072561582d", size = 103094, upload-time = "2025-12-27T15:21:12.154Z" }, +] + [[package]] name = "filelock" -version = "3.19.1" +version = "3.20.3" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/40/bb/0ab3e58d22305b6f5440629d20683af28959bf793d98d11950e305c1c326/filelock-3.19.1.tar.gz", hash = "sha256:66eda1888b0171c998b35be2bcc0f6d75c388a7ce20c3f3f37aa8e96c2dddf58", size = 17687, upload-time = "2025-08-14T16:56:03.016Z" } +sdist = { url = "https://files.pythonhosted.org/packages/1d/65/ce7f1b70157833bf3cb851b556a37d4547ceafc158aa9b34b36782f23696/filelock-3.20.3.tar.gz", hash = "sha256:18c57ee915c7ec61cff0ecf7f0f869936c7c30191bb0cf406f1341778d0834e1", size = 19485, upload-time = "2026-01-09T17:55:05.421Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/42/14/42b2651a2f46b022ccd948bca9f2d5af0fd8929c4eec235b8d6d844fbe67/filelock-3.19.1-py3-none-any.whl", hash = "sha256:d38e30481def20772f5baf097c122c3babc4fcdb7e14e57049eb9d88c6dc017d", size = 15988, upload-time = "2025-08-14T16:56:01.633Z" }, + { url = "https://files.pythonhosted.org/packages/b5/36/7fb70f04bf00bc646cd5bb45aa9eddb15e19437a28b8fb2b4a5249fac770/filelock-3.20.3-py3-none-any.whl", hash = "sha256:4b0dda527ee31078689fc205ec4f1c1bf7d56cf88b6dc9426c4f230e46c2dce1", size = 16701, upload-time = "2026-01-09T17:55:04.334Z" }, ] [[package]] @@ -566,20 +616,20 @@ wheels = [ [[package]] name = "identify" -version = "2.6.14" +version = "2.6.16" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/52/c4/62963f25a678f6a050fb0505a65e9e726996171e6dbe1547f79619eefb15/identify-2.6.14.tar.gz", hash = "sha256:663494103b4f717cb26921c52f8751363dc89db64364cd836a9bf1535f53cd6a", size = 99283, upload-time = "2025-09-06T19:30:52.938Z" } +sdist = { url = "https://files.pythonhosted.org/packages/5b/8d/e8b97e6bd3fb6fb271346f7981362f1e04d6a7463abd0de79e1fda17c067/identify-2.6.16.tar.gz", hash = "sha256:846857203b5511bbe94d5a352a48ef2359532bc8f6727b5544077a0dcfb24980", size = 99360, upload-time = "2026-01-12T18:58:58.201Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e5/ae/2ad30f4652712c82f1c23423d79136fbce338932ad166d70c1efb86a5998/identify-2.6.14-py2.py3-none-any.whl", hash = "sha256:11a073da82212c6646b1f39bb20d4483bfb9543bd5566fec60053c4bb309bf2e", size = 99172, upload-time = "2025-09-06T19:30:51.759Z" }, + { url = "https://files.pythonhosted.org/packages/b8/58/40fbbcefeda82364720eba5cf2270f98496bdfa19ea75b4cccae79c698e6/identify-2.6.16-py2.py3-none-any.whl", hash = "sha256:391ee4d77741d994189522896270b787aed8670389bfd60f326d677d64a6dfb0", size = 99202, upload-time = "2026-01-12T18:58:56.627Z" }, ] [[package]] name = "idna" -version = "3.10" +version = "3.11" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/f1/70/7703c29685631f5a7590aa73f1f1d3fa9a380e654b86af429e0934a32f7d/idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9", size = 190490, upload-time = "2024-09-15T18:07:39.745Z" } +sdist = { url = "https://files.pythonhosted.org/packages/6f/6d/0703ccc57f3a7233505399edb88de3cbd678da106337b9fcde432b65ed60/idna-3.11.tar.gz", hash = "sha256:795dafcc9c04ed0c1fb032c2aa73654d8e8c5023a7df64a53f39190ada629902", size = 194582, upload-time = "2025-10-12T14:55:20.501Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3", size = 70442, upload-time = "2024-09-15T18:07:37.964Z" }, + { url = "https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl", hash = "sha256:771a87f49d9defaf64091e6e6fe9c18d4833f140bd19464795bc32d966ca37ea", size = 71008, upload-time = "2025-10-12T14:55:18.883Z" }, ] [[package]] @@ -598,11 +648,11 @@ wheels = [ [[package]] name = "iniconfig" -version = "2.1.0" +version = "2.3.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/f2/97/ebf4da567aa6827c909642694d71c9fcf53e5b504f2d96afea02718862f3/iniconfig-2.1.0.tar.gz", hash = "sha256:3abbd2e30b36733fee78f9c7f7308f2d0050e88f0087fd25c2645f63c773e1c7", size = 4793, upload-time = "2025-03-19T20:09:59.721Z" } +sdist = { url = "https://files.pythonhosted.org/packages/72/34/14ca021ce8e5dfedc35312d08ba8bf51fdd999c576889fc2c24cb97f4f10/iniconfig-2.3.0.tar.gz", hash = "sha256:c76315c77db068650d49c5b56314774a7804df16fee4402c1f19d6d15d8c4730", size = 20503, upload-time = "2025-10-18T21:55:43.219Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/2c/e1/e6716421ea10d38022b952c159d5161ca1193197fb744506875fbb87ea7b/iniconfig-2.1.0-py3-none-any.whl", hash = "sha256:9deba5723312380e77435581c6bf4935c94cbfab9b1ed33ef8d238ea168eb760", size = 6050, upload-time = "2025-03-19T20:10:01.071Z" }, + { url = "https://files.pythonhosted.org/packages/cb/b1/3846dd7f199d53cb17f49cba7e651e9ce294d8497c8c150530ed11865bb8/iniconfig-2.3.0-py3-none-any.whl", hash = "sha256:f631c04d2c48c52b84d0d0549c99ff3859c98df65b3101406327ecc7d53fbf12", size = 7484, upload-time = "2025-10-18T21:55:41.639Z" }, ] [[package]] @@ -621,7 +671,7 @@ wheels = [ [[package]] name = "ipython" -version = "9.5.0" +version = "9.9.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "colorama", marker = "sys_platform == 'win32'" }, @@ -635,9 +685,9 @@ dependencies = [ { name = "stack-data" }, { name = "traitlets" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/6e/71/a86262bf5a68bf211bcc71fe302af7e05f18a2852fdc610a854d20d085e6/ipython-9.5.0.tar.gz", hash = "sha256:129c44b941fe6d9b82d36fc7a7c18127ddb1d6f02f78f867f402e2e3adde3113", size = 4389137, upload-time = "2025-08-29T12:15:21.519Z" } +sdist = { url = "https://files.pythonhosted.org/packages/46/dd/fb08d22ec0c27e73c8bc8f71810709870d51cadaf27b7ddd3f011236c100/ipython-9.9.0.tar.gz", hash = "sha256:48fbed1b2de5e2c7177eefa144aba7fcb82dac514f09b57e2ac9da34ddb54220", size = 4425043, upload-time = "2026-01-05T12:36:46.233Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/08/2a/5628a99d04acb2d2f2e749cdf4ea571d2575e898df0528a090948018b726/ipython-9.5.0-py3-none-any.whl", hash = "sha256:88369ffa1d5817d609120daa523a6da06d02518e582347c29f8451732a9c5e72", size = 612426, upload-time = "2025-08-29T12:15:18.866Z" }, + { url = "https://files.pythonhosted.org/packages/86/92/162cfaee4ccf370465c5af1ce36a9eacec1becb552f2033bb3584e6f640a/ipython-9.9.0-py3-none-any.whl", hash = "sha256:b457fe9165df2b84e8ec909a97abcf2ed88f565970efba16b1f7229c283d252b", size = 621431, upload-time = "2026-01-05T12:36:44.669Z" }, ] [[package]] @@ -654,7 +704,7 @@ wheels = [ [[package]] name = "ipywidgets" -version = "8.1.7" +version = "8.1.8" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "comm" }, @@ -663,18 +713,18 @@ dependencies = [ { name = "traitlets" }, { name = "widgetsnbextension" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/3e/48/d3dbac45c2814cb73812f98dd6b38bbcc957a4e7bb31d6ea9c03bf94ed87/ipywidgets-8.1.7.tar.gz", hash = "sha256:15f1ac050b9ccbefd45dccfbb2ef6bed0029d8278682d569d71b8dd96bee0376", size = 116721, upload-time = "2025-05-05T12:42:03.489Z" } +sdist = { url = "https://files.pythonhosted.org/packages/4c/ae/c5ce1edc1afe042eadb445e95b0671b03cee61895264357956e61c0d2ac0/ipywidgets-8.1.8.tar.gz", hash = "sha256:61f969306b95f85fba6b6986b7fe45d73124d1d9e3023a8068710d47a22ea668", size = 116739, upload-time = "2025-11-01T21:18:12.393Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/58/6a/9166369a2f092bd286d24e6307de555d63616e8ddb373ebad2b5635ca4cd/ipywidgets-8.1.7-py3-none-any.whl", hash = "sha256:764f2602d25471c213919b8a1997df04bef869251db4ca8efba1b76b1bd9f7bb", size = 139806, upload-time = "2025-05-05T12:41:56.833Z" }, + { url = "https://files.pythonhosted.org/packages/56/6d/0d9848617b9f753b87f214f1c682592f7ca42de085f564352f10f0843026/ipywidgets-8.1.8-py3-none-any.whl", hash = "sha256:ecaca67aed704a338f88f67b1181b58f821ab5dc89c1f0f5ef99db43c1c2921e", size = 139808, upload-time = "2025-11-01T21:18:10.956Z" }, ] [[package]] name = "isort" -version = "6.0.1" +version = "7.0.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/b8/21/1e2a441f74a653a144224d7d21afe8f4169e6c7c20bb13aec3a2dc3815e0/isort-6.0.1.tar.gz", hash = "sha256:1cb5df28dfbc742e490c5e41bad6da41b805b0a8be7bc93cd0fb2a8a890ac450", size = 821955, upload-time = "2025-02-26T21:13:16.955Z" } +sdist = { url = "https://files.pythonhosted.org/packages/63/53/4f3c058e3bace40282876f9b553343376ee687f3c35a525dc79dbd450f88/isort-7.0.0.tar.gz", hash = "sha256:5513527951aadb3ac4292a41a16cbc50dd1642432f5e8c20057d414bdafb4187", size = 805049, upload-time = "2025-10-11T13:30:59.107Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c1/11/114d0a5f4dabbdcedc1125dee0888514c3c3b16d3e9facad87ed96fad97c/isort-6.0.1-py3-none-any.whl", hash = "sha256:2dc5d7f65c9678d94c88dfc29161a320eec67328bc97aad576874cb4be1e9615", size = 94186, upload-time = "2025-02-26T21:13:14.911Z" }, + { url = "https://files.pythonhosted.org/packages/7f/ed/e3705d6d02b4f7aea715a353c8ce193efd0b5db13e204df895d38734c244/isort-7.0.0-py3-none-any.whl", hash = "sha256:1bcabac8bc3c36c7fb7b98a76c8abb18e0f841a3ba81decac7691008592499c1", size = 94672, upload-time = "2025-10-11T13:30:57.665Z" }, ] [[package]] @@ -703,7 +753,7 @@ wheels = [ [[package]] name = "jsonschema" -version = "4.25.1" +version = "4.26.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "attrs" }, @@ -711,9 +761,9 @@ dependencies = [ { name = "referencing" }, { name = "rpds-py" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/74/69/f7185de793a29082a9f3c7728268ffb31cb5095131a9c139a74078e27336/jsonschema-4.25.1.tar.gz", hash = "sha256:e4a9655ce0da0c0b67a085847e00a3a51449e1157f4f75e9fb5aa545e122eb85", size = 357342, upload-time = "2025-08-18T17:03:50.038Z" } +sdist = { url = "https://files.pythonhosted.org/packages/b3/fc/e067678238fa451312d4c62bf6e6cf5ec56375422aee02f9cb5f909b3047/jsonschema-4.26.0.tar.gz", hash = "sha256:0c26707e2efad8aa1bfc5b7ce170f3fccc2e4918ff85989ba9ffa9facb2be326", size = 366583, upload-time = "2026-01-07T13:41:07.246Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/bf/9c/8c95d856233c1f82500c2450b8c68576b4cf1c871db3afac5c34ff84e6fd/jsonschema-4.25.1-py3-none-any.whl", hash = "sha256:3fba0169e345c7175110351d456342c364814cfcf3b964ba4587f22915230a63", size = 90040, upload-time = "2025-08-18T17:03:48.373Z" }, + { url = "https://files.pythonhosted.org/packages/69/90/f63fb5873511e014207a475e2bb4e8b2e570d655b00ac19a9a0ca0a385ee/jsonschema-4.26.0-py3-none-any.whl", hash = "sha256:d489f15263b8d200f8387e64b4c3a75f06629559fb73deb8fdfb525f2dab50ce", size = 90630, upload-time = "2026-01-07T13:41:05.306Z" }, ] [[package]] @@ -730,11 +780,11 @@ wheels = [ [[package]] name = "jupyterlab-widgets" -version = "3.0.15" +version = "3.0.16" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/b9/7d/160595ca88ee87ac6ba95d82177d29ec60aaa63821d3077babb22ce031a5/jupyterlab_widgets-3.0.15.tar.gz", hash = "sha256:2920888a0c2922351a9202817957a68c07d99673504d6cd37345299e971bb08b", size = 213149, upload-time = "2025-05-05T12:32:31.004Z" } +sdist = { url = "https://files.pythonhosted.org/packages/26/2d/ef58fed122b268c69c0aa099da20bc67657cdfb2e222688d5731bd5b971d/jupyterlab_widgets-3.0.16.tar.gz", hash = "sha256:423da05071d55cf27a9e602216d35a3a65a3e41cdf9c5d3b643b814ce38c19e0", size = 897423, upload-time = "2025-11-01T21:11:29.724Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/43/6a/ca128561b22b60bd5a0c4ea26649e68c8556b82bc70a0c396eebc977fe86/jupyterlab_widgets-3.0.15-py3-none-any.whl", hash = "sha256:d59023d7d7ef71400d51e6fee9a88867f6e65e10a4201605d2d7f3e8f012a31c", size = 216571, upload-time = "2025-05-05T12:32:29.534Z" }, + { url = "https://files.pythonhosted.org/packages/ab/b5/36c712098e6191d1b4e349304ef73a8d06aed77e56ceaac8c0a306c7bda1/jupyterlab_widgets-3.0.16-py3-none-any.whl", hash = "sha256:45fa36d9c6422cf2559198e4db481aa243c7a32d9926b500781c830c80f7ecf8", size = 914926, upload-time = "2025-11-01T21:11:28.008Z" }, ] [[package]] @@ -833,6 +883,58 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/80/be/3578e8afd18c88cdf9cb4cffde75a96d2be38c5a903f1ed0ceec061bd09e/kiwisolver-1.4.9-cp314-cp314t-win_arm64.whl", hash = "sha256:4a48a2ce79d65d363597ef7b567ce3d14d68783d2b2263d98db3d9477805ba32", size = 70260, upload-time = "2025-08-10T21:27:36.606Z" }, ] +[[package]] +name = "librt" +version = "0.7.8" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e7/24/5f3646ff414285e0f7708fa4e946b9bf538345a41d1c375c439467721a5e/librt-0.7.8.tar.gz", hash = "sha256:1a4ede613941d9c3470b0368be851df6bb78ab218635512d0370b27a277a0862", size = 148323, upload-time = "2026-01-14T12:56:16.876Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/56/04/79d8fcb43cae376c7adbab7b2b9f65e48432c9eced62ac96703bcc16e09b/librt-0.7.8-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:9b6943885b2d49c48d0cff23b16be830ba46b0152d98f62de49e735c6e655a63", size = 57472, upload-time = "2026-01-14T12:55:08.528Z" }, + { url = "https://files.pythonhosted.org/packages/b4/ba/60b96e93043d3d659da91752689023a73981336446ae82078cddf706249e/librt-0.7.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:46ef1f4b9b6cc364b11eea0ecc0897314447a66029ee1e55859acb3dd8757c93", size = 58986, upload-time = "2026-01-14T12:55:09.466Z" }, + { url = "https://files.pythonhosted.org/packages/7c/26/5215e4cdcc26e7be7eee21955a7e13cbf1f6d7d7311461a6014544596fac/librt-0.7.8-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:907ad09cfab21e3c86e8f1f87858f7049d1097f77196959c033612f532b4e592", size = 168422, upload-time = "2026-01-14T12:55:10.499Z" }, + { url = "https://files.pythonhosted.org/packages/0f/84/e8d1bc86fa0159bfc24f3d798d92cafd3897e84c7fea7fe61b3220915d76/librt-0.7.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2991b6c3775383752b3ca0204842743256f3ad3deeb1d0adc227d56b78a9a850", size = 177478, upload-time = "2026-01-14T12:55:11.577Z" }, + { url = "https://files.pythonhosted.org/packages/57/11/d0268c4b94717a18aa91df1100e767b010f87b7ae444dafaa5a2d80f33a6/librt-0.7.8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:03679b9856932b8c8f674e87aa3c55ea11c9274301f76ae8dc4d281bda55cf62", size = 192439, upload-time = "2026-01-14T12:55:12.7Z" }, + { url = "https://files.pythonhosted.org/packages/8d/56/1e8e833b95fe684f80f8894ae4d8b7d36acc9203e60478fcae599120a975/librt-0.7.8-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3968762fec1b2ad34ce57458b6de25dbb4142713e9ca6279a0d352fa4e9f452b", size = 191483, upload-time = "2026-01-14T12:55:13.838Z" }, + { url = "https://files.pythonhosted.org/packages/17/48/f11cf28a2cb6c31f282009e2208312aa84a5ee2732859f7856ee306176d5/librt-0.7.8-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:bb7a7807523a31f03061288cc4ffc065d684c39db7644c676b47d89553c0d714", size = 185376, upload-time = "2026-01-14T12:55:15.017Z" }, + { url = "https://files.pythonhosted.org/packages/b8/6a/d7c116c6da561b9155b184354a60a3d5cdbf08fc7f3678d09c95679d13d9/librt-0.7.8-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad64a14b1e56e702e19b24aae108f18ad1bf7777f3af5fcd39f87d0c5a814449", size = 206234, upload-time = "2026-01-14T12:55:16.571Z" }, + { url = "https://files.pythonhosted.org/packages/61/de/1975200bb0285fc921c5981d9978ce6ce11ae6d797df815add94a5a848a3/librt-0.7.8-cp312-cp312-win32.whl", hash = "sha256:0241a6ed65e6666236ea78203a73d800dbed896cf12ae25d026d75dc1fcd1dac", size = 44057, upload-time = "2026-01-14T12:55:18.077Z" }, + { url = "https://files.pythonhosted.org/packages/8e/cd/724f2d0b3461426730d4877754b65d39f06a41ac9d0a92d5c6840f72b9ae/librt-0.7.8-cp312-cp312-win_amd64.whl", hash = "sha256:6db5faf064b5bab9675c32a873436b31e01d66ca6984c6f7f92621656033a708", size = 50293, upload-time = "2026-01-14T12:55:19.179Z" }, + { url = "https://files.pythonhosted.org/packages/bd/cf/7e899acd9ee5727ad8160fdcc9994954e79fab371c66535c60e13b968ffc/librt-0.7.8-cp312-cp312-win_arm64.whl", hash = "sha256:57175aa93f804d2c08d2edb7213e09276bd49097611aefc37e3fa38d1fb99ad0", size = 43574, upload-time = "2026-01-14T12:55:20.185Z" }, + { url = "https://files.pythonhosted.org/packages/a1/fe/b1f9de2829cf7fc7649c1dcd202cfd873837c5cc2fc9e526b0e7f716c3d2/librt-0.7.8-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:4c3995abbbb60b3c129490fa985dfe6cac11d88fc3c36eeb4fb1449efbbb04fc", size = 57500, upload-time = "2026-01-14T12:55:21.219Z" }, + { url = "https://files.pythonhosted.org/packages/eb/d4/4a60fbe2e53b825f5d9a77325071d61cd8af8506255067bf0c8527530745/librt-0.7.8-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:44e0c2cbc9bebd074cf2cdbe472ca185e824be4e74b1c63a8e934cea674bebf2", size = 59019, upload-time = "2026-01-14T12:55:22.256Z" }, + { url = "https://files.pythonhosted.org/packages/6a/37/61ff80341ba5159afa524445f2d984c30e2821f31f7c73cf166dcafa5564/librt-0.7.8-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:4d2f1e492cae964b3463a03dc77a7fe8742f7855d7258c7643f0ee32b6651dd3", size = 169015, upload-time = "2026-01-14T12:55:23.24Z" }, + { url = "https://files.pythonhosted.org/packages/1c/86/13d4f2d6a93f181ebf2fc953868826653ede494559da8268023fe567fca3/librt-0.7.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:451e7ffcef8f785831fdb791bd69211f47e95dc4c6ddff68e589058806f044c6", size = 178161, upload-time = "2026-01-14T12:55:24.826Z" }, + { url = "https://files.pythonhosted.org/packages/88/26/e24ef01305954fc4d771f1f09f3dd682f9eb610e1bec188ffb719374d26e/librt-0.7.8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:3469e1af9f1380e093ae06bedcbdd11e407ac0b303a56bbe9afb1d6824d4982d", size = 193015, upload-time = "2026-01-14T12:55:26.04Z" }, + { url = "https://files.pythonhosted.org/packages/88/a0/92b6bd060e720d7a31ed474d046a69bd55334ec05e9c446d228c4b806ae3/librt-0.7.8-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f11b300027ce19a34f6d24ebb0a25fd0e24a9d53353225a5c1e6cadbf2916b2e", size = 192038, upload-time = "2026-01-14T12:55:27.208Z" }, + { url = "https://files.pythonhosted.org/packages/06/bb/6f4c650253704279c3a214dad188101d1b5ea23be0606628bc6739456624/librt-0.7.8-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4adc73614f0d3c97874f02f2c7fd2a27854e7e24ad532ea6b965459c5b757eca", size = 186006, upload-time = "2026-01-14T12:55:28.594Z" }, + { url = "https://files.pythonhosted.org/packages/dc/00/1c409618248d43240cadf45f3efb866837fa77e9a12a71481912135eb481/librt-0.7.8-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:60c299e555f87e4c01b2eca085dfccda1dde87f5a604bb45c2906b8305819a93", size = 206888, upload-time = "2026-01-14T12:55:30.214Z" }, + { url = "https://files.pythonhosted.org/packages/d9/83/b2cfe8e76ff5c1c77f8a53da3d5de62d04b5ebf7cf913e37f8bca43b5d07/librt-0.7.8-cp313-cp313-win32.whl", hash = "sha256:b09c52ed43a461994716082ee7d87618096851319bf695d57ec123f2ab708951", size = 44126, upload-time = "2026-01-14T12:55:31.44Z" }, + { url = "https://files.pythonhosted.org/packages/a9/0b/c59d45de56a51bd2d3a401fc63449c0ac163e4ef7f523ea8b0c0dee86ec5/librt-0.7.8-cp313-cp313-win_amd64.whl", hash = "sha256:f8f4a901a3fa28969d6e4519deceab56c55a09d691ea7b12ca830e2fa3461e34", size = 50262, upload-time = "2026-01-14T12:55:33.01Z" }, + { url = "https://files.pythonhosted.org/packages/fc/b9/973455cec0a1ec592395250c474164c4a58ebf3e0651ee920fef1a2623f1/librt-0.7.8-cp313-cp313-win_arm64.whl", hash = "sha256:43d4e71b50763fcdcf64725ac680d8cfa1706c928b844794a7aa0fa9ac8e5f09", size = 43600, upload-time = "2026-01-14T12:55:34.054Z" }, + { url = "https://files.pythonhosted.org/packages/1a/73/fa8814c6ce2d49c3827829cadaa1589b0bf4391660bd4510899393a23ebc/librt-0.7.8-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:be927c3c94c74b05128089a955fba86501c3b544d1d300282cc1b4bd370cb418", size = 57049, upload-time = "2026-01-14T12:55:35.056Z" }, + { url = "https://files.pythonhosted.org/packages/53/fe/f6c70956da23ea235fd2e3cc16f4f0b4ebdfd72252b02d1164dd58b4e6c3/librt-0.7.8-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:7b0803e9008c62a7ef79058233db7ff6f37a9933b8f2573c05b07ddafa226611", size = 58689, upload-time = "2026-01-14T12:55:36.078Z" }, + { url = "https://files.pythonhosted.org/packages/1f/4d/7a2481444ac5fba63050d9abe823e6bc16896f575bfc9c1e5068d516cdce/librt-0.7.8-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:79feb4d00b2a4e0e05c9c56df707934f41fcb5fe53fd9efb7549068d0495b758", size = 166808, upload-time = "2026-01-14T12:55:37.595Z" }, + { url = "https://files.pythonhosted.org/packages/ac/3c/10901d9e18639f8953f57c8986796cfbf4c1c514844a41c9197cf87cb707/librt-0.7.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b9122094e3f24aa759c38f46bd8863433820654927370250f460ae75488b66ea", size = 175614, upload-time = "2026-01-14T12:55:38.756Z" }, + { url = "https://files.pythonhosted.org/packages/db/01/5cbdde0951a5090a80e5ba44e6357d375048123c572a23eecfb9326993a7/librt-0.7.8-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7e03bea66af33c95ce3addf87a9bf1fcad8d33e757bc479957ddbc0e4f7207ac", size = 189955, upload-time = "2026-01-14T12:55:39.939Z" }, + { url = "https://files.pythonhosted.org/packages/6a/b4/e80528d2f4b7eaf1d437fcbd6fc6ba4cbeb3e2a0cb9ed5a79f47c7318706/librt-0.7.8-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:f1ade7f31675db00b514b98f9ab9a7698c7282dad4be7492589109471852d398", size = 189370, upload-time = "2026-01-14T12:55:41.057Z" }, + { url = "https://files.pythonhosted.org/packages/c1/ab/938368f8ce31a9787ecd4becb1e795954782e4312095daf8fd22420227c8/librt-0.7.8-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:a14229ac62adcf1b90a15992f1ab9c69ae8b99ffb23cb64a90878a6e8a2f5b81", size = 183224, upload-time = "2026-01-14T12:55:42.328Z" }, + { url = "https://files.pythonhosted.org/packages/3c/10/559c310e7a6e4014ac44867d359ef8238465fb499e7eb31b6bfe3e3f86f5/librt-0.7.8-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:5bcaaf624fd24e6a0cb14beac37677f90793a96864c67c064a91458611446e83", size = 203541, upload-time = "2026-01-14T12:55:43.501Z" }, + { url = "https://files.pythonhosted.org/packages/f8/db/a0db7acdb6290c215f343835c6efda5b491bb05c3ddc675af558f50fdba3/librt-0.7.8-cp314-cp314-win32.whl", hash = "sha256:7aa7d5457b6c542ecaed79cec4ad98534373c9757383973e638ccced0f11f46d", size = 40657, upload-time = "2026-01-14T12:55:44.668Z" }, + { url = "https://files.pythonhosted.org/packages/72/e0/4f9bdc2a98a798511e81edcd6b54fe82767a715e05d1921115ac70717f6f/librt-0.7.8-cp314-cp314-win_amd64.whl", hash = "sha256:3d1322800771bee4a91f3b4bd4e49abc7d35e65166821086e5afd1e6c0d9be44", size = 46835, upload-time = "2026-01-14T12:55:45.655Z" }, + { url = "https://files.pythonhosted.org/packages/f9/3d/59c6402e3dec2719655a41ad027a7371f8e2334aa794ed11533ad5f34969/librt-0.7.8-cp314-cp314-win_arm64.whl", hash = "sha256:5363427bc6a8c3b1719f8f3845ea53553d301382928a86e8fab7984426949bce", size = 39885, upload-time = "2026-01-14T12:55:47.138Z" }, + { url = "https://files.pythonhosted.org/packages/4e/9c/2481d80950b83085fb14ba3c595db56330d21bbc7d88a19f20165f3538db/librt-0.7.8-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:ca916919793a77e4a98d4a1701e345d337ce53be4a16620f063191f7322ac80f", size = 59161, upload-time = "2026-01-14T12:55:48.45Z" }, + { url = "https://files.pythonhosted.org/packages/96/79/108df2cfc4e672336765d54e3ff887294c1cc36ea4335c73588875775527/librt-0.7.8-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:54feb7b4f2f6706bb82325e836a01be805770443e2400f706e824e91f6441dde", size = 61008, upload-time = "2026-01-14T12:55:49.527Z" }, + { url = "https://files.pythonhosted.org/packages/46/f2/30179898f9994a5637459d6e169b6abdc982012c0a4b2d4c26f50c06f911/librt-0.7.8-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:39a4c76fee41007070f872b648cc2f711f9abf9a13d0c7162478043377b52c8e", size = 187199, upload-time = "2026-01-14T12:55:50.587Z" }, + { url = "https://files.pythonhosted.org/packages/b4/da/f7563db55cebdc884f518ba3791ad033becc25ff68eb70902b1747dc0d70/librt-0.7.8-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ac9c8a458245c7de80bc1b9765b177055efff5803f08e548dd4bb9ab9a8d789b", size = 198317, upload-time = "2026-01-14T12:55:51.991Z" }, + { url = "https://files.pythonhosted.org/packages/b3/6c/4289acf076ad371471fa86718c30ae353e690d3de6167f7db36f429272f1/librt-0.7.8-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:95b67aa7eff150f075fda09d11f6bfb26edffd300f6ab1666759547581e8f666", size = 210334, upload-time = "2026-01-14T12:55:53.682Z" }, + { url = "https://files.pythonhosted.org/packages/4a/7f/377521ac25b78ac0a5ff44127a0360ee6d5ddd3ce7327949876a30533daa/librt-0.7.8-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:535929b6eff670c593c34ff435d5440c3096f20fa72d63444608a5aef64dd581", size = 211031, upload-time = "2026-01-14T12:55:54.827Z" }, + { url = "https://files.pythonhosted.org/packages/c5/b1/e1e96c3e20b23d00cf90f4aad48f0deb4cdfec2f0ed8380d0d85acf98bbf/librt-0.7.8-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:63937bd0f4d1cb56653dc7ae900d6c52c41f0015e25aaf9902481ee79943b33a", size = 204581, upload-time = "2026-01-14T12:55:56.811Z" }, + { url = "https://files.pythonhosted.org/packages/43/71/0f5d010e92ed9747e14bef35e91b6580533510f1e36a8a09eb79ee70b2f0/librt-0.7.8-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:cf243da9e42d914036fd362ac3fa77d80a41cadcd11ad789b1b5eec4daaf67ca", size = 224731, upload-time = "2026-01-14T12:55:58.175Z" }, + { url = "https://files.pythonhosted.org/packages/22/f0/07fb6ab5c39a4ca9af3e37554f9d42f25c464829254d72e4ebbd81da351c/librt-0.7.8-cp314-cp314t-win32.whl", hash = "sha256:171ca3a0a06c643bd0a2f62a8944e1902c94aa8e5da4db1ea9a8daf872685365", size = 41173, upload-time = "2026-01-14T12:55:59.315Z" }, + { url = "https://files.pythonhosted.org/packages/24/d4/7e4be20993dc6a782639625bd2f97f3c66125c7aa80c82426956811cfccf/librt-0.7.8-cp314-cp314t-win_amd64.whl", hash = "sha256:445b7304145e24c60288a2f172b5ce2ca35c0f81605f5299f3fa567e189d2e32", size = 47668, upload-time = "2026-01-14T12:56:00.261Z" }, + { url = "https://files.pythonhosted.org/packages/fc/85/69f92b2a7b3c0f88ffe107c86b952b397004b5b8ea5a81da3d9c04c04422/librt-0.7.8-cp314-cp314t-win_arm64.whl", hash = "sha256:8766ece9de08527deabcd7cb1b4f1a967a385d26e33e536d6d8913db6ef74f06", size = 40550, upload-time = "2026-01-14T12:56:01.542Z" }, +] + [[package]] name = "loguru" version = "0.7.3" @@ -857,40 +959,65 @@ wheels = [ [[package]] name = "markupsafe" -version = "3.0.2" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/b2/97/5d42485e71dfc078108a86d6de8fa46db44a1a9295e89c5d6d4a06e23a62/markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0", size = 20537, upload-time = "2024-10-18T15:21:54.129Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/22/09/d1f21434c97fc42f09d290cbb6350d44eb12f09cc62c9476effdb33a18aa/MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf", size = 14274, upload-time = "2024-10-18T15:21:13.777Z" }, - { url = "https://files.pythonhosted.org/packages/6b/b0/18f76bba336fa5aecf79d45dcd6c806c280ec44538b3c13671d49099fdd0/MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225", size = 12348, upload-time = "2024-10-18T15:21:14.822Z" }, - { url = "https://files.pythonhosted.org/packages/e0/25/dd5c0f6ac1311e9b40f4af06c78efde0f3b5cbf02502f8ef9501294c425b/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028", size = 24149, upload-time = "2024-10-18T15:21:15.642Z" }, - { url = "https://files.pythonhosted.org/packages/f3/f0/89e7aadfb3749d0f52234a0c8c7867877876e0a20b60e2188e9850794c17/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8", size = 23118, upload-time = "2024-10-18T15:21:17.133Z" }, - { url = "https://files.pythonhosted.org/packages/d5/da/f2eeb64c723f5e3777bc081da884b414671982008c47dcc1873d81f625b6/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c", size = 22993, upload-time = "2024-10-18T15:21:18.064Z" }, - { url = "https://files.pythonhosted.org/packages/da/0e/1f32af846df486dce7c227fe0f2398dc7e2e51d4a370508281f3c1c5cddc/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557", size = 24178, upload-time = "2024-10-18T15:21:18.859Z" }, - { url = "https://files.pythonhosted.org/packages/c4/f6/bb3ca0532de8086cbff5f06d137064c8410d10779c4c127e0e47d17c0b71/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22", size = 23319, upload-time = "2024-10-18T15:21:19.671Z" }, - { url = "https://files.pythonhosted.org/packages/a2/82/8be4c96ffee03c5b4a034e60a31294daf481e12c7c43ab8e34a1453ee48b/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48", size = 23352, upload-time = "2024-10-18T15:21:20.971Z" }, - { url = "https://files.pythonhosted.org/packages/51/ae/97827349d3fcffee7e184bdf7f41cd6b88d9919c80f0263ba7acd1bbcb18/MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30", size = 15097, upload-time = "2024-10-18T15:21:22.646Z" }, - { url = "https://files.pythonhosted.org/packages/c1/80/a61f99dc3a936413c3ee4e1eecac96c0da5ed07ad56fd975f1a9da5bc630/MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87", size = 15601, upload-time = "2024-10-18T15:21:23.499Z" }, - { url = "https://files.pythonhosted.org/packages/83/0e/67eb10a7ecc77a0c2bbe2b0235765b98d164d81600746914bebada795e97/MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd", size = 14274, upload-time = "2024-10-18T15:21:24.577Z" }, - { url = "https://files.pythonhosted.org/packages/2b/6d/9409f3684d3335375d04e5f05744dfe7e9f120062c9857df4ab490a1031a/MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430", size = 12352, upload-time = "2024-10-18T15:21:25.382Z" }, - { url = "https://files.pythonhosted.org/packages/d2/f5/6eadfcd3885ea85fe2a7c128315cc1bb7241e1987443d78c8fe712d03091/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094", size = 24122, upload-time = "2024-10-18T15:21:26.199Z" }, - { url = "https://files.pythonhosted.org/packages/0c/91/96cf928db8236f1bfab6ce15ad070dfdd02ed88261c2afafd4b43575e9e9/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396", size = 23085, upload-time = "2024-10-18T15:21:27.029Z" }, - { url = "https://files.pythonhosted.org/packages/c2/cf/c9d56af24d56ea04daae7ac0940232d31d5a8354f2b457c6d856b2057d69/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79", size = 22978, upload-time = "2024-10-18T15:21:27.846Z" }, - { url = "https://files.pythonhosted.org/packages/2a/9f/8619835cd6a711d6272d62abb78c033bda638fdc54c4e7f4272cf1c0962b/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a", size = 24208, upload-time = "2024-10-18T15:21:28.744Z" }, - { url = "https://files.pythonhosted.org/packages/f9/bf/176950a1792b2cd2102b8ffeb5133e1ed984547b75db47c25a67d3359f77/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca", size = 23357, upload-time = "2024-10-18T15:21:29.545Z" }, - { url = "https://files.pythonhosted.org/packages/ce/4f/9a02c1d335caabe5c4efb90e1b6e8ee944aa245c1aaaab8e8a618987d816/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c", size = 23344, upload-time = "2024-10-18T15:21:30.366Z" }, - { url = "https://files.pythonhosted.org/packages/ee/55/c271b57db36f748f0e04a759ace9f8f759ccf22b4960c270c78a394f58be/MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1", size = 15101, upload-time = "2024-10-18T15:21:31.207Z" }, - { url = "https://files.pythonhosted.org/packages/29/88/07df22d2dd4df40aba9f3e402e6dc1b8ee86297dddbad4872bd5e7b0094f/MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f", size = 15603, upload-time = "2024-10-18T15:21:32.032Z" }, - { url = "https://files.pythonhosted.org/packages/62/6a/8b89d24db2d32d433dffcd6a8779159da109842434f1dd2f6e71f32f738c/MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c", size = 14510, upload-time = "2024-10-18T15:21:33.625Z" }, - { url = "https://files.pythonhosted.org/packages/7a/06/a10f955f70a2e5a9bf78d11a161029d278eeacbd35ef806c3fd17b13060d/MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb", size = 12486, upload-time = "2024-10-18T15:21:34.611Z" }, - { url = "https://files.pythonhosted.org/packages/34/cf/65d4a571869a1a9078198ca28f39fba5fbb910f952f9dbc5220afff9f5e6/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c", size = 25480, upload-time = "2024-10-18T15:21:35.398Z" }, - { url = "https://files.pythonhosted.org/packages/0c/e3/90e9651924c430b885468b56b3d597cabf6d72be4b24a0acd1fa0e12af67/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d", size = 23914, upload-time = "2024-10-18T15:21:36.231Z" }, - { url = "https://files.pythonhosted.org/packages/66/8c/6c7cf61f95d63bb866db39085150df1f2a5bd3335298f14a66b48e92659c/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe", size = 23796, upload-time = "2024-10-18T15:21:37.073Z" }, - { url = "https://files.pythonhosted.org/packages/bb/35/cbe9238ec3f47ac9a7c8b3df7a808e7cb50fe149dc7039f5f454b3fba218/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5", size = 25473, upload-time = "2024-10-18T15:21:37.932Z" }, - { url = "https://files.pythonhosted.org/packages/e6/32/7621a4382488aa283cc05e8984a9c219abad3bca087be9ec77e89939ded9/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a", size = 24114, upload-time = "2024-10-18T15:21:39.799Z" }, - { url = "https://files.pythonhosted.org/packages/0d/80/0985960e4b89922cb5a0bac0ed39c5b96cbc1a536a99f30e8c220a996ed9/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9", size = 24098, upload-time = "2024-10-18T15:21:40.813Z" }, - { url = "https://files.pythonhosted.org/packages/82/78/fedb03c7d5380df2427038ec8d973587e90561b2d90cd472ce9254cf348b/MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6", size = 15208, upload-time = "2024-10-18T15:21:41.814Z" }, - { url = "https://files.pythonhosted.org/packages/4f/65/6079a46068dfceaeabb5dcad6d674f5f5c61a6fa5673746f42a9f4c233b3/MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f", size = 15739, upload-time = "2024-10-18T15:21:42.784Z" }, +version = "3.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7e/99/7690b6d4034fffd95959cbe0c02de8deb3098cc577c67bb6a24fe5d7caa7/markupsafe-3.0.3.tar.gz", hash = "sha256:722695808f4b6457b320fdc131280796bdceb04ab50fe1795cd540799ebe1698", size = 80313, upload-time = "2025-09-27T18:37:40.426Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5a/72/147da192e38635ada20e0a2e1a51cf8823d2119ce8883f7053879c2199b5/markupsafe-3.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d53197da72cc091b024dd97249dfc7794d6a56530370992a5e1a08983ad9230e", size = 11615, upload-time = "2025-09-27T18:36:30.854Z" }, + { url = "https://files.pythonhosted.org/packages/9a/81/7e4e08678a1f98521201c3079f77db69fb552acd56067661f8c2f534a718/markupsafe-3.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1872df69a4de6aead3491198eaf13810b565bdbeec3ae2dc8780f14458ec73ce", size = 12020, upload-time = "2025-09-27T18:36:31.971Z" }, + { url = "https://files.pythonhosted.org/packages/1e/2c/799f4742efc39633a1b54a92eec4082e4f815314869865d876824c257c1e/markupsafe-3.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3a7e8ae81ae39e62a41ec302f972ba6ae23a5c5396c8e60113e9066ef893da0d", size = 24332, upload-time = "2025-09-27T18:36:32.813Z" }, + { url = "https://files.pythonhosted.org/packages/3c/2e/8d0c2ab90a8c1d9a24f0399058ab8519a3279d1bd4289511d74e909f060e/markupsafe-3.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d6dd0be5b5b189d31db7cda48b91d7e0a9795f31430b7f271219ab30f1d3ac9d", size = 22947, upload-time = "2025-09-27T18:36:33.86Z" }, + { url = "https://files.pythonhosted.org/packages/2c/54/887f3092a85238093a0b2154bd629c89444f395618842e8b0c41783898ea/markupsafe-3.0.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:94c6f0bb423f739146aec64595853541634bde58b2135f27f61c1ffd1cd4d16a", size = 21962, upload-time = "2025-09-27T18:36:35.099Z" }, + { url = "https://files.pythonhosted.org/packages/c9/2f/336b8c7b6f4a4d95e91119dc8521402461b74a485558d8f238a68312f11c/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:be8813b57049a7dc738189df53d69395eba14fb99345e0a5994914a3864c8a4b", size = 23760, upload-time = "2025-09-27T18:36:36.001Z" }, + { url = "https://files.pythonhosted.org/packages/32/43/67935f2b7e4982ffb50a4d169b724d74b62a3964bc1a9a527f5ac4f1ee2b/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:83891d0e9fb81a825d9a6d61e3f07550ca70a076484292a70fde82c4b807286f", size = 21529, upload-time = "2025-09-27T18:36:36.906Z" }, + { url = "https://files.pythonhosted.org/packages/89/e0/4486f11e51bbba8b0c041098859e869e304d1c261e59244baa3d295d47b7/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:77f0643abe7495da77fb436f50f8dab76dbc6e5fd25d39589a0f1fe6548bfa2b", size = 23015, upload-time = "2025-09-27T18:36:37.868Z" }, + { url = "https://files.pythonhosted.org/packages/2f/e1/78ee7a023dac597a5825441ebd17170785a9dab23de95d2c7508ade94e0e/markupsafe-3.0.3-cp312-cp312-win32.whl", hash = "sha256:d88b440e37a16e651bda4c7c2b930eb586fd15ca7406cb39e211fcff3bf3017d", size = 14540, upload-time = "2025-09-27T18:36:38.761Z" }, + { url = "https://files.pythonhosted.org/packages/aa/5b/bec5aa9bbbb2c946ca2733ef9c4ca91c91b6a24580193e891b5f7dbe8e1e/markupsafe-3.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:26a5784ded40c9e318cfc2bdb30fe164bdb8665ded9cd64d500a34fb42067b1c", size = 15105, upload-time = "2025-09-27T18:36:39.701Z" }, + { url = "https://files.pythonhosted.org/packages/e5/f1/216fc1bbfd74011693a4fd837e7026152e89c4bcf3e77b6692fba9923123/markupsafe-3.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:35add3b638a5d900e807944a078b51922212fb3dedb01633a8defc4b01a3c85f", size = 13906, upload-time = "2025-09-27T18:36:40.689Z" }, + { url = "https://files.pythonhosted.org/packages/38/2f/907b9c7bbba283e68f20259574b13d005c121a0fa4c175f9bed27c4597ff/markupsafe-3.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e1cf1972137e83c5d4c136c43ced9ac51d0e124706ee1c8aa8532c1287fa8795", size = 11622, upload-time = "2025-09-27T18:36:41.777Z" }, + { url = "https://files.pythonhosted.org/packages/9c/d9/5f7756922cdd676869eca1c4e3c0cd0df60ed30199ffd775e319089cb3ed/markupsafe-3.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:116bb52f642a37c115f517494ea5feb03889e04df47eeff5b130b1808ce7c219", size = 12029, upload-time = "2025-09-27T18:36:43.257Z" }, + { url = "https://files.pythonhosted.org/packages/00/07/575a68c754943058c78f30db02ee03a64b3c638586fba6a6dd56830b30a3/markupsafe-3.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:133a43e73a802c5562be9bbcd03d090aa5a1fe899db609c29e8c8d815c5f6de6", size = 24374, upload-time = "2025-09-27T18:36:44.508Z" }, + { url = "https://files.pythonhosted.org/packages/a9/21/9b05698b46f218fc0e118e1f8168395c65c8a2c750ae2bab54fc4bd4e0e8/markupsafe-3.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ccfcd093f13f0f0b7fdd0f198b90053bf7b2f02a3927a30e63f3ccc9df56b676", size = 22980, upload-time = "2025-09-27T18:36:45.385Z" }, + { url = "https://files.pythonhosted.org/packages/7f/71/544260864f893f18b6827315b988c146b559391e6e7e8f7252839b1b846a/markupsafe-3.0.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:509fa21c6deb7a7a273d629cf5ec029bc209d1a51178615ddf718f5918992ab9", size = 21990, upload-time = "2025-09-27T18:36:46.916Z" }, + { url = "https://files.pythonhosted.org/packages/c2/28/b50fc2f74d1ad761af2f5dcce7492648b983d00a65b8c0e0cb457c82ebbe/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a4afe79fb3de0b7097d81da19090f4df4f8d3a2b3adaa8764138aac2e44f3af1", size = 23784, upload-time = "2025-09-27T18:36:47.884Z" }, + { url = "https://files.pythonhosted.org/packages/ed/76/104b2aa106a208da8b17a2fb72e033a5a9d7073c68f7e508b94916ed47a9/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:795e7751525cae078558e679d646ae45574b47ed6e7771863fcc079a6171a0fc", size = 21588, upload-time = "2025-09-27T18:36:48.82Z" }, + { url = "https://files.pythonhosted.org/packages/b5/99/16a5eb2d140087ebd97180d95249b00a03aa87e29cc224056274f2e45fd6/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8485f406a96febb5140bfeca44a73e3ce5116b2501ac54fe953e488fb1d03b12", size = 23041, upload-time = "2025-09-27T18:36:49.797Z" }, + { url = "https://files.pythonhosted.org/packages/19/bc/e7140ed90c5d61d77cea142eed9f9c303f4c4806f60a1044c13e3f1471d0/markupsafe-3.0.3-cp313-cp313-win32.whl", hash = "sha256:bdd37121970bfd8be76c5fb069c7751683bdf373db1ed6c010162b2a130248ed", size = 14543, upload-time = "2025-09-27T18:36:51.584Z" }, + { url = "https://files.pythonhosted.org/packages/05/73/c4abe620b841b6b791f2edc248f556900667a5a1cf023a6646967ae98335/markupsafe-3.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:9a1abfdc021a164803f4d485104931fb8f8c1efd55bc6b748d2f5774e78b62c5", size = 15113, upload-time = "2025-09-27T18:36:52.537Z" }, + { url = "https://files.pythonhosted.org/packages/f0/3a/fa34a0f7cfef23cf9500d68cb7c32dd64ffd58a12b09225fb03dd37d5b80/markupsafe-3.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:7e68f88e5b8799aa49c85cd116c932a1ac15caaa3f5db09087854d218359e485", size = 13911, upload-time = "2025-09-27T18:36:53.513Z" }, + { url = "https://files.pythonhosted.org/packages/e4/d7/e05cd7efe43a88a17a37b3ae96e79a19e846f3f456fe79c57ca61356ef01/markupsafe-3.0.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:218551f6df4868a8d527e3062d0fb968682fe92054e89978594c28e642c43a73", size = 11658, upload-time = "2025-09-27T18:36:54.819Z" }, + { url = "https://files.pythonhosted.org/packages/99/9e/e412117548182ce2148bdeacdda3bb494260c0b0184360fe0d56389b523b/markupsafe-3.0.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3524b778fe5cfb3452a09d31e7b5adefeea8c5be1d43c4f810ba09f2ceb29d37", size = 12066, upload-time = "2025-09-27T18:36:55.714Z" }, + { url = "https://files.pythonhosted.org/packages/bc/e6/fa0ffcda717ef64a5108eaa7b4f5ed28d56122c9a6d70ab8b72f9f715c80/markupsafe-3.0.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4e885a3d1efa2eadc93c894a21770e4bc67899e3543680313b09f139e149ab19", size = 25639, upload-time = "2025-09-27T18:36:56.908Z" }, + { url = "https://files.pythonhosted.org/packages/96/ec/2102e881fe9d25fc16cb4b25d5f5cde50970967ffa5dddafdb771237062d/markupsafe-3.0.3-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8709b08f4a89aa7586de0aadc8da56180242ee0ada3999749b183aa23df95025", size = 23569, upload-time = "2025-09-27T18:36:57.913Z" }, + { url = "https://files.pythonhosted.org/packages/4b/30/6f2fce1f1f205fc9323255b216ca8a235b15860c34b6798f810f05828e32/markupsafe-3.0.3-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:b8512a91625c9b3da6f127803b166b629725e68af71f8184ae7e7d54686a56d6", size = 23284, upload-time = "2025-09-27T18:36:58.833Z" }, + { url = "https://files.pythonhosted.org/packages/58/47/4a0ccea4ab9f5dcb6f79c0236d954acb382202721e704223a8aafa38b5c8/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:9b79b7a16f7fedff2495d684f2b59b0457c3b493778c9eed31111be64d58279f", size = 24801, upload-time = "2025-09-27T18:36:59.739Z" }, + { url = "https://files.pythonhosted.org/packages/6a/70/3780e9b72180b6fecb83a4814d84c3bf4b4ae4bf0b19c27196104149734c/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:12c63dfb4a98206f045aa9563db46507995f7ef6d83b2f68eda65c307c6829eb", size = 22769, upload-time = "2025-09-27T18:37:00.719Z" }, + { url = "https://files.pythonhosted.org/packages/98/c5/c03c7f4125180fc215220c035beac6b9cb684bc7a067c84fc69414d315f5/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8f71bc33915be5186016f675cd83a1e08523649b0e33efdb898db577ef5bb009", size = 23642, upload-time = "2025-09-27T18:37:01.673Z" }, + { url = "https://files.pythonhosted.org/packages/80/d6/2d1b89f6ca4bff1036499b1e29a1d02d282259f3681540e16563f27ebc23/markupsafe-3.0.3-cp313-cp313t-win32.whl", hash = "sha256:69c0b73548bc525c8cb9a251cddf1931d1db4d2258e9599c28c07ef3580ef354", size = 14612, upload-time = "2025-09-27T18:37:02.639Z" }, + { url = "https://files.pythonhosted.org/packages/2b/98/e48a4bfba0a0ffcf9925fe2d69240bfaa19c6f7507b8cd09c70684a53c1e/markupsafe-3.0.3-cp313-cp313t-win_amd64.whl", hash = "sha256:1b4b79e8ebf6b55351f0d91fe80f893b4743f104bff22e90697db1590e47a218", size = 15200, upload-time = "2025-09-27T18:37:03.582Z" }, + { url = "https://files.pythonhosted.org/packages/0e/72/e3cc540f351f316e9ed0f092757459afbc595824ca724cbc5a5d4263713f/markupsafe-3.0.3-cp313-cp313t-win_arm64.whl", hash = "sha256:ad2cf8aa28b8c020ab2fc8287b0f823d0a7d8630784c31e9ee5edea20f406287", size = 13973, upload-time = "2025-09-27T18:37:04.929Z" }, + { url = "https://files.pythonhosted.org/packages/33/8a/8e42d4838cd89b7dde187011e97fe6c3af66d8c044997d2183fbd6d31352/markupsafe-3.0.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:eaa9599de571d72e2daf60164784109f19978b327a3910d3e9de8c97b5b70cfe", size = 11619, upload-time = "2025-09-27T18:37:06.342Z" }, + { url = "https://files.pythonhosted.org/packages/b5/64/7660f8a4a8e53c924d0fa05dc3a55c9cee10bbd82b11c5afb27d44b096ce/markupsafe-3.0.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c47a551199eb8eb2121d4f0f15ae0f923d31350ab9280078d1e5f12b249e0026", size = 12029, upload-time = "2025-09-27T18:37:07.213Z" }, + { url = "https://files.pythonhosted.org/packages/da/ef/e648bfd021127bef5fa12e1720ffed0c6cbb8310c8d9bea7266337ff06de/markupsafe-3.0.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f34c41761022dd093b4b6896d4810782ffbabe30f2d443ff5f083e0cbbb8c737", size = 24408, upload-time = "2025-09-27T18:37:09.572Z" }, + { url = "https://files.pythonhosted.org/packages/41/3c/a36c2450754618e62008bf7435ccb0f88053e07592e6028a34776213d877/markupsafe-3.0.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:457a69a9577064c05a97c41f4e65148652db078a3a509039e64d3467b9e7ef97", size = 23005, upload-time = "2025-09-27T18:37:10.58Z" }, + { url = "https://files.pythonhosted.org/packages/bc/20/b7fdf89a8456b099837cd1dc21974632a02a999ec9bf7ca3e490aacd98e7/markupsafe-3.0.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e8afc3f2ccfa24215f8cb28dcf43f0113ac3c37c2f0f0806d8c70e4228c5cf4d", size = 22048, upload-time = "2025-09-27T18:37:11.547Z" }, + { url = "https://files.pythonhosted.org/packages/9a/a7/591f592afdc734f47db08a75793a55d7fbcc6902a723ae4cfbab61010cc5/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:ec15a59cf5af7be74194f7ab02d0f59a62bdcf1a537677ce67a2537c9b87fcda", size = 23821, upload-time = "2025-09-27T18:37:12.48Z" }, + { url = "https://files.pythonhosted.org/packages/7d/33/45b24e4f44195b26521bc6f1a82197118f74df348556594bd2262bda1038/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:0eb9ff8191e8498cca014656ae6b8d61f39da5f95b488805da4bb029cccbfbaf", size = 21606, upload-time = "2025-09-27T18:37:13.485Z" }, + { url = "https://files.pythonhosted.org/packages/ff/0e/53dfaca23a69fbfbbf17a4b64072090e70717344c52eaaaa9c5ddff1e5f0/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:2713baf880df847f2bece4230d4d094280f4e67b1e813eec43b4c0e144a34ffe", size = 23043, upload-time = "2025-09-27T18:37:14.408Z" }, + { url = "https://files.pythonhosted.org/packages/46/11/f333a06fc16236d5238bfe74daccbca41459dcd8d1fa952e8fbd5dccfb70/markupsafe-3.0.3-cp314-cp314-win32.whl", hash = "sha256:729586769a26dbceff69f7a7dbbf59ab6572b99d94576a5592625d5b411576b9", size = 14747, upload-time = "2025-09-27T18:37:15.36Z" }, + { url = "https://files.pythonhosted.org/packages/28/52/182836104b33b444e400b14f797212f720cbc9ed6ba34c800639d154e821/markupsafe-3.0.3-cp314-cp314-win_amd64.whl", hash = "sha256:bdc919ead48f234740ad807933cdf545180bfbe9342c2bb451556db2ed958581", size = 15341, upload-time = "2025-09-27T18:37:16.496Z" }, + { url = "https://files.pythonhosted.org/packages/6f/18/acf23e91bd94fd7b3031558b1f013adfa21a8e407a3fdb32745538730382/markupsafe-3.0.3-cp314-cp314-win_arm64.whl", hash = "sha256:5a7d5dc5140555cf21a6fefbdbf8723f06fcd2f63ef108f2854de715e4422cb4", size = 14073, upload-time = "2025-09-27T18:37:17.476Z" }, + { url = "https://files.pythonhosted.org/packages/3c/f0/57689aa4076e1b43b15fdfa646b04653969d50cf30c32a102762be2485da/markupsafe-3.0.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:1353ef0c1b138e1907ae78e2f6c63ff67501122006b0f9abad68fda5f4ffc6ab", size = 11661, upload-time = "2025-09-27T18:37:18.453Z" }, + { url = "https://files.pythonhosted.org/packages/89/c3/2e67a7ca217c6912985ec766c6393b636fb0c2344443ff9d91404dc4c79f/markupsafe-3.0.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:1085e7fbddd3be5f89cc898938f42c0b3c711fdcb37d75221de2666af647c175", size = 12069, upload-time = "2025-09-27T18:37:19.332Z" }, + { url = "https://files.pythonhosted.org/packages/f0/00/be561dce4e6ca66b15276e184ce4b8aec61fe83662cce2f7d72bd3249d28/markupsafe-3.0.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1b52b4fb9df4eb9ae465f8d0c228a00624de2334f216f178a995ccdcf82c4634", size = 25670, upload-time = "2025-09-27T18:37:20.245Z" }, + { url = "https://files.pythonhosted.org/packages/50/09/c419f6f5a92e5fadde27efd190eca90f05e1261b10dbd8cbcb39cd8ea1dc/markupsafe-3.0.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fed51ac40f757d41b7c48425901843666a6677e3e8eb0abcff09e4ba6e664f50", size = 23598, upload-time = "2025-09-27T18:37:21.177Z" }, + { url = "https://files.pythonhosted.org/packages/22/44/a0681611106e0b2921b3033fc19bc53323e0b50bc70cffdd19f7d679bb66/markupsafe-3.0.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:f190daf01f13c72eac4efd5c430a8de82489d9cff23c364c3ea822545032993e", size = 23261, upload-time = "2025-09-27T18:37:22.167Z" }, + { url = "https://files.pythonhosted.org/packages/5f/57/1b0b3f100259dc9fffe780cfb60d4be71375510e435efec3d116b6436d43/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:e56b7d45a839a697b5eb268c82a71bd8c7f6c94d6fd50c3d577fa39a9f1409f5", size = 24835, upload-time = "2025-09-27T18:37:23.296Z" }, + { url = "https://files.pythonhosted.org/packages/26/6a/4bf6d0c97c4920f1597cc14dd720705eca0bf7c787aebc6bb4d1bead5388/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:f3e98bb3798ead92273dc0e5fd0f31ade220f59a266ffd8a4f6065e0a3ce0523", size = 22733, upload-time = "2025-09-27T18:37:24.237Z" }, + { url = "https://files.pythonhosted.org/packages/14/c7/ca723101509b518797fedc2fdf79ba57f886b4aca8a7d31857ba3ee8281f/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:5678211cb9333a6468fb8d8be0305520aa073f50d17f089b5b4b477ea6e67fdc", size = 23672, upload-time = "2025-09-27T18:37:25.271Z" }, + { url = "https://files.pythonhosted.org/packages/fb/df/5bd7a48c256faecd1d36edc13133e51397e41b73bb77e1a69deab746ebac/markupsafe-3.0.3-cp314-cp314t-win32.whl", hash = "sha256:915c04ba3851909ce68ccc2b8e2cd691618c4dc4c4232fb7982bca3f41fd8c3d", size = 14819, upload-time = "2025-09-27T18:37:26.285Z" }, + { url = "https://files.pythonhosted.org/packages/1a/8a/0402ba61a2f16038b48b39bccca271134be00c5c9f0f623208399333c448/markupsafe-3.0.3-cp314-cp314t-win_amd64.whl", hash = "sha256:4faffd047e07c38848ce017e8725090413cd80cbc23d86e55c587bf979e579c9", size = 15426, upload-time = "2025-09-27T18:37:27.316Z" }, + { url = "https://files.pythonhosted.org/packages/70/bc/6f1c2f612465f5fa89b95bead1f44dcb607670fd42891d8fdcd5d039f4f4/markupsafe-3.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:32001d6a8fc98c8cb5c947787c5d08b0a50663d139f1305bac5885d98d9b40fa", size = 14146, upload-time = "2025-09-27T18:37:28.327Z" }, ] [[package]] @@ -949,14 +1076,14 @@ wheels = [ [[package]] name = "matplotlib-inline" -version = "0.1.7" +version = "0.2.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "traitlets" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/99/5b/a36a337438a14116b16480db471ad061c36c3694df7c2084a0da7ba538b7/matplotlib_inline-0.1.7.tar.gz", hash = "sha256:8423b23ec666be3d16e16b60bdd8ac4e86e840ebd1dd11a30b9f117f2fa0ab90", size = 8159, upload-time = "2024-04-15T13:44:44.803Z" } +sdist = { url = "https://files.pythonhosted.org/packages/c7/74/97e72a36efd4ae2bccb3463284300f8953f199b5ffbc04cbbb0ec78f74b1/matplotlib_inline-0.2.1.tar.gz", hash = "sha256:e1ee949c340d771fc39e241ea75683deb94762c8fa5f2927ec57c83c4dffa9fe", size = 8110, upload-time = "2025-10-23T09:00:22.126Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl", hash = "sha256:df192d39a4ff8f21b1895d72e6a13f5fcc5099f00fa84384e0ea28c2cc0653ca", size = 9899, upload-time = "2024-04-15T13:44:43.265Z" }, + { url = "https://files.pythonhosted.org/packages/af/33/ee4519fa02ed11a94aef9559552f3b17bb863f2ecfe1a35dc7f548cde231/matplotlib_inline-0.2.1-py3-none-any.whl", hash = "sha256:d56ce5156ba6085e00a9d54fead6ed29a9c47e215cd1bba2e976ef39f5710a76", size = 9516, upload-time = "2025-10-23T09:00:20.675Z" }, ] [[package]] @@ -1014,34 +1141,35 @@ wheels = [ [[package]] name = "mypy" -version = "1.18.2" +version = "1.19.1" source = { registry = "https://pypi.org/simple" } dependencies = [ + { name = "librt", marker = "platform_python_implementation != 'PyPy'" }, { name = "mypy-extensions" }, { name = "pathspec" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/c0/77/8f0d0001ffad290cef2f7f216f96c814866248a0b92a722365ed54648e7e/mypy-1.18.2.tar.gz", hash = "sha256:06a398102a5f203d7477b2923dda3634c36727fa5c237d8f859ef90c42a9924b", size = 3448846, upload-time = "2025-09-19T00:11:10.519Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/07/06/dfdd2bc60c66611dd8335f463818514733bc763e4760dee289dcc33df709/mypy-1.18.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:33eca32dd124b29400c31d7cf784e795b050ace0e1f91b8dc035672725617e34", size = 12908273, upload-time = "2025-09-19T00:10:58.321Z" }, - { url = "https://files.pythonhosted.org/packages/81/14/6a9de6d13a122d5608e1a04130724caf9170333ac5a924e10f670687d3eb/mypy-1.18.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a3c47adf30d65e89b2dcd2fa32f3aeb5e94ca970d2c15fcb25e297871c8e4764", size = 11920910, upload-time = "2025-09-19T00:10:20.043Z" }, - { url = "https://files.pythonhosted.org/packages/5f/a9/b29de53e42f18e8cc547e38daa9dfa132ffdc64f7250e353f5c8cdd44bee/mypy-1.18.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5d6c838e831a062f5f29d11c9057c6009f60cb294fea33a98422688181fe2893", size = 12465585, upload-time = "2025-09-19T00:10:33.005Z" }, - { url = "https://files.pythonhosted.org/packages/77/ae/6c3d2c7c61ff21f2bee938c917616c92ebf852f015fb55917fd6e2811db2/mypy-1.18.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:01199871b6110a2ce984bde85acd481232d17413868c9807e95c1b0739a58914", size = 13348562, upload-time = "2025-09-19T00:10:11.51Z" }, - { url = "https://files.pythonhosted.org/packages/4d/31/aec68ab3b4aebdf8f36d191b0685d99faa899ab990753ca0fee60fb99511/mypy-1.18.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:a2afc0fa0b0e91b4599ddfe0f91e2c26c2b5a5ab263737e998d6817874c5f7c8", size = 13533296, upload-time = "2025-09-19T00:10:06.568Z" }, - { url = "https://files.pythonhosted.org/packages/9f/83/abcb3ad9478fca3ebeb6a5358bb0b22c95ea42b43b7789c7fb1297ca44f4/mypy-1.18.2-cp312-cp312-win_amd64.whl", hash = "sha256:d8068d0afe682c7c4897c0f7ce84ea77f6de953262b12d07038f4d296d547074", size = 9828828, upload-time = "2025-09-19T00:10:28.203Z" }, - { url = "https://files.pythonhosted.org/packages/5f/04/7f462e6fbba87a72bc8097b93f6842499c428a6ff0c81dd46948d175afe8/mypy-1.18.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:07b8b0f580ca6d289e69209ec9d3911b4a26e5abfde32228a288eb79df129fcc", size = 12898728, upload-time = "2025-09-19T00:10:01.33Z" }, - { url = "https://files.pythonhosted.org/packages/99/5b/61ed4efb64f1871b41fd0b82d29a64640f3516078f6c7905b68ab1ad8b13/mypy-1.18.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:ed4482847168439651d3feee5833ccedbf6657e964572706a2adb1f7fa4dfe2e", size = 11910758, upload-time = "2025-09-19T00:10:42.607Z" }, - { url = "https://files.pythonhosted.org/packages/3c/46/d297d4b683cc89a6e4108c4250a6a6b717f5fa96e1a30a7944a6da44da35/mypy-1.18.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c3ad2afadd1e9fea5cf99a45a822346971ede8685cc581ed9cd4d42eaf940986", size = 12475342, upload-time = "2025-09-19T00:11:00.371Z" }, - { url = "https://files.pythonhosted.org/packages/83/45/4798f4d00df13eae3bfdf726c9244bcb495ab5bd588c0eed93a2f2dd67f3/mypy-1.18.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a431a6f1ef14cf8c144c6b14793a23ec4eae3db28277c358136e79d7d062f62d", size = 13338709, upload-time = "2025-09-19T00:11:03.358Z" }, - { url = "https://files.pythonhosted.org/packages/d7/09/479f7358d9625172521a87a9271ddd2441e1dab16a09708f056e97007207/mypy-1.18.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:7ab28cc197f1dd77a67e1c6f35cd1f8e8b73ed2217e4fc005f9e6a504e46e7ba", size = 13529806, upload-time = "2025-09-19T00:10:26.073Z" }, - { url = "https://files.pythonhosted.org/packages/71/cf/ac0f2c7e9d0ea3c75cd99dff7aec1c9df4a1376537cb90e4c882267ee7e9/mypy-1.18.2-cp313-cp313-win_amd64.whl", hash = "sha256:0e2785a84b34a72ba55fb5daf079a1003a34c05b22238da94fcae2bbe46f3544", size = 9833262, upload-time = "2025-09-19T00:10:40.035Z" }, - { url = "https://files.pythonhosted.org/packages/5a/0c/7d5300883da16f0063ae53996358758b2a2df2a09c72a5061fa79a1f5006/mypy-1.18.2-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:62f0e1e988ad41c2a110edde6c398383a889d95b36b3e60bcf155f5164c4fdce", size = 12893775, upload-time = "2025-09-19T00:10:03.814Z" }, - { url = "https://files.pythonhosted.org/packages/50/df/2cffbf25737bdb236f60c973edf62e3e7b4ee1c25b6878629e88e2cde967/mypy-1.18.2-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:8795a039bab805ff0c1dfdb8cd3344642c2b99b8e439d057aba30850b8d3423d", size = 11936852, upload-time = "2025-09-19T00:10:51.631Z" }, - { url = "https://files.pythonhosted.org/packages/be/50/34059de13dd269227fb4a03be1faee6e2a4b04a2051c82ac0a0b5a773c9a/mypy-1.18.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6ca1e64b24a700ab5ce10133f7ccd956a04715463d30498e64ea8715236f9c9c", size = 12480242, upload-time = "2025-09-19T00:11:07.955Z" }, - { url = "https://files.pythonhosted.org/packages/5b/11/040983fad5132d85914c874a2836252bbc57832065548885b5bb5b0d4359/mypy-1.18.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d924eef3795cc89fecf6bedc6ed32b33ac13e8321344f6ddbf8ee89f706c05cb", size = 13326683, upload-time = "2025-09-19T00:09:55.572Z" }, - { url = "https://files.pythonhosted.org/packages/e9/ba/89b2901dd77414dd7a8c8729985832a5735053be15b744c18e4586e506ef/mypy-1.18.2-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:20c02215a080e3a2be3aa50506c67242df1c151eaba0dcbc1e4e557922a26075", size = 13514749, upload-time = "2025-09-19T00:10:44.827Z" }, - { url = "https://files.pythonhosted.org/packages/25/bc/cc98767cffd6b2928ba680f3e5bc969c4152bf7c2d83f92f5a504b92b0eb/mypy-1.18.2-cp314-cp314-win_amd64.whl", hash = "sha256:749b5f83198f1ca64345603118a6f01a4e99ad4bf9d103ddc5a3200cc4614adf", size = 9982959, upload-time = "2025-09-19T00:10:37.344Z" }, - { url = "https://files.pythonhosted.org/packages/87/e3/be76d87158ebafa0309946c4a73831974d4d6ab4f4ef40c3b53a385a66fd/mypy-1.18.2-py3-none-any.whl", hash = "sha256:22a1748707dd62b58d2ae53562ffc4d7f8bcc727e8ac7cbc69c053ddc874d47e", size = 2352367, upload-time = "2025-09-19T00:10:15.489Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/f5/db/4efed9504bc01309ab9c2da7e352cc223569f05478012b5d9ece38fd44d2/mypy-1.19.1.tar.gz", hash = "sha256:19d88bb05303fe63f71dd2c6270daca27cb9401c4ca8255fe50d1d920e0eb9ba", size = 3582404, upload-time = "2025-12-15T05:03:48.42Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/06/8a/19bfae96f6615aa8a0604915512e0289b1fad33d5909bf7244f02935d33a/mypy-1.19.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:a8174a03289288c1f6c46d55cef02379b478bfbc8e358e02047487cad44c6ca1", size = 13206053, upload-time = "2025-12-15T05:03:46.622Z" }, + { url = "https://files.pythonhosted.org/packages/a5/34/3e63879ab041602154ba2a9f99817bb0c85c4df19a23a1443c8986e4d565/mypy-1.19.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ffcebe56eb09ff0c0885e750036a095e23793ba6c2e894e7e63f6d89ad51f22e", size = 12219134, upload-time = "2025-12-15T05:03:24.367Z" }, + { url = "https://files.pythonhosted.org/packages/89/cc/2db6f0e95366b630364e09845672dbee0cbf0bbe753a204b29a944967cd9/mypy-1.19.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b64d987153888790bcdb03a6473d321820597ab8dd9243b27a92153c4fa50fd2", size = 12731616, upload-time = "2025-12-15T05:02:44.725Z" }, + { url = "https://files.pythonhosted.org/packages/00/be/dd56c1fd4807bc1eba1cf18b2a850d0de7bacb55e158755eb79f77c41f8e/mypy-1.19.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c35d298c2c4bba75feb2195655dfea8124d855dfd7343bf8b8c055421eaf0cf8", size = 13620847, upload-time = "2025-12-15T05:03:39.633Z" }, + { url = "https://files.pythonhosted.org/packages/6d/42/332951aae42b79329f743bf1da088cd75d8d4d9acc18fbcbd84f26c1af4e/mypy-1.19.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:34c81968774648ab5ac09c29a375fdede03ba253f8f8287847bd480782f73a6a", size = 13834976, upload-time = "2025-12-15T05:03:08.786Z" }, + { url = "https://files.pythonhosted.org/packages/6f/63/e7493e5f90e1e085c562bb06e2eb32cae27c5057b9653348d38b47daaecc/mypy-1.19.1-cp312-cp312-win_amd64.whl", hash = "sha256:b10e7c2cd7870ba4ad9b2d8a6102eb5ffc1f16ca35e3de6bfa390c1113029d13", size = 10118104, upload-time = "2025-12-15T05:03:10.834Z" }, + { url = "https://files.pythonhosted.org/packages/de/9f/a6abae693f7a0c697dbb435aac52e958dc8da44e92e08ba88d2e42326176/mypy-1.19.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e3157c7594ff2ef1634ee058aafc56a82db665c9438fd41b390f3bde1ab12250", size = 13201927, upload-time = "2025-12-15T05:02:29.138Z" }, + { url = "https://files.pythonhosted.org/packages/9a/a4/45c35ccf6e1c65afc23a069f50e2c66f46bd3798cbe0d680c12d12935caa/mypy-1.19.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:bdb12f69bcc02700c2b47e070238f42cb87f18c0bc1fc4cdb4fb2bc5fd7a3b8b", size = 12206730, upload-time = "2025-12-15T05:03:01.325Z" }, + { url = "https://files.pythonhosted.org/packages/05/bb/cdcf89678e26b187650512620eec8368fded4cfd99cfcb431e4cdfd19dec/mypy-1.19.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f859fb09d9583a985be9a493d5cfc5515b56b08f7447759a0c5deaf68d80506e", size = 12724581, upload-time = "2025-12-15T05:03:20.087Z" }, + { url = "https://files.pythonhosted.org/packages/d1/32/dd260d52babf67bad8e6770f8e1102021877ce0edea106e72df5626bb0ec/mypy-1.19.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c9a6538e0415310aad77cb94004ca6482330fece18036b5f360b62c45814c4ef", size = 13616252, upload-time = "2025-12-15T05:02:49.036Z" }, + { url = "https://files.pythonhosted.org/packages/71/d0/5e60a9d2e3bd48432ae2b454b7ef2b62a960ab51292b1eda2a95edd78198/mypy-1.19.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:da4869fc5e7f62a88f3fe0b5c919d1d9f7ea3cef92d3689de2823fd27e40aa75", size = 13840848, upload-time = "2025-12-15T05:02:55.95Z" }, + { url = "https://files.pythonhosted.org/packages/98/76/d32051fa65ecf6cc8c6610956473abdc9b4c43301107476ac03559507843/mypy-1.19.1-cp313-cp313-win_amd64.whl", hash = "sha256:016f2246209095e8eda7538944daa1d60e1e8134d98983b9fc1e92c1fc0cb8dd", size = 10135510, upload-time = "2025-12-15T05:02:58.438Z" }, + { url = "https://files.pythonhosted.org/packages/de/eb/b83e75f4c820c4247a58580ef86fcd35165028f191e7e1ba57128c52782d/mypy-1.19.1-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:06e6170bd5836770e8104c8fdd58e5e725cfeb309f0a6c681a811f557e97eac1", size = 13199744, upload-time = "2025-12-15T05:03:30.823Z" }, + { url = "https://files.pythonhosted.org/packages/94/28/52785ab7bfa165f87fcbb61547a93f98bb20e7f82f90f165a1f69bce7b3d/mypy-1.19.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:804bd67b8054a85447c8954215a906d6eff9cabeabe493fb6334b24f4bfff718", size = 12215815, upload-time = "2025-12-15T05:02:42.323Z" }, + { url = "https://files.pythonhosted.org/packages/0a/c6/bdd60774a0dbfb05122e3e925f2e9e846c009e479dcec4821dad881f5b52/mypy-1.19.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:21761006a7f497cb0d4de3d8ef4ca70532256688b0523eee02baf9eec895e27b", size = 12740047, upload-time = "2025-12-15T05:03:33.168Z" }, + { url = "https://files.pythonhosted.org/packages/32/2a/66ba933fe6c76bd40d1fe916a83f04fed253152f451a877520b3c4a5e41e/mypy-1.19.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:28902ee51f12e0f19e1e16fbe2f8f06b6637f482c459dd393efddd0ec7f82045", size = 13601998, upload-time = "2025-12-15T05:03:13.056Z" }, + { url = "https://files.pythonhosted.org/packages/e3/da/5055c63e377c5c2418760411fd6a63ee2b96cf95397259038756c042574f/mypy-1.19.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:481daf36a4c443332e2ae9c137dfee878fcea781a2e3f895d54bd3002a900957", size = 13807476, upload-time = "2025-12-15T05:03:17.977Z" }, + { url = "https://files.pythonhosted.org/packages/cd/09/4ebd873390a063176f06b0dbf1f7783dd87bd120eae7727fa4ae4179b685/mypy-1.19.1-cp314-cp314-win_amd64.whl", hash = "sha256:8bb5c6f6d043655e055be9b542aa5f3bdd30e4f3589163e85f93f3640060509f", size = 10281872, upload-time = "2025-12-15T05:03:05.549Z" }, + { url = "https://files.pythonhosted.org/packages/8d/f4/4ce9a05ce5ded1de3ec1c1d96cf9f9504a04e54ce0ed55cfa38619a32b8d/mypy-1.19.1-py3-none-any.whl", hash = "sha256:f1235f5ea01b7db5468d53ece6aaddf1ad0b88d9e7462b86ef96fe04995d7247", size = 2471239, upload-time = "2025-12-15T05:03:07.248Z" }, ] [[package]] @@ -1055,74 +1183,72 @@ wheels = [ [[package]] name = "nodeenv" -version = "1.9.1" +version = "1.10.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/43/16/fc88b08840de0e0a72a2f9d8c6bae36be573e475a6326ae854bcc549fc45/nodeenv-1.9.1.tar.gz", hash = "sha256:6ec12890a2dab7946721edbfbcd91f3319c6ccc9aec47be7c7e6b7011ee6645f", size = 47437, upload-time = "2024-06-04T18:44:11.171Z" } +sdist = { url = "https://files.pythonhosted.org/packages/24/bf/d1bda4f6168e0b2e9e5958945e01910052158313224ada5ce1fb2e1113b8/nodeenv-1.10.0.tar.gz", hash = "sha256:996c191ad80897d076bdfba80a41994c2b47c68e224c542b48feba42ba00f8bb", size = 55611, upload-time = "2025-12-20T14:08:54.006Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/d2/1d/1b658dbd2b9fa9c4c9f32accbfc0205d532c8c6194dc0f2a4c0428e7128a/nodeenv-1.9.1-py2.py3-none-any.whl", hash = "sha256:ba11c9782d29c27c70ffbdda2d7415098754709be8a7056d79a737cd901155c9", size = 22314, upload-time = "2024-06-04T18:44:08.352Z" }, + { url = "https://files.pythonhosted.org/packages/88/b2/d0896bdcdc8d28a7fc5717c305f1a861c26e18c05047949fb371034d98bd/nodeenv-1.10.0-py2.py3-none-any.whl", hash = "sha256:5bb13e3eed2923615535339b3c620e76779af4cb4c6a90deccc9e36b274d3827", size = 23438, upload-time = "2025-12-20T14:08:52.782Z" }, ] [[package]] name = "numpy" -version = "2.3.3" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/d0/19/95b3d357407220ed24c139018d2518fab0a61a948e68286a25f1a4d049ff/numpy-2.3.3.tar.gz", hash = "sha256:ddc7c39727ba62b80dfdbedf400d1c10ddfa8eefbd7ec8dcb118be8b56d31029", size = 20576648, upload-time = "2025-09-09T16:54:12.543Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/51/5d/bb7fc075b762c96329147799e1bcc9176ab07ca6375ea976c475482ad5b3/numpy-2.3.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:cfdd09f9c84a1a934cde1eec2267f0a43a7cd44b2cca4ff95b7c0d14d144b0bf", size = 20957014, upload-time = "2025-09-09T15:56:29.966Z" }, - { url = "https://files.pythonhosted.org/packages/6b/0e/c6211bb92af26517acd52125a237a92afe9c3124c6a68d3b9f81b62a0568/numpy-2.3.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:cb32e3cf0f762aee47ad1ddc6672988f7f27045b0783c887190545baba73aa25", size = 14185220, upload-time = "2025-09-09T15:56:32.175Z" }, - { url = "https://files.pythonhosted.org/packages/22/f2/07bb754eb2ede9073f4054f7c0286b0d9d2e23982e090a80d478b26d35ca/numpy-2.3.3-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:396b254daeb0a57b1fe0ecb5e3cff6fa79a380fa97c8f7781a6d08cd429418fe", size = 5113918, upload-time = "2025-09-09T15:56:34.175Z" }, - { url = "https://files.pythonhosted.org/packages/81/0a/afa51697e9fb74642f231ea36aca80fa17c8fb89f7a82abd5174023c3960/numpy-2.3.3-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:067e3d7159a5d8f8a0b46ee11148fc35ca9b21f61e3c49fbd0a027450e65a33b", size = 6647922, upload-time = "2025-09-09T15:56:36.149Z" }, - { url = "https://files.pythonhosted.org/packages/5d/f5/122d9cdb3f51c520d150fef6e87df9279e33d19a9611a87c0d2cf78a89f4/numpy-2.3.3-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1c02d0629d25d426585fb2e45a66154081b9fa677bc92a881ff1d216bc9919a8", size = 14281991, upload-time = "2025-09-09T15:56:40.548Z" }, - { url = "https://files.pythonhosted.org/packages/51/64/7de3c91e821a2debf77c92962ea3fe6ac2bc45d0778c1cbe15d4fce2fd94/numpy-2.3.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d9192da52b9745f7f0766531dcfa978b7763916f158bb63bdb8a1eca0068ab20", size = 16641643, upload-time = "2025-09-09T15:56:43.343Z" }, - { url = "https://files.pythonhosted.org/packages/30/e4/961a5fa681502cd0d68907818b69f67542695b74e3ceaa513918103b7e80/numpy-2.3.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:cd7de500a5b66319db419dc3c345244404a164beae0d0937283b907d8152e6ea", size = 16056787, upload-time = "2025-09-09T15:56:46.141Z" }, - { url = "https://files.pythonhosted.org/packages/99/26/92c912b966e47fbbdf2ad556cb17e3a3088e2e1292b9833be1dfa5361a1a/numpy-2.3.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:93d4962d8f82af58f0b2eb85daaf1b3ca23fe0a85d0be8f1f2b7bb46034e56d7", size = 18579598, upload-time = "2025-09-09T15:56:49.844Z" }, - { url = "https://files.pythonhosted.org/packages/17/b6/fc8f82cb3520768718834f310c37d96380d9dc61bfdaf05fe5c0b7653e01/numpy-2.3.3-cp312-cp312-win32.whl", hash = "sha256:5534ed6b92f9b7dca6c0a19d6df12d41c68b991cef051d108f6dbff3babc4ebf", size = 6320800, upload-time = "2025-09-09T15:56:52.499Z" }, - { url = "https://files.pythonhosted.org/packages/32/ee/de999f2625b80d043d6d2d628c07d0d5555a677a3cf78fdf868d409b8766/numpy-2.3.3-cp312-cp312-win_amd64.whl", hash = "sha256:497d7cad08e7092dba36e3d296fe4c97708c93daf26643a1ae4b03f6294d30eb", size = 12786615, upload-time = "2025-09-09T15:56:54.422Z" }, - { url = "https://files.pythonhosted.org/packages/49/6e/b479032f8a43559c383acb20816644f5f91c88f633d9271ee84f3b3a996c/numpy-2.3.3-cp312-cp312-win_arm64.whl", hash = "sha256:ca0309a18d4dfea6fc6262a66d06c26cfe4640c3926ceec90e57791a82b6eee5", size = 10195936, upload-time = "2025-09-09T15:56:56.541Z" }, - { url = "https://files.pythonhosted.org/packages/7d/b9/984c2b1ee61a8b803bf63582b4ac4242cf76e2dbd663efeafcb620cc0ccb/numpy-2.3.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f5415fb78995644253370985342cd03572ef8620b934da27d77377a2285955bf", size = 20949588, upload-time = "2025-09-09T15:56:59.087Z" }, - { url = "https://files.pythonhosted.org/packages/a6/e4/07970e3bed0b1384d22af1e9912527ecbeb47d3b26e9b6a3bced068b3bea/numpy-2.3.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:d00de139a3324e26ed5b95870ce63be7ec7352171bc69a4cf1f157a48e3eb6b7", size = 14177802, upload-time = "2025-09-09T15:57:01.73Z" }, - { url = "https://files.pythonhosted.org/packages/35/c7/477a83887f9de61f1203bad89cf208b7c19cc9fef0cebef65d5a1a0619f2/numpy-2.3.3-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:9dc13c6a5829610cc07422bc74d3ac083bd8323f14e2827d992f9e52e22cd6a6", size = 5106537, upload-time = "2025-09-09T15:57:03.765Z" }, - { url = "https://files.pythonhosted.org/packages/52/47/93b953bd5866a6f6986344d045a207d3f1cfbad99db29f534ea9cee5108c/numpy-2.3.3-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:d79715d95f1894771eb4e60fb23f065663b2298f7d22945d66877aadf33d00c7", size = 6640743, upload-time = "2025-09-09T15:57:07.921Z" }, - { url = "https://files.pythonhosted.org/packages/23/83/377f84aaeb800b64c0ef4de58b08769e782edcefa4fea712910b6f0afd3c/numpy-2.3.3-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:952cfd0748514ea7c3afc729a0fc639e61655ce4c55ab9acfab14bda4f402b4c", size = 14278881, upload-time = "2025-09-09T15:57:11.349Z" }, - { url = "https://files.pythonhosted.org/packages/9a/a5/bf3db6e66c4b160d6ea10b534c381a1955dfab34cb1017ea93aa33c70ed3/numpy-2.3.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5b83648633d46f77039c29078751f80da65aa64d5622a3cd62aaef9d835b6c93", size = 16636301, upload-time = "2025-09-09T15:57:14.245Z" }, - { url = "https://files.pythonhosted.org/packages/a2/59/1287924242eb4fa3f9b3a2c30400f2e17eb2707020d1c5e3086fe7330717/numpy-2.3.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:b001bae8cea1c7dfdb2ae2b017ed0a6f2102d7a70059df1e338e307a4c78a8ae", size = 16053645, upload-time = "2025-09-09T15:57:16.534Z" }, - { url = "https://files.pythonhosted.org/packages/e6/93/b3d47ed882027c35e94ac2320c37e452a549f582a5e801f2d34b56973c97/numpy-2.3.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8e9aced64054739037d42fb84c54dd38b81ee238816c948c8f3ed134665dcd86", size = 18578179, upload-time = "2025-09-09T15:57:18.883Z" }, - { url = "https://files.pythonhosted.org/packages/20/d9/487a2bccbf7cc9d4bfc5f0f197761a5ef27ba870f1e3bbb9afc4bbe3fcc2/numpy-2.3.3-cp313-cp313-win32.whl", hash = "sha256:9591e1221db3f37751e6442850429b3aabf7026d3b05542d102944ca7f00c8a8", size = 6312250, upload-time = "2025-09-09T15:57:21.296Z" }, - { url = "https://files.pythonhosted.org/packages/1b/b5/263ebbbbcede85028f30047eab3d58028d7ebe389d6493fc95ae66c636ab/numpy-2.3.3-cp313-cp313-win_amd64.whl", hash = "sha256:f0dadeb302887f07431910f67a14d57209ed91130be0adea2f9793f1a4f817cf", size = 12783269, upload-time = "2025-09-09T15:57:23.034Z" }, - { url = "https://files.pythonhosted.org/packages/fa/75/67b8ca554bbeaaeb3fac2e8bce46967a5a06544c9108ec0cf5cece559b6c/numpy-2.3.3-cp313-cp313-win_arm64.whl", hash = "sha256:3c7cf302ac6e0b76a64c4aecf1a09e51abd9b01fc7feee80f6c43e3ab1b1dbc5", size = 10195314, upload-time = "2025-09-09T15:57:25.045Z" }, - { url = "https://files.pythonhosted.org/packages/11/d0/0d1ddec56b162042ddfafeeb293bac672de9b0cfd688383590090963720a/numpy-2.3.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:eda59e44957d272846bb407aad19f89dc6f58fecf3504bd144f4c5cf81a7eacc", size = 21048025, upload-time = "2025-09-09T15:57:27.257Z" }, - { url = "https://files.pythonhosted.org/packages/36/9e/1996ca6b6d00415b6acbdd3c42f7f03ea256e2c3f158f80bd7436a8a19f3/numpy-2.3.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:823d04112bc85ef5c4fda73ba24e6096c8f869931405a80aa8b0e604510a26bc", size = 14301053, upload-time = "2025-09-09T15:57:30.077Z" }, - { url = "https://files.pythonhosted.org/packages/05/24/43da09aa764c68694b76e84b3d3f0c44cb7c18cdc1ba80e48b0ac1d2cd39/numpy-2.3.3-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:40051003e03db4041aa325da2a0971ba41cf65714e65d296397cc0e32de6018b", size = 5229444, upload-time = "2025-09-09T15:57:32.733Z" }, - { url = "https://files.pythonhosted.org/packages/bc/14/50ffb0f22f7218ef8af28dd089f79f68289a7a05a208db9a2c5dcbe123c1/numpy-2.3.3-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:6ee9086235dd6ab7ae75aba5662f582a81ced49f0f1c6de4260a78d8f2d91a19", size = 6738039, upload-time = "2025-09-09T15:57:34.328Z" }, - { url = "https://files.pythonhosted.org/packages/55/52/af46ac0795e09657d45a7f4db961917314377edecf66db0e39fa7ab5c3d3/numpy-2.3.3-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:94fcaa68757c3e2e668ddadeaa86ab05499a70725811e582b6a9858dd472fb30", size = 14352314, upload-time = "2025-09-09T15:57:36.255Z" }, - { url = "https://files.pythonhosted.org/packages/a7/b1/dc226b4c90eb9f07a3fff95c2f0db3268e2e54e5cce97c4ac91518aee71b/numpy-2.3.3-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:da1a74b90e7483d6ce5244053399a614b1d6b7bc30a60d2f570e5071f8959d3e", size = 16701722, upload-time = "2025-09-09T15:57:38.622Z" }, - { url = "https://files.pythonhosted.org/packages/9d/9d/9d8d358f2eb5eced14dba99f110d83b5cd9a4460895230f3b396ad19a323/numpy-2.3.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:2990adf06d1ecee3b3dcbb4977dfab6e9f09807598d647f04d385d29e7a3c3d3", size = 16132755, upload-time = "2025-09-09T15:57:41.16Z" }, - { url = "https://files.pythonhosted.org/packages/b6/27/b3922660c45513f9377b3fb42240bec63f203c71416093476ec9aa0719dc/numpy-2.3.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:ed635ff692483b8e3f0fcaa8e7eb8a75ee71aa6d975388224f70821421800cea", size = 18651560, upload-time = "2025-09-09T15:57:43.459Z" }, - { url = "https://files.pythonhosted.org/packages/5b/8e/3ab61a730bdbbc201bb245a71102aa609f0008b9ed15255500a99cd7f780/numpy-2.3.3-cp313-cp313t-win32.whl", hash = "sha256:a333b4ed33d8dc2b373cc955ca57babc00cd6f9009991d9edc5ddbc1bac36bcd", size = 6442776, upload-time = "2025-09-09T15:57:45.793Z" }, - { url = "https://files.pythonhosted.org/packages/1c/3a/e22b766b11f6030dc2decdeff5c2fb1610768055603f9f3be88b6d192fb2/numpy-2.3.3-cp313-cp313t-win_amd64.whl", hash = "sha256:4384a169c4d8f97195980815d6fcad04933a7e1ab3b530921c3fef7a1c63426d", size = 12927281, upload-time = "2025-09-09T15:57:47.492Z" }, - { url = "https://files.pythonhosted.org/packages/7b/42/c2e2bc48c5e9b2a83423f99733950fbefd86f165b468a3d85d52b30bf782/numpy-2.3.3-cp313-cp313t-win_arm64.whl", hash = "sha256:75370986cc0bc66f4ce5110ad35aae6d182cc4ce6433c40ad151f53690130bf1", size = 10265275, upload-time = "2025-09-09T15:57:49.647Z" }, - { url = "https://files.pythonhosted.org/packages/6b/01/342ad585ad82419b99bcf7cebe99e61da6bedb89e213c5fd71acc467faee/numpy-2.3.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:cd052f1fa6a78dee696b58a914b7229ecfa41f0a6d96dc663c1220a55e137593", size = 20951527, upload-time = "2025-09-09T15:57:52.006Z" }, - { url = "https://files.pythonhosted.org/packages/ef/d8/204e0d73fc1b7a9ee80ab1fe1983dd33a4d64a4e30a05364b0208e9a241a/numpy-2.3.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:414a97499480067d305fcac9716c29cf4d0d76db6ebf0bf3cbce666677f12652", size = 14186159, upload-time = "2025-09-09T15:57:54.407Z" }, - { url = "https://files.pythonhosted.org/packages/22/af/f11c916d08f3a18fb8ba81ab72b5b74a6e42ead4c2846d270eb19845bf74/numpy-2.3.3-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:50a5fe69f135f88a2be9b6ca0481a68a136f6febe1916e4920e12f1a34e708a7", size = 5114624, upload-time = "2025-09-09T15:57:56.5Z" }, - { url = "https://files.pythonhosted.org/packages/fb/11/0ed919c8381ac9d2ffacd63fd1f0c34d27e99cab650f0eb6f110e6ae4858/numpy-2.3.3-cp314-cp314-macosx_14_0_x86_64.whl", hash = "sha256:b912f2ed2b67a129e6a601e9d93d4fa37bef67e54cac442a2f588a54afe5c67a", size = 6642627, upload-time = "2025-09-09T15:57:58.206Z" }, - { url = "https://files.pythonhosted.org/packages/ee/83/deb5f77cb0f7ba6cb52b91ed388b47f8f3c2e9930d4665c600408d9b90b9/numpy-2.3.3-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9e318ee0596d76d4cb3d78535dc005fa60e5ea348cd131a51e99d0bdbe0b54fe", size = 14296926, upload-time = "2025-09-09T15:58:00.035Z" }, - { url = "https://files.pythonhosted.org/packages/77/cc/70e59dcb84f2b005d4f306310ff0a892518cc0c8000a33d0e6faf7ca8d80/numpy-2.3.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ce020080e4a52426202bdb6f7691c65bb55e49f261f31a8f506c9f6bc7450421", size = 16638958, upload-time = "2025-09-09T15:58:02.738Z" }, - { url = "https://files.pythonhosted.org/packages/b6/5a/b2ab6c18b4257e099587d5b7f903317bd7115333ad8d4ec4874278eafa61/numpy-2.3.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:e6687dc183aa55dae4a705b35f9c0f8cb178bcaa2f029b241ac5356221d5c021", size = 16071920, upload-time = "2025-09-09T15:58:05.029Z" }, - { url = "https://files.pythonhosted.org/packages/b8/f1/8b3fdc44324a259298520dd82147ff648979bed085feeacc1250ef1656c0/numpy-2.3.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:d8f3b1080782469fdc1718c4ed1d22549b5fb12af0d57d35e992158a772a37cf", size = 18577076, upload-time = "2025-09-09T15:58:07.745Z" }, - { url = "https://files.pythonhosted.org/packages/f0/a1/b87a284fb15a42e9274e7fcea0dad259d12ddbf07c1595b26883151ca3b4/numpy-2.3.3-cp314-cp314-win32.whl", hash = "sha256:cb248499b0bc3be66ebd6578b83e5acacf1d6cb2a77f2248ce0e40fbec5a76d0", size = 6366952, upload-time = "2025-09-09T15:58:10.096Z" }, - { url = "https://files.pythonhosted.org/packages/70/5f/1816f4d08f3b8f66576d8433a66f8fa35a5acfb3bbd0bf6c31183b003f3d/numpy-2.3.3-cp314-cp314-win_amd64.whl", hash = "sha256:691808c2b26b0f002a032c73255d0bd89751425f379f7bcd22d140db593a96e8", size = 12919322, upload-time = "2025-09-09T15:58:12.138Z" }, - { url = "https://files.pythonhosted.org/packages/8c/de/072420342e46a8ea41c324a555fa90fcc11637583fb8df722936aed1736d/numpy-2.3.3-cp314-cp314-win_arm64.whl", hash = "sha256:9ad12e976ca7b10f1774b03615a2a4bab8addce37ecc77394d8e986927dc0dfe", size = 10478630, upload-time = "2025-09-09T15:58:14.64Z" }, - { url = "https://files.pythonhosted.org/packages/d5/df/ee2f1c0a9de7347f14da5dd3cd3c3b034d1b8607ccb6883d7dd5c035d631/numpy-2.3.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:9cc48e09feb11e1db00b320e9d30a4151f7369afb96bd0e48d942d09da3a0d00", size = 21047987, upload-time = "2025-09-09T15:58:16.889Z" }, - { url = "https://files.pythonhosted.org/packages/d6/92/9453bdc5a4e9e69cf4358463f25e8260e2ffc126d52e10038b9077815989/numpy-2.3.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:901bf6123879b7f251d3631967fd574690734236075082078e0571977c6a8e6a", size = 14301076, upload-time = "2025-09-09T15:58:20.343Z" }, - { url = "https://files.pythonhosted.org/packages/13/77/1447b9eb500f028bb44253105bd67534af60499588a5149a94f18f2ca917/numpy-2.3.3-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:7f025652034199c301049296b59fa7d52c7e625017cae4c75d8662e377bf487d", size = 5229491, upload-time = "2025-09-09T15:58:22.481Z" }, - { url = "https://files.pythonhosted.org/packages/3d/f9/d72221b6ca205f9736cb4b2ce3b002f6e45cd67cd6a6d1c8af11a2f0b649/numpy-2.3.3-cp314-cp314t-macosx_14_0_x86_64.whl", hash = "sha256:533ca5f6d325c80b6007d4d7fb1984c303553534191024ec6a524a4c92a5935a", size = 6737913, upload-time = "2025-09-09T15:58:24.569Z" }, - { url = "https://files.pythonhosted.org/packages/3c/5f/d12834711962ad9c46af72f79bb31e73e416ee49d17f4c797f72c96b6ca5/numpy-2.3.3-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0edd58682a399824633b66885d699d7de982800053acf20be1eaa46d92009c54", size = 14352811, upload-time = "2025-09-09T15:58:26.416Z" }, - { url = "https://files.pythonhosted.org/packages/a1/0d/fdbec6629d97fd1bebed56cd742884e4eead593611bbe1abc3eb40d304b2/numpy-2.3.3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:367ad5d8fbec5d9296d18478804a530f1191e24ab4d75ab408346ae88045d25e", size = 16702689, upload-time = "2025-09-09T15:58:28.831Z" }, - { url = "https://files.pythonhosted.org/packages/9b/09/0a35196dc5575adde1eb97ddfbc3e1687a814f905377621d18ca9bc2b7dd/numpy-2.3.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:8f6ac61a217437946a1fa48d24c47c91a0c4f725237871117dea264982128097", size = 16133855, upload-time = "2025-09-09T15:58:31.349Z" }, - { url = "https://files.pythonhosted.org/packages/7a/ca/c9de3ea397d576f1b6753eaa906d4cdef1bf97589a6d9825a349b4729cc2/numpy-2.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:179a42101b845a816d464b6fe9a845dfaf308fdfc7925387195570789bb2c970", size = 18652520, upload-time = "2025-09-09T15:58:33.762Z" }, - { url = "https://files.pythonhosted.org/packages/fd/c2/e5ed830e08cd0196351db55db82f65bc0ab05da6ef2b72a836dcf1936d2f/numpy-2.3.3-cp314-cp314t-win32.whl", hash = "sha256:1250c5d3d2562ec4174bce2e3a1523041595f9b651065e4a4473f5f48a6bc8a5", size = 6515371, upload-time = "2025-09-09T15:58:36.04Z" }, - { url = "https://files.pythonhosted.org/packages/47/c7/b0f6b5b67f6788a0725f744496badbb604d226bf233ba716683ebb47b570/numpy-2.3.3-cp314-cp314t-win_amd64.whl", hash = "sha256:b37a0b2e5935409daebe82c1e42274d30d9dd355852529eab91dab8dcca7419f", size = 13112576, upload-time = "2025-09-09T15:58:37.927Z" }, - { url = "https://files.pythonhosted.org/packages/06/b9/33bba5ff6fb679aa0b1f8a07e853f002a6b04b9394db3069a1270a7784ca/numpy-2.3.3-cp314-cp314t-win_arm64.whl", hash = "sha256:78c9f6560dc7e6b3990e32df7ea1a50bbd0e2a111e05209963f5ddcab7073b0b", size = 10545953, upload-time = "2025-09-09T15:58:40.576Z" }, +version = "2.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/24/62/ae72ff66c0f1fd959925b4c11f8c2dea61f47f6acaea75a08512cdfe3fed/numpy-2.4.1.tar.gz", hash = "sha256:a1ceafc5042451a858231588a104093474c6a5c57dcc724841f5c888d237d690", size = 20721320, upload-time = "2026-01-10T06:44:59.619Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/78/7f/ec53e32bf10c813604edf07a3682616bd931d026fcde7b6d13195dfb684a/numpy-2.4.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d3703409aac693fa82c0aee023a1ae06a6e9d065dba10f5e8e80f642f1e9d0a2", size = 16656888, upload-time = "2026-01-10T06:42:40.913Z" }, + { url = "https://files.pythonhosted.org/packages/b8/e0/1f9585d7dae8f14864e948fd7fa86c6cb72dee2676ca2748e63b1c5acfe0/numpy-2.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7211b95ca365519d3596a1d8688a95874cc94219d417504d9ecb2df99fa7bfa8", size = 12373956, upload-time = "2026-01-10T06:42:43.091Z" }, + { url = "https://files.pythonhosted.org/packages/8e/43/9762e88909ff2326f5e7536fa8cb3c49fb03a7d92705f23e6e7f553d9cb3/numpy-2.4.1-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:5adf01965456a664fc727ed69cc71848f28d063217c63e1a0e200a118d5eec9a", size = 5202567, upload-time = "2026-01-10T06:42:45.107Z" }, + { url = "https://files.pythonhosted.org/packages/4b/ee/34b7930eb61e79feb4478800a4b95b46566969d837546aa7c034c742ef98/numpy-2.4.1-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:26f0bcd9c79a00e339565b303badc74d3ea2bd6d52191eeca5f95936cad107d0", size = 6549459, upload-time = "2026-01-10T06:42:48.152Z" }, + { url = "https://files.pythonhosted.org/packages/79/e3/5f115fae982565771be994867c89bcd8d7208dbfe9469185497d70de5ddf/numpy-2.4.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0093e85df2960d7e4049664b26afc58b03236e967fb942354deef3208857a04c", size = 14404859, upload-time = "2026-01-10T06:42:49.947Z" }, + { url = "https://files.pythonhosted.org/packages/d9/7d/9c8a781c88933725445a859cac5d01b5871588a15969ee6aeb618ba99eee/numpy-2.4.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7ad270f438cbdd402c364980317fb6b117d9ec5e226fff5b4148dd9aa9fc6e02", size = 16371419, upload-time = "2026-01-10T06:42:52.409Z" }, + { url = "https://files.pythonhosted.org/packages/a6/d2/8aa084818554543f17cf4162c42f162acbd3bb42688aefdba6628a859f77/numpy-2.4.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:297c72b1b98100c2e8f873d5d35fb551fce7040ade83d67dd51d38c8d42a2162", size = 16182131, upload-time = "2026-01-10T06:42:54.694Z" }, + { url = "https://files.pythonhosted.org/packages/60/db/0425216684297c58a8df35f3284ef56ec4a043e6d283f8a59c53562caf1b/numpy-2.4.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:cf6470d91d34bf669f61d515499859fa7a4c2f7c36434afb70e82df7217933f9", size = 18295342, upload-time = "2026-01-10T06:42:56.991Z" }, + { url = "https://files.pythonhosted.org/packages/31/4c/14cb9d86240bd8c386c881bafbe43f001284b7cce3bc01623ac9475da163/numpy-2.4.1-cp312-cp312-win32.whl", hash = "sha256:b6bcf39112e956594b3331316d90c90c90fb961e39696bda97b89462f5f3943f", size = 5959015, upload-time = "2026-01-10T06:42:59.631Z" }, + { url = "https://files.pythonhosted.org/packages/51/cf/52a703dbeb0c65807540d29699fef5fda073434ff61846a564d5c296420f/numpy-2.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:e1a27bb1b2dee45a2a53f5ca6ff2d1a7f135287883a1689e930d44d1ff296c87", size = 12310730, upload-time = "2026-01-10T06:43:01.627Z" }, + { url = "https://files.pythonhosted.org/packages/69/80/a828b2d0ade5e74a9fe0f4e0a17c30fdc26232ad2bc8c9f8b3197cf7cf18/numpy-2.4.1-cp312-cp312-win_arm64.whl", hash = "sha256:0e6e8f9d9ecf95399982019c01223dc130542960a12edfa8edd1122dfa66a8a8", size = 10312166, upload-time = "2026-01-10T06:43:03.673Z" }, + { url = "https://files.pythonhosted.org/packages/04/68/732d4b7811c00775f3bd522a21e8dd5a23f77eb11acdeb663e4a4ebf0ef4/numpy-2.4.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:d797454e37570cfd61143b73b8debd623c3c0952959adb817dd310a483d58a1b", size = 16652495, upload-time = "2026-01-10T06:43:06.283Z" }, + { url = "https://files.pythonhosted.org/packages/20/ca/857722353421a27f1465652b2c66813eeeccea9d76d5f7b74b99f298e60e/numpy-2.4.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:82c55962006156aeef1629b953fd359064aa47e4d82cfc8e67f0918f7da3344f", size = 12368657, upload-time = "2026-01-10T06:43:09.094Z" }, + { url = "https://files.pythonhosted.org/packages/81/0d/2377c917513449cc6240031a79d30eb9a163d32a91e79e0da47c43f2c0c8/numpy-2.4.1-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:71abbea030f2cfc3092a0ff9f8c8fdefdc5e0bf7d9d9c99663538bb0ecdac0b9", size = 5197256, upload-time = "2026-01-10T06:43:13.634Z" }, + { url = "https://files.pythonhosted.org/packages/17/39/569452228de3f5de9064ac75137082c6214be1f5c532016549a7923ab4b5/numpy-2.4.1-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:5b55aa56165b17aaf15520beb9cbd33c9039810e0d9643dd4379e44294c7303e", size = 6545212, upload-time = "2026-01-10T06:43:15.661Z" }, + { url = "https://files.pythonhosted.org/packages/8c/a4/77333f4d1e4dac4395385482557aeecf4826e6ff517e32ca48e1dafbe42a/numpy-2.4.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c0faba4a331195bfa96f93dd9dfaa10b2c7aa8cda3a02b7fd635e588fe821bf5", size = 14402871, upload-time = "2026-01-10T06:43:17.324Z" }, + { url = "https://files.pythonhosted.org/packages/ba/87/d341e519956273b39d8d47969dd1eaa1af740615394fe67d06f1efa68773/numpy-2.4.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d3e3087f53e2b4428766b54932644d148613c5a595150533ae7f00dab2f319a8", size = 16359305, upload-time = "2026-01-10T06:43:19.376Z" }, + { url = "https://files.pythonhosted.org/packages/32/91/789132c6666288eaa20ae8066bb99eba1939362e8f1a534949a215246e97/numpy-2.4.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:49e792ec351315e16da54b543db06ca8a86985ab682602d90c60ef4ff4db2a9c", size = 16181909, upload-time = "2026-01-10T06:43:21.808Z" }, + { url = "https://files.pythonhosted.org/packages/cf/b8/090b8bd27b82a844bb22ff8fdf7935cb1980b48d6e439ae116f53cdc2143/numpy-2.4.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:79e9e06c4c2379db47f3f6fc7a8652e7498251789bf8ff5bd43bf478ef314ca2", size = 18284380, upload-time = "2026-01-10T06:43:23.957Z" }, + { url = "https://files.pythonhosted.org/packages/67/78/722b62bd31842ff029412271556a1a27a98f45359dea78b1548a3a9996aa/numpy-2.4.1-cp313-cp313-win32.whl", hash = "sha256:3d1a100e48cb266090a031397863ff8a30050ceefd798f686ff92c67a486753d", size = 5957089, upload-time = "2026-01-10T06:43:27.535Z" }, + { url = "https://files.pythonhosted.org/packages/da/a6/cf32198b0b6e18d4fbfa9a21a992a7fca535b9bb2b0cdd217d4a3445b5ca/numpy-2.4.1-cp313-cp313-win_amd64.whl", hash = "sha256:92a0e65272fd60bfa0d9278e0484c2f52fe03b97aedc02b357f33fe752c52ffb", size = 12307230, upload-time = "2026-01-10T06:43:29.298Z" }, + { url = "https://files.pythonhosted.org/packages/44/6c/534d692bfb7d0afe30611320c5fb713659dcb5104d7cc182aff2aea092f5/numpy-2.4.1-cp313-cp313-win_arm64.whl", hash = "sha256:20d4649c773f66cc2fc36f663e091f57c3b7655f936a4c681b4250855d1da8f5", size = 10313125, upload-time = "2026-01-10T06:43:31.782Z" }, + { url = "https://files.pythonhosted.org/packages/da/a1/354583ac5c4caa566de6ddfbc42744409b515039e085fab6e0ff942e0df5/numpy-2.4.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:f93bc6892fe7b0663e5ffa83b61aab510aacffd58c16e012bb9352d489d90cb7", size = 12496156, upload-time = "2026-01-10T06:43:34.237Z" }, + { url = "https://files.pythonhosted.org/packages/51/b0/42807c6e8cce58c00127b1dc24d365305189991f2a7917aa694a109c8d7d/numpy-2.4.1-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:178de8f87948163d98a4c9ab5bee4ce6519ca918926ec8df195af582de28544d", size = 5324663, upload-time = "2026-01-10T06:43:36.211Z" }, + { url = "https://files.pythonhosted.org/packages/fe/55/7a621694010d92375ed82f312b2f28017694ed784775269115323e37f5e2/numpy-2.4.1-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:98b35775e03ab7f868908b524fc0a84d38932d8daf7b7e1c3c3a1b6c7a2c9f15", size = 6645224, upload-time = "2026-01-10T06:43:37.884Z" }, + { url = "https://files.pythonhosted.org/packages/50/96/9fa8635ed9d7c847d87e30c834f7109fac5e88549d79ef3324ab5c20919f/numpy-2.4.1-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:941c2a93313d030f219f3a71fd3d91a728b82979a5e8034eb2e60d394a2b83f9", size = 14462352, upload-time = "2026-01-10T06:43:39.479Z" }, + { url = "https://files.pythonhosted.org/packages/03/d1/8cf62d8bb2062da4fb82dd5d49e47c923f9c0738032f054e0a75342faba7/numpy-2.4.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:529050522e983e00a6c1c6b67411083630de8b57f65e853d7b03d9281b8694d2", size = 16407279, upload-time = "2026-01-10T06:43:41.93Z" }, + { url = "https://files.pythonhosted.org/packages/86/1c/95c86e17c6b0b31ce6ef219da00f71113b220bcb14938c8d9a05cee0ff53/numpy-2.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:2302dc0224c1cbc49bb94f7064f3f923a971bfae45c33870dcbff63a2a550505", size = 16248316, upload-time = "2026-01-10T06:43:44.121Z" }, + { url = "https://files.pythonhosted.org/packages/30/b4/e7f5ff8697274c9d0fa82398b6a372a27e5cef069b37df6355ccb1f1db1a/numpy-2.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:9171a42fcad32dcf3fa86f0a4faa5e9f8facefdb276f54b8b390d90447cff4e2", size = 18329884, upload-time = "2026-01-10T06:43:46.613Z" }, + { url = "https://files.pythonhosted.org/packages/37/a4/b073f3e9d77f9aec8debe8ca7f9f6a09e888ad1ba7488f0c3b36a94c03ac/numpy-2.4.1-cp313-cp313t-win32.whl", hash = "sha256:382ad67d99ef49024f11d1ce5dcb5ad8432446e4246a4b014418ba3a1175a1f4", size = 6081138, upload-time = "2026-01-10T06:43:48.854Z" }, + { url = "https://files.pythonhosted.org/packages/16/16/af42337b53844e67752a092481ab869c0523bc95c4e5c98e4dac4e9581ac/numpy-2.4.1-cp313-cp313t-win_amd64.whl", hash = "sha256:62fea415f83ad8fdb6c20840578e5fbaf5ddd65e0ec6c3c47eda0f69da172510", size = 12447478, upload-time = "2026-01-10T06:43:50.476Z" }, + { url = "https://files.pythonhosted.org/packages/6c/f8/fa85b2eac68ec631d0b631abc448552cb17d39afd17ec53dcbcc3537681a/numpy-2.4.1-cp313-cp313t-win_arm64.whl", hash = "sha256:a7870e8c5fc11aef57d6fea4b4085e537a3a60ad2cdd14322ed531fdca68d261", size = 10382981, upload-time = "2026-01-10T06:43:52.575Z" }, + { url = "https://files.pythonhosted.org/packages/1b/a7/ef08d25698e0e4b4efbad8d55251d20fe2a15f6d9aa7c9b30cd03c165e6f/numpy-2.4.1-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:3869ea1ee1a1edc16c29bbe3a2f2a4e515cc3a44d43903ad41e0cacdbaf733dc", size = 16652046, upload-time = "2026-01-10T06:43:54.797Z" }, + { url = "https://files.pythonhosted.org/packages/8f/39/e378b3e3ca13477e5ac70293ec027c438d1927f18637e396fe90b1addd72/numpy-2.4.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:e867df947d427cdd7a60e3e271729090b0f0df80f5f10ab7dd436f40811699c3", size = 12378858, upload-time = "2026-01-10T06:43:57.099Z" }, + { url = "https://files.pythonhosted.org/packages/c3/74/7ec6154f0006910ed1fdbb7591cf4432307033102b8a22041599935f8969/numpy-2.4.1-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:e3bd2cb07841166420d2fa7146c96ce00cb3410664cbc1a6be028e456c4ee220", size = 5207417, upload-time = "2026-01-10T06:43:59.037Z" }, + { url = "https://files.pythonhosted.org/packages/f7/b7/053ac11820d84e42f8feea5cb81cc4fcd1091499b45b1ed8c7415b1bf831/numpy-2.4.1-cp314-cp314-macosx_14_0_x86_64.whl", hash = "sha256:f0a90aba7d521e6954670550e561a4cb925713bd944445dbe9e729b71f6cabee", size = 6542643, upload-time = "2026-01-10T06:44:01.852Z" }, + { url = "https://files.pythonhosted.org/packages/c0/c4/2e7908915c0e32ca636b92e4e4a3bdec4cb1e7eb0f8aedf1ed3c68a0d8cd/numpy-2.4.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5d558123217a83b2d1ba316b986e9248a1ed1971ad495963d555ccd75dcb1556", size = 14418963, upload-time = "2026-01-10T06:44:04.047Z" }, + { url = "https://files.pythonhosted.org/packages/eb/c0/3ed5083d94e7ffd7c404e54619c088e11f2e1939a9544f5397f4adb1b8ba/numpy-2.4.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2f44de05659b67d20499cbc96d49f2650769afcb398b79b324bb6e297bfe3844", size = 16363811, upload-time = "2026-01-10T06:44:06.207Z" }, + { url = "https://files.pythonhosted.org/packages/0e/68/42b66f1852bf525050a67315a4fb94586ab7e9eaa541b1bef530fab0c5dd/numpy-2.4.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:69e7419c9012c4aaf695109564e3387f1259f001b4326dfa55907b098af082d3", size = 16197643, upload-time = "2026-01-10T06:44:08.33Z" }, + { url = "https://files.pythonhosted.org/packages/d2/40/e8714fc933d85f82c6bfc7b998a0649ad9769a32f3494ba86598aaf18a48/numpy-2.4.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:2ffd257026eb1b34352e749d7cc1678b5eeec3e329ad8c9965a797e08ccba205", size = 18289601, upload-time = "2026-01-10T06:44:10.841Z" }, + { url = "https://files.pythonhosted.org/packages/80/9a/0d44b468cad50315127e884802351723daca7cf1c98d102929468c81d439/numpy-2.4.1-cp314-cp314-win32.whl", hash = "sha256:727c6c3275ddefa0dc078524a85e064c057b4f4e71ca5ca29a19163c607be745", size = 6005722, upload-time = "2026-01-10T06:44:13.332Z" }, + { url = "https://files.pythonhosted.org/packages/7e/bb/c6513edcce5a831810e2dddc0d3452ce84d208af92405a0c2e58fd8e7881/numpy-2.4.1-cp314-cp314-win_amd64.whl", hash = "sha256:7d5d7999df434a038d75a748275cd6c0094b0ecdb0837342b332a82defc4dc4d", size = 12438590, upload-time = "2026-01-10T06:44:15.006Z" }, + { url = "https://files.pythonhosted.org/packages/e9/da/a598d5cb260780cf4d255102deba35c1d072dc028c4547832f45dd3323a8/numpy-2.4.1-cp314-cp314-win_arm64.whl", hash = "sha256:ce9ce141a505053b3c7bce3216071f3bf5c182b8b28930f14cd24d43932cd2df", size = 10596180, upload-time = "2026-01-10T06:44:17.386Z" }, + { url = "https://files.pythonhosted.org/packages/de/bc/ea3f2c96fcb382311827231f911723aeff596364eb6e1b6d1d91128aa29b/numpy-2.4.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:4e53170557d37ae404bf8d542ca5b7c629d6efa1117dac6a83e394142ea0a43f", size = 12498774, upload-time = "2026-01-10T06:44:19.467Z" }, + { url = "https://files.pythonhosted.org/packages/aa/ab/ef9d939fe4a812648c7a712610b2ca6140b0853c5efea361301006c02ae5/numpy-2.4.1-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:a73044b752f5d34d4232f25f18160a1cc418ea4507f5f11e299d8ac36875f8a0", size = 5327274, upload-time = "2026-01-10T06:44:23.189Z" }, + { url = "https://files.pythonhosted.org/packages/bd/31/d381368e2a95c3b08b8cf7faac6004849e960f4a042d920337f71cef0cae/numpy-2.4.1-cp314-cp314t-macosx_14_0_x86_64.whl", hash = "sha256:fb1461c99de4d040666ca0444057b06541e5642f800b71c56e6ea92d6a853a0c", size = 6648306, upload-time = "2026-01-10T06:44:25.012Z" }, + { url = "https://files.pythonhosted.org/packages/c8/e5/0989b44ade47430be6323d05c23207636d67d7362a1796ccbccac6773dd2/numpy-2.4.1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:423797bdab2eeefbe608d7c1ec7b2b4fd3c58d51460f1ee26c7500a1d9c9ee93", size = 14464653, upload-time = "2026-01-10T06:44:26.706Z" }, + { url = "https://files.pythonhosted.org/packages/10/a7/cfbe475c35371cae1358e61f20c5f075badc18c4797ab4354140e1d283cf/numpy-2.4.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:52b5f61bdb323b566b528899cc7db2ba5d1015bda7ea811a8bcf3c89c331fa42", size = 16405144, upload-time = "2026-01-10T06:44:29.378Z" }, + { url = "https://files.pythonhosted.org/packages/f8/a3/0c63fe66b534888fa5177cc7cef061541064dbe2b4b60dcc60ffaf0d2157/numpy-2.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:42d7dd5fa36d16d52a84f821eb96031836fd405ee6955dd732f2023724d0aa01", size = 16247425, upload-time = "2026-01-10T06:44:31.721Z" }, + { url = "https://files.pythonhosted.org/packages/6b/2b/55d980cfa2c93bd40ff4c290bf824d792bd41d2fe3487b07707559071760/numpy-2.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:e7b6b5e28bbd47b7532698e5db2fe1db693d84b58c254e4389d99a27bb9b8f6b", size = 18330053, upload-time = "2026-01-10T06:44:34.617Z" }, + { url = "https://files.pythonhosted.org/packages/23/12/8b5fc6b9c487a09a7957188e0943c9ff08432c65e34567cabc1623b03a51/numpy-2.4.1-cp314-cp314t-win32.whl", hash = "sha256:5de60946f14ebe15e713a6f22850c2372fa72f4ff9a432ab44aa90edcadaa65a", size = 6152482, upload-time = "2026-01-10T06:44:36.798Z" }, + { url = "https://files.pythonhosted.org/packages/00/a5/9f8ca5856b8940492fc24fbe13c1bc34d65ddf4079097cf9e53164d094e1/numpy-2.4.1-cp314-cp314t-win_amd64.whl", hash = "sha256:8f085da926c0d491ffff3096f91078cc97ea67e7e6b65e490bc8dcda65663be2", size = 12627117, upload-time = "2026-01-10T06:44:38.828Z" }, + { url = "https://files.pythonhosted.org/packages/ad/0d/eca3d962f9eef265f01a8e0d20085c6dd1f443cbffc11b6dede81fd82356/numpy-2.4.1-cp314-cp314t-win_arm64.whl", hash = "sha256:6436cffb4f2bf26c974344439439c95e152c9a527013f26b3577be6c2ca64295", size = 10667121, upload-time = "2026-01-10T06:44:41.644Z" }, ] [[package]] @@ -1152,6 +1278,7 @@ dependencies = [ { name = "dacite" }, { name = "earcut" }, { name = "faker" }, + { name = "fastapi" }, { name = "folium" }, { name = "geojson" }, { name = "http-message-signatures" }, @@ -1179,8 +1306,9 @@ dependencies = [ { name = "rtree" }, { name = "shapely" }, { name = "uas-standards" }, + { name = "uvicorn" }, { name = "walrus" }, - { name = "websocket-client" }, + { name = "websockets" }, ] [package.dev-dependencies] @@ -1205,6 +1333,7 @@ requires-dist = [ { name = "dacite", specifier = ">=1.9.2" }, { name = "earcut", specifier = ">=1.1.5" }, { name = "faker", specifier = "==9.3.1" }, + { name = "fastapi", specifier = ">=0.121.3" }, { name = "folium", specifier = ">=0.20.0" }, { name = "geojson", specifier = "==3.2.0" }, { name = "http-message-signatures", specifier = "==0.5.0" }, @@ -1232,8 +1361,9 @@ requires-dist = [ { name = "rtree", specifier = "==1.4.1" }, { name = "shapely", specifier = "==2.1.0" }, { name = "uas-standards", specifier = "==4.2.0" }, + { name = "uvicorn", specifier = ">=0.38.0" }, { name = "walrus", specifier = "==0.9.4" }, - { name = "websocket-client", specifier = "==1.9.0" }, + { name = "websockets", specifier = ">=12.0" }, ] [package.metadata.requires-dev] @@ -1261,7 +1391,7 @@ wheels = [ [[package]] name = "pandas" -version = "2.3.2" +version = "2.3.3" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "numpy" }, @@ -1269,28 +1399,41 @@ dependencies = [ { name = "pytz" }, { name = "tzdata" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/79/8e/0e90233ac205ad182bd6b422532695d2b9414944a280488105d598c70023/pandas-2.3.2.tar.gz", hash = "sha256:ab7b58f8f82706890924ccdfb5f48002b83d2b5a3845976a9fb705d36c34dcdb", size = 4488684, upload-time = "2025-08-21T10:28:29.257Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/ec/db/614c20fb7a85a14828edd23f1c02db58a30abf3ce76f38806155d160313c/pandas-2.3.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:3fbb977f802156e7a3f829e9d1d5398f6192375a3e2d1a9ee0803e35fe70a2b9", size = 11587652, upload-time = "2025-08-21T10:27:15.888Z" }, - { url = "https://files.pythonhosted.org/packages/99/b0/756e52f6582cade5e746f19bad0517ff27ba9c73404607c0306585c201b3/pandas-2.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1b9b52693123dd234b7c985c68b709b0b009f4521000d0525f2b95c22f15944b", size = 10717686, upload-time = "2025-08-21T10:27:18.486Z" }, - { url = "https://files.pythonhosted.org/packages/37/4c/dd5ccc1e357abfeee8353123282de17997f90ff67855f86154e5a13b81e5/pandas-2.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bd281310d4f412733f319a5bc552f86d62cddc5f51d2e392c8787335c994175", size = 11278722, upload-time = "2025-08-21T10:27:21.149Z" }, - { url = "https://files.pythonhosted.org/packages/d3/a4/f7edcfa47e0a88cda0be8b068a5bae710bf264f867edfdf7b71584ace362/pandas-2.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:96d31a6b4354e3b9b8a2c848af75d31da390657e3ac6f30c05c82068b9ed79b9", size = 11987803, upload-time = "2025-08-21T10:27:23.767Z" }, - { url = "https://files.pythonhosted.org/packages/f6/61/1bce4129f93ab66f1c68b7ed1c12bac6a70b1b56c5dab359c6bbcd480b52/pandas-2.3.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:df4df0b9d02bb873a106971bb85d448378ef14b86ba96f035f50bbd3688456b4", size = 12766345, upload-time = "2025-08-21T10:27:26.6Z" }, - { url = "https://files.pythonhosted.org/packages/8e/46/80d53de70fee835531da3a1dae827a1e76e77a43ad22a8cd0f8142b61587/pandas-2.3.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:213a5adf93d020b74327cb2c1b842884dbdd37f895f42dcc2f09d451d949f811", size = 13439314, upload-time = "2025-08-21T10:27:29.213Z" }, - { url = "https://files.pythonhosted.org/packages/28/30/8114832daff7489f179971dbc1d854109b7f4365a546e3ea75b6516cea95/pandas-2.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:8c13b81a9347eb8c7548f53fd9a4f08d4dfe996836543f805c987bafa03317ae", size = 10983326, upload-time = "2025-08-21T10:27:31.901Z" }, - { url = "https://files.pythonhosted.org/packages/27/64/a2f7bf678af502e16b472527735d168b22b7824e45a4d7e96a4fbb634b59/pandas-2.3.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0c6ecbac99a354a051ef21c5307601093cb9e0f4b1855984a084bfec9302699e", size = 11531061, upload-time = "2025-08-21T10:27:34.647Z" }, - { url = "https://files.pythonhosted.org/packages/54/4c/c3d21b2b7769ef2f4c2b9299fcadd601efa6729f1357a8dbce8dd949ed70/pandas-2.3.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:c6f048aa0fd080d6a06cc7e7537c09b53be6642d330ac6f54a600c3ace857ee9", size = 10668666, upload-time = "2025-08-21T10:27:37.203Z" }, - { url = "https://files.pythonhosted.org/packages/50/e2/f775ba76ecfb3424d7f5862620841cf0edb592e9abd2d2a5387d305fe7a8/pandas-2.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0064187b80a5be6f2f9c9d6bdde29372468751dfa89f4211a3c5871854cfbf7a", size = 11332835, upload-time = "2025-08-21T10:27:40.188Z" }, - { url = "https://files.pythonhosted.org/packages/8f/52/0634adaace9be2d8cac9ef78f05c47f3a675882e068438b9d7ec7ef0c13f/pandas-2.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4ac8c320bded4718b298281339c1a50fb00a6ba78cb2a63521c39bec95b0209b", size = 12057211, upload-time = "2025-08-21T10:27:43.117Z" }, - { url = "https://files.pythonhosted.org/packages/0b/9d/2df913f14b2deb9c748975fdb2491da1a78773debb25abbc7cbc67c6b549/pandas-2.3.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:114c2fe4f4328cf98ce5716d1532f3ab79c5919f95a9cfee81d9140064a2e4d6", size = 12749277, upload-time = "2025-08-21T10:27:45.474Z" }, - { url = "https://files.pythonhosted.org/packages/87/af/da1a2417026bd14d98c236dba88e39837182459d29dcfcea510b2ac9e8a1/pandas-2.3.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:48fa91c4dfb3b2b9bfdb5c24cd3567575f4e13f9636810462ffed8925352be5a", size = 13415256, upload-time = "2025-08-21T10:27:49.885Z" }, - { url = "https://files.pythonhosted.org/packages/22/3c/f2af1ce8840ef648584a6156489636b5692c162771918aa95707c165ad2b/pandas-2.3.2-cp313-cp313-win_amd64.whl", hash = "sha256:12d039facec710f7ba305786837d0225a3444af7bbd9c15c32ca2d40d157ed8b", size = 10982579, upload-time = "2025-08-21T10:28:08.435Z" }, - { url = "https://files.pythonhosted.org/packages/f3/98/8df69c4097a6719e357dc249bf437b8efbde808038268e584421696cbddf/pandas-2.3.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:c624b615ce97864eb588779ed4046186f967374185c047070545253a52ab2d57", size = 12028163, upload-time = "2025-08-21T10:27:52.232Z" }, - { url = "https://files.pythonhosted.org/packages/0e/23/f95cbcbea319f349e10ff90db488b905c6883f03cbabd34f6b03cbc3c044/pandas-2.3.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:0cee69d583b9b128823d9514171cabb6861e09409af805b54459bd0c821a35c2", size = 11391860, upload-time = "2025-08-21T10:27:54.673Z" }, - { url = "https://files.pythonhosted.org/packages/ad/1b/6a984e98c4abee22058aa75bfb8eb90dce58cf8d7296f8bc56c14bc330b0/pandas-2.3.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2319656ed81124982900b4c37f0e0c58c015af9a7bbc62342ba5ad07ace82ba9", size = 11309830, upload-time = "2025-08-21T10:27:56.957Z" }, - { url = "https://files.pythonhosted.org/packages/15/d5/f0486090eb18dd8710bf60afeaf638ba6817047c0c8ae5c6a25598665609/pandas-2.3.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b37205ad6f00d52f16b6d09f406434ba928c1a1966e2771006a9033c736d30d2", size = 11883216, upload-time = "2025-08-21T10:27:59.302Z" }, - { url = "https://files.pythonhosted.org/packages/10/86/692050c119696da19e20245bbd650d8dfca6ceb577da027c3a73c62a047e/pandas-2.3.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:837248b4fc3a9b83b9c6214699a13f069dc13510a6a6d7f9ba33145d2841a012", size = 12699743, upload-time = "2025-08-21T10:28:02.447Z" }, - { url = "https://files.pythonhosted.org/packages/cd/d7/612123674d7b17cf345aad0a10289b2a384bff404e0463a83c4a3a59d205/pandas-2.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:d2c3554bd31b731cd6490d94a28f3abb8dd770634a9e06eb6d2911b9827db370", size = 13186141, upload-time = "2025-08-21T10:28:05.377Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/33/01/d40b85317f86cf08d853a4f495195c73815fdf205eef3993821720274518/pandas-2.3.3.tar.gz", hash = "sha256:e05e1af93b977f7eafa636d043f9f94c7ee3ac81af99c13508215942e64c993b", size = 4495223, upload-time = "2025-09-29T23:34:51.853Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9c/fb/231d89e8637c808b997d172b18e9d4a4bc7bf31296196c260526055d1ea0/pandas-2.3.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:6d21f6d74eb1725c2efaa71a2bfc661a0689579b58e9c0ca58a739ff0b002b53", size = 11597846, upload-time = "2025-09-29T23:19:48.856Z" }, + { url = "https://files.pythonhosted.org/packages/5c/bd/bf8064d9cfa214294356c2d6702b716d3cf3bb24be59287a6a21e24cae6b/pandas-2.3.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3fd2f887589c7aa868e02632612ba39acb0b8948faf5cc58f0850e165bd46f35", size = 10729618, upload-time = "2025-09-29T23:39:08.659Z" }, + { url = "https://files.pythonhosted.org/packages/57/56/cf2dbe1a3f5271370669475ead12ce77c61726ffd19a35546e31aa8edf4e/pandas-2.3.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ecaf1e12bdc03c86ad4a7ea848d66c685cb6851d807a26aa245ca3d2017a1908", size = 11737212, upload-time = "2025-09-29T23:19:59.765Z" }, + { url = "https://files.pythonhosted.org/packages/e5/63/cd7d615331b328e287d8233ba9fdf191a9c2d11b6af0c7a59cfcec23de68/pandas-2.3.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b3d11d2fda7eb164ef27ffc14b4fcab16a80e1ce67e9f57e19ec0afaf715ba89", size = 12362693, upload-time = "2025-09-29T23:20:14.098Z" }, + { url = "https://files.pythonhosted.org/packages/a6/de/8b1895b107277d52f2b42d3a6806e69cfef0d5cf1d0ba343470b9d8e0a04/pandas-2.3.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a68e15f780eddf2b07d242e17a04aa187a7ee12b40b930bfdd78070556550e98", size = 12771002, upload-time = "2025-09-29T23:20:26.76Z" }, + { url = "https://files.pythonhosted.org/packages/87/21/84072af3187a677c5893b170ba2c8fbe450a6ff911234916da889b698220/pandas-2.3.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:371a4ab48e950033bcf52b6527eccb564f52dc826c02afd9a1bc0ab731bba084", size = 13450971, upload-time = "2025-09-29T23:20:41.344Z" }, + { url = "https://files.pythonhosted.org/packages/86/41/585a168330ff063014880a80d744219dbf1dd7a1c706e75ab3425a987384/pandas-2.3.3-cp312-cp312-win_amd64.whl", hash = "sha256:a16dcec078a01eeef8ee61bf64074b4e524a2a3f4b3be9326420cabe59c4778b", size = 10992722, upload-time = "2025-09-29T23:20:54.139Z" }, + { url = "https://files.pythonhosted.org/packages/cd/4b/18b035ee18f97c1040d94debd8f2e737000ad70ccc8f5513f4eefad75f4b/pandas-2.3.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:56851a737e3470de7fa88e6131f41281ed440d29a9268dcbf0002da5ac366713", size = 11544671, upload-time = "2025-09-29T23:21:05.024Z" }, + { url = "https://files.pythonhosted.org/packages/31/94/72fac03573102779920099bcac1c3b05975c2cb5f01eac609faf34bed1ca/pandas-2.3.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:bdcd9d1167f4885211e401b3036c0c8d9e274eee67ea8d0758a256d60704cfe8", size = 10680807, upload-time = "2025-09-29T23:21:15.979Z" }, + { url = "https://files.pythonhosted.org/packages/16/87/9472cf4a487d848476865321de18cc8c920b8cab98453ab79dbbc98db63a/pandas-2.3.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e32e7cc9af0f1cc15548288a51a3b681cc2a219faa838e995f7dc53dbab1062d", size = 11709872, upload-time = "2025-09-29T23:21:27.165Z" }, + { url = "https://files.pythonhosted.org/packages/15/07/284f757f63f8a8d69ed4472bfd85122bd086e637bf4ed09de572d575a693/pandas-2.3.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:318d77e0e42a628c04dc56bcef4b40de67918f7041c2b061af1da41dcff670ac", size = 12306371, upload-time = "2025-09-29T23:21:40.532Z" }, + { url = "https://files.pythonhosted.org/packages/33/81/a3afc88fca4aa925804a27d2676d22dcd2031c2ebe08aabd0ae55b9ff282/pandas-2.3.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:4e0a175408804d566144e170d0476b15d78458795bb18f1304fb94160cabf40c", size = 12765333, upload-time = "2025-09-29T23:21:55.77Z" }, + { url = "https://files.pythonhosted.org/packages/8d/0f/b4d4ae743a83742f1153464cf1a8ecfafc3ac59722a0b5c8602310cb7158/pandas-2.3.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:93c2d9ab0fc11822b5eece72ec9587e172f63cff87c00b062f6e37448ced4493", size = 13418120, upload-time = "2025-09-29T23:22:10.109Z" }, + { url = "https://files.pythonhosted.org/packages/4f/c7/e54682c96a895d0c808453269e0b5928a07a127a15704fedb643e9b0a4c8/pandas-2.3.3-cp313-cp313-win_amd64.whl", hash = "sha256:f8bfc0e12dc78f777f323f55c58649591b2cd0c43534e8355c51d3fede5f4dee", size = 10993991, upload-time = "2025-09-29T23:25:04.889Z" }, + { url = "https://files.pythonhosted.org/packages/f9/ca/3f8d4f49740799189e1395812f3bf23b5e8fc7c190827d55a610da72ce55/pandas-2.3.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:75ea25f9529fdec2d2e93a42c523962261e567d250b0013b16210e1d40d7c2e5", size = 12048227, upload-time = "2025-09-29T23:22:24.343Z" }, + { url = "https://files.pythonhosted.org/packages/0e/5a/f43efec3e8c0cc92c4663ccad372dbdff72b60bdb56b2749f04aa1d07d7e/pandas-2.3.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:74ecdf1d301e812db96a465a525952f4dde225fdb6d8e5a521d47e1f42041e21", size = 11411056, upload-time = "2025-09-29T23:22:37.762Z" }, + { url = "https://files.pythonhosted.org/packages/46/b1/85331edfc591208c9d1a63a06baa67b21d332e63b7a591a5ba42a10bb507/pandas-2.3.3-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6435cb949cb34ec11cc9860246ccb2fdc9ecd742c12d3304989017d53f039a78", size = 11645189, upload-time = "2025-09-29T23:22:51.688Z" }, + { url = "https://files.pythonhosted.org/packages/44/23/78d645adc35d94d1ac4f2a3c4112ab6f5b8999f4898b8cdf01252f8df4a9/pandas-2.3.3-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:900f47d8f20860de523a1ac881c4c36d65efcb2eb850e6948140fa781736e110", size = 12121912, upload-time = "2025-09-29T23:23:05.042Z" }, + { url = "https://files.pythonhosted.org/packages/53/da/d10013df5e6aaef6b425aa0c32e1fc1f3e431e4bcabd420517dceadce354/pandas-2.3.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:a45c765238e2ed7d7c608fc5bc4a6f88b642f2f01e70c0c23d2224dd21829d86", size = 12712160, upload-time = "2025-09-29T23:23:28.57Z" }, + { url = "https://files.pythonhosted.org/packages/bd/17/e756653095a083d8a37cbd816cb87148debcfcd920129b25f99dd8d04271/pandas-2.3.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:c4fc4c21971a1a9f4bdb4c73978c7f7256caa3e62b323f70d6cb80db583350bc", size = 13199233, upload-time = "2025-09-29T23:24:24.876Z" }, + { url = "https://files.pythonhosted.org/packages/04/fd/74903979833db8390b73b3a8a7d30d146d710bd32703724dd9083950386f/pandas-2.3.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:ee15f284898e7b246df8087fc82b87b01686f98ee67d85a17b7ab44143a3a9a0", size = 11540635, upload-time = "2025-09-29T23:25:52.486Z" }, + { url = "https://files.pythonhosted.org/packages/21/00/266d6b357ad5e6d3ad55093a7e8efc7dd245f5a842b584db9f30b0f0a287/pandas-2.3.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:1611aedd912e1ff81ff41c745822980c49ce4a7907537be8692c8dbc31924593", size = 10759079, upload-time = "2025-09-29T23:26:33.204Z" }, + { url = "https://files.pythonhosted.org/packages/ca/05/d01ef80a7a3a12b2f8bbf16daba1e17c98a2f039cbc8e2f77a2c5a63d382/pandas-2.3.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6d2cefc361461662ac48810cb14365a365ce864afe85ef1f447ff5a1e99ea81c", size = 11814049, upload-time = "2025-09-29T23:27:15.384Z" }, + { url = "https://files.pythonhosted.org/packages/15/b2/0e62f78c0c5ba7e3d2c5945a82456f4fac76c480940f805e0b97fcbc2f65/pandas-2.3.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ee67acbbf05014ea6c763beb097e03cd629961c8a632075eeb34247120abcb4b", size = 12332638, upload-time = "2025-09-29T23:27:51.625Z" }, + { url = "https://files.pythonhosted.org/packages/c5/33/dd70400631b62b9b29c3c93d2feee1d0964dc2bae2e5ad7a6c73a7f25325/pandas-2.3.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:c46467899aaa4da076d5abc11084634e2d197e9460643dd455ac3db5856b24d6", size = 12886834, upload-time = "2025-09-29T23:28:21.289Z" }, + { url = "https://files.pythonhosted.org/packages/d3/18/b5d48f55821228d0d2692b34fd5034bb185e854bdb592e9c640f6290e012/pandas-2.3.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:6253c72c6a1d990a410bc7de641d34053364ef8bcd3126f7e7450125887dffe3", size = 13409925, upload-time = "2025-09-29T23:28:58.261Z" }, + { url = "https://files.pythonhosted.org/packages/a6/3d/124ac75fcd0ecc09b8fdccb0246ef65e35b012030defb0e0eba2cbbbe948/pandas-2.3.3-cp314-cp314-win_amd64.whl", hash = "sha256:1b07204a219b3b7350abaae088f451860223a52cfb8a6c53358e7948735158e5", size = 11109071, upload-time = "2025-09-29T23:32:27.484Z" }, + { url = "https://files.pythonhosted.org/packages/89/9c/0e21c895c38a157e0faa1fb64587a9226d6dd46452cac4532d80c3c4a244/pandas-2.3.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:2462b1a365b6109d275250baaae7b760fd25c726aaca0054649286bcfbb3e8ec", size = 12048504, upload-time = "2025-09-29T23:29:31.47Z" }, + { url = "https://files.pythonhosted.org/packages/d7/82/b69a1c95df796858777b68fbe6a81d37443a33319761d7c652ce77797475/pandas-2.3.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:0242fe9a49aa8b4d78a4fa03acb397a58833ef6199e9aa40a95f027bb3a1b6e7", size = 11410702, upload-time = "2025-09-29T23:29:54.591Z" }, + { url = "https://files.pythonhosted.org/packages/f9/88/702bde3ba0a94b8c73a0181e05144b10f13f29ebfc2150c3a79062a8195d/pandas-2.3.3-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a21d830e78df0a515db2b3d2f5570610f5e6bd2e27749770e8bb7b524b89b450", size = 11634535, upload-time = "2025-09-29T23:30:21.003Z" }, + { url = "https://files.pythonhosted.org/packages/a4/1e/1bac1a839d12e6a82ec6cb40cda2edde64a2013a66963293696bbf31fbbb/pandas-2.3.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2e3ebdb170b5ef78f19bfb71b0dc5dc58775032361fa188e814959b74d726dd5", size = 12121582, upload-time = "2025-09-29T23:30:43.391Z" }, + { url = "https://files.pythonhosted.org/packages/44/91/483de934193e12a3b1d6ae7c8645d083ff88dec75f46e827562f1e4b4da6/pandas-2.3.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:d051c0e065b94b7a3cea50eb1ec32e912cd96dba41647eb24104b6c6c14c5788", size = 12699963, upload-time = "2025-09-29T23:31:10.009Z" }, + { url = "https://files.pythonhosted.org/packages/70/44/5191d2e4026f86a2a109053e194d3ba7a31a2d10a9c2348368c63ed4e85a/pandas-2.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:3869faf4bd07b3b66a9f462417d0ca3a9df29a9f6abd5d0d0dbab15dac7abe87", size = 13202175, upload-time = "2025-09-29T23:31:59.173Z" }, ] [[package]] @@ -1304,11 +1447,11 @@ wheels = [ [[package]] name = "pathspec" -version = "0.12.1" +version = "1.0.3" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/ca/bc/f35b8446f4531a7cb215605d100cd88b7ac6f44ab3fc94870c120ab3adbf/pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712", size = 51043, upload-time = "2023-12-10T22:30:45Z" } +sdist = { url = "https://files.pythonhosted.org/packages/4c/b2/bb8e495d5262bfec41ab5cb18f522f1012933347fb5d9e62452d446baca2/pathspec-1.0.3.tar.gz", hash = "sha256:bac5cf97ae2c2876e2d25ebb15078eb04d76e4b98921ee31c6f85ade8b59444d", size = 130841, upload-time = "2026-01-09T15:46:46.009Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08", size = 31191, upload-time = "2023-12-10T22:30:43.14Z" }, + { url = "https://files.pythonhosted.org/packages/32/2b/121e912bd60eebd623f873fd090de0e84f322972ab25a7f9044c056804ed/pathspec-1.0.3-py3-none-any.whl", hash = "sha256:e80767021c1cc524aa3fb14bedda9c34406591343cc42797b386ce7b9354fb6c", size = 55021, upload-time = "2026-01-09T15:46:44.652Z" }, ] [[package]] @@ -1334,77 +1477,80 @@ wheels = [ [[package]] name = "pillow" -version = "11.3.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/f3/0d/d0d6dea55cd152ce3d6767bb38a8fc10e33796ba4ba210cbab9354b6d238/pillow-11.3.0.tar.gz", hash = "sha256:3828ee7586cd0b2091b6209e5ad53e20d0649bbe87164a459d0676e035e8f523", size = 47113069, upload-time = "2025-07-01T09:16:30.666Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/40/fe/1bc9b3ee13f68487a99ac9529968035cca2f0a51ec36892060edcc51d06a/pillow-11.3.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:fdae223722da47b024b867c1ea0be64e0df702c5e0a60e27daad39bf960dd1e4", size = 5278800, upload-time = "2025-07-01T09:14:17.648Z" }, - { url = "https://files.pythonhosted.org/packages/2c/32/7e2ac19b5713657384cec55f89065fb306b06af008cfd87e572035b27119/pillow-11.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:921bd305b10e82b4d1f5e802b6850677f965d8394203d182f078873851dada69", size = 4686296, upload-time = "2025-07-01T09:14:19.828Z" }, - { url = "https://files.pythonhosted.org/packages/8e/1e/b9e12bbe6e4c2220effebc09ea0923a07a6da1e1f1bfbc8d7d29a01ce32b/pillow-11.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:eb76541cba2f958032d79d143b98a3a6b3ea87f0959bbe256c0b5e416599fd5d", size = 5871726, upload-time = "2025-07-03T13:10:04.448Z" }, - { url = "https://files.pythonhosted.org/packages/8d/33/e9200d2bd7ba00dc3ddb78df1198a6e80d7669cce6c2bdbeb2530a74ec58/pillow-11.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:67172f2944ebba3d4a7b54f2e95c786a3a50c21b88456329314caaa28cda70f6", size = 7644652, upload-time = "2025-07-03T13:10:10.391Z" }, - { url = "https://files.pythonhosted.org/packages/41/f1/6f2427a26fc683e00d985bc391bdd76d8dd4e92fac33d841127eb8fb2313/pillow-11.3.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:97f07ed9f56a3b9b5f49d3661dc9607484e85c67e27f3e8be2c7d28ca032fec7", size = 5977787, upload-time = "2025-07-01T09:14:21.63Z" }, - { url = "https://files.pythonhosted.org/packages/e4/c9/06dd4a38974e24f932ff5f98ea3c546ce3f8c995d3f0985f8e5ba48bba19/pillow-11.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:676b2815362456b5b3216b4fd5bd89d362100dc6f4945154ff172e206a22c024", size = 6645236, upload-time = "2025-07-01T09:14:23.321Z" }, - { url = "https://files.pythonhosted.org/packages/40/e7/848f69fb79843b3d91241bad658e9c14f39a32f71a301bcd1d139416d1be/pillow-11.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3e184b2f26ff146363dd07bde8b711833d7b0202e27d13540bfe2e35a323a809", size = 6086950, upload-time = "2025-07-01T09:14:25.237Z" }, - { url = "https://files.pythonhosted.org/packages/0b/1a/7cff92e695a2a29ac1958c2a0fe4c0b2393b60aac13b04a4fe2735cad52d/pillow-11.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:6be31e3fc9a621e071bc17bb7de63b85cbe0bfae91bb0363c893cbe67247780d", size = 6723358, upload-time = "2025-07-01T09:14:27.053Z" }, - { url = "https://files.pythonhosted.org/packages/26/7d/73699ad77895f69edff76b0f332acc3d497f22f5d75e5360f78cbcaff248/pillow-11.3.0-cp312-cp312-win32.whl", hash = "sha256:7b161756381f0918e05e7cb8a371fff367e807770f8fe92ecb20d905d0e1c149", size = 6275079, upload-time = "2025-07-01T09:14:30.104Z" }, - { url = "https://files.pythonhosted.org/packages/8c/ce/e7dfc873bdd9828f3b6e5c2bbb74e47a98ec23cc5c74fc4e54462f0d9204/pillow-11.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:a6444696fce635783440b7f7a9fc24b3ad10a9ea3f0ab66c5905be1c19ccf17d", size = 6986324, upload-time = "2025-07-01T09:14:31.899Z" }, - { url = "https://files.pythonhosted.org/packages/16/8f/b13447d1bf0b1f7467ce7d86f6e6edf66c0ad7cf44cf5c87a37f9bed9936/pillow-11.3.0-cp312-cp312-win_arm64.whl", hash = "sha256:2aceea54f957dd4448264f9bf40875da0415c83eb85f55069d89c0ed436e3542", size = 2423067, upload-time = "2025-07-01T09:14:33.709Z" }, - { url = "https://files.pythonhosted.org/packages/1e/93/0952f2ed8db3a5a4c7a11f91965d6184ebc8cd7cbb7941a260d5f018cd2d/pillow-11.3.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl", hash = "sha256:1c627742b539bba4309df89171356fcb3cc5a9178355b2727d1b74a6cf155fbd", size = 2128328, upload-time = "2025-07-01T09:14:35.276Z" }, - { url = "https://files.pythonhosted.org/packages/4b/e8/100c3d114b1a0bf4042f27e0f87d2f25e857e838034e98ca98fe7b8c0a9c/pillow-11.3.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:30b7c02f3899d10f13d7a48163c8969e4e653f8b43416d23d13d1bbfdc93b9f8", size = 2170652, upload-time = "2025-07-01T09:14:37.203Z" }, - { url = "https://files.pythonhosted.org/packages/aa/86/3f758a28a6e381758545f7cdb4942e1cb79abd271bea932998fc0db93cb6/pillow-11.3.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:7859a4cc7c9295f5838015d8cc0a9c215b77e43d07a25e460f35cf516df8626f", size = 2227443, upload-time = "2025-07-01T09:14:39.344Z" }, - { url = "https://files.pythonhosted.org/packages/01/f4/91d5b3ffa718df2f53b0dc109877993e511f4fd055d7e9508682e8aba092/pillow-11.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:ec1ee50470b0d050984394423d96325b744d55c701a439d2bd66089bff963d3c", size = 5278474, upload-time = "2025-07-01T09:14:41.843Z" }, - { url = "https://files.pythonhosted.org/packages/f9/0e/37d7d3eca6c879fbd9dba21268427dffda1ab00d4eb05b32923d4fbe3b12/pillow-11.3.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7db51d222548ccfd274e4572fdbf3e810a5e66b00608862f947b163e613b67dd", size = 4686038, upload-time = "2025-07-01T09:14:44.008Z" }, - { url = "https://files.pythonhosted.org/packages/ff/b0/3426e5c7f6565e752d81221af9d3676fdbb4f352317ceafd42899aaf5d8a/pillow-11.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:2d6fcc902a24ac74495df63faad1884282239265c6839a0a6416d33faedfae7e", size = 5864407, upload-time = "2025-07-03T13:10:15.628Z" }, - { url = "https://files.pythonhosted.org/packages/fc/c1/c6c423134229f2a221ee53f838d4be9d82bab86f7e2f8e75e47b6bf6cd77/pillow-11.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f0f5d8f4a08090c6d6d578351a2b91acf519a54986c055af27e7a93feae6d3f1", size = 7639094, upload-time = "2025-07-03T13:10:21.857Z" }, - { url = "https://files.pythonhosted.org/packages/ba/c9/09e6746630fe6372c67c648ff9deae52a2bc20897d51fa293571977ceb5d/pillow-11.3.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c37d8ba9411d6003bba9e518db0db0c58a680ab9fe5179f040b0463644bc9805", size = 5973503, upload-time = "2025-07-01T09:14:45.698Z" }, - { url = "https://files.pythonhosted.org/packages/d5/1c/a2a29649c0b1983d3ef57ee87a66487fdeb45132df66ab30dd37f7dbe162/pillow-11.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:13f87d581e71d9189ab21fe0efb5a23e9f28552d5be6979e84001d3b8505abe8", size = 6642574, upload-time = "2025-07-01T09:14:47.415Z" }, - { url = "https://files.pythonhosted.org/packages/36/de/d5cc31cc4b055b6c6fd990e3e7f0f8aaf36229a2698501bcb0cdf67c7146/pillow-11.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:023f6d2d11784a465f09fd09a34b150ea4672e85fb3d05931d89f373ab14abb2", size = 6084060, upload-time = "2025-07-01T09:14:49.636Z" }, - { url = "https://files.pythonhosted.org/packages/d5/ea/502d938cbaeec836ac28a9b730193716f0114c41325db428e6b280513f09/pillow-11.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:45dfc51ac5975b938e9809451c51734124e73b04d0f0ac621649821a63852e7b", size = 6721407, upload-time = "2025-07-01T09:14:51.962Z" }, - { url = "https://files.pythonhosted.org/packages/45/9c/9c5e2a73f125f6cbc59cc7087c8f2d649a7ae453f83bd0362ff7c9e2aee2/pillow-11.3.0-cp313-cp313-win32.whl", hash = "sha256:a4d336baed65d50d37b88ca5b60c0fa9d81e3a87d4a7930d3880d1624d5b31f3", size = 6273841, upload-time = "2025-07-01T09:14:54.142Z" }, - { url = "https://files.pythonhosted.org/packages/23/85/397c73524e0cd212067e0c969aa245b01d50183439550d24d9f55781b776/pillow-11.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:0bce5c4fd0921f99d2e858dc4d4d64193407e1b99478bc5cacecba2311abde51", size = 6978450, upload-time = "2025-07-01T09:14:56.436Z" }, - { url = "https://files.pythonhosted.org/packages/17/d2/622f4547f69cd173955194b78e4d19ca4935a1b0f03a302d655c9f6aae65/pillow-11.3.0-cp313-cp313-win_arm64.whl", hash = "sha256:1904e1264881f682f02b7f8167935cce37bc97db457f8e7849dc3a6a52b99580", size = 2423055, upload-time = "2025-07-01T09:14:58.072Z" }, - { url = "https://files.pythonhosted.org/packages/dd/80/a8a2ac21dda2e82480852978416cfacd439a4b490a501a288ecf4fe2532d/pillow-11.3.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:4c834a3921375c48ee6b9624061076bc0a32a60b5532b322cc0ea64e639dd50e", size = 5281110, upload-time = "2025-07-01T09:14:59.79Z" }, - { url = "https://files.pythonhosted.org/packages/44/d6/b79754ca790f315918732e18f82a8146d33bcd7f4494380457ea89eb883d/pillow-11.3.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:5e05688ccef30ea69b9317a9ead994b93975104a677a36a8ed8106be9260aa6d", size = 4689547, upload-time = "2025-07-01T09:15:01.648Z" }, - { url = "https://files.pythonhosted.org/packages/49/20/716b8717d331150cb00f7fdd78169c01e8e0c219732a78b0e59b6bdb2fd6/pillow-11.3.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:1019b04af07fc0163e2810167918cb5add8d74674b6267616021ab558dc98ced", size = 5901554, upload-time = "2025-07-03T13:10:27.018Z" }, - { url = "https://files.pythonhosted.org/packages/74/cf/a9f3a2514a65bb071075063a96f0a5cf949c2f2fce683c15ccc83b1c1cab/pillow-11.3.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f944255db153ebb2b19c51fe85dd99ef0ce494123f21b9db4877ffdfc5590c7c", size = 7669132, upload-time = "2025-07-03T13:10:33.01Z" }, - { url = "https://files.pythonhosted.org/packages/98/3c/da78805cbdbee9cb43efe8261dd7cc0b4b93f2ac79b676c03159e9db2187/pillow-11.3.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1f85acb69adf2aaee8b7da124efebbdb959a104db34d3a2cb0f3793dbae422a8", size = 6005001, upload-time = "2025-07-01T09:15:03.365Z" }, - { url = "https://files.pythonhosted.org/packages/6c/fa/ce044b91faecf30e635321351bba32bab5a7e034c60187fe9698191aef4f/pillow-11.3.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:05f6ecbeff5005399bb48d198f098a9b4b6bdf27b8487c7f38ca16eeb070cd59", size = 6668814, upload-time = "2025-07-01T09:15:05.655Z" }, - { url = "https://files.pythonhosted.org/packages/7b/51/90f9291406d09bf93686434f9183aba27b831c10c87746ff49f127ee80cb/pillow-11.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:a7bc6e6fd0395bc052f16b1a8670859964dbd7003bd0af2ff08342eb6e442cfe", size = 6113124, upload-time = "2025-07-01T09:15:07.358Z" }, - { url = "https://files.pythonhosted.org/packages/cd/5a/6fec59b1dfb619234f7636d4157d11fb4e196caeee220232a8d2ec48488d/pillow-11.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:83e1b0161c9d148125083a35c1c5a89db5b7054834fd4387499e06552035236c", size = 6747186, upload-time = "2025-07-01T09:15:09.317Z" }, - { url = "https://files.pythonhosted.org/packages/49/6b/00187a044f98255225f172de653941e61da37104a9ea60e4f6887717e2b5/pillow-11.3.0-cp313-cp313t-win32.whl", hash = "sha256:2a3117c06b8fb646639dce83694f2f9eac405472713fcb1ae887469c0d4f6788", size = 6277546, upload-time = "2025-07-01T09:15:11.311Z" }, - { url = "https://files.pythonhosted.org/packages/e8/5c/6caaba7e261c0d75bab23be79f1d06b5ad2a2ae49f028ccec801b0e853d6/pillow-11.3.0-cp313-cp313t-win_amd64.whl", hash = "sha256:857844335c95bea93fb39e0fa2726b4d9d758850b34075a7e3ff4f4fa3aa3b31", size = 6985102, upload-time = "2025-07-01T09:15:13.164Z" }, - { url = "https://files.pythonhosted.org/packages/f3/7e/b623008460c09a0cb38263c93b828c666493caee2eb34ff67f778b87e58c/pillow-11.3.0-cp313-cp313t-win_arm64.whl", hash = "sha256:8797edc41f3e8536ae4b10897ee2f637235c94f27404cac7297f7b607dd0716e", size = 2424803, upload-time = "2025-07-01T09:15:15.695Z" }, - { url = "https://files.pythonhosted.org/packages/73/f4/04905af42837292ed86cb1b1dabe03dce1edc008ef14c473c5c7e1443c5d/pillow-11.3.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:d9da3df5f9ea2a89b81bb6087177fb1f4d1c7146d583a3fe5c672c0d94e55e12", size = 5278520, upload-time = "2025-07-01T09:15:17.429Z" }, - { url = "https://files.pythonhosted.org/packages/41/b0/33d79e377a336247df6348a54e6d2a2b85d644ca202555e3faa0cf811ecc/pillow-11.3.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:0b275ff9b04df7b640c59ec5a3cb113eefd3795a8df80bac69646ef699c6981a", size = 4686116, upload-time = "2025-07-01T09:15:19.423Z" }, - { url = "https://files.pythonhosted.org/packages/49/2d/ed8bc0ab219ae8768f529597d9509d184fe8a6c4741a6864fea334d25f3f/pillow-11.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:0743841cabd3dba6a83f38a92672cccbd69af56e3e91777b0ee7f4dba4385632", size = 5864597, upload-time = "2025-07-03T13:10:38.404Z" }, - { url = "https://files.pythonhosted.org/packages/b5/3d/b932bb4225c80b58dfadaca9d42d08d0b7064d2d1791b6a237f87f661834/pillow-11.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:2465a69cf967b8b49ee1b96d76718cd98c4e925414ead59fdf75cf0fd07df673", size = 7638246, upload-time = "2025-07-03T13:10:44.987Z" }, - { url = "https://files.pythonhosted.org/packages/09/b5/0487044b7c096f1b48f0d7ad416472c02e0e4bf6919541b111efd3cae690/pillow-11.3.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:41742638139424703b4d01665b807c6468e23e699e8e90cffefe291c5832b027", size = 5973336, upload-time = "2025-07-01T09:15:21.237Z" }, - { url = "https://files.pythonhosted.org/packages/a8/2d/524f9318f6cbfcc79fbc004801ea6b607ec3f843977652fdee4857a7568b/pillow-11.3.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:93efb0b4de7e340d99057415c749175e24c8864302369e05914682ba642e5d77", size = 6642699, upload-time = "2025-07-01T09:15:23.186Z" }, - { url = "https://files.pythonhosted.org/packages/6f/d2/a9a4f280c6aefedce1e8f615baaa5474e0701d86dd6f1dede66726462bbd/pillow-11.3.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:7966e38dcd0fa11ca390aed7c6f20454443581d758242023cf36fcb319b1a874", size = 6083789, upload-time = "2025-07-01T09:15:25.1Z" }, - { url = "https://files.pythonhosted.org/packages/fe/54/86b0cd9dbb683a9d5e960b66c7379e821a19be4ac5810e2e5a715c09a0c0/pillow-11.3.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:98a9afa7b9007c67ed84c57c9e0ad86a6000da96eaa638e4f8abe5b65ff83f0a", size = 6720386, upload-time = "2025-07-01T09:15:27.378Z" }, - { url = "https://files.pythonhosted.org/packages/e7/95/88efcaf384c3588e24259c4203b909cbe3e3c2d887af9e938c2022c9dd48/pillow-11.3.0-cp314-cp314-win32.whl", hash = "sha256:02a723e6bf909e7cea0dac1b0e0310be9d7650cd66222a5f1c571455c0a45214", size = 6370911, upload-time = "2025-07-01T09:15:29.294Z" }, - { url = "https://files.pythonhosted.org/packages/2e/cc/934e5820850ec5eb107e7b1a72dd278140731c669f396110ebc326f2a503/pillow-11.3.0-cp314-cp314-win_amd64.whl", hash = "sha256:a418486160228f64dd9e9efcd132679b7a02a5f22c982c78b6fc7dab3fefb635", size = 7117383, upload-time = "2025-07-01T09:15:31.128Z" }, - { url = "https://files.pythonhosted.org/packages/d6/e9/9c0a616a71da2a5d163aa37405e8aced9a906d574b4a214bede134e731bc/pillow-11.3.0-cp314-cp314-win_arm64.whl", hash = "sha256:155658efb5e044669c08896c0c44231c5e9abcaadbc5cd3648df2f7c0b96b9a6", size = 2511385, upload-time = "2025-07-01T09:15:33.328Z" }, - { url = "https://files.pythonhosted.org/packages/1a/33/c88376898aff369658b225262cd4f2659b13e8178e7534df9e6e1fa289f6/pillow-11.3.0-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:59a03cdf019efbfeeed910bf79c7c93255c3d54bc45898ac2a4140071b02b4ae", size = 5281129, upload-time = "2025-07-01T09:15:35.194Z" }, - { url = "https://files.pythonhosted.org/packages/1f/70/d376247fb36f1844b42910911c83a02d5544ebd2a8bad9efcc0f707ea774/pillow-11.3.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:f8a5827f84d973d8636e9dc5764af4f0cf2318d26744b3d902931701b0d46653", size = 4689580, upload-time = "2025-07-01T09:15:37.114Z" }, - { url = "https://files.pythonhosted.org/packages/eb/1c/537e930496149fbac69efd2fc4329035bbe2e5475b4165439e3be9cb183b/pillow-11.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:ee92f2fd10f4adc4b43d07ec5e779932b4eb3dbfbc34790ada5a6669bc095aa6", size = 5902860, upload-time = "2025-07-03T13:10:50.248Z" }, - { url = "https://files.pythonhosted.org/packages/bd/57/80f53264954dcefeebcf9dae6e3eb1daea1b488f0be8b8fef12f79a3eb10/pillow-11.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c96d333dcf42d01f47b37e0979b6bd73ec91eae18614864622d9b87bbd5bbf36", size = 7670694, upload-time = "2025-07-03T13:10:56.432Z" }, - { url = "https://files.pythonhosted.org/packages/70/ff/4727d3b71a8578b4587d9c276e90efad2d6fe0335fd76742a6da08132e8c/pillow-11.3.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4c96f993ab8c98460cd0c001447bff6194403e8b1d7e149ade5f00594918128b", size = 6005888, upload-time = "2025-07-01T09:15:39.436Z" }, - { url = "https://files.pythonhosted.org/packages/05/ae/716592277934f85d3be51d7256f3636672d7b1abfafdc42cf3f8cbd4b4c8/pillow-11.3.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:41342b64afeba938edb034d122b2dda5db2139b9a4af999729ba8818e0056477", size = 6670330, upload-time = "2025-07-01T09:15:41.269Z" }, - { url = "https://files.pythonhosted.org/packages/e7/bb/7fe6cddcc8827b01b1a9766f5fdeb7418680744f9082035bdbabecf1d57f/pillow-11.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:068d9c39a2d1b358eb9f245ce7ab1b5c3246c7c8c7d9ba58cfa5b43146c06e50", size = 6114089, upload-time = "2025-07-01T09:15:43.13Z" }, - { url = "https://files.pythonhosted.org/packages/8b/f5/06bfaa444c8e80f1a8e4bff98da9c83b37b5be3b1deaa43d27a0db37ef84/pillow-11.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:a1bc6ba083b145187f648b667e05a2534ecc4b9f2784c2cbe3089e44868f2b9b", size = 6748206, upload-time = "2025-07-01T09:15:44.937Z" }, - { url = "https://files.pythonhosted.org/packages/f0/77/bc6f92a3e8e6e46c0ca78abfffec0037845800ea38c73483760362804c41/pillow-11.3.0-cp314-cp314t-win32.whl", hash = "sha256:118ca10c0d60b06d006be10a501fd6bbdfef559251ed31b794668ed569c87e12", size = 6377370, upload-time = "2025-07-01T09:15:46.673Z" }, - { url = "https://files.pythonhosted.org/packages/4a/82/3a721f7d69dca802befb8af08b7c79ebcab461007ce1c18bd91a5d5896f9/pillow-11.3.0-cp314-cp314t-win_amd64.whl", hash = "sha256:8924748b688aa210d79883357d102cd64690e56b923a186f35a82cbc10f997db", size = 7121500, upload-time = "2025-07-01T09:15:48.512Z" }, - { url = "https://files.pythonhosted.org/packages/89/c7/5572fa4a3f45740eaab6ae86fcdf7195b55beac1371ac8c619d880cfe948/pillow-11.3.0-cp314-cp314t-win_arm64.whl", hash = "sha256:79ea0d14d3ebad43ec77ad5272e6ff9bba5b679ef73375ea760261207fa8e0aa", size = 2512835, upload-time = "2025-07-01T09:15:50.399Z" }, +version = "12.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d0/02/d52c733a2452ef1ffcc123b68e6606d07276b0e358db70eabad7e40042b7/pillow-12.1.0.tar.gz", hash = "sha256:5c5ae0a06e9ea030ab786b0251b32c7e4ce10e58d983c0d5c56029455180b5b9", size = 46977283, upload-time = "2026-01-02T09:13:29.892Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/20/31/dc53fe21a2f2996e1b7d92bf671cdb157079385183ef7c1ae08b485db510/pillow-12.1.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:a332ac4ccb84b6dde65dbace8431f3af08874bf9770719d32a635c4ef411b18b", size = 5262642, upload-time = "2026-01-02T09:11:10.138Z" }, + { url = "https://files.pythonhosted.org/packages/ab/c1/10e45ac9cc79419cedf5121b42dcca5a50ad2b601fa080f58c22fb27626e/pillow-12.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:907bfa8a9cb790748a9aa4513e37c88c59660da3bcfffbd24a7d9e6abf224551", size = 4657464, upload-time = "2026-01-02T09:11:12.319Z" }, + { url = "https://files.pythonhosted.org/packages/ad/26/7b82c0ab7ef40ebede7a97c72d473bda5950f609f8e0c77b04af574a0ddb/pillow-12.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:efdc140e7b63b8f739d09a99033aa430accce485ff78e6d311973a67b6bf3208", size = 6234878, upload-time = "2026-01-02T09:11:14.096Z" }, + { url = "https://files.pythonhosted.org/packages/76/25/27abc9792615b5e886ca9411ba6637b675f1b77af3104710ac7353fe5605/pillow-12.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:bef9768cab184e7ae6e559c032e95ba8d07b3023c289f79a2bd36e8bf85605a5", size = 8044868, upload-time = "2026-01-02T09:11:15.903Z" }, + { url = "https://files.pythonhosted.org/packages/0a/ea/f200a4c36d836100e7bc738fc48cd963d3ba6372ebc8298a889e0cfc3359/pillow-12.1.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:742aea052cf5ab5034a53c3846165bc3ce88d7c38e954120db0ab867ca242661", size = 6349468, upload-time = "2026-01-02T09:11:17.631Z" }, + { url = "https://files.pythonhosted.org/packages/11/8f/48d0b77ab2200374c66d344459b8958c86693be99526450e7aee714e03e4/pillow-12.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a6dfc2af5b082b635af6e08e0d1f9f1c4e04d17d4e2ca0ef96131e85eda6eb17", size = 7041518, upload-time = "2026-01-02T09:11:19.389Z" }, + { url = "https://files.pythonhosted.org/packages/1d/23/c281182eb986b5d31f0a76d2a2c8cd41722d6fb8ed07521e802f9bba52de/pillow-12.1.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:609e89d9f90b581c8d16358c9087df76024cf058fa693dd3e1e1620823f39670", size = 6462829, upload-time = "2026-01-02T09:11:21.28Z" }, + { url = "https://files.pythonhosted.org/packages/25/ef/7018273e0faac099d7b00982abdcc39142ae6f3bd9ceb06de09779c4a9d6/pillow-12.1.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:43b4899cfd091a9693a1278c4982f3e50f7fb7cff5153b05174b4afc9593b616", size = 7166756, upload-time = "2026-01-02T09:11:23.559Z" }, + { url = "https://files.pythonhosted.org/packages/8f/c8/993d4b7ab2e341fe02ceef9576afcf5830cdec640be2ac5bee1820d693d4/pillow-12.1.0-cp312-cp312-win32.whl", hash = "sha256:aa0c9cc0b82b14766a99fbe6084409972266e82f459821cd26997a488a7261a7", size = 6328770, upload-time = "2026-01-02T09:11:25.661Z" }, + { url = "https://files.pythonhosted.org/packages/a7/87/90b358775a3f02765d87655237229ba64a997b87efa8ccaca7dd3e36e7a7/pillow-12.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:d70534cea9e7966169ad29a903b99fc507e932069a881d0965a1a84bb57f6c6d", size = 7033406, upload-time = "2026-01-02T09:11:27.474Z" }, + { url = "https://files.pythonhosted.org/packages/5d/cf/881b457eccacac9e5b2ddd97d5071fb6d668307c57cbf4e3b5278e06e536/pillow-12.1.0-cp312-cp312-win_arm64.whl", hash = "sha256:65b80c1ee7e14a87d6a068dd3b0aea268ffcabfe0498d38661b00c5b4b22e74c", size = 2452612, upload-time = "2026-01-02T09:11:29.309Z" }, + { url = "https://files.pythonhosted.org/packages/dd/c7/2530a4aa28248623e9d7f27316b42e27c32ec410f695929696f2e0e4a778/pillow-12.1.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl", hash = "sha256:7b5dd7cbae20285cdb597b10eb5a2c13aa9de6cde9bb64a3c1317427b1db1ae1", size = 4062543, upload-time = "2026-01-02T09:11:31.566Z" }, + { url = "https://files.pythonhosted.org/packages/8f/1f/40b8eae823dc1519b87d53c30ed9ef085506b05281d313031755c1705f73/pillow-12.1.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:29a4cef9cb672363926f0470afc516dbf7305a14d8c54f7abbb5c199cd8f8179", size = 4138373, upload-time = "2026-01-02T09:11:33.367Z" }, + { url = "https://files.pythonhosted.org/packages/d4/77/6fa60634cf06e52139fd0e89e5bbf055e8166c691c42fb162818b7fda31d/pillow-12.1.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:681088909d7e8fa9e31b9799aaa59ba5234c58e5e4f1951b4c4d1082a2e980e0", size = 3601241, upload-time = "2026-01-02T09:11:35.011Z" }, + { url = "https://files.pythonhosted.org/packages/4f/bf/28ab865de622e14b747f0cd7877510848252d950e43002e224fb1c9ababf/pillow-12.1.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:983976c2ab753166dc66d36af6e8ec15bb511e4a25856e2227e5f7e00a160587", size = 5262410, upload-time = "2026-01-02T09:11:36.682Z" }, + { url = "https://files.pythonhosted.org/packages/1c/34/583420a1b55e715937a85bd48c5c0991598247a1fd2eb5423188e765ea02/pillow-12.1.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:db44d5c160a90df2d24a24760bbd37607d53da0b34fb546c4c232af7192298ac", size = 4657312, upload-time = "2026-01-02T09:11:38.535Z" }, + { url = "https://files.pythonhosted.org/packages/1d/fd/f5a0896839762885b3376ff04878f86ab2b097c2f9a9cdccf4eda8ba8dc0/pillow-12.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:6b7a9d1db5dad90e2991645874f708e87d9a3c370c243c2d7684d28f7e133e6b", size = 6232605, upload-time = "2026-01-02T09:11:40.602Z" }, + { url = "https://files.pythonhosted.org/packages/98/aa/938a09d127ac1e70e6ed467bd03834350b33ef646b31edb7452d5de43792/pillow-12.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:6258f3260986990ba2fa8a874f8b6e808cf5abb51a94015ca3dc3c68aa4f30ea", size = 8041617, upload-time = "2026-01-02T09:11:42.721Z" }, + { url = "https://files.pythonhosted.org/packages/17/e8/538b24cb426ac0186e03f80f78bc8dc7246c667f58b540bdd57c71c9f79d/pillow-12.1.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e115c15e3bc727b1ca3e641a909f77f8ca72a64fff150f666fcc85e57701c26c", size = 6346509, upload-time = "2026-01-02T09:11:44.955Z" }, + { url = "https://files.pythonhosted.org/packages/01/9a/632e58ec89a32738cabfd9ec418f0e9898a2b4719afc581f07c04a05e3c9/pillow-12.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6741e6f3074a35e47c77b23a4e4f2d90db3ed905cb1c5e6e0d49bff2045632bc", size = 7038117, upload-time = "2026-01-02T09:11:46.736Z" }, + { url = "https://files.pythonhosted.org/packages/c7/a2/d40308cf86eada842ca1f3ffa45d0ca0df7e4ab33c83f81e73f5eaed136d/pillow-12.1.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:935b9d1aed48fcfb3f838caac506f38e29621b44ccc4f8a64d575cb1b2a88644", size = 6460151, upload-time = "2026-01-02T09:11:48.625Z" }, + { url = "https://files.pythonhosted.org/packages/f1/88/f5b058ad6453a085c5266660a1417bdad590199da1b32fb4efcff9d33b05/pillow-12.1.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5fee4c04aad8932da9f8f710af2c1a15a83582cfb884152a9caa79d4efcdbf9c", size = 7164534, upload-time = "2026-01-02T09:11:50.445Z" }, + { url = "https://files.pythonhosted.org/packages/19/ce/c17334caea1db789163b5d855a5735e47995b0b5dc8745e9a3605d5f24c0/pillow-12.1.0-cp313-cp313-win32.whl", hash = "sha256:a786bf667724d84aa29b5db1c61b7bfdde380202aaca12c3461afd6b71743171", size = 6332551, upload-time = "2026-01-02T09:11:52.234Z" }, + { url = "https://files.pythonhosted.org/packages/e5/07/74a9d941fa45c90a0d9465098fe1ec85de3e2afbdc15cc4766622d516056/pillow-12.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:461f9dfdafa394c59cd6d818bdfdbab4028b83b02caadaff0ffd433faf4c9a7a", size = 7040087, upload-time = "2026-01-02T09:11:54.822Z" }, + { url = "https://files.pythonhosted.org/packages/88/09/c99950c075a0e9053d8e880595926302575bc742b1b47fe1bbcc8d388d50/pillow-12.1.0-cp313-cp313-win_arm64.whl", hash = "sha256:9212d6b86917a2300669511ed094a9406888362e085f2431a7da985a6b124f45", size = 2452470, upload-time = "2026-01-02T09:11:56.522Z" }, + { url = "https://files.pythonhosted.org/packages/b5/ba/970b7d85ba01f348dee4d65412476321d40ee04dcb51cd3735b9dc94eb58/pillow-12.1.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:00162e9ca6d22b7c3ee8e61faa3c3253cd19b6a37f126cad04f2f88b306f557d", size = 5264816, upload-time = "2026-01-02T09:11:58.227Z" }, + { url = "https://files.pythonhosted.org/packages/10/60/650f2fb55fdba7a510d836202aa52f0baac633e50ab1cf18415d332188fb/pillow-12.1.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:7d6daa89a00b58c37cb1747ec9fb7ac3bc5ffd5949f5888657dfddde6d1312e0", size = 4660472, upload-time = "2026-01-02T09:12:00.798Z" }, + { url = "https://files.pythonhosted.org/packages/2b/c0/5273a99478956a099d533c4f46cbaa19fd69d606624f4334b85e50987a08/pillow-12.1.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:e2479c7f02f9d505682dc47df8c0ea1fc5e264c4d1629a5d63fe3e2334b89554", size = 6268974, upload-time = "2026-01-02T09:12:02.572Z" }, + { url = "https://files.pythonhosted.org/packages/b4/26/0bf714bc2e73d5267887d47931d53c4ceeceea6978148ed2ab2a4e6463c4/pillow-12.1.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f188d580bd870cda1e15183790d1cc2fa78f666e76077d103edf048eed9c356e", size = 8073070, upload-time = "2026-01-02T09:12:04.75Z" }, + { url = "https://files.pythonhosted.org/packages/43/cf/1ea826200de111a9d65724c54f927f3111dc5ae297f294b370a670c17786/pillow-12.1.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0fde7ec5538ab5095cc02df38ee99b0443ff0e1c847a045554cf5f9af1f4aa82", size = 6380176, upload-time = "2026-01-02T09:12:06.626Z" }, + { url = "https://files.pythonhosted.org/packages/03/e0/7938dd2b2013373fd85d96e0f38d62b7a5a262af21ac274250c7ca7847c9/pillow-12.1.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0ed07dca4a8464bada6139ab38f5382f83e5f111698caf3191cb8dbf27d908b4", size = 7067061, upload-time = "2026-01-02T09:12:08.624Z" }, + { url = "https://files.pythonhosted.org/packages/86/ad/a2aa97d37272a929a98437a8c0ac37b3cf012f4f8721e1bd5154699b2518/pillow-12.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:f45bd71d1fa5e5749587613037b172e0b3b23159d1c00ef2fc920da6f470e6f0", size = 6491824, upload-time = "2026-01-02T09:12:10.488Z" }, + { url = "https://files.pythonhosted.org/packages/a4/44/80e46611b288d51b115826f136fb3465653c28f491068a72d3da49b54cd4/pillow-12.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:277518bf4fe74aa91489e1b20577473b19ee70fb97c374aa50830b279f25841b", size = 7190911, upload-time = "2026-01-02T09:12:12.772Z" }, + { url = "https://files.pythonhosted.org/packages/86/77/eacc62356b4cf81abe99ff9dbc7402750044aed02cfd6a503f7c6fc11f3e/pillow-12.1.0-cp313-cp313t-win32.whl", hash = "sha256:7315f9137087c4e0ee73a761b163fc9aa3b19f5f606a7fc08d83fd3e4379af65", size = 6336445, upload-time = "2026-01-02T09:12:14.775Z" }, + { url = "https://files.pythonhosted.org/packages/e7/3c/57d81d0b74d218706dafccb87a87ea44262c43eef98eb3b164fd000e0491/pillow-12.1.0-cp313-cp313t-win_amd64.whl", hash = "sha256:0ddedfaa8b5f0b4ffbc2fa87b556dc59f6bb4ecb14a53b33f9189713ae8053c0", size = 7045354, upload-time = "2026-01-02T09:12:16.599Z" }, + { url = "https://files.pythonhosted.org/packages/ac/82/8b9b97bba2e3576a340f93b044a3a3a09841170ab4c1eb0d5c93469fd32f/pillow-12.1.0-cp313-cp313t-win_arm64.whl", hash = "sha256:80941e6d573197a0c28f394753de529bb436b1ca990ed6e765cf42426abc39f8", size = 2454547, upload-time = "2026-01-02T09:12:18.704Z" }, + { url = "https://files.pythonhosted.org/packages/8c/87/bdf971d8bbcf80a348cc3bacfcb239f5882100fe80534b0ce67a784181d8/pillow-12.1.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl", hash = "sha256:5cb7bc1966d031aec37ddb9dcf15c2da5b2e9f7cc3ca7c54473a20a927e1eb91", size = 4062533, upload-time = "2026-01-02T09:12:20.791Z" }, + { url = "https://files.pythonhosted.org/packages/ff/4f/5eb37a681c68d605eb7034c004875c81f86ec9ef51f5be4a63eadd58859a/pillow-12.1.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:97e9993d5ed946aba26baf9c1e8cf18adbab584b99f452ee72f7ee8acb882796", size = 4138546, upload-time = "2026-01-02T09:12:23.664Z" }, + { url = "https://files.pythonhosted.org/packages/11/6d/19a95acb2edbace40dcd582d077b991646b7083c41b98da4ed7555b59733/pillow-12.1.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:414b9a78e14ffeb98128863314e62c3f24b8a86081066625700b7985b3f529bd", size = 3601163, upload-time = "2026-01-02T09:12:26.338Z" }, + { url = "https://files.pythonhosted.org/packages/fc/36/2b8138e51cb42e4cc39c3297713455548be855a50558c3ac2beebdc251dd/pillow-12.1.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:e6bdb408f7c9dd2a5ff2b14a3b0bb6d4deb29fb9961e6eb3ae2031ae9a5cec13", size = 5266086, upload-time = "2026-01-02T09:12:28.782Z" }, + { url = "https://files.pythonhosted.org/packages/53/4b/649056e4d22e1caa90816bf99cef0884aed607ed38075bd75f091a607a38/pillow-12.1.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:3413c2ae377550f5487991d444428f1a8ae92784aac79caa8b1e3b89b175f77e", size = 4657344, upload-time = "2026-01-02T09:12:31.117Z" }, + { url = "https://files.pythonhosted.org/packages/6c/6b/c5742cea0f1ade0cd61485dc3d81f05261fc2276f537fbdc00802de56779/pillow-12.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:e5dcbe95016e88437ecf33544ba5db21ef1b8dd6e1b434a2cb2a3d605299e643", size = 6232114, upload-time = "2026-01-02T09:12:32.936Z" }, + { url = "https://files.pythonhosted.org/packages/bf/8f/9f521268ce22d63991601aafd3d48d5ff7280a246a1ef62d626d67b44064/pillow-12.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d0a7735df32ccbcc98b98a1ac785cc4b19b580be1bdf0aeb5c03223220ea09d5", size = 8042708, upload-time = "2026-01-02T09:12:34.78Z" }, + { url = "https://files.pythonhosted.org/packages/1a/eb/257f38542893f021502a1bbe0c2e883c90b5cff26cc33b1584a841a06d30/pillow-12.1.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0c27407a2d1b96774cbc4a7594129cc027339fd800cd081e44497722ea1179de", size = 6347762, upload-time = "2026-01-02T09:12:36.748Z" }, + { url = "https://files.pythonhosted.org/packages/c4/5a/8ba375025701c09b309e8d5163c5a4ce0102fa86bbf8800eb0d7ac87bc51/pillow-12.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:15c794d74303828eaa957ff8070846d0efe8c630901a1c753fdc63850e19ecd9", size = 7039265, upload-time = "2026-01-02T09:12:39.082Z" }, + { url = "https://files.pythonhosted.org/packages/cf/dc/cf5e4cdb3db533f539e88a7bbf9f190c64ab8a08a9bc7a4ccf55067872e4/pillow-12.1.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:c990547452ee2800d8506c4150280757f88532f3de2a58e3022e9b179107862a", size = 6462341, upload-time = "2026-01-02T09:12:40.946Z" }, + { url = "https://files.pythonhosted.org/packages/d0/47/0291a25ac9550677e22eda48510cfc4fa4b2ef0396448b7fbdc0a6946309/pillow-12.1.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:b63e13dd27da389ed9475b3d28510f0f954bca0041e8e551b2a4eb1eab56a39a", size = 7165395, upload-time = "2026-01-02T09:12:42.706Z" }, + { url = "https://files.pythonhosted.org/packages/4f/4c/e005a59393ec4d9416be06e6b45820403bb946a778e39ecec62f5b2b991e/pillow-12.1.0-cp314-cp314-win32.whl", hash = "sha256:1a949604f73eb07a8adab38c4fe50791f9919344398bdc8ac6b307f755fc7030", size = 6431413, upload-time = "2026-01-02T09:12:44.944Z" }, + { url = "https://files.pythonhosted.org/packages/1c/af/f23697f587ac5f9095d67e31b81c95c0249cd461a9798a061ed6709b09b5/pillow-12.1.0-cp314-cp314-win_amd64.whl", hash = "sha256:4f9f6a650743f0ddee5593ac9e954ba1bdbc5e150bc066586d4f26127853ab94", size = 7176779, upload-time = "2026-01-02T09:12:46.727Z" }, + { url = "https://files.pythonhosted.org/packages/b3/36/6a51abf8599232f3e9afbd16d52829376a68909fe14efe29084445db4b73/pillow-12.1.0-cp314-cp314-win_arm64.whl", hash = "sha256:808b99604f7873c800c4840f55ff389936ef1948e4e87645eaf3fccbc8477ac4", size = 2543105, upload-time = "2026-01-02T09:12:49.243Z" }, + { url = "https://files.pythonhosted.org/packages/82/54/2e1dd20c8749ff225080d6ba465a0cab4387f5db0d1c5fb1439e2d99923f/pillow-12.1.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:bc11908616c8a283cf7d664f77411a5ed2a02009b0097ff8abbba5e79128ccf2", size = 5268571, upload-time = "2026-01-02T09:12:51.11Z" }, + { url = "https://files.pythonhosted.org/packages/57/61/571163a5ef86ec0cf30d265ac2a70ae6fc9e28413d1dc94fa37fae6bda89/pillow-12.1.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:896866d2d436563fa2a43a9d72f417874f16b5545955c54a64941e87c1376c61", size = 4660426, upload-time = "2026-01-02T09:12:52.865Z" }, + { url = "https://files.pythonhosted.org/packages/5e/e1/53ee5163f794aef1bf84243f755ee6897a92c708505350dd1923f4afec48/pillow-12.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:8e178e3e99d3c0ea8fc64b88447f7cac8ccf058af422a6cedc690d0eadd98c51", size = 6269908, upload-time = "2026-01-02T09:12:54.884Z" }, + { url = "https://files.pythonhosted.org/packages/bc/0b/b4b4106ff0ee1afa1dc599fde6ab230417f800279745124f6c50bcffed8e/pillow-12.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:079af2fb0c599c2ec144ba2c02766d1b55498e373b3ac64687e43849fbbef5bc", size = 8074733, upload-time = "2026-01-02T09:12:56.802Z" }, + { url = "https://files.pythonhosted.org/packages/19/9f/80b411cbac4a732439e629a26ad3ef11907a8c7fc5377b7602f04f6fe4e7/pillow-12.1.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bdec5e43377761c5dbca620efb69a77f6855c5a379e32ac5b158f54c84212b14", size = 6381431, upload-time = "2026-01-02T09:12:58.823Z" }, + { url = "https://files.pythonhosted.org/packages/8f/b7/d65c45db463b66ecb6abc17c6ba6917a911202a07662247e1355ce1789e7/pillow-12.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:565c986f4b45c020f5421a4cea13ef294dde9509a8577f29b2fc5edc7587fff8", size = 7068529, upload-time = "2026-01-02T09:13:00.885Z" }, + { url = "https://files.pythonhosted.org/packages/50/96/dfd4cd726b4a45ae6e3c669fc9e49deb2241312605d33aba50499e9d9bd1/pillow-12.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:43aca0a55ce1eefc0aefa6253661cb54571857b1a7b2964bd8a1e3ef4b729924", size = 6492981, upload-time = "2026-01-02T09:13:03.314Z" }, + { url = "https://files.pythonhosted.org/packages/4d/1c/b5dc52cf713ae46033359c5ca920444f18a6359ce1020dd3e9c553ea5bc6/pillow-12.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:0deedf2ea233722476b3a81e8cdfbad786f7adbed5d848469fa59fe52396e4ef", size = 7191878, upload-time = "2026-01-02T09:13:05.276Z" }, + { url = "https://files.pythonhosted.org/packages/53/26/c4188248bd5edaf543864fe4834aebe9c9cb4968b6f573ce014cc42d0720/pillow-12.1.0-cp314-cp314t-win32.whl", hash = "sha256:b17fbdbe01c196e7e159aacb889e091f28e61020a8abeac07b68079b6e626988", size = 6438703, upload-time = "2026-01-02T09:13:07.491Z" }, + { url = "https://files.pythonhosted.org/packages/b8/0e/69ed296de8ea05cb03ee139cee600f424ca166e632567b2d66727f08c7ed/pillow-12.1.0-cp314-cp314t-win_amd64.whl", hash = "sha256:27b9baecb428899db6c0de572d6d305cfaf38ca1596b5c0542a5182e3e74e8c6", size = 7182927, upload-time = "2026-01-02T09:13:09.841Z" }, + { url = "https://files.pythonhosted.org/packages/fc/f5/68334c015eed9b5cff77814258717dec591ded209ab5b6fb70e2ae873d1d/pillow-12.1.0-cp314-cp314t-win_arm64.whl", hash = "sha256:f61333d817698bdcdd0f9d7793e365ac3d2a21c1f1eb02b32ad6aefb8d8ea831", size = 2545104, upload-time = "2026-01-02T09:13:12.068Z" }, ] [[package]] name = "platformdirs" -version = "4.4.0" +version = "4.5.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/23/e8/21db9c9987b0e728855bd57bff6984f67952bea55d6f75e055c46b5383e8/platformdirs-4.4.0.tar.gz", hash = "sha256:ca753cf4d81dc309bc67b0ea38fd15dc97bc30ce419a7f58d13eb3bf14c4febf", size = 21634, upload-time = "2025-08-26T14:32:04.268Z" } +sdist = { url = "https://files.pythonhosted.org/packages/cf/86/0248f086a84f01b37aaec0fa567b397df1a119f73c16f6c7a9aac73ea309/platformdirs-4.5.1.tar.gz", hash = "sha256:61d5cdcc6065745cdd94f0f878977f8de9437be93de97c1c12f853c9c0cdcbda", size = 21715, upload-time = "2025-12-05T13:52:58.638Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/40/4b/2028861e724d3bd36227adfa20d3fd24c3fc6d52032f4a93c133be5d17ce/platformdirs-4.4.0-py3-none-any.whl", hash = "sha256:abd01743f24e5287cd7a5db3752faf1a2d65353f38ec26d98e25a6db65958c85", size = 18654, upload-time = "2025-08-26T14:32:02.735Z" }, + { url = "https://files.pythonhosted.org/packages/cb/28/3bfe2fa5a7b9c46fe7e13c97bda14c895fb10fa2ebf1d0abb90e0cea7ee1/platformdirs-4.5.1-py3-none-any.whl", hash = "sha256:d03afa3963c806a9bed9d5125c8f4cb2fdaf74a55ab60e5d59b3fde758104d31", size = 18731, upload-time = "2025-12-05T13:52:56.823Z" }, ] [[package]] @@ -1418,7 +1564,7 @@ wheels = [ [[package]] name = "pre-commit" -version = "4.3.0" +version = "4.5.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "cfgv" }, @@ -1427,9 +1573,9 @@ dependencies = [ { name = "pyyaml" }, { name = "virtualenv" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/ff/29/7cf5bbc236333876e4b41f56e06857a87937ce4bf91e117a6991a2dbb02a/pre_commit-4.3.0.tar.gz", hash = "sha256:499fe450cc9d42e9d58e606262795ecb64dd05438943c62b66f6a8673da30b16", size = 193792, upload-time = "2025-08-09T18:56:14.651Z" } +sdist = { url = "https://files.pythonhosted.org/packages/40/f1/6d86a29246dfd2e9b6237f0b5823717f60cad94d47ddc26afa916d21f525/pre_commit-4.5.1.tar.gz", hash = "sha256:eb545fcff725875197837263e977ea257a402056661f09dae08e4b149b030a61", size = 198232, upload-time = "2025-12-16T21:14:33.552Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/5b/a5/987a405322d78a73b66e39e4a90e4ef156fd7141bf71df987e50717c321b/pre_commit-4.3.0-py2.py3-none-any.whl", hash = "sha256:2b0747ad7e6e967169136edffee14c16e148a778a54e4f967921aa1ebf2308d8", size = 220965, upload-time = "2025-08-09T18:56:13.192Z" }, + { url = "https://files.pythonhosted.org/packages/5d/19/fd3ef348460c80af7bb4669ea7926651d1f95c23ff2df18b9d24bab4f3fa/pre_commit-4.5.1-py2.py3-none-any.whl", hash = "sha256:3b3afd891e97337708c1674210f8eba659b52a38ea5f822ff142d10786221f77", size = 226437, upload-time = "2025-12-16T21:14:32.409Z" }, ] [[package]] @@ -1473,7 +1619,7 @@ wheels = [ [[package]] name = "pydantic" -version = "2.11.9" +version = "2.12.5" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "annotated-types" }, @@ -1481,65 +1627,94 @@ dependencies = [ { name = "typing-extensions" }, { name = "typing-inspection" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/ff/5d/09a551ba512d7ca404d785072700d3f6727a02f6f3c24ecfd081c7cf0aa8/pydantic-2.11.9.tar.gz", hash = "sha256:6b8ffda597a14812a7975c90b82a8a2e777d9257aba3453f973acd3c032a18e2", size = 788495, upload-time = "2025-09-13T11:26:39.325Z" } +sdist = { url = "https://files.pythonhosted.org/packages/69/44/36f1a6e523abc58ae5f928898e4aca2e0ea509b5aa6f6f392a5d882be928/pydantic-2.12.5.tar.gz", hash = "sha256:4d351024c75c0f085a9febbb665ce8c0c6ec5d30e903bdb6394b7ede26aebb49", size = 821591, upload-time = "2025-11-26T15:11:46.471Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/3e/d3/108f2006987c58e76691d5ae5d200dd3e0f532cb4e5fa3560751c3a1feba/pydantic-2.11.9-py3-none-any.whl", hash = "sha256:c42dd626f5cfc1c6950ce6205ea58c93efa406da65f479dcb4029d5934857da2", size = 444855, upload-time = "2025-09-13T11:26:36.909Z" }, + { url = "https://files.pythonhosted.org/packages/5a/87/b70ad306ebb6f9b585f114d0ac2137d792b48be34d732d60e597c2f8465a/pydantic-2.12.5-py3-none-any.whl", hash = "sha256:e561593fccf61e8a20fc46dfc2dfe075b8be7d0188df33f221ad1f0139180f9d", size = 463580, upload-time = "2025-11-26T15:11:44.605Z" }, ] [[package]] name = "pydantic-core" -version = "2.33.2" +version = "2.41.5" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/ad/88/5f2260bdfae97aabf98f1778d43f69574390ad787afb646292a638c923d4/pydantic_core-2.33.2.tar.gz", hash = "sha256:7cb8bc3605c29176e1b105350d2e6474142d7c1bd1d9327c4a9bdb46bf827acc", size = 435195, upload-time = "2025-04-23T18:33:52.104Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/18/8a/2b41c97f554ec8c71f2a8a5f85cb56a8b0956addfe8b0efb5b3d77e8bdc3/pydantic_core-2.33.2-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:a7ec89dc587667f22b6a0b6579c249fca9026ce7c333fc142ba42411fa243cdc", size = 2009000, upload-time = "2025-04-23T18:31:25.863Z" }, - { url = "https://files.pythonhosted.org/packages/a1/02/6224312aacb3c8ecbaa959897af57181fb6cf3a3d7917fd44d0f2917e6f2/pydantic_core-2.33.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3c6db6e52c6d70aa0d00d45cdb9b40f0433b96380071ea80b09277dba021ddf7", size = 1847996, upload-time = "2025-04-23T18:31:27.341Z" }, - { url = "https://files.pythonhosted.org/packages/d6/46/6dcdf084a523dbe0a0be59d054734b86a981726f221f4562aed313dbcb49/pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4e61206137cbc65e6d5256e1166f88331d3b6238e082d9f74613b9b765fb9025", size = 1880957, upload-time = "2025-04-23T18:31:28.956Z" }, - { url = "https://files.pythonhosted.org/packages/ec/6b/1ec2c03837ac00886ba8160ce041ce4e325b41d06a034adbef11339ae422/pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eb8c529b2819c37140eb51b914153063d27ed88e3bdc31b71198a198e921e011", size = 1964199, upload-time = "2025-04-23T18:31:31.025Z" }, - { url = "https://files.pythonhosted.org/packages/2d/1d/6bf34d6adb9debd9136bd197ca72642203ce9aaaa85cfcbfcf20f9696e83/pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c52b02ad8b4e2cf14ca7b3d918f3eb0ee91e63b3167c32591e57c4317e134f8f", size = 2120296, upload-time = "2025-04-23T18:31:32.514Z" }, - { url = "https://files.pythonhosted.org/packages/e0/94/2bd0aaf5a591e974b32a9f7123f16637776c304471a0ab33cf263cf5591a/pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96081f1605125ba0855dfda83f6f3df5ec90c61195421ba72223de35ccfb2f88", size = 2676109, upload-time = "2025-04-23T18:31:33.958Z" }, - { url = "https://files.pythonhosted.org/packages/f9/41/4b043778cf9c4285d59742281a769eac371b9e47e35f98ad321349cc5d61/pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f57a69461af2a5fa6e6bbd7a5f60d3b7e6cebb687f55106933188e79ad155c1", size = 2002028, upload-time = "2025-04-23T18:31:39.095Z" }, - { url = "https://files.pythonhosted.org/packages/cb/d5/7bb781bf2748ce3d03af04d5c969fa1308880e1dca35a9bd94e1a96a922e/pydantic_core-2.33.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:572c7e6c8bb4774d2ac88929e3d1f12bc45714ae5ee6d9a788a9fb35e60bb04b", size = 2100044, upload-time = "2025-04-23T18:31:41.034Z" }, - { url = "https://files.pythonhosted.org/packages/fe/36/def5e53e1eb0ad896785702a5bbfd25eed546cdcf4087ad285021a90ed53/pydantic_core-2.33.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:db4b41f9bd95fbe5acd76d89920336ba96f03e149097365afe1cb092fceb89a1", size = 2058881, upload-time = "2025-04-23T18:31:42.757Z" }, - { url = "https://files.pythonhosted.org/packages/01/6c/57f8d70b2ee57fc3dc8b9610315949837fa8c11d86927b9bb044f8705419/pydantic_core-2.33.2-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:fa854f5cf7e33842a892e5c73f45327760bc7bc516339fda888c75ae60edaeb6", size = 2227034, upload-time = "2025-04-23T18:31:44.304Z" }, - { url = "https://files.pythonhosted.org/packages/27/b9/9c17f0396a82b3d5cbea4c24d742083422639e7bb1d5bf600e12cb176a13/pydantic_core-2.33.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:5f483cfb75ff703095c59e365360cb73e00185e01aaea067cd19acffd2ab20ea", size = 2234187, upload-time = "2025-04-23T18:31:45.891Z" }, - { url = "https://files.pythonhosted.org/packages/b0/6a/adf5734ffd52bf86d865093ad70b2ce543415e0e356f6cacabbc0d9ad910/pydantic_core-2.33.2-cp312-cp312-win32.whl", hash = "sha256:9cb1da0f5a471435a7bc7e439b8a728e8b61e59784b2af70d7c169f8dd8ae290", size = 1892628, upload-time = "2025-04-23T18:31:47.819Z" }, - { url = "https://files.pythonhosted.org/packages/43/e4/5479fecb3606c1368d496a825d8411e126133c41224c1e7238be58b87d7e/pydantic_core-2.33.2-cp312-cp312-win_amd64.whl", hash = "sha256:f941635f2a3d96b2973e867144fde513665c87f13fe0e193c158ac51bfaaa7b2", size = 1955866, upload-time = "2025-04-23T18:31:49.635Z" }, - { url = "https://files.pythonhosted.org/packages/0d/24/8b11e8b3e2be9dd82df4b11408a67c61bb4dc4f8e11b5b0fc888b38118b5/pydantic_core-2.33.2-cp312-cp312-win_arm64.whl", hash = "sha256:cca3868ddfaccfbc4bfb1d608e2ccaaebe0ae628e1416aeb9c4d88c001bb45ab", size = 1888894, upload-time = "2025-04-23T18:31:51.609Z" }, - { url = "https://files.pythonhosted.org/packages/46/8c/99040727b41f56616573a28771b1bfa08a3d3fe74d3d513f01251f79f172/pydantic_core-2.33.2-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:1082dd3e2d7109ad8b7da48e1d4710c8d06c253cbc4a27c1cff4fbcaa97a9e3f", size = 2015688, upload-time = "2025-04-23T18:31:53.175Z" }, - { url = "https://files.pythonhosted.org/packages/3a/cc/5999d1eb705a6cefc31f0b4a90e9f7fc400539b1a1030529700cc1b51838/pydantic_core-2.33.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f517ca031dfc037a9c07e748cefd8d96235088b83b4f4ba8939105d20fa1dcd6", size = 1844808, upload-time = "2025-04-23T18:31:54.79Z" }, - { url = "https://files.pythonhosted.org/packages/6f/5e/a0a7b8885c98889a18b6e376f344da1ef323d270b44edf8174d6bce4d622/pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0a9f2c9dd19656823cb8250b0724ee9c60a82f3cdf68a080979d13092a3b0fef", size = 1885580, upload-time = "2025-04-23T18:31:57.393Z" }, - { url = "https://files.pythonhosted.org/packages/3b/2a/953581f343c7d11a304581156618c3f592435523dd9d79865903272c256a/pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2b0a451c263b01acebe51895bfb0e1cc842a5c666efe06cdf13846c7418caa9a", size = 1973859, upload-time = "2025-04-23T18:31:59.065Z" }, - { url = "https://files.pythonhosted.org/packages/e6/55/f1a813904771c03a3f97f676c62cca0c0a4138654107c1b61f19c644868b/pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ea40a64d23faa25e62a70ad163571c0b342b8bf66d5fa612ac0dec4f069d916", size = 2120810, upload-time = "2025-04-23T18:32:00.78Z" }, - { url = "https://files.pythonhosted.org/packages/aa/c3/053389835a996e18853ba107a63caae0b9deb4a276c6b472931ea9ae6e48/pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0fb2d542b4d66f9470e8065c5469ec676978d625a8b7a363f07d9a501a9cb36a", size = 2676498, upload-time = "2025-04-23T18:32:02.418Z" }, - { url = "https://files.pythonhosted.org/packages/eb/3c/f4abd740877a35abade05e437245b192f9d0ffb48bbbbd708df33d3cda37/pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9fdac5d6ffa1b5a83bca06ffe7583f5576555e6c8b3a91fbd25ea7780f825f7d", size = 2000611, upload-time = "2025-04-23T18:32:04.152Z" }, - { url = "https://files.pythonhosted.org/packages/59/a7/63ef2fed1837d1121a894d0ce88439fe3e3b3e48c7543b2a4479eb99c2bd/pydantic_core-2.33.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:04a1a413977ab517154eebb2d326da71638271477d6ad87a769102f7c2488c56", size = 2107924, upload-time = "2025-04-23T18:32:06.129Z" }, - { url = "https://files.pythonhosted.org/packages/04/8f/2551964ef045669801675f1cfc3b0d74147f4901c3ffa42be2ddb1f0efc4/pydantic_core-2.33.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:c8e7af2f4e0194c22b5b37205bfb293d166a7344a5b0d0eaccebc376546d77d5", size = 2063196, upload-time = "2025-04-23T18:32:08.178Z" }, - { url = "https://files.pythonhosted.org/packages/26/bd/d9602777e77fc6dbb0c7db9ad356e9a985825547dce5ad1d30ee04903918/pydantic_core-2.33.2-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:5c92edd15cd58b3c2d34873597a1e20f13094f59cf88068adb18947df5455b4e", size = 2236389, upload-time = "2025-04-23T18:32:10.242Z" }, - { url = "https://files.pythonhosted.org/packages/42/db/0e950daa7e2230423ab342ae918a794964b053bec24ba8af013fc7c94846/pydantic_core-2.33.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:65132b7b4a1c0beded5e057324b7e16e10910c106d43675d9bd87d4f38dde162", size = 2239223, upload-time = "2025-04-23T18:32:12.382Z" }, - { url = "https://files.pythonhosted.org/packages/58/4d/4f937099c545a8a17eb52cb67fe0447fd9a373b348ccfa9a87f141eeb00f/pydantic_core-2.33.2-cp313-cp313-win32.whl", hash = "sha256:52fb90784e0a242bb96ec53f42196a17278855b0f31ac7c3cc6f5c1ec4811849", size = 1900473, upload-time = "2025-04-23T18:32:14.034Z" }, - { url = "https://files.pythonhosted.org/packages/a0/75/4a0a9bac998d78d889def5e4ef2b065acba8cae8c93696906c3a91f310ca/pydantic_core-2.33.2-cp313-cp313-win_amd64.whl", hash = "sha256:c083a3bdd5a93dfe480f1125926afcdbf2917ae714bdb80b36d34318b2bec5d9", size = 1955269, upload-time = "2025-04-23T18:32:15.783Z" }, - { url = "https://files.pythonhosted.org/packages/f9/86/1beda0576969592f1497b4ce8e7bc8cbdf614c352426271b1b10d5f0aa64/pydantic_core-2.33.2-cp313-cp313-win_arm64.whl", hash = "sha256:e80b087132752f6b3d714f041ccf74403799d3b23a72722ea2e6ba2e892555b9", size = 1893921, upload-time = "2025-04-23T18:32:18.473Z" }, - { url = "https://files.pythonhosted.org/packages/a4/7d/e09391c2eebeab681df2b74bfe6c43422fffede8dc74187b2b0bf6fd7571/pydantic_core-2.33.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:61c18fba8e5e9db3ab908620af374db0ac1baa69f0f32df4f61ae23f15e586ac", size = 1806162, upload-time = "2025-04-23T18:32:20.188Z" }, - { url = "https://files.pythonhosted.org/packages/f1/3d/847b6b1fed9f8ed3bb95a9ad04fbd0b212e832d4f0f50ff4d9ee5a9f15cf/pydantic_core-2.33.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95237e53bb015f67b63c91af7518a62a8660376a6a0db19b89acc77a4d6199f5", size = 1981560, upload-time = "2025-04-23T18:32:22.354Z" }, - { url = "https://files.pythonhosted.org/packages/6f/9a/e73262f6c6656262b5fdd723ad90f518f579b7bc8622e43a942eec53c938/pydantic_core-2.33.2-cp313-cp313t-win_amd64.whl", hash = "sha256:c2fc0a768ef76c15ab9238afa6da7f69895bb5d1ee83aeea2e3509af4472d0b9", size = 1935777, upload-time = "2025-04-23T18:32:25.088Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/71/70/23b021c950c2addd24ec408e9ab05d59b035b39d97cdc1130e1bce647bb6/pydantic_core-2.41.5.tar.gz", hash = "sha256:08daa51ea16ad373ffd5e7606252cc32f07bc72b28284b6bc9c6df804816476e", size = 460952, upload-time = "2025-11-04T13:43:49.098Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5f/5d/5f6c63eebb5afee93bcaae4ce9a898f3373ca23df3ccaef086d0233a35a7/pydantic_core-2.41.5-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:f41a7489d32336dbf2199c8c0a215390a751c5b014c2c1c5366e817202e9cdf7", size = 2110990, upload-time = "2025-11-04T13:39:58.079Z" }, + { url = "https://files.pythonhosted.org/packages/aa/32/9c2e8ccb57c01111e0fd091f236c7b371c1bccea0fa85247ac55b1e2b6b6/pydantic_core-2.41.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:070259a8818988b9a84a449a2a7337c7f430a22acc0859c6b110aa7212a6d9c0", size = 1896003, upload-time = "2025-11-04T13:39:59.956Z" }, + { url = "https://files.pythonhosted.org/packages/68/b8/a01b53cb0e59139fbc9e4fda3e9724ede8de279097179be4ff31f1abb65a/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e96cea19e34778f8d59fe40775a7a574d95816eb150850a85a7a4c8f4b94ac69", size = 1919200, upload-time = "2025-11-04T13:40:02.241Z" }, + { url = "https://files.pythonhosted.org/packages/38/de/8c36b5198a29bdaade07b5985e80a233a5ac27137846f3bc2d3b40a47360/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ed2e99c456e3fadd05c991f8f437ef902e00eedf34320ba2b0842bd1c3ca3a75", size = 2052578, upload-time = "2025-11-04T13:40:04.401Z" }, + { url = "https://files.pythonhosted.org/packages/00/b5/0e8e4b5b081eac6cb3dbb7e60a65907549a1ce035a724368c330112adfdd/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:65840751b72fbfd82c3c640cff9284545342a4f1eb1586ad0636955b261b0b05", size = 2208504, upload-time = "2025-11-04T13:40:06.072Z" }, + { url = "https://files.pythonhosted.org/packages/77/56/87a61aad59c7c5b9dc8caad5a41a5545cba3810c3e828708b3d7404f6cef/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e536c98a7626a98feb2d3eaf75944ef6f3dbee447e1f841eae16f2f0a72d8ddc", size = 2335816, upload-time = "2025-11-04T13:40:07.835Z" }, + { url = "https://files.pythonhosted.org/packages/0d/76/941cc9f73529988688a665a5c0ecff1112b3d95ab48f81db5f7606f522d3/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eceb81a8d74f9267ef4081e246ffd6d129da5d87e37a77c9bde550cb04870c1c", size = 2075366, upload-time = "2025-11-04T13:40:09.804Z" }, + { url = "https://files.pythonhosted.org/packages/d3/43/ebef01f69baa07a482844faaa0a591bad1ef129253ffd0cdaa9d8a7f72d3/pydantic_core-2.41.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d38548150c39b74aeeb0ce8ee1d8e82696f4a4e16ddc6de7b1d8823f7de4b9b5", size = 2171698, upload-time = "2025-11-04T13:40:12.004Z" }, + { url = "https://files.pythonhosted.org/packages/b1/87/41f3202e4193e3bacfc2c065fab7706ebe81af46a83d3e27605029c1f5a6/pydantic_core-2.41.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c23e27686783f60290e36827f9c626e63154b82b116d7fe9adba1fda36da706c", size = 2132603, upload-time = "2025-11-04T13:40:13.868Z" }, + { url = "https://files.pythonhosted.org/packages/49/7d/4c00df99cb12070b6bccdef4a195255e6020a550d572768d92cc54dba91a/pydantic_core-2.41.5-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:482c982f814460eabe1d3bb0adfdc583387bd4691ef00b90575ca0d2b6fe2294", size = 2329591, upload-time = "2025-11-04T13:40:15.672Z" }, + { url = "https://files.pythonhosted.org/packages/cc/6a/ebf4b1d65d458f3cda6a7335d141305dfa19bdc61140a884d165a8a1bbc7/pydantic_core-2.41.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:bfea2a5f0b4d8d43adf9d7b8bf019fb46fdd10a2e5cde477fbcb9d1fa08c68e1", size = 2319068, upload-time = "2025-11-04T13:40:17.532Z" }, + { url = "https://files.pythonhosted.org/packages/49/3b/774f2b5cd4192d5ab75870ce4381fd89cf218af999515baf07e7206753f0/pydantic_core-2.41.5-cp312-cp312-win32.whl", hash = "sha256:b74557b16e390ec12dca509bce9264c3bbd128f8a2c376eaa68003d7f327276d", size = 1985908, upload-time = "2025-11-04T13:40:19.309Z" }, + { url = "https://files.pythonhosted.org/packages/86/45/00173a033c801cacf67c190fef088789394feaf88a98a7035b0e40d53dc9/pydantic_core-2.41.5-cp312-cp312-win_amd64.whl", hash = "sha256:1962293292865bca8e54702b08a4f26da73adc83dd1fcf26fbc875b35d81c815", size = 2020145, upload-time = "2025-11-04T13:40:21.548Z" }, + { url = "https://files.pythonhosted.org/packages/f9/22/91fbc821fa6d261b376a3f73809f907cec5ca6025642c463d3488aad22fb/pydantic_core-2.41.5-cp312-cp312-win_arm64.whl", hash = "sha256:1746d4a3d9a794cacae06a5eaaccb4b8643a131d45fbc9af23e353dc0a5ba5c3", size = 1976179, upload-time = "2025-11-04T13:40:23.393Z" }, + { url = "https://files.pythonhosted.org/packages/87/06/8806241ff1f70d9939f9af039c6c35f2360cf16e93c2ca76f184e76b1564/pydantic_core-2.41.5-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:941103c9be18ac8daf7b7adca8228f8ed6bb7a1849020f643b3a14d15b1924d9", size = 2120403, upload-time = "2025-11-04T13:40:25.248Z" }, + { url = "https://files.pythonhosted.org/packages/94/02/abfa0e0bda67faa65fef1c84971c7e45928e108fe24333c81f3bfe35d5f5/pydantic_core-2.41.5-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:112e305c3314f40c93998e567879e887a3160bb8689ef3d2c04b6cc62c33ac34", size = 1896206, upload-time = "2025-11-04T13:40:27.099Z" }, + { url = "https://files.pythonhosted.org/packages/15/df/a4c740c0943e93e6500f9eb23f4ca7ec9bf71b19e608ae5b579678c8d02f/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0cbaad15cb0c90aa221d43c00e77bb33c93e8d36e0bf74760cd00e732d10a6a0", size = 1919307, upload-time = "2025-11-04T13:40:29.806Z" }, + { url = "https://files.pythonhosted.org/packages/9a/e3/6324802931ae1d123528988e0e86587c2072ac2e5394b4bc2bc34b61ff6e/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:03ca43e12fab6023fc79d28ca6b39b05f794ad08ec2feccc59a339b02f2b3d33", size = 2063258, upload-time = "2025-11-04T13:40:33.544Z" }, + { url = "https://files.pythonhosted.org/packages/c9/d4/2230d7151d4957dd79c3044ea26346c148c98fbf0ee6ebd41056f2d62ab5/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc799088c08fa04e43144b164feb0c13f9a0bc40503f8df3e9fde58a3c0c101e", size = 2214917, upload-time = "2025-11-04T13:40:35.479Z" }, + { url = "https://files.pythonhosted.org/packages/e6/9f/eaac5df17a3672fef0081b6c1bb0b82b33ee89aa5cec0d7b05f52fd4a1fa/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:97aeba56665b4c3235a0e52b2c2f5ae9cd071b8a8310ad27bddb3f7fb30e9aa2", size = 2332186, upload-time = "2025-11-04T13:40:37.436Z" }, + { url = "https://files.pythonhosted.org/packages/cf/4e/35a80cae583a37cf15604b44240e45c05e04e86f9cfd766623149297e971/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:406bf18d345822d6c21366031003612b9c77b3e29ffdb0f612367352aab7d586", size = 2073164, upload-time = "2025-11-04T13:40:40.289Z" }, + { url = "https://files.pythonhosted.org/packages/bf/e3/f6e262673c6140dd3305d144d032f7bd5f7497d3871c1428521f19f9efa2/pydantic_core-2.41.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b93590ae81f7010dbe380cdeab6f515902ebcbefe0b9327cc4804d74e93ae69d", size = 2179146, upload-time = "2025-11-04T13:40:42.809Z" }, + { url = "https://files.pythonhosted.org/packages/75/c7/20bd7fc05f0c6ea2056a4565c6f36f8968c0924f19b7d97bbfea55780e73/pydantic_core-2.41.5-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:01a3d0ab748ee531f4ea6c3e48ad9dac84ddba4b0d82291f87248f2f9de8d740", size = 2137788, upload-time = "2025-11-04T13:40:44.752Z" }, + { url = "https://files.pythonhosted.org/packages/3a/8d/34318ef985c45196e004bc46c6eab2eda437e744c124ef0dbe1ff2c9d06b/pydantic_core-2.41.5-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:6561e94ba9dacc9c61bce40e2d6bdc3bfaa0259d3ff36ace3b1e6901936d2e3e", size = 2340133, upload-time = "2025-11-04T13:40:46.66Z" }, + { url = "https://files.pythonhosted.org/packages/9c/59/013626bf8c78a5a5d9350d12e7697d3d4de951a75565496abd40ccd46bee/pydantic_core-2.41.5-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:915c3d10f81bec3a74fbd4faebe8391013ba61e5a1a8d48c4455b923bdda7858", size = 2324852, upload-time = "2025-11-04T13:40:48.575Z" }, + { url = "https://files.pythonhosted.org/packages/1a/d9/c248c103856f807ef70c18a4f986693a46a8ffe1602e5d361485da502d20/pydantic_core-2.41.5-cp313-cp313-win32.whl", hash = "sha256:650ae77860b45cfa6e2cdafc42618ceafab3a2d9a3811fcfbd3bbf8ac3c40d36", size = 1994679, upload-time = "2025-11-04T13:40:50.619Z" }, + { url = "https://files.pythonhosted.org/packages/9e/8b/341991b158ddab181cff136acd2552c9f35bd30380422a639c0671e99a91/pydantic_core-2.41.5-cp313-cp313-win_amd64.whl", hash = "sha256:79ec52ec461e99e13791ec6508c722742ad745571f234ea6255bed38c6480f11", size = 2019766, upload-time = "2025-11-04T13:40:52.631Z" }, + { url = "https://files.pythonhosted.org/packages/73/7d/f2f9db34af103bea3e09735bb40b021788a5e834c81eedb541991badf8f5/pydantic_core-2.41.5-cp313-cp313-win_arm64.whl", hash = "sha256:3f84d5c1b4ab906093bdc1ff10484838aca54ef08de4afa9de0f5f14d69639cd", size = 1981005, upload-time = "2025-11-04T13:40:54.734Z" }, + { url = "https://files.pythonhosted.org/packages/ea/28/46b7c5c9635ae96ea0fbb779e271a38129df2550f763937659ee6c5dbc65/pydantic_core-2.41.5-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:3f37a19d7ebcdd20b96485056ba9e8b304e27d9904d233d7b1015db320e51f0a", size = 2119622, upload-time = "2025-11-04T13:40:56.68Z" }, + { url = "https://files.pythonhosted.org/packages/74/1a/145646e5687e8d9a1e8d09acb278c8535ebe9e972e1f162ed338a622f193/pydantic_core-2.41.5-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:1d1d9764366c73f996edd17abb6d9d7649a7eb690006ab6adbda117717099b14", size = 1891725, upload-time = "2025-11-04T13:40:58.807Z" }, + { url = "https://files.pythonhosted.org/packages/23/04/e89c29e267b8060b40dca97bfc64a19b2a3cf99018167ea1677d96368273/pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:25e1c2af0fce638d5f1988b686f3b3ea8cd7de5f244ca147c777769e798a9cd1", size = 1915040, upload-time = "2025-11-04T13:41:00.853Z" }, + { url = "https://files.pythonhosted.org/packages/84/a3/15a82ac7bd97992a82257f777b3583d3e84bdb06ba6858f745daa2ec8a85/pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:506d766a8727beef16b7adaeb8ee6217c64fc813646b424d0804d67c16eddb66", size = 2063691, upload-time = "2025-11-04T13:41:03.504Z" }, + { url = "https://files.pythonhosted.org/packages/74/9b/0046701313c6ef08c0c1cf0e028c67c770a4e1275ca73131563c5f2a310a/pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4819fa52133c9aa3c387b3328f25c1facc356491e6135b459f1de698ff64d869", size = 2213897, upload-time = "2025-11-04T13:41:05.804Z" }, + { url = "https://files.pythonhosted.org/packages/8a/cd/6bac76ecd1b27e75a95ca3a9a559c643b3afcd2dd62086d4b7a32a18b169/pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2b761d210c9ea91feda40d25b4efe82a1707da2ef62901466a42492c028553a2", size = 2333302, upload-time = "2025-11-04T13:41:07.809Z" }, + { url = "https://files.pythonhosted.org/packages/4c/d2/ef2074dc020dd6e109611a8be4449b98cd25e1b9b8a303c2f0fca2f2bcf7/pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:22f0fb8c1c583a3b6f24df2470833b40207e907b90c928cc8d3594b76f874375", size = 2064877, upload-time = "2025-11-04T13:41:09.827Z" }, + { url = "https://files.pythonhosted.org/packages/18/66/e9db17a9a763d72f03de903883c057b2592c09509ccfe468187f2a2eef29/pydantic_core-2.41.5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2782c870e99878c634505236d81e5443092fba820f0373997ff75f90f68cd553", size = 2180680, upload-time = "2025-11-04T13:41:12.379Z" }, + { url = "https://files.pythonhosted.org/packages/d3/9e/3ce66cebb929f3ced22be85d4c2399b8e85b622db77dad36b73c5387f8f8/pydantic_core-2.41.5-cp314-cp314-musllinux_1_1_aarch64.whl", hash = "sha256:0177272f88ab8312479336e1d777f6b124537d47f2123f89cb37e0accea97f90", size = 2138960, upload-time = "2025-11-04T13:41:14.627Z" }, + { url = "https://files.pythonhosted.org/packages/a6/62/205a998f4327d2079326b01abee48e502ea739d174f0a89295c481a2272e/pydantic_core-2.41.5-cp314-cp314-musllinux_1_1_armv7l.whl", hash = "sha256:63510af5e38f8955b8ee5687740d6ebf7c2a0886d15a6d65c32814613681bc07", size = 2339102, upload-time = "2025-11-04T13:41:16.868Z" }, + { url = "https://files.pythonhosted.org/packages/3c/0d/f05e79471e889d74d3d88f5bd20d0ed189ad94c2423d81ff8d0000aab4ff/pydantic_core-2.41.5-cp314-cp314-musllinux_1_1_x86_64.whl", hash = "sha256:e56ba91f47764cc14f1daacd723e3e82d1a89d783f0f5afe9c364b8bb491ccdb", size = 2326039, upload-time = "2025-11-04T13:41:18.934Z" }, + { url = "https://files.pythonhosted.org/packages/ec/e1/e08a6208bb100da7e0c4b288eed624a703f4d129bde2da475721a80cab32/pydantic_core-2.41.5-cp314-cp314-win32.whl", hash = "sha256:aec5cf2fd867b4ff45b9959f8b20ea3993fc93e63c7363fe6851424c8a7e7c23", size = 1995126, upload-time = "2025-11-04T13:41:21.418Z" }, + { url = "https://files.pythonhosted.org/packages/48/5d/56ba7b24e9557f99c9237e29f5c09913c81eeb2f3217e40e922353668092/pydantic_core-2.41.5-cp314-cp314-win_amd64.whl", hash = "sha256:8e7c86f27c585ef37c35e56a96363ab8de4e549a95512445b85c96d3e2f7c1bf", size = 2015489, upload-time = "2025-11-04T13:41:24.076Z" }, + { url = "https://files.pythonhosted.org/packages/4e/bb/f7a190991ec9e3e0ba22e4993d8755bbc4a32925c0b5b42775c03e8148f9/pydantic_core-2.41.5-cp314-cp314-win_arm64.whl", hash = "sha256:e672ba74fbc2dc8eea59fb6d4aed6845e6905fc2a8afe93175d94a83ba2a01a0", size = 1977288, upload-time = "2025-11-04T13:41:26.33Z" }, + { url = "https://files.pythonhosted.org/packages/92/ed/77542d0c51538e32e15afe7899d79efce4b81eee631d99850edc2f5e9349/pydantic_core-2.41.5-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:8566def80554c3faa0e65ac30ab0932b9e3a5cd7f8323764303d468e5c37595a", size = 2120255, upload-time = "2025-11-04T13:41:28.569Z" }, + { url = "https://files.pythonhosted.org/packages/bb/3d/6913dde84d5be21e284439676168b28d8bbba5600d838b9dca99de0fad71/pydantic_core-2.41.5-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:b80aa5095cd3109962a298ce14110ae16b8c1aece8b72f9dafe81cf597ad80b3", size = 1863760, upload-time = "2025-11-04T13:41:31.055Z" }, + { url = "https://files.pythonhosted.org/packages/5a/f0/e5e6b99d4191da102f2b0eb9687aaa7f5bea5d9964071a84effc3e40f997/pydantic_core-2.41.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3006c3dd9ba34b0c094c544c6006cc79e87d8612999f1a5d43b769b89181f23c", size = 1878092, upload-time = "2025-11-04T13:41:33.21Z" }, + { url = "https://files.pythonhosted.org/packages/71/48/36fb760642d568925953bcc8116455513d6e34c4beaa37544118c36aba6d/pydantic_core-2.41.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:72f6c8b11857a856bcfa48c86f5368439f74453563f951e473514579d44aa612", size = 2053385, upload-time = "2025-11-04T13:41:35.508Z" }, + { url = "https://files.pythonhosted.org/packages/20/25/92dc684dd8eb75a234bc1c764b4210cf2646479d54b47bf46061657292a8/pydantic_core-2.41.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5cb1b2f9742240e4bb26b652a5aeb840aa4b417c7748b6f8387927bc6e45e40d", size = 2218832, upload-time = "2025-11-04T13:41:37.732Z" }, + { url = "https://files.pythonhosted.org/packages/e2/09/f53e0b05023d3e30357d82eb35835d0f6340ca344720a4599cd663dca599/pydantic_core-2.41.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bd3d54f38609ff308209bd43acea66061494157703364ae40c951f83ba99a1a9", size = 2327585, upload-time = "2025-11-04T13:41:40Z" }, + { url = "https://files.pythonhosted.org/packages/aa/4e/2ae1aa85d6af35a39b236b1b1641de73f5a6ac4d5a7509f77b814885760c/pydantic_core-2.41.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2ff4321e56e879ee8d2a879501c8e469414d948f4aba74a2d4593184eb326660", size = 2041078, upload-time = "2025-11-04T13:41:42.323Z" }, + { url = "https://files.pythonhosted.org/packages/cd/13/2e215f17f0ef326fc72afe94776edb77525142c693767fc347ed6288728d/pydantic_core-2.41.5-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d0d2568a8c11bf8225044aa94409e21da0cb09dcdafe9ecd10250b2baad531a9", size = 2173914, upload-time = "2025-11-04T13:41:45.221Z" }, + { url = "https://files.pythonhosted.org/packages/02/7a/f999a6dcbcd0e5660bc348a3991c8915ce6599f4f2c6ac22f01d7a10816c/pydantic_core-2.41.5-cp314-cp314t-musllinux_1_1_aarch64.whl", hash = "sha256:a39455728aabd58ceabb03c90e12f71fd30fa69615760a075b9fec596456ccc3", size = 2129560, upload-time = "2025-11-04T13:41:47.474Z" }, + { url = "https://files.pythonhosted.org/packages/3a/b1/6c990ac65e3b4c079a4fb9f5b05f5b013afa0f4ed6780a3dd236d2cbdc64/pydantic_core-2.41.5-cp314-cp314t-musllinux_1_1_armv7l.whl", hash = "sha256:239edca560d05757817c13dc17c50766136d21f7cd0fac50295499ae24f90fdf", size = 2329244, upload-time = "2025-11-04T13:41:49.992Z" }, + { url = "https://files.pythonhosted.org/packages/d9/02/3c562f3a51afd4d88fff8dffb1771b30cfdfd79befd9883ee094f5b6c0d8/pydantic_core-2.41.5-cp314-cp314t-musllinux_1_1_x86_64.whl", hash = "sha256:2a5e06546e19f24c6a96a129142a75cee553cc018ffee48a460059b1185f4470", size = 2331955, upload-time = "2025-11-04T13:41:54.079Z" }, + { url = "https://files.pythonhosted.org/packages/5c/96/5fb7d8c3c17bc8c62fdb031c47d77a1af698f1d7a406b0f79aaa1338f9ad/pydantic_core-2.41.5-cp314-cp314t-win32.whl", hash = "sha256:b4ececa40ac28afa90871c2cc2b9ffd2ff0bf749380fbdf57d165fd23da353aa", size = 1988906, upload-time = "2025-11-04T13:41:56.606Z" }, + { url = "https://files.pythonhosted.org/packages/22/ed/182129d83032702912c2e2d8bbe33c036f342cc735737064668585dac28f/pydantic_core-2.41.5-cp314-cp314t-win_amd64.whl", hash = "sha256:80aa89cad80b32a912a65332f64a4450ed00966111b6615ca6816153d3585a8c", size = 1981607, upload-time = "2025-11-04T13:41:58.889Z" }, + { url = "https://files.pythonhosted.org/packages/9f/ed/068e41660b832bb0b1aa5b58011dea2a3fe0ba7861ff38c4d4904c1c1a99/pydantic_core-2.41.5-cp314-cp314t-win_arm64.whl", hash = "sha256:35b44f37a3199f771c3eaa53051bc8a70cd7b54f333531c59e29fd4db5d15008", size = 1974769, upload-time = "2025-11-04T13:42:01.186Z" }, + { url = "https://files.pythonhosted.org/packages/09/32/59b0c7e63e277fa7911c2fc70ccfb45ce4b98991e7ef37110663437005af/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl", hash = "sha256:7da7087d756b19037bc2c06edc6c170eeef3c3bafcb8f532ff17d64dc427adfd", size = 2110495, upload-time = "2025-11-04T13:42:49.689Z" }, + { url = "https://files.pythonhosted.org/packages/aa/81/05e400037eaf55ad400bcd318c05bb345b57e708887f07ddb2d20e3f0e98/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl", hash = "sha256:aabf5777b5c8ca26f7824cb4a120a740c9588ed58df9b2d196ce92fba42ff8dc", size = 1915388, upload-time = "2025-11-04T13:42:52.215Z" }, + { url = "https://files.pythonhosted.org/packages/6e/0d/e3549b2399f71d56476b77dbf3cf8937cec5cd70536bdc0e374a421d0599/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c007fe8a43d43b3969e8469004e9845944f1a80e6acd47c150856bb87f230c56", size = 1942879, upload-time = "2025-11-04T13:42:56.483Z" }, + { url = "https://files.pythonhosted.org/packages/f7/07/34573da085946b6a313d7c42f82f16e8920bfd730665de2d11c0c37a74b5/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:76d0819de158cd855d1cbb8fcafdf6f5cf1eb8e470abe056d5d161106e38062b", size = 2139017, upload-time = "2025-11-04T13:42:59.471Z" }, ] [[package]] name = "pydantic-settings" -version = "2.11.0" +version = "2.12.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "pydantic" }, { name = "python-dotenv" }, { name = "typing-inspection" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/20/c5/dbbc27b814c71676593d1c3f718e6cd7d4f00652cefa24b75f7aa3efb25e/pydantic_settings-2.11.0.tar.gz", hash = "sha256:d0e87a1c7d33593beb7194adb8470fc426e95ba02af83a0f23474a04c9a08180", size = 188394, upload-time = "2025-09-24T14:19:11.764Z" } +sdist = { url = "https://files.pythonhosted.org/packages/43/4b/ac7e0aae12027748076d72a8764ff1c9d82ca75a7a52622e67ed3f765c54/pydantic_settings-2.12.0.tar.gz", hash = "sha256:005538ef951e3c2a68e1c08b292b5f2e71490def8589d4221b95dab00dafcfd0", size = 194184, upload-time = "2025-11-10T14:25:47.013Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/83/d6/887a1ff844e64aa823fb4905978d882a633cfe295c32eacad582b78a7d8b/pydantic_settings-2.11.0-py3-none-any.whl", hash = "sha256:fe2cea3413b9530d10f3a5875adffb17ada5c1e1bab0b2885546d7310415207c", size = 48608, upload-time = "2025-09-24T14:19:10.015Z" }, + { url = "https://files.pythonhosted.org/packages/c1/60/5d4751ba3f4a40a6891f24eec885f51afd78d208498268c734e256fb13c4/pydantic_settings-2.12.0-py3-none-any.whl", hash = "sha256:fddb9fd99a5b18da837b29710391e945b1e30c135477f484084ee513adb93809", size = 51880, upload-time = "2025-11-10T14:25:45.546Z" }, ] [[package]] @@ -1566,7 +1741,7 @@ wheels = [ [[package]] name = "pylint" -version = "3.3.8" +version = "4.0.4" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "astroid" }, @@ -1577,9 +1752,9 @@ dependencies = [ { name = "platformdirs" }, { name = "tomlkit" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/9d/58/1f614a84d3295c542e9f6e2c764533eea3f318f4592dc1ea06c797114767/pylint-3.3.8.tar.gz", hash = "sha256:26698de19941363037e2937d3db9ed94fb3303fdadf7d98847875345a8bb6b05", size = 1523947, upload-time = "2025-08-09T09:12:57.234Z" } +sdist = { url = "https://files.pythonhosted.org/packages/5a/d2/b081da1a8930d00e3fc06352a1d449aaf815d4982319fab5d8cdb2e9ab35/pylint-4.0.4.tar.gz", hash = "sha256:d9b71674e19b1c36d79265b5887bf8e55278cbe236c9e95d22dc82cf044fdbd2", size = 1571735, upload-time = "2025-11-30T13:29:04.315Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/2d/1a/711e93a7ab6c392e349428ea56e794a3902bb4e0284c1997cff2d7efdbc1/pylint-3.3.8-py3-none-any.whl", hash = "sha256:7ef94aa692a600e82fabdd17102b73fc226758218c97473c7ad67bd4cb905d83", size = 523153, upload-time = "2025-08-09T09:12:54.836Z" }, + { url = "https://files.pythonhosted.org/packages/a6/92/d40f5d937517cc489ad848fc4414ecccc7592e4686b9071e09e64f5e378e/pylint-4.0.4-py3-none-any.whl", hash = "sha256:63e06a37d5922555ee2c20963eb42559918c20bd2b21244e4ef426e7c43b92e0", size = 536425, upload-time = "2025-11-30T13:29:02.53Z" }, ] [[package]] @@ -1633,7 +1808,7 @@ wheels = [ [[package]] name = "pytest" -version = "8.4.2" +version = "9.0.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "colorama", marker = "sys_platform == 'win32'" }, @@ -1642,9 +1817,9 @@ dependencies = [ { name = "pluggy" }, { name = "pygments" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/a3/5c/00a0e072241553e1a7496d638deababa67c5058571567b92a7eaa258397c/pytest-8.4.2.tar.gz", hash = "sha256:86c0d0b93306b961d58d62a4db4879f27fe25513d4b969df351abdddb3c30e01", size = 1519618, upload-time = "2025-09-04T14:34:22.711Z" } +sdist = { url = "https://files.pythonhosted.org/packages/d1/db/7ef3487e0fb0049ddb5ce41d3a49c235bf9ad299b6a25d5780a89f19230f/pytest-9.0.2.tar.gz", hash = "sha256:75186651a92bd89611d1d9fc20f0b4345fd827c41ccd5c299a868a05d70edf11", size = 1568901, upload-time = "2025-12-06T21:30:51.014Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/a8/a4/20da314d277121d6534b3a980b29035dcd51e6744bd79075a6ce8fa4eb8d/pytest-8.4.2-py3-none-any.whl", hash = "sha256:872f880de3fc3a5bdc88a11b39c9710c3497a547cfa9320bc3c5e62fbf272e79", size = 365750, upload-time = "2025-09-04T14:34:20.226Z" }, + { url = "https://files.pythonhosted.org/packages/3b/ab/b3226f0bd7cdcf710fbede2b3548584366da3b19b5021e74f5bde2a8fa3f/pytest-9.0.2-py3-none-any.whl", hash = "sha256:711ffd45bf766d5264d487b917733b453d917afd2b0ad65223959f59089f875b", size = 374801, upload-time = "2025-12-06T21:30:49.154Z" }, ] [[package]] @@ -1801,16 +1976,16 @@ wheels = [ [[package]] name = "referencing" -version = "0.36.2" +version = "0.37.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "attrs" }, { name = "rpds-py" }, { name = "typing-extensions", marker = "python_full_version < '3.13'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/2f/db/98b5c277be99dd18bfd91dd04e1b759cad18d1a338188c936e92f921c7e2/referencing-0.36.2.tar.gz", hash = "sha256:df2e89862cd09deabbdba16944cc3f10feb6b3e6f18e902f7cc25609a34775aa", size = 74744, upload-time = "2025-01-25T08:48:16.138Z" } +sdist = { url = "https://files.pythonhosted.org/packages/22/f5/df4e9027acead3ecc63e50fe1e36aca1523e1719559c499951bb4b53188f/referencing-0.37.0.tar.gz", hash = "sha256:44aefc3142c5b842538163acb373e24cce6632bd54bdb01b21ad5863489f50d8", size = 78036, upload-time = "2025-10-13T15:30:48.871Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c1/b1/3baf80dc6d2b7bc27a95a67752d0208e410351e3feb4eb78de5f77454d8d/referencing-0.36.2-py3-none-any.whl", hash = "sha256:e8699adbbf8b5c7de96d8ffa0eb5c158b3beafce084968e2ea8bb08c6794dcd0", size = 26775, upload-time = "2025-01-25T08:48:14.241Z" }, + { url = "https://files.pythonhosted.org/packages/2c/58/ca301544e1fa93ed4f80d724bf5b194f6e4b945841c5bfd555878eea9fcb/referencing-0.37.0-py3-none-any.whl", hash = "sha256:381329a9f99628c9069361716891d34ad94af76e461dcb0335825aecc7692231", size = 26766, upload-time = "2025-10-13T15:30:47.625Z" }, ] [[package]] @@ -1830,83 +2005,83 @@ wheels = [ [[package]] name = "rpds-py" -version = "0.27.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/e9/dd/2c0cbe774744272b0ae725f44032c77bdcab6e8bcf544bffa3b6e70c8dba/rpds_py-0.27.1.tar.gz", hash = "sha256:26a1c73171d10b7acccbded82bf6a586ab8203601e565badc74bbbf8bc5a10f8", size = 27479, upload-time = "2025-08-27T12:16:36.024Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/bd/fe/38de28dee5df58b8198c743fe2bea0c785c6d40941b9950bac4cdb71a014/rpds_py-0.27.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:ae2775c1973e3c30316892737b91f9283f9908e3cc7625b9331271eaaed7dc90", size = 361887, upload-time = "2025-08-27T12:13:10.233Z" }, - { url = "https://files.pythonhosted.org/packages/7c/9a/4b6c7eedc7dd90986bf0fab6ea2a091ec11c01b15f8ba0a14d3f80450468/rpds_py-0.27.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2643400120f55c8a96f7c9d858f7be0c88d383cd4653ae2cf0d0c88f668073e5", size = 345795, upload-time = "2025-08-27T12:13:11.65Z" }, - { url = "https://files.pythonhosted.org/packages/6f/0e/e650e1b81922847a09cca820237b0edee69416a01268b7754d506ade11ad/rpds_py-0.27.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:16323f674c089b0360674a4abd28d5042947d54ba620f72514d69be4ff64845e", size = 385121, upload-time = "2025-08-27T12:13:13.008Z" }, - { url = "https://files.pythonhosted.org/packages/1b/ea/b306067a712988e2bff00dcc7c8f31d26c29b6d5931b461aa4b60a013e33/rpds_py-0.27.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9a1f4814b65eacac94a00fc9a526e3fdafd78e439469644032032d0d63de4881", size = 398976, upload-time = "2025-08-27T12:13:14.368Z" }, - { url = "https://files.pythonhosted.org/packages/2c/0a/26dc43c8840cb8fe239fe12dbc8d8de40f2365e838f3d395835dde72f0e5/rpds_py-0.27.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7ba32c16b064267b22f1850a34051121d423b6f7338a12b9459550eb2096e7ec", size = 525953, upload-time = "2025-08-27T12:13:15.774Z" }, - { url = "https://files.pythonhosted.org/packages/22/14/c85e8127b573aaf3a0cbd7fbb8c9c99e735a4a02180c84da2a463b766e9e/rpds_py-0.27.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5c20f33fd10485b80f65e800bbe5f6785af510b9f4056c5a3c612ebc83ba6cb", size = 407915, upload-time = "2025-08-27T12:13:17.379Z" }, - { url = "https://files.pythonhosted.org/packages/ed/7b/8f4fee9ba1fb5ec856eb22d725a4efa3deb47f769597c809e03578b0f9d9/rpds_py-0.27.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:466bfe65bd932da36ff279ddd92de56b042f2266d752719beb97b08526268ec5", size = 386883, upload-time = "2025-08-27T12:13:18.704Z" }, - { url = "https://files.pythonhosted.org/packages/86/47/28fa6d60f8b74fcdceba81b272f8d9836ac0340570f68f5df6b41838547b/rpds_py-0.27.1-cp312-cp312-manylinux_2_31_riscv64.whl", hash = "sha256:41e532bbdcb57c92ba3be62c42e9f096431b4cf478da9bc3bc6ce5c38ab7ba7a", size = 405699, upload-time = "2025-08-27T12:13:20.089Z" }, - { url = "https://files.pythonhosted.org/packages/d0/fd/c5987b5e054548df56953a21fe2ebed51fc1ec7c8f24fd41c067b68c4a0a/rpds_py-0.27.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f149826d742b406579466283769a8ea448eed82a789af0ed17b0cd5770433444", size = 423713, upload-time = "2025-08-27T12:13:21.436Z" }, - { url = "https://files.pythonhosted.org/packages/ac/ba/3c4978b54a73ed19a7d74531be37a8bcc542d917c770e14d372b8daea186/rpds_py-0.27.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:80c60cfb5310677bd67cb1e85a1e8eb52e12529545441b43e6f14d90b878775a", size = 562324, upload-time = "2025-08-27T12:13:22.789Z" }, - { url = "https://files.pythonhosted.org/packages/b5/6c/6943a91768fec16db09a42b08644b960cff540c66aab89b74be6d4a144ba/rpds_py-0.27.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:7ee6521b9baf06085f62ba9c7a3e5becffbc32480d2f1b351559c001c38ce4c1", size = 593646, upload-time = "2025-08-27T12:13:24.122Z" }, - { url = "https://files.pythonhosted.org/packages/11/73/9d7a8f4be5f4396f011a6bb7a19fe26303a0dac9064462f5651ced2f572f/rpds_py-0.27.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:a512c8263249a9d68cac08b05dd59d2b3f2061d99b322813cbcc14c3c7421998", size = 558137, upload-time = "2025-08-27T12:13:25.557Z" }, - { url = "https://files.pythonhosted.org/packages/6e/96/6772cbfa0e2485bcceef8071de7821f81aeac8bb45fbfd5542a3e8108165/rpds_py-0.27.1-cp312-cp312-win32.whl", hash = "sha256:819064fa048ba01b6dadc5116f3ac48610435ac9a0058bbde98e569f9e785c39", size = 221343, upload-time = "2025-08-27T12:13:26.967Z" }, - { url = "https://files.pythonhosted.org/packages/67/b6/c82f0faa9af1c6a64669f73a17ee0eeef25aff30bb9a1c318509efe45d84/rpds_py-0.27.1-cp312-cp312-win_amd64.whl", hash = "sha256:d9199717881f13c32c4046a15f024971a3b78ad4ea029e8da6b86e5aa9cf4594", size = 232497, upload-time = "2025-08-27T12:13:28.326Z" }, - { url = "https://files.pythonhosted.org/packages/e1/96/2817b44bd2ed11aebacc9251da03689d56109b9aba5e311297b6902136e2/rpds_py-0.27.1-cp312-cp312-win_arm64.whl", hash = "sha256:33aa65b97826a0e885ef6e278fbd934e98cdcfed80b63946025f01e2f5b29502", size = 222790, upload-time = "2025-08-27T12:13:29.71Z" }, - { url = "https://files.pythonhosted.org/packages/cc/77/610aeee8d41e39080c7e14afa5387138e3c9fa9756ab893d09d99e7d8e98/rpds_py-0.27.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:e4b9fcfbc021633863a37e92571d6f91851fa656f0180246e84cbd8b3f6b329b", size = 361741, upload-time = "2025-08-27T12:13:31.039Z" }, - { url = "https://files.pythonhosted.org/packages/3a/fc/c43765f201c6a1c60be2043cbdb664013def52460a4c7adace89d6682bf4/rpds_py-0.27.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1441811a96eadca93c517d08df75de45e5ffe68aa3089924f963c782c4b898cf", size = 345574, upload-time = "2025-08-27T12:13:32.902Z" }, - { url = "https://files.pythonhosted.org/packages/20/42/ee2b2ca114294cd9847d0ef9c26d2b0851b2e7e00bf14cc4c0b581df0fc3/rpds_py-0.27.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:55266dafa22e672f5a4f65019015f90336ed31c6383bd53f5e7826d21a0e0b83", size = 385051, upload-time = "2025-08-27T12:13:34.228Z" }, - { url = "https://files.pythonhosted.org/packages/fd/e8/1e430fe311e4799e02e2d1af7c765f024e95e17d651612425b226705f910/rpds_py-0.27.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d78827d7ac08627ea2c8e02c9e5b41180ea5ea1f747e9db0915e3adf36b62dcf", size = 398395, upload-time = "2025-08-27T12:13:36.132Z" }, - { url = "https://files.pythonhosted.org/packages/82/95/9dc227d441ff2670651c27a739acb2535ccaf8b351a88d78c088965e5996/rpds_py-0.27.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae92443798a40a92dc5f0b01d8a7c93adde0c4dc965310a29ae7c64d72b9fad2", size = 524334, upload-time = "2025-08-27T12:13:37.562Z" }, - { url = "https://files.pythonhosted.org/packages/87/01/a670c232f401d9ad461d9a332aa4080cd3cb1d1df18213dbd0d2a6a7ab51/rpds_py-0.27.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c46c9dd2403b66a2a3b9720ec4b74d4ab49d4fabf9f03dfdce2d42af913fe8d0", size = 407691, upload-time = "2025-08-27T12:13:38.94Z" }, - { url = "https://files.pythonhosted.org/packages/03/36/0a14aebbaa26fe7fab4780c76f2239e76cc95a0090bdb25e31d95c492fcd/rpds_py-0.27.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2efe4eb1d01b7f5f1939f4ef30ecea6c6b3521eec451fb93191bf84b2a522418", size = 386868, upload-time = "2025-08-27T12:13:40.192Z" }, - { url = "https://files.pythonhosted.org/packages/3b/03/8c897fb8b5347ff6c1cc31239b9611c5bf79d78c984430887a353e1409a1/rpds_py-0.27.1-cp313-cp313-manylinux_2_31_riscv64.whl", hash = "sha256:15d3b4d83582d10c601f481eca29c3f138d44c92187d197aff663a269197c02d", size = 405469, upload-time = "2025-08-27T12:13:41.496Z" }, - { url = "https://files.pythonhosted.org/packages/da/07/88c60edc2df74850d496d78a1fdcdc7b54360a7f610a4d50008309d41b94/rpds_py-0.27.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:4ed2e16abbc982a169d30d1a420274a709949e2cbdef119fe2ec9d870b42f274", size = 422125, upload-time = "2025-08-27T12:13:42.802Z" }, - { url = "https://files.pythonhosted.org/packages/6b/86/5f4c707603e41b05f191a749984f390dabcbc467cf833769b47bf14ba04f/rpds_py-0.27.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a75f305c9b013289121ec0f1181931975df78738cdf650093e6b86d74aa7d8dd", size = 562341, upload-time = "2025-08-27T12:13:44.472Z" }, - { url = "https://files.pythonhosted.org/packages/b2/92/3c0cb2492094e3cd9baf9e49bbb7befeceb584ea0c1a8b5939dca4da12e5/rpds_py-0.27.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:67ce7620704745881a3d4b0ada80ab4d99df390838839921f99e63c474f82cf2", size = 592511, upload-time = "2025-08-27T12:13:45.898Z" }, - { url = "https://files.pythonhosted.org/packages/10/bb/82e64fbb0047c46a168faa28d0d45a7851cd0582f850b966811d30f67ad8/rpds_py-0.27.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9d992ac10eb86d9b6f369647b6a3f412fc0075cfd5d799530e84d335e440a002", size = 557736, upload-time = "2025-08-27T12:13:47.408Z" }, - { url = "https://files.pythonhosted.org/packages/00/95/3c863973d409210da7fb41958172c6b7dbe7fc34e04d3cc1f10bb85e979f/rpds_py-0.27.1-cp313-cp313-win32.whl", hash = "sha256:4f75e4bd8ab8db624e02c8e2fc4063021b58becdbe6df793a8111d9343aec1e3", size = 221462, upload-time = "2025-08-27T12:13:48.742Z" }, - { url = "https://files.pythonhosted.org/packages/ce/2c/5867b14a81dc217b56d95a9f2a40fdbc56a1ab0181b80132beeecbd4b2d6/rpds_py-0.27.1-cp313-cp313-win_amd64.whl", hash = "sha256:f9025faafc62ed0b75a53e541895ca272815bec18abe2249ff6501c8f2e12b83", size = 232034, upload-time = "2025-08-27T12:13:50.11Z" }, - { url = "https://files.pythonhosted.org/packages/c7/78/3958f3f018c01923823f1e47f1cc338e398814b92d83cd278364446fac66/rpds_py-0.27.1-cp313-cp313-win_arm64.whl", hash = "sha256:ed10dc32829e7d222b7d3b93136d25a406ba9788f6a7ebf6809092da1f4d279d", size = 222392, upload-time = "2025-08-27T12:13:52.587Z" }, - { url = "https://files.pythonhosted.org/packages/01/76/1cdf1f91aed5c3a7bf2eba1f1c4e4d6f57832d73003919a20118870ea659/rpds_py-0.27.1-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:92022bbbad0d4426e616815b16bc4127f83c9a74940e1ccf3cfe0b387aba0228", size = 358355, upload-time = "2025-08-27T12:13:54.012Z" }, - { url = "https://files.pythonhosted.org/packages/c3/6f/bf142541229374287604caf3bb2a4ae17f0a580798fd72d3b009b532db4e/rpds_py-0.27.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:47162fdab9407ec3f160805ac3e154df042e577dd53341745fc7fb3f625e6d92", size = 342138, upload-time = "2025-08-27T12:13:55.791Z" }, - { url = "https://files.pythonhosted.org/packages/1a/77/355b1c041d6be40886c44ff5e798b4e2769e497b790f0f7fd1e78d17e9a8/rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb89bec23fddc489e5d78b550a7b773557c9ab58b7946154a10a6f7a214a48b2", size = 380247, upload-time = "2025-08-27T12:13:57.683Z" }, - { url = "https://files.pythonhosted.org/packages/d6/a4/d9cef5c3946ea271ce2243c51481971cd6e34f21925af2783dd17b26e815/rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e48af21883ded2b3e9eb48cb7880ad8598b31ab752ff3be6457001d78f416723", size = 390699, upload-time = "2025-08-27T12:13:59.137Z" }, - { url = "https://files.pythonhosted.org/packages/3a/06/005106a7b8c6c1a7e91b73169e49870f4af5256119d34a361ae5240a0c1d/rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6f5b7bd8e219ed50299e58551a410b64daafb5017d54bbe822e003856f06a802", size = 521852, upload-time = "2025-08-27T12:14:00.583Z" }, - { url = "https://files.pythonhosted.org/packages/e5/3e/50fb1dac0948e17a02eb05c24510a8fe12d5ce8561c6b7b7d1339ab7ab9c/rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08f1e20bccf73b08d12d804d6e1c22ca5530e71659e6673bce31a6bb71c1e73f", size = 402582, upload-time = "2025-08-27T12:14:02.034Z" }, - { url = "https://files.pythonhosted.org/packages/cb/b0/f4e224090dc5b0ec15f31a02d746ab24101dd430847c4d99123798661bfc/rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0dc5dceeaefcc96dc192e3a80bbe1d6c410c469e97bdd47494a7d930987f18b2", size = 384126, upload-time = "2025-08-27T12:14:03.437Z" }, - { url = "https://files.pythonhosted.org/packages/54/77/ac339d5f82b6afff1df8f0fe0d2145cc827992cb5f8eeb90fc9f31ef7a63/rpds_py-0.27.1-cp313-cp313t-manylinux_2_31_riscv64.whl", hash = "sha256:d76f9cc8665acdc0c9177043746775aa7babbf479b5520b78ae4002d889f5c21", size = 399486, upload-time = "2025-08-27T12:14:05.443Z" }, - { url = "https://files.pythonhosted.org/packages/d6/29/3e1c255eee6ac358c056a57d6d6869baa00a62fa32eea5ee0632039c50a3/rpds_py-0.27.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:134fae0e36022edad8290a6661edf40c023562964efea0cc0ec7f5d392d2aaef", size = 414832, upload-time = "2025-08-27T12:14:06.902Z" }, - { url = "https://files.pythonhosted.org/packages/3f/db/6d498b844342deb3fa1d030598db93937a9964fcf5cb4da4feb5f17be34b/rpds_py-0.27.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:eb11a4f1b2b63337cfd3b4d110af778a59aae51c81d195768e353d8b52f88081", size = 557249, upload-time = "2025-08-27T12:14:08.37Z" }, - { url = "https://files.pythonhosted.org/packages/60/f3/690dd38e2310b6f68858a331399b4d6dbb9132c3e8ef8b4333b96caf403d/rpds_py-0.27.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:13e608ac9f50a0ed4faec0e90ece76ae33b34c0e8656e3dceb9a7db994c692cd", size = 587356, upload-time = "2025-08-27T12:14:10.034Z" }, - { url = "https://files.pythonhosted.org/packages/86/e3/84507781cccd0145f35b1dc32c72675200c5ce8d5b30f813e49424ef68fc/rpds_py-0.27.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:dd2135527aa40f061350c3f8f89da2644de26cd73e4de458e79606384f4f68e7", size = 555300, upload-time = "2025-08-27T12:14:11.783Z" }, - { url = "https://files.pythonhosted.org/packages/e5/ee/375469849e6b429b3516206b4580a79e9ef3eb12920ddbd4492b56eaacbe/rpds_py-0.27.1-cp313-cp313t-win32.whl", hash = "sha256:3020724ade63fe320a972e2ffd93b5623227e684315adce194941167fee02688", size = 216714, upload-time = "2025-08-27T12:14:13.629Z" }, - { url = "https://files.pythonhosted.org/packages/21/87/3fc94e47c9bd0742660e84706c311a860dcae4374cf4a03c477e23ce605a/rpds_py-0.27.1-cp313-cp313t-win_amd64.whl", hash = "sha256:8ee50c3e41739886606388ba3ab3ee2aae9f35fb23f833091833255a31740797", size = 228943, upload-time = "2025-08-27T12:14:14.937Z" }, - { url = "https://files.pythonhosted.org/packages/70/36/b6e6066520a07cf029d385de869729a895917b411e777ab1cde878100a1d/rpds_py-0.27.1-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:acb9aafccaae278f449d9c713b64a9e68662e7799dbd5859e2c6b3c67b56d334", size = 362472, upload-time = "2025-08-27T12:14:16.333Z" }, - { url = "https://files.pythonhosted.org/packages/af/07/b4646032e0dcec0df9c73a3bd52f63bc6c5f9cda992f06bd0e73fe3fbebd/rpds_py-0.27.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:b7fb801aa7f845ddf601c49630deeeccde7ce10065561d92729bfe81bd21fb33", size = 345676, upload-time = "2025-08-27T12:14:17.764Z" }, - { url = "https://files.pythonhosted.org/packages/b0/16/2f1003ee5d0af4bcb13c0cf894957984c32a6751ed7206db2aee7379a55e/rpds_py-0.27.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fe0dd05afb46597b9a2e11c351e5e4283c741237e7f617ffb3252780cca9336a", size = 385313, upload-time = "2025-08-27T12:14:19.829Z" }, - { url = "https://files.pythonhosted.org/packages/05/cd/7eb6dd7b232e7f2654d03fa07f1414d7dfc980e82ba71e40a7c46fd95484/rpds_py-0.27.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b6dfb0e058adb12d8b1d1b25f686e94ffa65d9995a5157afe99743bf7369d62b", size = 399080, upload-time = "2025-08-27T12:14:21.531Z" }, - { url = "https://files.pythonhosted.org/packages/20/51/5829afd5000ec1cb60f304711f02572d619040aa3ec033d8226817d1e571/rpds_py-0.27.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ed090ccd235f6fa8bb5861684567f0a83e04f52dfc2e5c05f2e4b1309fcf85e7", size = 523868, upload-time = "2025-08-27T12:14:23.485Z" }, - { url = "https://files.pythonhosted.org/packages/05/2c/30eebca20d5db95720ab4d2faec1b5e4c1025c473f703738c371241476a2/rpds_py-0.27.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bf876e79763eecf3e7356f157540d6a093cef395b65514f17a356f62af6cc136", size = 408750, upload-time = "2025-08-27T12:14:24.924Z" }, - { url = "https://files.pythonhosted.org/packages/90/1a/cdb5083f043597c4d4276eae4e4c70c55ab5accec078da8611f24575a367/rpds_py-0.27.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:12ed005216a51b1d6e2b02a7bd31885fe317e45897de81d86dcce7d74618ffff", size = 387688, upload-time = "2025-08-27T12:14:27.537Z" }, - { url = "https://files.pythonhosted.org/packages/7c/92/cf786a15320e173f945d205ab31585cc43969743bb1a48b6888f7a2b0a2d/rpds_py-0.27.1-cp314-cp314-manylinux_2_31_riscv64.whl", hash = "sha256:ee4308f409a40e50593c7e3bb8cbe0b4d4c66d1674a316324f0c2f5383b486f9", size = 407225, upload-time = "2025-08-27T12:14:28.981Z" }, - { url = "https://files.pythonhosted.org/packages/33/5c/85ee16df5b65063ef26017bef33096557a4c83fbe56218ac7cd8c235f16d/rpds_py-0.27.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0b08d152555acf1f455154d498ca855618c1378ec810646fcd7c76416ac6dc60", size = 423361, upload-time = "2025-08-27T12:14:30.469Z" }, - { url = "https://files.pythonhosted.org/packages/4b/8e/1c2741307fcabd1a334ecf008e92c4f47bb6f848712cf15c923becfe82bb/rpds_py-0.27.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:dce51c828941973a5684d458214d3a36fcd28da3e1875d659388f4f9f12cc33e", size = 562493, upload-time = "2025-08-27T12:14:31.987Z" }, - { url = "https://files.pythonhosted.org/packages/04/03/5159321baae9b2222442a70c1f988cbbd66b9be0675dd3936461269be360/rpds_py-0.27.1-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:c1476d6f29eb81aa4151c9a31219b03f1f798dc43d8af1250a870735516a1212", size = 592623, upload-time = "2025-08-27T12:14:33.543Z" }, - { url = "https://files.pythonhosted.org/packages/ff/39/c09fd1ad28b85bc1d4554a8710233c9f4cefd03d7717a1b8fbfd171d1167/rpds_py-0.27.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:3ce0cac322b0d69b63c9cdb895ee1b65805ec9ffad37639f291dd79467bee675", size = 558800, upload-time = "2025-08-27T12:14:35.436Z" }, - { url = "https://files.pythonhosted.org/packages/c5/d6/99228e6bbcf4baa764b18258f519a9035131d91b538d4e0e294313462a98/rpds_py-0.27.1-cp314-cp314-win32.whl", hash = "sha256:dfbfac137d2a3d0725758cd141f878bf4329ba25e34979797c89474a89a8a3a3", size = 221943, upload-time = "2025-08-27T12:14:36.898Z" }, - { url = "https://files.pythonhosted.org/packages/be/07/c802bc6b8e95be83b79bdf23d1aa61d68324cb1006e245d6c58e959e314d/rpds_py-0.27.1-cp314-cp314-win_amd64.whl", hash = "sha256:a6e57b0abfe7cc513450fcf529eb486b6e4d3f8aee83e92eb5f1ef848218d456", size = 233739, upload-time = "2025-08-27T12:14:38.386Z" }, - { url = "https://files.pythonhosted.org/packages/c8/89/3e1b1c16d4c2d547c5717377a8df99aee8099ff050f87c45cb4d5fa70891/rpds_py-0.27.1-cp314-cp314-win_arm64.whl", hash = "sha256:faf8d146f3d476abfee026c4ae3bdd9ca14236ae4e4c310cbd1cf75ba33d24a3", size = 223120, upload-time = "2025-08-27T12:14:39.82Z" }, - { url = "https://files.pythonhosted.org/packages/62/7e/dc7931dc2fa4a6e46b2a4fa744a9fe5c548efd70e0ba74f40b39fa4a8c10/rpds_py-0.27.1-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:ba81d2b56b6d4911ce735aad0a1d4495e808b8ee4dc58715998741a26874e7c2", size = 358944, upload-time = "2025-08-27T12:14:41.199Z" }, - { url = "https://files.pythonhosted.org/packages/e6/22/4af76ac4e9f336bfb1a5f240d18a33c6b2fcaadb7472ac7680576512b49a/rpds_py-0.27.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:84f7d509870098de0e864cad0102711c1e24e9b1a50ee713b65928adb22269e4", size = 342283, upload-time = "2025-08-27T12:14:42.699Z" }, - { url = "https://files.pythonhosted.org/packages/1c/15/2a7c619b3c2272ea9feb9ade67a45c40b3eeb500d503ad4c28c395dc51b4/rpds_py-0.27.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a9e960fc78fecd1100539f14132425e1d5fe44ecb9239f8f27f079962021523e", size = 380320, upload-time = "2025-08-27T12:14:44.157Z" }, - { url = "https://files.pythonhosted.org/packages/a2/7d/4c6d243ba4a3057e994bb5bedd01b5c963c12fe38dde707a52acdb3849e7/rpds_py-0.27.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:62f85b665cedab1a503747617393573995dac4600ff51869d69ad2f39eb5e817", size = 391760, upload-time = "2025-08-27T12:14:45.845Z" }, - { url = "https://files.pythonhosted.org/packages/b4/71/b19401a909b83bcd67f90221330bc1ef11bc486fe4e04c24388d28a618ae/rpds_py-0.27.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fed467af29776f6556250c9ed85ea5a4dd121ab56a5f8b206e3e7a4c551e48ec", size = 522476, upload-time = "2025-08-27T12:14:47.364Z" }, - { url = "https://files.pythonhosted.org/packages/e4/44/1a3b9715c0455d2e2f0f6df5ee6d6f5afdc423d0773a8a682ed2b43c566c/rpds_py-0.27.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f2729615f9d430af0ae6b36cf042cb55c0936408d543fb691e1a9e36648fd35a", size = 403418, upload-time = "2025-08-27T12:14:49.991Z" }, - { url = "https://files.pythonhosted.org/packages/1c/4b/fb6c4f14984eb56673bc868a66536f53417ddb13ed44b391998100a06a96/rpds_py-0.27.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1b207d881a9aef7ba753d69c123a35d96ca7cb808056998f6b9e8747321f03b8", size = 384771, upload-time = "2025-08-27T12:14:52.159Z" }, - { url = "https://files.pythonhosted.org/packages/c0/56/d5265d2d28b7420d7b4d4d85cad8ef891760f5135102e60d5c970b976e41/rpds_py-0.27.1-cp314-cp314t-manylinux_2_31_riscv64.whl", hash = "sha256:639fd5efec029f99b79ae47e5d7e00ad8a773da899b6309f6786ecaf22948c48", size = 400022, upload-time = "2025-08-27T12:14:53.859Z" }, - { url = "https://files.pythonhosted.org/packages/8f/e9/9f5fc70164a569bdd6ed9046486c3568d6926e3a49bdefeeccfb18655875/rpds_py-0.27.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fecc80cb2a90e28af8a9b366edacf33d7a91cbfe4c2c4544ea1246e949cfebeb", size = 416787, upload-time = "2025-08-27T12:14:55.673Z" }, - { url = "https://files.pythonhosted.org/packages/d4/64/56dd03430ba491db943a81dcdef115a985aac5f44f565cd39a00c766d45c/rpds_py-0.27.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:42a89282d711711d0a62d6f57d81aa43a1368686c45bc1c46b7f079d55692734", size = 557538, upload-time = "2025-08-27T12:14:57.245Z" }, - { url = "https://files.pythonhosted.org/packages/3f/36/92cc885a3129993b1d963a2a42ecf64e6a8e129d2c7cc980dbeba84e55fb/rpds_py-0.27.1-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:cf9931f14223de59551ab9d38ed18d92f14f055a5f78c1d8ad6493f735021bbb", size = 588512, upload-time = "2025-08-27T12:14:58.728Z" }, - { url = "https://files.pythonhosted.org/packages/dd/10/6b283707780a81919f71625351182b4f98932ac89a09023cb61865136244/rpds_py-0.27.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:f39f58a27cc6e59f432b568ed8429c7e1641324fbe38131de852cd77b2d534b0", size = 555813, upload-time = "2025-08-27T12:15:00.334Z" }, - { url = "https://files.pythonhosted.org/packages/04/2e/30b5ea18c01379da6272a92825dd7e53dc9d15c88a19e97932d35d430ef7/rpds_py-0.27.1-cp314-cp314t-win32.whl", hash = "sha256:d5fa0ee122dc09e23607a28e6d7b150da16c662e66409bbe85230e4c85bb528a", size = 217385, upload-time = "2025-08-27T12:15:01.937Z" }, - { url = "https://files.pythonhosted.org/packages/32/7d/97119da51cb1dd3f2f3c0805f155a3aa4a95fa44fe7d78ae15e69edf4f34/rpds_py-0.27.1-cp314-cp314t-win_amd64.whl", hash = "sha256:6567d2bb951e21232c2f660c24cf3470bb96de56cdcb3f071a83feeaff8a2772", size = 230097, upload-time = "2025-08-27T12:15:03.961Z" }, +version = "0.30.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/20/af/3f2f423103f1113b36230496629986e0ef7e199d2aa8392452b484b38ced/rpds_py-0.30.0.tar.gz", hash = "sha256:dd8ff7cf90014af0c0f787eea34794ebf6415242ee1d6fa91eaba725cc441e84", size = 69469, upload-time = "2025-11-30T20:24:38.837Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/03/e7/98a2f4ac921d82f33e03f3835f5bf3a4a40aa1bfdc57975e74a97b2b4bdd/rpds_py-0.30.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:a161f20d9a43006833cd7068375a94d035714d73a172b681d8881820600abfad", size = 375086, upload-time = "2025-11-30T20:22:17.93Z" }, + { url = "https://files.pythonhosted.org/packages/4d/a1/bca7fd3d452b272e13335db8d6b0b3ecde0f90ad6f16f3328c6fb150c889/rpds_py-0.30.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6abc8880d9d036ecaafe709079969f56e876fcf107f7a8e9920ba6d5a3878d05", size = 359053, upload-time = "2025-11-30T20:22:19.297Z" }, + { url = "https://files.pythonhosted.org/packages/65/1c/ae157e83a6357eceff62ba7e52113e3ec4834a84cfe07fa4b0757a7d105f/rpds_py-0.30.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca28829ae5f5d569bb62a79512c842a03a12576375d5ece7d2cadf8abe96ec28", size = 390763, upload-time = "2025-11-30T20:22:21.661Z" }, + { url = "https://files.pythonhosted.org/packages/d4/36/eb2eb8515e2ad24c0bd43c3ee9cd74c33f7ca6430755ccdb240fd3144c44/rpds_py-0.30.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a1010ed9524c73b94d15919ca4d41d8780980e1765babf85f9a2f90d247153dd", size = 408951, upload-time = "2025-11-30T20:22:23.408Z" }, + { url = "https://files.pythonhosted.org/packages/d6/65/ad8dc1784a331fabbd740ef6f71ce2198c7ed0890dab595adb9ea2d775a1/rpds_py-0.30.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f8d1736cfb49381ba528cd5baa46f82fdc65c06e843dab24dd70b63d09121b3f", size = 514622, upload-time = "2025-11-30T20:22:25.16Z" }, + { url = "https://files.pythonhosted.org/packages/63/8e/0cfa7ae158e15e143fe03993b5bcd743a59f541f5952e1546b1ac1b5fd45/rpds_py-0.30.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d948b135c4693daff7bc2dcfc4ec57237a29bd37e60c2fabf5aff2bbacf3e2f1", size = 414492, upload-time = "2025-11-30T20:22:26.505Z" }, + { url = "https://files.pythonhosted.org/packages/60/1b/6f8f29f3f995c7ffdde46a626ddccd7c63aefc0efae881dc13b6e5d5bb16/rpds_py-0.30.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47f236970bccb2233267d89173d3ad2703cd36a0e2a6e92d0560d333871a3d23", size = 394080, upload-time = "2025-11-30T20:22:27.934Z" }, + { url = "https://files.pythonhosted.org/packages/6d/d5/a266341051a7a3ca2f4b750a3aa4abc986378431fc2da508c5034d081b70/rpds_py-0.30.0-cp312-cp312-manylinux_2_31_riscv64.whl", hash = "sha256:2e6ecb5a5bcacf59c3f912155044479af1d0b6681280048b338b28e364aca1f6", size = 408680, upload-time = "2025-11-30T20:22:29.341Z" }, + { url = "https://files.pythonhosted.org/packages/10/3b/71b725851df9ab7a7a4e33cf36d241933da66040d195a84781f49c50490c/rpds_py-0.30.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a8fa71a2e078c527c3e9dc9fc5a98c9db40bcc8a92b4e8858e36d329f8684b51", size = 423589, upload-time = "2025-11-30T20:22:31.469Z" }, + { url = "https://files.pythonhosted.org/packages/00/2b/e59e58c544dc9bd8bd8384ecdb8ea91f6727f0e37a7131baeff8d6f51661/rpds_py-0.30.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:73c67f2db7bc334e518d097c6d1e6fed021bbc9b7d678d6cc433478365d1d5f5", size = 573289, upload-time = "2025-11-30T20:22:32.997Z" }, + { url = "https://files.pythonhosted.org/packages/da/3e/a18e6f5b460893172a7d6a680e86d3b6bc87a54c1f0b03446a3c8c7b588f/rpds_py-0.30.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:5ba103fb455be00f3b1c2076c9d4264bfcb037c976167a6047ed82f23153f02e", size = 599737, upload-time = "2025-11-30T20:22:34.419Z" }, + { url = "https://files.pythonhosted.org/packages/5c/e2/714694e4b87b85a18e2c243614974413c60aa107fd815b8cbc42b873d1d7/rpds_py-0.30.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:7cee9c752c0364588353e627da8a7e808a66873672bcb5f52890c33fd965b394", size = 563120, upload-time = "2025-11-30T20:22:35.903Z" }, + { url = "https://files.pythonhosted.org/packages/6f/ab/d5d5e3bcedb0a77f4f613706b750e50a5a3ba1c15ccd3665ecc636c968fd/rpds_py-0.30.0-cp312-cp312-win32.whl", hash = "sha256:1ab5b83dbcf55acc8b08fc62b796ef672c457b17dbd7820a11d6c52c06839bdf", size = 223782, upload-time = "2025-11-30T20:22:37.271Z" }, + { url = "https://files.pythonhosted.org/packages/39/3b/f786af9957306fdc38a74cef405b7b93180f481fb48453a114bb6465744a/rpds_py-0.30.0-cp312-cp312-win_amd64.whl", hash = "sha256:a090322ca841abd453d43456ac34db46e8b05fd9b3b4ac0c78bcde8b089f959b", size = 240463, upload-time = "2025-11-30T20:22:39.021Z" }, + { url = "https://files.pythonhosted.org/packages/f3/d2/b91dc748126c1559042cfe41990deb92c4ee3e2b415f6b5234969ffaf0cc/rpds_py-0.30.0-cp312-cp312-win_arm64.whl", hash = "sha256:669b1805bd639dd2989b281be2cfd951c6121b65e729d9b843e9639ef1fd555e", size = 230868, upload-time = "2025-11-30T20:22:40.493Z" }, + { url = "https://files.pythonhosted.org/packages/ed/dc/d61221eb88ff410de3c49143407f6f3147acf2538c86f2ab7ce65ae7d5f9/rpds_py-0.30.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:f83424d738204d9770830d35290ff3273fbb02b41f919870479fab14b9d303b2", size = 374887, upload-time = "2025-11-30T20:22:41.812Z" }, + { url = "https://files.pythonhosted.org/packages/fd/32/55fb50ae104061dbc564ef15cc43c013dc4a9f4527a1f4d99baddf56fe5f/rpds_py-0.30.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:e7536cd91353c5273434b4e003cbda89034d67e7710eab8761fd918ec6c69cf8", size = 358904, upload-time = "2025-11-30T20:22:43.479Z" }, + { url = "https://files.pythonhosted.org/packages/58/70/faed8186300e3b9bdd138d0273109784eea2396c68458ed580f885dfe7ad/rpds_py-0.30.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2771c6c15973347f50fece41fc447c054b7ac2ae0502388ce3b6738cd366e3d4", size = 389945, upload-time = "2025-11-30T20:22:44.819Z" }, + { url = "https://files.pythonhosted.org/packages/bd/a8/073cac3ed2c6387df38f71296d002ab43496a96b92c823e76f46b8af0543/rpds_py-0.30.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0a59119fc6e3f460315fe9d08149f8102aa322299deaa5cab5b40092345c2136", size = 407783, upload-time = "2025-11-30T20:22:46.103Z" }, + { url = "https://files.pythonhosted.org/packages/77/57/5999eb8c58671f1c11eba084115e77a8899d6e694d2a18f69f0ba471ec8b/rpds_py-0.30.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:76fec018282b4ead0364022e3c54b60bf368b9d926877957a8624b58419169b7", size = 515021, upload-time = "2025-11-30T20:22:47.458Z" }, + { url = "https://files.pythonhosted.org/packages/e0/af/5ab4833eadc36c0a8ed2bc5c0de0493c04f6c06de223170bd0798ff98ced/rpds_py-0.30.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:692bef75a5525db97318e8cd061542b5a79812d711ea03dbc1f6f8dbb0c5f0d2", size = 414589, upload-time = "2025-11-30T20:22:48.872Z" }, + { url = "https://files.pythonhosted.org/packages/b7/de/f7192e12b21b9e9a68a6d0f249b4af3fdcdff8418be0767a627564afa1f1/rpds_py-0.30.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9027da1ce107104c50c81383cae773ef5c24d296dd11c99e2629dbd7967a20c6", size = 394025, upload-time = "2025-11-30T20:22:50.196Z" }, + { url = "https://files.pythonhosted.org/packages/91/c4/fc70cd0249496493500e7cc2de87504f5aa6509de1e88623431fec76d4b6/rpds_py-0.30.0-cp313-cp313-manylinux_2_31_riscv64.whl", hash = "sha256:9cf69cdda1f5968a30a359aba2f7f9aa648a9ce4b580d6826437f2b291cfc86e", size = 408895, upload-time = "2025-11-30T20:22:51.87Z" }, + { url = "https://files.pythonhosted.org/packages/58/95/d9275b05ab96556fefff73a385813eb66032e4c99f411d0795372d9abcea/rpds_py-0.30.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a4796a717bf12b9da9d3ad002519a86063dcac8988b030e405704ef7d74d2d9d", size = 422799, upload-time = "2025-11-30T20:22:53.341Z" }, + { url = "https://files.pythonhosted.org/packages/06/c1/3088fc04b6624eb12a57eb814f0d4997a44b0d208d6cace713033ff1a6ba/rpds_py-0.30.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5d4c2aa7c50ad4728a094ebd5eb46c452e9cb7edbfdb18f9e1221f597a73e1e7", size = 572731, upload-time = "2025-11-30T20:22:54.778Z" }, + { url = "https://files.pythonhosted.org/packages/d8/42/c612a833183b39774e8ac8fecae81263a68b9583ee343db33ab571a7ce55/rpds_py-0.30.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ba81a9203d07805435eb06f536d95a266c21e5b2dfbf6517748ca40c98d19e31", size = 599027, upload-time = "2025-11-30T20:22:56.212Z" }, + { url = "https://files.pythonhosted.org/packages/5f/60/525a50f45b01d70005403ae0e25f43c0384369ad24ffe46e8d9068b50086/rpds_py-0.30.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:945dccface01af02675628334f7cf49c2af4c1c904748efc5cf7bbdf0b579f95", size = 563020, upload-time = "2025-11-30T20:22:58.2Z" }, + { url = "https://files.pythonhosted.org/packages/0b/5d/47c4655e9bcd5ca907148535c10e7d489044243cc9941c16ed7cd53be91d/rpds_py-0.30.0-cp313-cp313-win32.whl", hash = "sha256:b40fb160a2db369a194cb27943582b38f79fc4887291417685f3ad693c5a1d5d", size = 223139, upload-time = "2025-11-30T20:23:00.209Z" }, + { url = "https://files.pythonhosted.org/packages/f2/e1/485132437d20aa4d3e1d8b3fb5a5e65aa8139f1e097080c2a8443201742c/rpds_py-0.30.0-cp313-cp313-win_amd64.whl", hash = "sha256:806f36b1b605e2d6a72716f321f20036b9489d29c51c91f4dd29a3e3afb73b15", size = 240224, upload-time = "2025-11-30T20:23:02.008Z" }, + { url = "https://files.pythonhosted.org/packages/24/95/ffd128ed1146a153d928617b0ef673960130be0009c77d8fbf0abe306713/rpds_py-0.30.0-cp313-cp313-win_arm64.whl", hash = "sha256:d96c2086587c7c30d44f31f42eae4eac89b60dabbac18c7669be3700f13c3ce1", size = 230645, upload-time = "2025-11-30T20:23:03.43Z" }, + { url = "https://files.pythonhosted.org/packages/ff/1b/b10de890a0def2a319a2626334a7f0ae388215eb60914dbac8a3bae54435/rpds_py-0.30.0-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:eb0b93f2e5c2189ee831ee43f156ed34e2a89a78a66b98cadad955972548be5a", size = 364443, upload-time = "2025-11-30T20:23:04.878Z" }, + { url = "https://files.pythonhosted.org/packages/0d/bf/27e39f5971dc4f305a4fb9c672ca06f290f7c4e261c568f3dea16a410d47/rpds_py-0.30.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:922e10f31f303c7c920da8981051ff6d8c1a56207dbdf330d9047f6d30b70e5e", size = 353375, upload-time = "2025-11-30T20:23:06.342Z" }, + { url = "https://files.pythonhosted.org/packages/40/58/442ada3bba6e8e6615fc00483135c14a7538d2ffac30e2d933ccf6852232/rpds_py-0.30.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdc62c8286ba9bf7f47befdcea13ea0e26bf294bda99758fd90535cbaf408000", size = 383850, upload-time = "2025-11-30T20:23:07.825Z" }, + { url = "https://files.pythonhosted.org/packages/14/14/f59b0127409a33c6ef6f5c1ebd5ad8e32d7861c9c7adfa9a624fc3889f6c/rpds_py-0.30.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:47f9a91efc418b54fb8190a6b4aa7813a23fb79c51f4bb84e418f5476c38b8db", size = 392812, upload-time = "2025-11-30T20:23:09.228Z" }, + { url = "https://files.pythonhosted.org/packages/b3/66/e0be3e162ac299b3a22527e8913767d869e6cc75c46bd844aa43fb81ab62/rpds_py-0.30.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1f3587eb9b17f3789ad50824084fa6f81921bbf9a795826570bda82cb3ed91f2", size = 517841, upload-time = "2025-11-30T20:23:11.186Z" }, + { url = "https://files.pythonhosted.org/packages/3d/55/fa3b9cf31d0c963ecf1ba777f7cf4b2a2c976795ac430d24a1f43d25a6ba/rpds_py-0.30.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:39c02563fc592411c2c61d26b6c5fe1e51eaa44a75aa2c8735ca88b0d9599daa", size = 408149, upload-time = "2025-11-30T20:23:12.864Z" }, + { url = "https://files.pythonhosted.org/packages/60/ca/780cf3b1a32b18c0f05c441958d3758f02544f1d613abf9488cd78876378/rpds_py-0.30.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:51a1234d8febafdfd33a42d97da7a43f5dcb120c1060e352a3fbc0c6d36e2083", size = 383843, upload-time = "2025-11-30T20:23:14.638Z" }, + { url = "https://files.pythonhosted.org/packages/82/86/d5f2e04f2aa6247c613da0c1dd87fcd08fa17107e858193566048a1e2f0a/rpds_py-0.30.0-cp313-cp313t-manylinux_2_31_riscv64.whl", hash = "sha256:eb2c4071ab598733724c08221091e8d80e89064cd472819285a9ab0f24bcedb9", size = 396507, upload-time = "2025-11-30T20:23:16.105Z" }, + { url = "https://files.pythonhosted.org/packages/4b/9a/453255d2f769fe44e07ea9785c8347edaf867f7026872e76c1ad9f7bed92/rpds_py-0.30.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6bdfdb946967d816e6adf9a3d8201bfad269c67efe6cefd7093ef959683c8de0", size = 414949, upload-time = "2025-11-30T20:23:17.539Z" }, + { url = "https://files.pythonhosted.org/packages/a3/31/622a86cdc0c45d6df0e9ccb6becdba5074735e7033c20e401a6d9d0e2ca0/rpds_py-0.30.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:c77afbd5f5250bf27bf516c7c4a016813eb2d3e116139aed0096940c5982da94", size = 565790, upload-time = "2025-11-30T20:23:19.029Z" }, + { url = "https://files.pythonhosted.org/packages/1c/5d/15bbf0fb4a3f58a3b1c67855ec1efcc4ceaef4e86644665fff03e1b66d8d/rpds_py-0.30.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:61046904275472a76c8c90c9ccee9013d70a6d0f73eecefd38c1ae7c39045a08", size = 590217, upload-time = "2025-11-30T20:23:20.885Z" }, + { url = "https://files.pythonhosted.org/packages/6d/61/21b8c41f68e60c8cc3b2e25644f0e3681926020f11d06ab0b78e3c6bbff1/rpds_py-0.30.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:4c5f36a861bc4b7da6516dbdf302c55313afa09b81931e8280361a4f6c9a2d27", size = 555806, upload-time = "2025-11-30T20:23:22.488Z" }, + { url = "https://files.pythonhosted.org/packages/f9/39/7e067bb06c31de48de3eb200f9fc7c58982a4d3db44b07e73963e10d3be9/rpds_py-0.30.0-cp313-cp313t-win32.whl", hash = "sha256:3d4a69de7a3e50ffc214ae16d79d8fbb0922972da0356dcf4d0fdca2878559c6", size = 211341, upload-time = "2025-11-30T20:23:24.449Z" }, + { url = "https://files.pythonhosted.org/packages/0a/4d/222ef0b46443cf4cf46764d9c630f3fe4abaa7245be9417e56e9f52b8f65/rpds_py-0.30.0-cp313-cp313t-win_amd64.whl", hash = "sha256:f14fc5df50a716f7ece6a80b6c78bb35ea2ca47c499e422aa4463455dd96d56d", size = 225768, upload-time = "2025-11-30T20:23:25.908Z" }, + { url = "https://files.pythonhosted.org/packages/86/81/dad16382ebbd3d0e0328776d8fd7ca94220e4fa0798d1dc5e7da48cb3201/rpds_py-0.30.0-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:68f19c879420aa08f61203801423f6cd5ac5f0ac4ac82a2368a9fcd6a9a075e0", size = 362099, upload-time = "2025-11-30T20:23:27.316Z" }, + { url = "https://files.pythonhosted.org/packages/2b/60/19f7884db5d5603edf3c6bce35408f45ad3e97e10007df0e17dd57af18f8/rpds_py-0.30.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:ec7c4490c672c1a0389d319b3a9cfcd098dcdc4783991553c332a15acf7249be", size = 353192, upload-time = "2025-11-30T20:23:29.151Z" }, + { url = "https://files.pythonhosted.org/packages/bf/c4/76eb0e1e72d1a9c4703c69607cec123c29028bff28ce41588792417098ac/rpds_py-0.30.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f251c812357a3fed308d684a5079ddfb9d933860fc6de89f2b7ab00da481e65f", size = 384080, upload-time = "2025-11-30T20:23:30.785Z" }, + { url = "https://files.pythonhosted.org/packages/72/87/87ea665e92f3298d1b26d78814721dc39ed8d2c74b86e83348d6b48a6f31/rpds_py-0.30.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ac98b175585ecf4c0348fd7b29c3864bda53b805c773cbf7bfdaffc8070c976f", size = 394841, upload-time = "2025-11-30T20:23:32.209Z" }, + { url = "https://files.pythonhosted.org/packages/77/ad/7783a89ca0587c15dcbf139b4a8364a872a25f861bdb88ed99f9b0dec985/rpds_py-0.30.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3e62880792319dbeb7eb866547f2e35973289e7d5696c6e295476448f5b63c87", size = 516670, upload-time = "2025-11-30T20:23:33.742Z" }, + { url = "https://files.pythonhosted.org/packages/5b/3c/2882bdac942bd2172f3da574eab16f309ae10a3925644e969536553cb4ee/rpds_py-0.30.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4e7fc54e0900ab35d041b0601431b0a0eb495f0851a0639b6ef90f7741b39a18", size = 408005, upload-time = "2025-11-30T20:23:35.253Z" }, + { url = "https://files.pythonhosted.org/packages/ce/81/9a91c0111ce1758c92516a3e44776920b579d9a7c09b2b06b642d4de3f0f/rpds_py-0.30.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47e77dc9822d3ad616c3d5759ea5631a75e5809d5a28707744ef79d7a1bcfcad", size = 382112, upload-time = "2025-11-30T20:23:36.842Z" }, + { url = "https://files.pythonhosted.org/packages/cf/8e/1da49d4a107027e5fbc64daeab96a0706361a2918da10cb41769244b805d/rpds_py-0.30.0-cp314-cp314-manylinux_2_31_riscv64.whl", hash = "sha256:b4dc1a6ff022ff85ecafef7979a2c6eb423430e05f1165d6688234e62ba99a07", size = 399049, upload-time = "2025-11-30T20:23:38.343Z" }, + { url = "https://files.pythonhosted.org/packages/df/5a/7ee239b1aa48a127570ec03becbb29c9d5a9eb092febbd1699d567cae859/rpds_py-0.30.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:4559c972db3a360808309e06a74628b95eaccbf961c335c8fe0d590cf587456f", size = 415661, upload-time = "2025-11-30T20:23:40.263Z" }, + { url = "https://files.pythonhosted.org/packages/70/ea/caa143cf6b772f823bc7929a45da1fa83569ee49b11d18d0ada7f5ee6fd6/rpds_py-0.30.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:0ed177ed9bded28f8deb6ab40c183cd1192aa0de40c12f38be4d59cd33cb5c65", size = 565606, upload-time = "2025-11-30T20:23:42.186Z" }, + { url = "https://files.pythonhosted.org/packages/64/91/ac20ba2d69303f961ad8cf55bf7dbdb4763f627291ba3d0d7d67333cced9/rpds_py-0.30.0-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:ad1fa8db769b76ea911cb4e10f049d80bf518c104f15b3edb2371cc65375c46f", size = 591126, upload-time = "2025-11-30T20:23:44.086Z" }, + { url = "https://files.pythonhosted.org/packages/21/20/7ff5f3c8b00c8a95f75985128c26ba44503fb35b8e0259d812766ea966c7/rpds_py-0.30.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:46e83c697b1f1c72b50e5ee5adb4353eef7406fb3f2043d64c33f20ad1c2fc53", size = 553371, upload-time = "2025-11-30T20:23:46.004Z" }, + { url = "https://files.pythonhosted.org/packages/72/c7/81dadd7b27c8ee391c132a6b192111ca58d866577ce2d9b0ca157552cce0/rpds_py-0.30.0-cp314-cp314-win32.whl", hash = "sha256:ee454b2a007d57363c2dfd5b6ca4a5d7e2c518938f8ed3b706e37e5d470801ed", size = 215298, upload-time = "2025-11-30T20:23:47.696Z" }, + { url = "https://files.pythonhosted.org/packages/3e/d2/1aaac33287e8cfb07aab2e6b8ac1deca62f6f65411344f1433c55e6f3eb8/rpds_py-0.30.0-cp314-cp314-win_amd64.whl", hash = "sha256:95f0802447ac2d10bcc69f6dc28fe95fdf17940367b21d34e34c737870758950", size = 228604, upload-time = "2025-11-30T20:23:49.501Z" }, + { url = "https://files.pythonhosted.org/packages/e8/95/ab005315818cc519ad074cb7784dae60d939163108bd2b394e60dc7b5461/rpds_py-0.30.0-cp314-cp314-win_arm64.whl", hash = "sha256:613aa4771c99f03346e54c3f038e4cc574ac09a3ddfb0e8878487335e96dead6", size = 222391, upload-time = "2025-11-30T20:23:50.96Z" }, + { url = "https://files.pythonhosted.org/packages/9e/68/154fe0194d83b973cdedcdcc88947a2752411165930182ae41d983dcefa6/rpds_py-0.30.0-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:7e6ecfcb62edfd632e56983964e6884851786443739dbfe3582947e87274f7cb", size = 364868, upload-time = "2025-11-30T20:23:52.494Z" }, + { url = "https://files.pythonhosted.org/packages/83/69/8bbc8b07ec854d92a8b75668c24d2abcb1719ebf890f5604c61c9369a16f/rpds_py-0.30.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:a1d0bc22a7cdc173fedebb73ef81e07faef93692b8c1ad3733b67e31e1b6e1b8", size = 353747, upload-time = "2025-11-30T20:23:54.036Z" }, + { url = "https://files.pythonhosted.org/packages/ab/00/ba2e50183dbd9abcce9497fa5149c62b4ff3e22d338a30d690f9af970561/rpds_py-0.30.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0d08f00679177226c4cb8c5265012eea897c8ca3b93f429e546600c971bcbae7", size = 383795, upload-time = "2025-11-30T20:23:55.556Z" }, + { url = "https://files.pythonhosted.org/packages/05/6f/86f0272b84926bcb0e4c972262f54223e8ecc556b3224d281e6598fc9268/rpds_py-0.30.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5965af57d5848192c13534f90f9dd16464f3c37aaf166cc1da1cae1fd5a34898", size = 393330, upload-time = "2025-11-30T20:23:57.033Z" }, + { url = "https://files.pythonhosted.org/packages/cb/e9/0e02bb2e6dc63d212641da45df2b0bf29699d01715913e0d0f017ee29438/rpds_py-0.30.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9a4e86e34e9ab6b667c27f3211ca48f73dba7cd3d90f8d5b11be56e5dbc3fb4e", size = 518194, upload-time = "2025-11-30T20:23:58.637Z" }, + { url = "https://files.pythonhosted.org/packages/ee/ca/be7bca14cf21513bdf9c0606aba17d1f389ea2b6987035eb4f62bd923f25/rpds_py-0.30.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5d3e6b26f2c785d65cc25ef1e5267ccbe1b069c5c21b8cc724efee290554419", size = 408340, upload-time = "2025-11-30T20:24:00.2Z" }, + { url = "https://files.pythonhosted.org/packages/c2/c7/736e00ebf39ed81d75544c0da6ef7b0998f8201b369acf842f9a90dc8fce/rpds_py-0.30.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:626a7433c34566535b6e56a1b39a7b17ba961e97ce3b80ec62e6f1312c025551", size = 383765, upload-time = "2025-11-30T20:24:01.759Z" }, + { url = "https://files.pythonhosted.org/packages/4a/3f/da50dfde9956aaf365c4adc9533b100008ed31aea635f2b8d7b627e25b49/rpds_py-0.30.0-cp314-cp314t-manylinux_2_31_riscv64.whl", hash = "sha256:acd7eb3f4471577b9b5a41baf02a978e8bdeb08b4b355273994f8b87032000a8", size = 396834, upload-time = "2025-11-30T20:24:03.687Z" }, + { url = "https://files.pythonhosted.org/packages/4e/00/34bcc2565b6020eab2623349efbdec810676ad571995911f1abdae62a3a0/rpds_py-0.30.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fe5fa731a1fa8a0a56b0977413f8cacac1768dad38d16b3a296712709476fbd5", size = 415470, upload-time = "2025-11-30T20:24:05.232Z" }, + { url = "https://files.pythonhosted.org/packages/8c/28/882e72b5b3e6f718d5453bd4d0d9cf8df36fddeb4ddbbab17869d5868616/rpds_py-0.30.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:74a3243a411126362712ee1524dfc90c650a503502f135d54d1b352bd01f2404", size = 565630, upload-time = "2025-11-30T20:24:06.878Z" }, + { url = "https://files.pythonhosted.org/packages/3b/97/04a65539c17692de5b85c6e293520fd01317fd878ea1995f0367d4532fb1/rpds_py-0.30.0-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:3e8eeb0544f2eb0d2581774be4c3410356eba189529a6b3e36bbbf9696175856", size = 591148, upload-time = "2025-11-30T20:24:08.445Z" }, + { url = "https://files.pythonhosted.org/packages/85/70/92482ccffb96f5441aab93e26c4d66489eb599efdcf96fad90c14bbfb976/rpds_py-0.30.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:dbd936cde57abfee19ab3213cf9c26be06d60750e60a8e4dd85d1ab12c8b1f40", size = 556030, upload-time = "2025-11-30T20:24:10.956Z" }, + { url = "https://files.pythonhosted.org/packages/20/53/7c7e784abfa500a2b6b583b147ee4bb5a2b3747a9166bab52fec4b5b5e7d/rpds_py-0.30.0-cp314-cp314t-win32.whl", hash = "sha256:dc824125c72246d924f7f796b4f63c1e9dc810c7d9e2355864b3c3a73d59ade0", size = 211570, upload-time = "2025-11-30T20:24:12.735Z" }, + { url = "https://files.pythonhosted.org/packages/d0/02/fa464cdfbe6b26e0600b62c528b72d8608f5cc49f96b8d6e38c95d60c676/rpds_py-0.30.0-cp314-cp314t-win_amd64.whl", hash = "sha256:27f4b0e92de5bfbc6f86e43959e6edd1425c33b5e69aab0984a72047f2bcf1e3", size = 226532, upload-time = "2025-11-30T20:24:14.634Z" }, ] [[package]] @@ -1927,28 +2102,28 @@ wheels = [ [[package]] name = "ruff" -version = "0.13.2" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/02/df/8d7d8c515d33adfc540e2edf6c6021ea1c5a58a678d8cfce9fae59aabcab/ruff-0.13.2.tar.gz", hash = "sha256:cb12fffd32fb16d32cef4ed16d8c7cdc27ed7c944eaa98d99d01ab7ab0b710ff", size = 5416417, upload-time = "2025-09-25T14:54:09.936Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/6e/84/5716a7fa4758e41bf70e603e13637c42cfb9dbf7ceb07180211b9bbf75ef/ruff-0.13.2-py3-none-linux_armv6l.whl", hash = "sha256:3796345842b55f033a78285e4f1641078f902020d8450cade03aad01bffd81c3", size = 12343254, upload-time = "2025-09-25T14:53:27.784Z" }, - { url = "https://files.pythonhosted.org/packages/9b/77/c7042582401bb9ac8eff25360e9335e901d7a1c0749a2b28ba4ecb239991/ruff-0.13.2-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:ff7e4dda12e683e9709ac89e2dd436abf31a4d8a8fc3d89656231ed808e231d2", size = 13040891, upload-time = "2025-09-25T14:53:31.38Z" }, - { url = "https://files.pythonhosted.org/packages/c6/15/125a7f76eb295cb34d19c6778e3a82ace33730ad4e6f28d3427e134a02e0/ruff-0.13.2-py3-none-macosx_11_0_arm64.whl", hash = "sha256:c75e9d2a2fafd1fdd895d0e7e24b44355984affdde1c412a6f6d3f6e16b22d46", size = 12243588, upload-time = "2025-09-25T14:53:33.543Z" }, - { url = "https://files.pythonhosted.org/packages/9e/eb/0093ae04a70f81f8be7fd7ed6456e926b65d238fc122311293d033fdf91e/ruff-0.13.2-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cceac74e7bbc53ed7d15d1042ffe7b6577bf294611ad90393bf9b2a0f0ec7cb6", size = 12491359, upload-time = "2025-09-25T14:53:35.892Z" }, - { url = "https://files.pythonhosted.org/packages/43/fe/72b525948a6956f07dad4a6f122336b6a05f2e3fd27471cea612349fedb9/ruff-0.13.2-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6ae3f469b5465ba6d9721383ae9d49310c19b452a161b57507764d7ef15f4b07", size = 12162486, upload-time = "2025-09-25T14:53:38.171Z" }, - { url = "https://files.pythonhosted.org/packages/6a/e3/0fac422bbbfb2ea838023e0d9fcf1f30183d83ab2482800e2cb892d02dfe/ruff-0.13.2-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4f8f9e3cd6714358238cd6626b9d43026ed19c0c018376ac1ef3c3a04ffb42d8", size = 13871203, upload-time = "2025-09-25T14:53:41.943Z" }, - { url = "https://files.pythonhosted.org/packages/6b/82/b721c8e3ec5df6d83ba0e45dcf00892c4f98b325256c42c38ef136496cbf/ruff-0.13.2-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:c6ed79584a8f6cbe2e5d7dbacf7cc1ee29cbdb5df1172e77fbdadc8bb85a1f89", size = 14929635, upload-time = "2025-09-25T14:53:43.953Z" }, - { url = "https://files.pythonhosted.org/packages/c4/a0/ad56faf6daa507b83079a1ad7a11694b87d61e6bf01c66bd82b466f21821/ruff-0.13.2-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aed130b2fde049cea2019f55deb939103123cdd191105f97a0599a3e753d61b0", size = 14338783, upload-time = "2025-09-25T14:53:46.205Z" }, - { url = "https://files.pythonhosted.org/packages/47/77/ad1d9156db8f99cd01ee7e29d74b34050e8075a8438e589121fcd25c4b08/ruff-0.13.2-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1887c230c2c9d65ed1b4e4cfe4d255577ea28b718ae226c348ae68df958191aa", size = 13355322, upload-time = "2025-09-25T14:53:48.164Z" }, - { url = "https://files.pythonhosted.org/packages/64/8b/e87cfca2be6f8b9f41f0bb12dc48c6455e2d66df46fe61bb441a226f1089/ruff-0.13.2-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5bcb10276b69b3cfea3a102ca119ffe5c6ba3901e20e60cf9efb53fa417633c3", size = 13354427, upload-time = "2025-09-25T14:53:50.486Z" }, - { url = "https://files.pythonhosted.org/packages/7f/df/bf382f3fbead082a575edb860897287f42b1b3c694bafa16bc9904c11ed3/ruff-0.13.2-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:afa721017aa55a555b2ff7944816587f1cb813c2c0a882d158f59b832da1660d", size = 13537637, upload-time = "2025-09-25T14:53:52.887Z" }, - { url = "https://files.pythonhosted.org/packages/51/70/1fb7a7c8a6fc8bd15636288a46e209e81913b87988f26e1913d0851e54f4/ruff-0.13.2-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:1dbc875cf3720c64b3990fef8939334e74cb0ca65b8dbc61d1f439201a38101b", size = 12340025, upload-time = "2025-09-25T14:53:54.88Z" }, - { url = "https://files.pythonhosted.org/packages/4c/27/1e5b3f1c23ca5dd4106d9d580e5c13d9acb70288bff614b3d7b638378cc9/ruff-0.13.2-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:5b939a1b2a960e9742e9a347e5bbc9b3c3d2c716f86c6ae273d9cbd64f193f22", size = 12133449, upload-time = "2025-09-25T14:53:57.089Z" }, - { url = "https://files.pythonhosted.org/packages/2d/09/b92a5ccee289f11ab128df57d5911224197d8d55ef3bd2043534ff72ca54/ruff-0.13.2-py3-none-musllinux_1_2_i686.whl", hash = "sha256:50e2d52acb8de3804fc5f6e2fa3ae9bdc6812410a9e46837e673ad1f90a18736", size = 13051369, upload-time = "2025-09-25T14:53:59.124Z" }, - { url = "https://files.pythonhosted.org/packages/89/99/26c9d1c7d8150f45e346dc045cc49f23e961efceb4a70c47dea0960dea9a/ruff-0.13.2-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:3196bc13ab2110c176b9a4ae5ff7ab676faaa1964b330a1383ba20e1e19645f2", size = 13523644, upload-time = "2025-09-25T14:54:01.622Z" }, - { url = "https://files.pythonhosted.org/packages/f7/00/e7f1501e81e8ec290e79527827af1d88f541d8d26151751b46108978dade/ruff-0.13.2-py3-none-win32.whl", hash = "sha256:7c2a0b7c1e87795fec3404a485096bcd790216c7c146a922d121d8b9c8f1aaac", size = 12245990, upload-time = "2025-09-25T14:54:03.647Z" }, - { url = "https://files.pythonhosted.org/packages/ee/bd/d9f33a73de84fafd0146c6fba4f497c4565fe8fa8b46874b8e438869abc2/ruff-0.13.2-py3-none-win_amd64.whl", hash = "sha256:17d95fb32218357c89355f6f6f9a804133e404fc1f65694372e02a557edf8585", size = 13324004, upload-time = "2025-09-25T14:54:06.05Z" }, - { url = "https://files.pythonhosted.org/packages/c3/12/28fa2f597a605884deb0f65c1b1ae05111051b2a7030f5d8a4ff7f4599ba/ruff-0.13.2-py3-none-win_arm64.whl", hash = "sha256:da711b14c530412c827219312b7d7fbb4877fb31150083add7e8c5336549cea7", size = 12484437, upload-time = "2025-09-25T14:54:08.022Z" }, +version = "0.14.13" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/50/0a/1914efb7903174b381ee2ffeebb4253e729de57f114e63595114c8ca451f/ruff-0.14.13.tar.gz", hash = "sha256:83cd6c0763190784b99650a20fec7633c59f6ebe41c5cc9d45ee42749563ad47", size = 6059504, upload-time = "2026-01-15T20:15:16.918Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c3/ae/0deefbc65ca74b0ab1fd3917f94dc3b398233346a74b8bbb0a916a1a6bf6/ruff-0.14.13-py3-none-linux_armv6l.whl", hash = "sha256:76f62c62cd37c276cb03a275b198c7c15bd1d60c989f944db08a8c1c2dbec18b", size = 13062418, upload-time = "2026-01-15T20:14:50.779Z" }, + { url = "https://files.pythonhosted.org/packages/47/df/5916604faa530a97a3c154c62a81cb6b735c0cb05d1e26d5ad0f0c8ac48a/ruff-0.14.13-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:914a8023ece0528d5cc33f5a684f5f38199bbb566a04815c2c211d8f40b5d0ed", size = 13442344, upload-time = "2026-01-15T20:15:07.94Z" }, + { url = "https://files.pythonhosted.org/packages/4c/f3/e0e694dd69163c3a1671e102aa574a50357536f18a33375050334d5cd517/ruff-0.14.13-py3-none-macosx_11_0_arm64.whl", hash = "sha256:d24899478c35ebfa730597a4a775d430ad0d5631b8647a3ab368c29b7e7bd063", size = 12354720, upload-time = "2026-01-15T20:15:09.854Z" }, + { url = "https://files.pythonhosted.org/packages/c3/e8/67f5fcbbaee25e8fc3b56cc33e9892eca7ffe09f773c8e5907757a7e3bdb/ruff-0.14.13-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9aaf3870f14d925bbaf18b8a2347ee0ae7d95a2e490e4d4aea6813ed15ebc80e", size = 12774493, upload-time = "2026-01-15T20:15:20.908Z" }, + { url = "https://files.pythonhosted.org/packages/6b/ce/d2e9cb510870b52a9565d885c0d7668cc050e30fa2c8ac3fb1fda15c083d/ruff-0.14.13-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ac5b7f63dd3b27cc811850f5ffd8fff845b00ad70e60b043aabf8d6ecc304e09", size = 12815174, upload-time = "2026-01-15T20:15:05.74Z" }, + { url = "https://files.pythonhosted.org/packages/88/00/c38e5da58beebcf4fa32d0ddd993b63dfacefd02ab7922614231330845bf/ruff-0.14.13-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:78d2b1097750d90ba82ce4ba676e85230a0ed694178ca5e61aa9b459970b3eb9", size = 13680909, upload-time = "2026-01-15T20:15:14.537Z" }, + { url = "https://files.pythonhosted.org/packages/61/61/cd37c9dd5bd0a3099ba79b2a5899ad417d8f3b04038810b0501a80814fd7/ruff-0.14.13-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:7d0bf87705acbbcb8d4c24b2d77fbb73d40210a95c3903b443cd9e30824a5032", size = 15144215, upload-time = "2026-01-15T20:15:22.886Z" }, + { url = "https://files.pythonhosted.org/packages/56/8a/85502d7edbf98c2df7b8876f316c0157359165e16cdf98507c65c8d07d3d/ruff-0.14.13-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a3eb5da8e2c9e9f13431032fdcbe7681de9ceda5835efee3269417c13f1fed5c", size = 14706067, upload-time = "2026-01-15T20:14:48.271Z" }, + { url = "https://files.pythonhosted.org/packages/7e/2f/de0df127feb2ee8c1e54354dc1179b4a23798f0866019528c938ba439aca/ruff-0.14.13-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:642442b42957093811cd8d2140dfadd19c7417030a7a68cf8d51fcdd5f217427", size = 14133916, upload-time = "2026-01-15T20:14:57.357Z" }, + { url = "https://files.pythonhosted.org/packages/0d/77/9b99686bb9fe07a757c82f6f95e555c7a47801a9305576a9c67e0a31d280/ruff-0.14.13-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4acdf009f32b46f6e8864af19cbf6841eaaed8638e65c8dac845aea0d703c841", size = 13859207, upload-time = "2026-01-15T20:14:55.111Z" }, + { url = "https://files.pythonhosted.org/packages/7d/46/2bdcb34a87a179a4d23022d818c1c236cb40e477faf0d7c9afb6813e5876/ruff-0.14.13-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:591a7f68860ea4e003917d19b5c4f5ac39ff558f162dc753a2c5de897fd5502c", size = 14043686, upload-time = "2026-01-15T20:14:52.841Z" }, + { url = "https://files.pythonhosted.org/packages/1a/a9/5c6a4f56a0512c691cf143371bcf60505ed0f0860f24a85da8bd123b2bf1/ruff-0.14.13-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:774c77e841cc6e046fc3e91623ce0903d1cd07e3a36b1a9fe79b81dab3de506b", size = 12663837, upload-time = "2026-01-15T20:15:18.921Z" }, + { url = "https://files.pythonhosted.org/packages/fe/bb/b920016ece7651fa7fcd335d9d199306665486694d4361547ccb19394c44/ruff-0.14.13-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:61f4e40077a1248436772bb6512db5fc4457fe4c49e7a94ea7c5088655dd21ae", size = 12805867, upload-time = "2026-01-15T20:14:59.272Z" }, + { url = "https://files.pythonhosted.org/packages/7d/b3/0bd909851e5696cd21e32a8fc25727e5f58f1934b3596975503e6e85415c/ruff-0.14.13-py3-none-musllinux_1_2_i686.whl", hash = "sha256:6d02f1428357fae9e98ac7aa94b7e966fd24151088510d32cf6f902d6c09235e", size = 13208528, upload-time = "2026-01-15T20:15:03.732Z" }, + { url = "https://files.pythonhosted.org/packages/3b/3b/e2d94cb613f6bbd5155a75cbe072813756363eba46a3f2177a1fcd0cd670/ruff-0.14.13-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:e399341472ce15237be0c0ae5fbceca4b04cd9bebab1a2b2c979e015455d8f0c", size = 13929242, upload-time = "2026-01-15T20:15:11.918Z" }, + { url = "https://files.pythonhosted.org/packages/6a/c5/abd840d4132fd51a12f594934af5eba1d5d27298a6f5b5d6c3be45301caf/ruff-0.14.13-py3-none-win32.whl", hash = "sha256:ef720f529aec113968b45dfdb838ac8934e519711da53a0456038a0efecbd680", size = 12919024, upload-time = "2026-01-15T20:14:43.647Z" }, + { url = "https://files.pythonhosted.org/packages/c2/55/6384b0b8ce731b6e2ade2b5449bf07c0e4c31e8a2e68ea65b3bafadcecc5/ruff-0.14.13-py3-none-win_amd64.whl", hash = "sha256:6070bd026e409734b9257e03e3ef18c6e1a216f0435c6751d7a8ec69cb59abef", size = 14097887, upload-time = "2026-01-15T20:15:01.48Z" }, + { url = "https://files.pythonhosted.org/packages/4d/e1/7348090988095e4e39560cfc2f7555b1b2a7357deba19167b600fdf5215d/ruff-0.14.13-py3-none-win_arm64.whl", hash = "sha256:7ab819e14f1ad9fe39f246cfcc435880ef7a9390d81a2b6ac7e01039083dd247", size = 13080224, upload-time = "2026-01-15T20:14:45.853Z" }, ] [[package]] @@ -2056,15 +2231,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050, upload-time = "2024-12-04T17:35:26.475Z" }, ] -[[package]] -name = "sniffio" -version = "1.3.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/a2/87/a6771e1546d97e7e041b6ae58d80074f81b7d5121207425c964ddf5cfdbd/sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc", size = 20372, upload-time = "2024-02-25T23:20:04.057Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2", size = 10235, upload-time = "2024-02-25T23:20:01.196Z" }, -] - [[package]] name = "stack-data" version = "0.6.3" @@ -2079,6 +2245,19 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/f1/7b/ce1eafaf1a76852e2ec9b22edecf1daa58175c090266e9f6c64afcd81d91/stack_data-0.6.3-py3-none-any.whl", hash = "sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695", size = 24521, upload-time = "2023-09-30T13:58:03.53Z" }, ] +[[package]] +name = "starlette" +version = "0.50.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, + { name = "typing-extensions", marker = "python_full_version < '3.13'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ba/b8/73a0e6a6e079a9d9cfa64113d771e421640b6f679a52eeb9b32f72d871a1/starlette-0.50.0.tar.gz", hash = "sha256:a2a17b22203254bcbc2e1f926d2d55f3f9497f769416b3190768befe598fa3ca", size = 2646985, upload-time = "2025-11-01T15:25:27.516Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d9/52/1064f510b141bd54025f9b55105e26d1fa970b9be67ad766380a3c9b74b0/starlette-0.50.0-py3-none-any.whl", hash = "sha256:9e5391843ec9b6e472eed1365a78c8098cfceb7a74bfd4d6b1c0c0095efb3bca", size = 74033, upload-time = "2025-11-01T15:25:25.461Z" }, +] + [[package]] name = "text-unidecode" version = "1.3" @@ -2090,11 +2269,11 @@ wheels = [ [[package]] name = "tomlkit" -version = "0.13.3" +version = "0.14.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/cc/18/0bbf3884e9eaa38819ebe46a7bd25dcd56b67434402b66a58c4b8e552575/tomlkit-0.13.3.tar.gz", hash = "sha256:430cf247ee57df2b94ee3fbe588e71d362a941ebb545dec29b53961d61add2a1", size = 185207, upload-time = "2025-06-05T07:13:44.947Z" } +sdist = { url = "https://files.pythonhosted.org/packages/c3/af/14b24e41977adb296d6bd1fb59402cf7d60ce364f90c890bd2ec65c43b5a/tomlkit-0.14.0.tar.gz", hash = "sha256:cf00efca415dbd57575befb1f6634c4f42d2d87dbba376128adb42c121b87064", size = 187167, upload-time = "2026-01-13T01:14:53.304Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/bd/75/8539d011f6be8e29f339c42e633aae3cb73bffa95dd0f9adec09b9c58e85/tomlkit-0.13.3-py3-none-any.whl", hash = "sha256:c89c649d79ee40629a9fda55f8ace8c6a1b42deb912b2a8fd8d942ddadb606b0", size = 38901, upload-time = "2025-06-05T07:13:43.546Z" }, + { url = "https://files.pythonhosted.org/packages/b5/11/87d6d29fb5d237229d67973a6c9e06e048f01cf4994dee194ab0ea841814/tomlkit-0.14.0-py3-none-any.whl", hash = "sha256:592064ed85b40fa213469f81ac584f67a4f2992509a7c3ea2d632208623a3680", size = 39310, upload-time = "2026-01-13T01:14:51.965Z" }, ] [[package]] @@ -2108,39 +2287,39 @@ wheels = [ [[package]] name = "traittypes" -version = "0.2.1" +version = "0.2.3" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "traitlets" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/8a/71/0578e44d2110f93c2136eb705f5b11e706e1e8ea3acaaaeac043bd40d8fd/traittypes-0.2.1.tar.gz", hash = "sha256:be6fa26294733e7489822ded4ae25da5b4824a8a7a0e0c2dccfde596e3489bd6", size = 13544, upload-time = "2018-06-16T07:34:00.929Z" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/8d/37d686f52dfbccc47b857751531ffdec262b0f35158dd3b306030dafdb83/traittypes-0.2.3.tar.gz", hash = "sha256:212feed38d566d772648768b78d3347c148ef23915b91c02078188e631316c86", size = 16003, upload-time = "2025-10-22T11:06:09.952Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/9c/d1/8d5bd662703cc1764d986f6908a608777305946fa634d34c470cd4a1e729/traittypes-0.2.1-py2.py3-none-any.whl", hash = "sha256:1340af133810b6eee1a2eb2e988f862b0d12b6c2d16f282aaf3207b782134c2e", size = 8550, upload-time = "2018-06-16T07:33:59.594Z" }, + { url = "https://files.pythonhosted.org/packages/8d/c0/fdf9d3ee103ce66a55f0532835ad5e154226c5222423c6636ba049dc42fc/traittypes-0.2.3-py2.py3-none-any.whl", hash = "sha256:49016082ce740d6556d9bb4672ee2d899cd14f9365f17cbb79d5d96b47096d4e", size = 8130, upload-time = "2025-10-22T11:06:08.824Z" }, ] [[package]] name = "ty" -version = "0.0.1a21" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/b7/0f/65606ccee2da5a05a3c3362f5233f058e9d29d3c5521697c7ae79545d246/ty-0.0.1a21.tar.gz", hash = "sha256:e941e9a9d1e54b03eeaf9c3197c26a19cf76009fd5e41e16e5657c1c827bd6d3", size = 4263980, upload-time = "2025-09-19T06:54:06.412Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/d3/7a/c87a42d0a45cfa2d5c06c8d66aa1b243db16dc31b25e545fb0263308523b/ty-0.0.1a21-py3-none-linux_armv6l.whl", hash = "sha256:1f276ceab23a1410aec09508248c76ae0989c67fb7a0c287e0d4564994295531", size = 8421116, upload-time = "2025-09-19T06:53:35.029Z" }, - { url = "https://files.pythonhosted.org/packages/99/c2/721bf4fa21c84d4cdae0e57a06a88e7e64fc2dca38820232bd6cbeef644f/ty-0.0.1a21-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:3c3bc66fcae41eff133cfe326dd65d82567a2fb5d4efe2128773b10ec2766819", size = 8512556, upload-time = "2025-09-19T06:53:37.455Z" }, - { url = "https://files.pythonhosted.org/packages/6c/58/b0585d9d61673e864a87e95760dfa2a90ac15702e7612ab064d354f6752a/ty-0.0.1a21-py3-none-macosx_11_0_arm64.whl", hash = "sha256:cc0880ec344fbdf736b05d8d0da01f0caaaa02409bd9a24b68d18d0127a79b0e", size = 8109188, upload-time = "2025-09-19T06:53:39.469Z" }, - { url = "https://files.pythonhosted.org/packages/ea/08/edf7b59ba24bb1a1af341207fc5a0106eb1fe4264c1d7fb672c171dd2daf/ty-0.0.1a21-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:334d2a212ebf42a0e55d57561926af7679fe1e878175e11dcb81ad8df892844e", size = 8279000, upload-time = "2025-09-19T06:53:41.309Z" }, - { url = "https://files.pythonhosted.org/packages/05/8e/4b5e562623e0aa24a3972510287b4bc5d98251afb353388d14008ea99954/ty-0.0.1a21-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a8c769987d00fbc33054ff7e342633f475ea10dc43bc60fb9fb056159d48cb90", size = 8243261, upload-time = "2025-09-19T06:53:42.736Z" }, - { url = "https://files.pythonhosted.org/packages/c3/09/6476fa21f9962d5b9c8e8053fd0442ed8e3ceb7502e39700ab1935555199/ty-0.0.1a21-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:218d53e7919e885bd98e9196d9cb952d82178b299aa36da6f7f39333eb7400ed", size = 9150228, upload-time = "2025-09-19T06:53:44.242Z" }, - { url = "https://files.pythonhosted.org/packages/d2/96/49c158b6255fc1e22a5701c38f7d4c1b7f8be17a476ce9226fcae82a7b36/ty-0.0.1a21-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:84243455f295ed850bd53f7089819321807d4e6ee3b1cbff6086137ae0259466", size = 9628323, upload-time = "2025-09-19T06:53:45.998Z" }, - { url = "https://files.pythonhosted.org/packages/f4/65/37a8a5cb7b3254365c54b5e10f069e311c4252ed160b86fabd1203fbca5c/ty-0.0.1a21-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:87a200c21e02962e8a27374d9d152582331d57d709672431be58f4f898bf6cad", size = 9251233, upload-time = "2025-09-19T06:53:48.042Z" }, - { url = "https://files.pythonhosted.org/packages/a3/30/5b06120747da4a0f0bc54a4b051b42172603033dbee0bcf51bce7c21ada9/ty-0.0.1a21-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:be8f457d7841b7ead2a3f6b65ba668abc172a1150a0f1f6c0958af3725dbb61a", size = 8996186, upload-time = "2025-09-19T06:53:49.753Z" }, - { url = "https://files.pythonhosted.org/packages/af/fc/5aa122536b1acb57389f404f6328c20342242b78513a60459fee9b7d6f27/ty-0.0.1a21-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1474d883129bb63da3b2380fc7ead824cd3baf6a9551e6aa476ffefc58057af3", size = 8722848, upload-time = "2025-09-19T06:53:51.566Z" }, - { url = "https://files.pythonhosted.org/packages/3a/c1/456dcc65a149df8410b1d75f0197a31d4beef74b7bb44cce42b03bf074e8/ty-0.0.1a21-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:0efba2e52b58f536f4198ba5c4a36cac2ba67d83ec6f429ebc7704233bcda4c3", size = 8220727, upload-time = "2025-09-19T06:53:53.753Z" }, - { url = "https://files.pythonhosted.org/packages/a4/86/b37505d942cd68235be5be407e43e15afa36669aaa2db9b6e5b43c1d9f91/ty-0.0.1a21-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:5dfc73299d441cc6454e36ed0a976877415024143dfca6592dc36f7701424383", size = 8279114, upload-time = "2025-09-19T06:53:55.343Z" }, - { url = "https://files.pythonhosted.org/packages/55/fe/0d9816f36d258e6b2a3d7518421be17c68954ea9a66b638de49588cc2e27/ty-0.0.1a21-py3-none-musllinux_1_2_i686.whl", hash = "sha256:ba13d03b9e095216ceb4e4d554a308517f28ab0a6e4dcd07cfe94563e4c2c489", size = 8701798, upload-time = "2025-09-19T06:53:57.17Z" }, - { url = "https://files.pythonhosted.org/packages/4e/7a/70539932e3e5a36c54bd5432ff44ed0c301c41a528365d8de5b8f79f4317/ty-0.0.1a21-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:9463cac96b8f1bb5ba740fe1d42cd6bd152b43c5b159b2f07f8fd629bcdded34", size = 8872676, upload-time = "2025-09-19T06:53:59.357Z" }, - { url = "https://files.pythonhosted.org/packages/ea/94/809d85f6982841fe28526ace3b282b0458d0a96bbc6b1a982d9269a5e481/ty-0.0.1a21-py3-none-win32.whl", hash = "sha256:ecf41706b803827b0de8717f32a434dad1e67be9f4b8caf403e12013179ea06a", size = 8003866, upload-time = "2025-09-19T06:54:01.393Z" }, - { url = "https://files.pythonhosted.org/packages/50/16/b3e914cec2a6344d2c30d3780ca6ecd39667173611f8776cecfd1294eab9/ty-0.0.1a21-py3-none-win_amd64.whl", hash = "sha256:7505aeb8bf2a62f00f12cfa496f6c965074d75c8126268776565284c8a12d5dd", size = 8675300, upload-time = "2025-09-19T06:54:02.893Z" }, - { url = "https://files.pythonhosted.org/packages/16/0b/293be6bc19f6da5e9b15e615a7100504f307dd4294d2c61cee3de91198e5/ty-0.0.1a21-py3-none-win_arm64.whl", hash = "sha256:21f708d02b6588323ffdbfdba38830dd0ecfd626db50aa6006b296b5470e52f9", size = 8193800, upload-time = "2025-09-19T06:54:04.583Z" }, +version = "0.0.12" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b5/78/ba1a4ad403c748fbba8be63b7e774a90e80b67192f6443d624c64fe4aaab/ty-0.0.12.tar.gz", hash = "sha256:cd01810e106c3b652a01b8f784dd21741de9fdc47bd595d02c122a7d5cefeee7", size = 4981303, upload-time = "2026-01-14T22:30:48.537Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7d/8f/c21314d074dda5fb13d3300fa6733fd0d8ff23ea83a721818740665b6314/ty-0.0.12-py3-none-linux_armv6l.whl", hash = "sha256:eb9da1e2c68bd754e090eab39ed65edf95168d36cbeb43ff2bd9f86b4edd56d1", size = 9614164, upload-time = "2026-01-14T22:30:44.016Z" }, + { url = "https://files.pythonhosted.org/packages/09/28/f8a4d944d13519d70c486e8f96d6fa95647ac2aa94432e97d5cfec1f42f6/ty-0.0.12-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:c181f42aa19b0ed7f1b0c2d559980b1f1d77cc09419f51c8321c7ddf67758853", size = 9542337, upload-time = "2026-01-14T22:30:05.687Z" }, + { url = "https://files.pythonhosted.org/packages/e1/9c/f576e360441de7a8201daa6dc4ebc362853bc5305e059cceeb02ebdd9a48/ty-0.0.12-py3-none-macosx_11_0_arm64.whl", hash = "sha256:1f829e1eecd39c3e1b032149db7ae6a3284f72fc36b42436e65243a9ed1173db", size = 8909582, upload-time = "2026-01-14T22:30:46.089Z" }, + { url = "https://files.pythonhosted.org/packages/d6/13/0898e494032a5d8af3060733d12929e3e7716db6c75eac63fa125730a3e7/ty-0.0.12-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f45162e7826e1789cf3374627883cdeb0d56b82473a0771923e4572928e90be3", size = 9384932, upload-time = "2026-01-14T22:30:13.769Z" }, + { url = "https://files.pythonhosted.org/packages/e4/1a/b35b6c697008a11d4cedfd34d9672db2f0a0621ec80ece109e13fca4dfef/ty-0.0.12-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d11fec40b269bec01e751b2337d1c7ffa959a2c2090a950d7e21c2792442cccd", size = 9453140, upload-time = "2026-01-14T22:30:11.131Z" }, + { url = "https://files.pythonhosted.org/packages/dd/1e/71c9edbc79a3c88a0711324458f29c7dbf6c23452c6e760dc25725483064/ty-0.0.12-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09d99e37e761a4d2651ad9d5a610d11235fbcbf35dc6d4bc04abf54e7cf894f1", size = 9960680, upload-time = "2026-01-14T22:30:33.621Z" }, + { url = "https://files.pythonhosted.org/packages/0e/75/39375129f62dd22f6ad5a99cd2a42fd27d8b91b235ce2db86875cdad397d/ty-0.0.12-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:d9ca0cdb17bd37397da7b16a7cd23423fc65c3f9691e453ad46c723d121225a1", size = 10904518, upload-time = "2026-01-14T22:30:08.464Z" }, + { url = "https://files.pythonhosted.org/packages/32/5e/26c6d88fafa11a9d31ca9f4d12989f57782ec61e7291d4802d685b5be118/ty-0.0.12-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fcf2757b905e7eddb7e456140066335b18eb68b634a9f72d6f54a427ab042c64", size = 10525001, upload-time = "2026-01-14T22:30:16.454Z" }, + { url = "https://files.pythonhosted.org/packages/c2/a5/2f0b91894af13187110f9ad7ee926d86e4e6efa755c9c88a820ed7f84c85/ty-0.0.12-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:00cf34c1ebe1147efeda3021a1064baa222c18cdac114b7b050bbe42deb4ca80", size = 10307103, upload-time = "2026-01-14T22:30:41.221Z" }, + { url = "https://files.pythonhosted.org/packages/4b/77/13d0410827e4bc713ebb7fdaf6b3590b37dcb1b82e0a81717b65548f2442/ty-0.0.12-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2bb3a655bd869352e9a22938d707631ac9fbca1016242b1f6d132d78f347c851", size = 10072737, upload-time = "2026-01-14T22:30:51.783Z" }, + { url = "https://files.pythonhosted.org/packages/e1/dd/fc36d8bac806c74cf04b4ca735bca14d19967ca84d88f31e121767880df1/ty-0.0.12-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:4658e282c7cb82be304052f8f64f9925f23c3c4f90eeeb32663c74c4b095d7ba", size = 9368726, upload-time = "2026-01-14T22:30:18.683Z" }, + { url = "https://files.pythonhosted.org/packages/54/70/9e8e461647550f83e2fe54bc632ccbdc17a4909644783cdbdd17f7296059/ty-0.0.12-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:c167d838eaaa06e03bb66a517f75296b643d950fbd93c1d1686a187e5a8dbd1f", size = 9454704, upload-time = "2026-01-14T22:30:22.759Z" }, + { url = "https://files.pythonhosted.org/packages/04/9b/6292cf7c14a0efeca0539cf7d78f453beff0475cb039fbea0eb5d07d343d/ty-0.0.12-py3-none-musllinux_1_2_i686.whl", hash = "sha256:2956e0c9ab7023533b461d8a0e6b2ea7b78e01a8dde0688e8234d0fce10c4c1c", size = 9649829, upload-time = "2026-01-14T22:30:31.234Z" }, + { url = "https://files.pythonhosted.org/packages/49/bd/472a5d2013371e4870886cff791c94abdf0b92d43d305dd0f8e06b6ff719/ty-0.0.12-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:5c6a3fd7479580009f21002f3828320621d8a82d53b7ba36993234e3ccad58c8", size = 10162814, upload-time = "2026-01-14T22:30:36.174Z" }, + { url = "https://files.pythonhosted.org/packages/31/e9/2ecbe56826759845a7c21d80aa28187865ea62bc9757b056f6cbc06f78ed/ty-0.0.12-py3-none-win32.whl", hash = "sha256:a91c24fd75c0f1796d8ede9083e2c0ec96f106dbda73a09fe3135e075d31f742", size = 9140115, upload-time = "2026-01-14T22:30:38.903Z" }, + { url = "https://files.pythonhosted.org/packages/5d/6d/d9531eff35a5c0ec9dbc10231fac21f9dd6504814048e81d6ce1c84dc566/ty-0.0.12-py3-none-win_amd64.whl", hash = "sha256:df151894be55c22d47068b0f3b484aff9e638761e2267e115d515fcc9c5b4a4b", size = 9884532, upload-time = "2026-01-14T22:30:25.112Z" }, + { url = "https://files.pythonhosted.org/packages/e9/f3/20b49e75967023b123a221134548ad7000f9429f13fdcdda115b4c26305f/ty-0.0.12-py3-none-win_arm64.whl", hash = "sha256:cea99d334b05629de937ce52f43278acf155d3a316ad6a35356635f886be20ea", size = 9313974, upload-time = "2026-01-14T22:30:27.44Z" }, ] [[package]] @@ -2170,11 +2349,11 @@ wheels = [ [[package]] name = "types-python-dateutil" -version = "2.9.0.20250822" +version = "2.9.0.20251115" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/0c/0a/775f8551665992204c756be326f3575abba58c4a3a52eef9909ef4536428/types_python_dateutil-2.9.0.20250822.tar.gz", hash = "sha256:84c92c34bd8e68b117bff742bc00b692a1e8531262d4507b33afcc9f7716cd53", size = 16084, upload-time = "2025-08-22T03:02:00.613Z" } +sdist = { url = "https://files.pythonhosted.org/packages/6a/36/06d01fb52c0d57e9ad0c237654990920fa41195e4b3d640830dabf9eeb2f/types_python_dateutil-2.9.0.20251115.tar.gz", hash = "sha256:8a47f2c3920f52a994056b8786309b43143faa5a64d4cbb2722d6addabdf1a58", size = 16363, upload-time = "2025-11-15T03:00:13.717Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/ab/d9/a29dfa84363e88b053bf85a8b7f212a04f0d7343a4d24933baa45c06e08b/types_python_dateutil-2.9.0.20250822-py3-none-any.whl", hash = "sha256:849d52b737e10a6dc6621d2bd7940ec7c65fcb69e6aa2882acf4e56b2b508ddc", size = 17892, upload-time = "2025-08-22T03:01:59.436Z" }, + { url = "https://files.pythonhosted.org/packages/43/0b/56961d3ba517ed0df9b3a27bfda6514f3d01b28d499d1bce9068cfe4edd1/types_python_dateutil-2.9.0.20251115-py3-none-any.whl", hash = "sha256:9cf9c1c582019753b8639a081deefd7e044b9fa36bd8217f565c6c4e36ee0624", size = 18251, upload-time = "2025-11-15T03:00:12.317Z" }, ] [[package]] @@ -2201,23 +2380,23 @@ wheels = [ [[package]] name = "types-requests" -version = "2.32.4.20250913" +version = "2.32.4.20260107" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "urllib3" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/36/27/489922f4505975b11de2b5ad07b4fe1dca0bca9be81a703f26c5f3acfce5/types_requests-2.32.4.20250913.tar.gz", hash = "sha256:abd6d4f9ce3a9383f269775a9835a4c24e5cd6b9f647d64f88aa4613c33def5d", size = 23113, upload-time = "2025-09-13T02:40:02.309Z" } +sdist = { url = "https://files.pythonhosted.org/packages/0f/f3/a0663907082280664d745929205a89d41dffb29e89a50f753af7d57d0a96/types_requests-2.32.4.20260107.tar.gz", hash = "sha256:018a11ac158f801bfa84857ddec1650750e393df8a004a8a9ae2a9bec6fcb24f", size = 23165, upload-time = "2026-01-07T03:20:54.091Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/2a/20/9a227ea57c1285986c4cf78400d0a91615d25b24e257fd9e2969606bdfae/types_requests-2.32.4.20250913-py3-none-any.whl", hash = "sha256:78c9c1fffebbe0fa487a418e0fa5252017e9c60d1a2da394077f1780f655d7e1", size = 20658, upload-time = "2025-09-13T02:40:01.115Z" }, + { url = "https://files.pythonhosted.org/packages/1c/12/709ea261f2bf91ef0a26a9eed20f2623227a8ed85610c1e54c5805692ecb/types_requests-2.32.4.20260107-py3-none-any.whl", hash = "sha256:b703fe72f8ce5b31ef031264fe9395cac8f46a04661a79f7ed31a80fb308730d", size = 20676, upload-time = "2026-01-07T03:20:52.929Z" }, ] [[package]] name = "types-setuptools" -version = "80.9.0.20250822" +version = "80.9.0.20251223" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/19/bd/1e5f949b7cb740c9f0feaac430e301b8f1c5f11a81e26324299ea671a237/types_setuptools-80.9.0.20250822.tar.gz", hash = "sha256:070ea7716968ec67a84c7f7768d9952ff24d28b65b6594797a464f1b3066f965", size = 41296, upload-time = "2025-08-22T03:02:08.771Z" } +sdist = { url = "https://files.pythonhosted.org/packages/00/07/d1b605230730990de20477150191d6dccf6aecc037da94c9960a5d563bc8/types_setuptools-80.9.0.20251223.tar.gz", hash = "sha256:d3411059ae2f5f03985217d86ac6084efea2c9e9cacd5f0869ef950f308169b2", size = 42420, upload-time = "2025-12-23T03:18:26.752Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/b6/2d/475bf15c1cdc172e7a0d665b6e373ebfb1e9bf734d3f2f543d668b07a142/types_setuptools-80.9.0.20250822-py3-none-any.whl", hash = "sha256:53bf881cb9d7e46ed12c76ef76c0aaf28cfe6211d3fab12e0b83620b1a8642c3", size = 63179, upload-time = "2025-08-22T03:02:07.643Z" }, + { url = "https://files.pythonhosted.org/packages/78/5c/b8877da94012dbc6643e4eeca22bca9b99b295be05d161f8a403ae9387c0/types_setuptools-80.9.0.20251223-py3-none-any.whl", hash = "sha256:1b36db79d724c2287d83dc052cf887b47c0da6a2fff044378be0b019545f56e6", size = 64318, upload-time = "2025-12-23T03:18:25.868Z" }, ] [[package]] @@ -2231,23 +2410,23 @@ wheels = [ [[package]] name = "typing-inspection" -version = "0.4.1" +version = "0.4.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/f8/b1/0c11f5058406b3af7609f121aaa6b609744687f1d158b3c3a5bf4cc94238/typing_inspection-0.4.1.tar.gz", hash = "sha256:6ae134cc0203c33377d43188d4064e9b357dba58cff3185f22924610e70a9d28", size = 75726, upload-time = "2025-05-21T18:55:23.885Z" } +sdist = { url = "https://files.pythonhosted.org/packages/55/e3/70399cb7dd41c10ac53367ae42139cf4b1ca5f36bb3dc6c9d33acdb43655/typing_inspection-0.4.2.tar.gz", hash = "sha256:ba561c48a67c5958007083d386c3295464928b01faa735ab8547c5692e87f464", size = 75949, upload-time = "2025-10-01T02:14:41.687Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/17/69/cd203477f944c353c31bade965f880aa1061fd6bf05ded0726ca845b6ff7/typing_inspection-0.4.1-py3-none-any.whl", hash = "sha256:389055682238f53b04f7badcb49b989835495a96700ced5dab2d8feae4b26f51", size = 14552, upload-time = "2025-05-21T18:55:22.152Z" }, + { url = "https://files.pythonhosted.org/packages/dc/9b/47798a6c91d8bdb567fe2698fe81e0c6b7cb7ef4d13da4114b41d239f65d/typing_inspection-0.4.2-py3-none-any.whl", hash = "sha256:4ed1cacbdc298c220f1bd249ed5287caa16f34d44ef4e9c3d0cbad5b521545e7", size = 14611, upload-time = "2025-10-01T02:14:40.154Z" }, ] [[package]] name = "tzdata" -version = "2025.2" +version = "2025.3" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/95/32/1a225d6164441be760d75c2c42e2780dc0873fe382da3e98a2e1e48361e5/tzdata-2025.2.tar.gz", hash = "sha256:b60a638fcc0daffadf82fe0f57e53d06bdec2f36c4df66280ae79bce6bd6f2b9", size = 196380, upload-time = "2025-03-23T13:54:43.652Z" } +sdist = { url = "https://files.pythonhosted.org/packages/5e/a7/c202b344c5ca7daf398f3b8a477eeb205cf3b6f32e7ec3a6bac0629ca975/tzdata-2025.3.tar.gz", hash = "sha256:de39c2ca5dc7b0344f2eba86f49d614019d29f060fc4ebc8a417896a620b56a7", size = 196772, upload-time = "2025-12-13T17:45:35.667Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/5c/23/c7abc0ca0a1526a0774eca151daeb8de62ec457e77262b66b359c3c7679e/tzdata-2025.2-py2.py3-none-any.whl", hash = "sha256:1a403fada01ff9221ca8044d701868fa132215d84beb92242d9acd2147f667a8", size = 347839, upload-time = "2025-03-23T13:54:41.845Z" }, + { url = "https://files.pythonhosted.org/packages/c7/b0/003792df09decd6849a5e39c28b513c06e84436a54440380862b5aeff25d/tzdata-2025.3-py2.py3-none-any.whl", hash = "sha256:06a47e5700f3081aab02b2e513160914ff0694bce9947d6b76ebd6bf57cfc5d1", size = 348521, upload-time = "2025-12-13T17:45:33.889Z" }, ] [[package]] @@ -2264,25 +2443,38 @@ wheels = [ [[package]] name = "urllib3" -version = "2.5.0" +version = "2.6.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c7/24/5f1b3bdffd70275f6661c76461e25f024d5a38a46f04aaca912426a2b1d3/urllib3-2.6.3.tar.gz", hash = "sha256:1b62b6884944a57dbe321509ab94fd4d3b307075e0c2eae991ac71ee15ad38ed", size = 435556, upload-time = "2026-01-07T16:24:43.925Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/39/08/aaaad47bc4e9dc8c725e68f9d04865dbcb2052843ff09c97b08904852d84/urllib3-2.6.3-py3-none-any.whl", hash = "sha256:bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4", size = 131584, upload-time = "2026-01-07T16:24:42.685Z" }, +] + +[[package]] +name = "uvicorn" +version = "0.40.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/15/22/9ee70a2574a4f4599c47dd506532914ce044817c7752a79b6a51286319bc/urllib3-2.5.0.tar.gz", hash = "sha256:3fc47733c7e419d4bc3f6b3dc2b4f890bb743906a30d56ba4a5bfa4bbff92760", size = 393185, upload-time = "2025-06-18T14:07:41.644Z" } +dependencies = [ + { name = "click" }, + { name = "h11" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c3/d1/8f3c683c9561a4e6689dd3b1d345c815f10f86acd044ee1fb9a4dcd0b8c5/uvicorn-0.40.0.tar.gz", hash = "sha256:839676675e87e73694518b5574fd0f24c9d97b46bea16df7b8c05ea1a51071ea", size = 81761, upload-time = "2025-12-21T14:16:22.45Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/a7/c2/fe1e52489ae3122415c51f387e221dd0773709bad6c6cdaa599e8a2c5185/urllib3-2.5.0-py3-none-any.whl", hash = "sha256:e6b01673c0fa6a13e374b50871808eb3bf7046c4b125b216f6bf1cc604cff0dc", size = 129795, upload-time = "2025-06-18T14:07:40.39Z" }, + { url = "https://files.pythonhosted.org/packages/3d/d8/2083a1daa7439a66f3a48589a57d576aa117726762618f6bb09fe3798796/uvicorn-0.40.0-py3-none-any.whl", hash = "sha256:c6c8f55bc8bf13eb6fa9ff87ad62308bbbc33d0b67f84293151efe87e0d5f2ee", size = 68502, upload-time = "2025-12-21T14:16:21.041Z" }, ] [[package]] name = "virtualenv" -version = "20.34.0" +version = "20.36.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "distlib" }, { name = "filelock" }, { name = "platformdirs" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/1c/14/37fcdba2808a6c615681cd216fecae00413c9dab44fb2e57805ecf3eaee3/virtualenv-20.34.0.tar.gz", hash = "sha256:44815b2c9dee7ed86e387b842a84f20b93f7f417f95886ca1996a72a4138eb1a", size = 6003808, upload-time = "2025-08-13T14:24:07.464Z" } +sdist = { url = "https://files.pythonhosted.org/packages/aa/a3/4d310fa5f00863544e1d0f4de93bddec248499ccf97d4791bc3122c9d4f3/virtualenv-20.36.1.tar.gz", hash = "sha256:8befb5c81842c641f8ee658481e42641c68b5eab3521d8e092d18320902466ba", size = 6032239, upload-time = "2026-01-09T18:21:01.296Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/76/06/04c8e804f813cf972e3262f3f8584c232de64f0cde9f703b46cf53a45090/virtualenv-20.34.0-py3-none-any.whl", hash = "sha256:341f5afa7eee943e4984a9207c025feedd768baff6753cd660c857ceb3e36026", size = 5983279, upload-time = "2025-08-13T14:24:05.111Z" }, + { url = "https://files.pythonhosted.org/packages/6a/2a/dc2228b2888f51192c7dc766106cd475f1b768c10caaf9727659726f7391/virtualenv-20.36.1-py3-none-any.whl", hash = "sha256:575a8d6b124ef88f6f51d56d656132389f961062a9177016a50e4f507bbcc19f", size = 6008258, upload-time = "2026-01-09T18:20:59.425Z" }, ] [[package]] @@ -2304,21 +2496,57 @@ wheels = [ ] [[package]] -name = "websocket-client" -version = "1.9.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/2c/41/aa4bf9664e4cda14c3b39865b12251e8e7d239f4cd0e3cc1b6c2ccde25c1/websocket_client-1.9.0.tar.gz", hash = "sha256:9e813624b6eb619999a97dc7958469217c3176312b3a16a4bd1bc7e08a46ec98", size = 70576, upload-time = "2025-10-07T21:16:36.495Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/34/db/b10e48aa8fff7407e67470363eac595018441cf32d5e1001567a7aeba5d2/websocket_client-1.9.0-py3-none-any.whl", hash = "sha256:af248a825037ef591efbf6ed20cc5faa03d3b47b9e5a2230a529eeee1c1fc3ef", size = 82616, upload-time = "2025-10-07T21:16:34.951Z" }, +name = "websockets" +version = "16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/04/24/4b2031d72e840ce4c1ccb255f693b15c334757fc50023e4db9537080b8c4/websockets-16.0.tar.gz", hash = "sha256:5f6261a5e56e8d5c42a4497b364ea24d94d9563e8fbd44e78ac40879c60179b5", size = 179346, upload-time = "2026-01-10T09:23:47.181Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/84/7b/bac442e6b96c9d25092695578dda82403c77936104b5682307bd4deb1ad4/websockets-16.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:71c989cbf3254fbd5e84d3bff31e4da39c43f884e64f2551d14bb3c186230f00", size = 177365, upload-time = "2026-01-10T09:22:46.787Z" }, + { url = "https://files.pythonhosted.org/packages/b0/fe/136ccece61bd690d9c1f715baaeefd953bb2360134de73519d5df19d29ca/websockets-16.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:8b6e209ffee39ff1b6d0fa7bfef6de950c60dfb91b8fcead17da4ee539121a79", size = 175038, upload-time = "2026-01-10T09:22:47.999Z" }, + { url = "https://files.pythonhosted.org/packages/40/1e/9771421ac2286eaab95b8575b0cb701ae3663abf8b5e1f64f1fd90d0a673/websockets-16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:86890e837d61574c92a97496d590968b23c2ef0aeb8a9bc9421d174cd378ae39", size = 175328, upload-time = "2026-01-10T09:22:49.809Z" }, + { url = "https://files.pythonhosted.org/packages/18/29/71729b4671f21e1eaa5d6573031ab810ad2936c8175f03f97f3ff164c802/websockets-16.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:9b5aca38b67492ef518a8ab76851862488a478602229112c4b0d58d63a7a4d5c", size = 184915, upload-time = "2026-01-10T09:22:51.071Z" }, + { url = "https://files.pythonhosted.org/packages/97/bb/21c36b7dbbafc85d2d480cd65df02a1dc93bf76d97147605a8e27ff9409d/websockets-16.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e0334872c0a37b606418ac52f6ab9cfd17317ac26365f7f65e203e2d0d0d359f", size = 186152, upload-time = "2026-01-10T09:22:52.224Z" }, + { url = "https://files.pythonhosted.org/packages/4a/34/9bf8df0c0cf88fa7bfe36678dc7b02970c9a7d5e065a3099292db87b1be2/websockets-16.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a0b31e0b424cc6b5a04b8838bbaec1688834b2383256688cf47eb97412531da1", size = 185583, upload-time = "2026-01-10T09:22:53.443Z" }, + { url = "https://files.pythonhosted.org/packages/47/88/4dd516068e1a3d6ab3c7c183288404cd424a9a02d585efbac226cb61ff2d/websockets-16.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:485c49116d0af10ac698623c513c1cc01c9446c058a4e61e3bf6c19dff7335a2", size = 184880, upload-time = "2026-01-10T09:22:55.033Z" }, + { url = "https://files.pythonhosted.org/packages/91/d6/7d4553ad4bf1c0421e1ebd4b18de5d9098383b5caa1d937b63df8d04b565/websockets-16.0-cp312-cp312-win32.whl", hash = "sha256:eaded469f5e5b7294e2bdca0ab06becb6756ea86894a47806456089298813c89", size = 178261, upload-time = "2026-01-10T09:22:56.251Z" }, + { url = "https://files.pythonhosted.org/packages/c3/f0/f3a17365441ed1c27f850a80b2bc680a0fa9505d733fe152fdf5e98c1c0b/websockets-16.0-cp312-cp312-win_amd64.whl", hash = "sha256:5569417dc80977fc8c2d43a86f78e0a5a22fee17565d78621b6bb264a115d4ea", size = 178693, upload-time = "2026-01-10T09:22:57.478Z" }, + { url = "https://files.pythonhosted.org/packages/cc/9c/baa8456050d1c1b08dd0ec7346026668cbc6f145ab4e314d707bb845bf0d/websockets-16.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:878b336ac47938b474c8f982ac2f7266a540adc3fa4ad74ae96fea9823a02cc9", size = 177364, upload-time = "2026-01-10T09:22:59.333Z" }, + { url = "https://files.pythonhosted.org/packages/7e/0c/8811fc53e9bcff68fe7de2bcbe75116a8d959ac699a3200f4847a8925210/websockets-16.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:52a0fec0e6c8d9a784c2c78276a48a2bdf099e4ccc2a4cad53b27718dbfd0230", size = 175039, upload-time = "2026-01-10T09:23:01.171Z" }, + { url = "https://files.pythonhosted.org/packages/aa/82/39a5f910cb99ec0b59e482971238c845af9220d3ab9fa76dd9162cda9d62/websockets-16.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:e6578ed5b6981005df1860a56e3617f14a6c307e6a71b4fff8c48fdc50f3ed2c", size = 175323, upload-time = "2026-01-10T09:23:02.341Z" }, + { url = "https://files.pythonhosted.org/packages/bd/28/0a25ee5342eb5d5f297d992a77e56892ecb65e7854c7898fb7d35e9b33bd/websockets-16.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:95724e638f0f9c350bb1c2b0a7ad0e83d9cc0c9259f3ea94e40d7b02a2179ae5", size = 184975, upload-time = "2026-01-10T09:23:03.756Z" }, + { url = "https://files.pythonhosted.org/packages/f9/66/27ea52741752f5107c2e41fda05e8395a682a1e11c4e592a809a90c6a506/websockets-16.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c0204dc62a89dc9d50d682412c10b3542d748260d743500a85c13cd1ee4bde82", size = 186203, upload-time = "2026-01-10T09:23:05.01Z" }, + { url = "https://files.pythonhosted.org/packages/37/e5/8e32857371406a757816a2b471939d51c463509be73fa538216ea52b792a/websockets-16.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:52ac480f44d32970d66763115edea932f1c5b1312de36df06d6b219f6741eed8", size = 185653, upload-time = "2026-01-10T09:23:06.301Z" }, + { url = "https://files.pythonhosted.org/packages/9b/67/f926bac29882894669368dc73f4da900fcdf47955d0a0185d60103df5737/websockets-16.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6e5a82b677f8f6f59e8dfc34ec06ca6b5b48bc4fcda346acd093694cc2c24d8f", size = 184920, upload-time = "2026-01-10T09:23:07.492Z" }, + { url = "https://files.pythonhosted.org/packages/3c/a1/3d6ccdcd125b0a42a311bcd15a7f705d688f73b2a22d8cf1c0875d35d34a/websockets-16.0-cp313-cp313-win32.whl", hash = "sha256:abf050a199613f64c886ea10f38b47770a65154dc37181bfaff70c160f45315a", size = 178255, upload-time = "2026-01-10T09:23:09.245Z" }, + { url = "https://files.pythonhosted.org/packages/6b/ae/90366304d7c2ce80f9b826096a9e9048b4bb760e44d3b873bb272cba696b/websockets-16.0-cp313-cp313-win_amd64.whl", hash = "sha256:3425ac5cf448801335d6fdc7ae1eb22072055417a96cc6b31b3861f455fbc156", size = 178689, upload-time = "2026-01-10T09:23:10.483Z" }, + { url = "https://files.pythonhosted.org/packages/f3/1d/e88022630271f5bd349ed82417136281931e558d628dd52c4d8621b4a0b2/websockets-16.0-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:8cc451a50f2aee53042ac52d2d053d08bf89bcb31ae799cb4487587661c038a0", size = 177406, upload-time = "2026-01-10T09:23:12.178Z" }, + { url = "https://files.pythonhosted.org/packages/f2/78/e63be1bf0724eeb4616efb1ae1c9044f7c3953b7957799abb5915bffd38e/websockets-16.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:daa3b6ff70a9241cf6c7fc9e949d41232d9d7d26fd3522b1ad2b4d62487e9904", size = 175085, upload-time = "2026-01-10T09:23:13.511Z" }, + { url = "https://files.pythonhosted.org/packages/bb/f4/d3c9220d818ee955ae390cf319a7c7a467beceb24f05ee7aaaa2414345ba/websockets-16.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:fd3cb4adb94a2a6e2b7c0d8d05cb94e6f1c81a0cf9dc2694fb65c7e8d94c42e4", size = 175328, upload-time = "2026-01-10T09:23:14.727Z" }, + { url = "https://files.pythonhosted.org/packages/63/bc/d3e208028de777087e6fb2b122051a6ff7bbcca0d6df9d9c2bf1dd869ae9/websockets-16.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:781caf5e8eee67f663126490c2f96f40906594cb86b408a703630f95550a8c3e", size = 185044, upload-time = "2026-01-10T09:23:15.939Z" }, + { url = "https://files.pythonhosted.org/packages/ad/6e/9a0927ac24bd33a0a9af834d89e0abc7cfd8e13bed17a86407a66773cc0e/websockets-16.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:caab51a72c51973ca21fa8a18bd8165e1a0183f1ac7066a182ff27107b71e1a4", size = 186279, upload-time = "2026-01-10T09:23:17.148Z" }, + { url = "https://files.pythonhosted.org/packages/b9/ca/bf1c68440d7a868180e11be653c85959502efd3a709323230314fda6e0b3/websockets-16.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:19c4dc84098e523fd63711e563077d39e90ec6702aff4b5d9e344a60cb3c0cb1", size = 185711, upload-time = "2026-01-10T09:23:18.372Z" }, + { url = "https://files.pythonhosted.org/packages/c4/f8/fdc34643a989561f217bb477cbc47a3a07212cbda91c0e4389c43c296ebf/websockets-16.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:a5e18a238a2b2249c9a9235466b90e96ae4795672598a58772dd806edc7ac6d3", size = 184982, upload-time = "2026-01-10T09:23:19.652Z" }, + { url = "https://files.pythonhosted.org/packages/dd/d1/574fa27e233764dbac9c52730d63fcf2823b16f0856b3329fc6268d6ae4f/websockets-16.0-cp314-cp314-win32.whl", hash = "sha256:a069d734c4a043182729edd3e9f247c3b2a4035415a9172fd0f1b71658a320a8", size = 177915, upload-time = "2026-01-10T09:23:21.458Z" }, + { url = "https://files.pythonhosted.org/packages/8a/f1/ae6b937bf3126b5134ce1f482365fde31a357c784ac51852978768b5eff4/websockets-16.0-cp314-cp314-win_amd64.whl", hash = "sha256:c0ee0e63f23914732c6d7e0cce24915c48f3f1512ec1d079ed01fc629dab269d", size = 178381, upload-time = "2026-01-10T09:23:22.715Z" }, + { url = "https://files.pythonhosted.org/packages/06/9b/f791d1db48403e1f0a27577a6beb37afae94254a8c6f08be4a23e4930bc0/websockets-16.0-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:a35539cacc3febb22b8f4d4a99cc79b104226a756aa7400adc722e83b0d03244", size = 177737, upload-time = "2026-01-10T09:23:24.523Z" }, + { url = "https://files.pythonhosted.org/packages/bd/40/53ad02341fa33b3ce489023f635367a4ac98b73570102ad2cdd770dacc9a/websockets-16.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:b784ca5de850f4ce93ec85d3269d24d4c82f22b7212023c974c401d4980ebc5e", size = 175268, upload-time = "2026-01-10T09:23:25.781Z" }, + { url = "https://files.pythonhosted.org/packages/74/9b/6158d4e459b984f949dcbbb0c5d270154c7618e11c01029b9bbd1bb4c4f9/websockets-16.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:569d01a4e7fba956c5ae4fc988f0d4e187900f5497ce46339c996dbf24f17641", size = 175486, upload-time = "2026-01-10T09:23:27.033Z" }, + { url = "https://files.pythonhosted.org/packages/e5/2d/7583b30208b639c8090206f95073646c2c9ffd66f44df967981a64f849ad/websockets-16.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:50f23cdd8343b984957e4077839841146f67a3d31ab0d00e6b824e74c5b2f6e8", size = 185331, upload-time = "2026-01-10T09:23:28.259Z" }, + { url = "https://files.pythonhosted.org/packages/45/b0/cce3784eb519b7b5ad680d14b9673a31ab8dcb7aad8b64d81709d2430aa8/websockets-16.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:152284a83a00c59b759697b7f9e9cddf4e3c7861dd0d964b472b70f78f89e80e", size = 186501, upload-time = "2026-01-10T09:23:29.449Z" }, + { url = "https://files.pythonhosted.org/packages/19/60/b8ebe4c7e89fb5f6cdf080623c9d92789a53636950f7abacfc33fe2b3135/websockets-16.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:bc59589ab64b0022385f429b94697348a6a234e8ce22544e3681b2e9331b5944", size = 186062, upload-time = "2026-01-10T09:23:31.368Z" }, + { url = "https://files.pythonhosted.org/packages/88/a8/a080593f89b0138b6cba1b28f8df5673b5506f72879322288b031337c0b8/websockets-16.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:32da954ffa2814258030e5a57bc73a3635463238e797c7375dc8091327434206", size = 185356, upload-time = "2026-01-10T09:23:32.627Z" }, + { url = "https://files.pythonhosted.org/packages/c2/b6/b9afed2afadddaf5ebb2afa801abf4b0868f42f8539bfe4b071b5266c9fe/websockets-16.0-cp314-cp314t-win32.whl", hash = "sha256:5a4b4cc550cb665dd8a47f868c8d04c8230f857363ad3c9caf7a0c3bf8c61ca6", size = 178085, upload-time = "2026-01-10T09:23:33.816Z" }, + { url = "https://files.pythonhosted.org/packages/9f/3e/28135a24e384493fa804216b79a6a6759a38cc4ff59118787b9fb693df93/websockets-16.0-cp314-cp314t-win_amd64.whl", hash = "sha256:b14dc141ed6d2dde437cddb216004bcac6a1df0935d79656387bd41632ba0bbd", size = 178531, upload-time = "2026-01-10T09:23:35.016Z" }, + { url = "https://files.pythonhosted.org/packages/6f/28/258ebab549c2bf3e64d2b0217b973467394a9cea8c42f70418ca2c5d0d2e/websockets-16.0-py3-none-any.whl", hash = "sha256:1637db62fad1dc833276dded54215f2c7fa46912301a24bd94d45d46a011ceec", size = 171598, upload-time = "2026-01-10T09:23:45.395Z" }, ] [[package]] name = "widgetsnbextension" -version = "4.0.14" +version = "4.0.15" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/41/53/2e0253c5efd69c9656b1843892052a31c36d37ad42812b5da45c62191f7e/widgetsnbextension-4.0.14.tar.gz", hash = "sha256:a3629b04e3edb893212df862038c7232f62973373869db5084aed739b437b5af", size = 1097428, upload-time = "2025-04-10T13:01:25.628Z" } +sdist = { url = "https://files.pythonhosted.org/packages/bd/f4/c67440c7fb409a71b7404b7aefcd7569a9c0d6bd071299bf4198ae7a5d95/widgetsnbextension-4.0.15.tar.gz", hash = "sha256:de8610639996f1567952d763a5a41af8af37f2575a41f9852a38f947eb82a3b9", size = 1097402, upload-time = "2025-11-01T21:15:55.178Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/ca/51/5447876806d1088a0f8f71e16542bf350918128d0a69437df26047c8e46f/widgetsnbextension-4.0.14-py3-none-any.whl", hash = "sha256:4875a9eaf72fbf5079dc372a51a9f268fc38d46f767cbf85c43a36da5cb9b575", size = 2196503, upload-time = "2025-04-10T13:01:23.086Z" }, + { url = "https://files.pythonhosted.org/packages/3f/0e/fa3b193432cfc60c93b42f3be03365f5f909d2b3ea410295cf36df739e31/widgetsnbextension-4.0.15-py3-none-any.whl", hash = "sha256:8156704e4346a571d9ce73b84bee86a29906c9abfd7223b7228a28899ccf3366", size = 2196503, upload-time = "2025-11-01T21:15:53.565Z" }, ] [[package]] @@ -2332,11 +2560,11 @@ wheels = [ [[package]] name = "xyzservices" -version = "2025.4.0" +version = "2025.11.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/00/af/c0f7f97bb320d14c089476f487b81f733238cc5603e0914f2e409f49d589/xyzservices-2025.4.0.tar.gz", hash = "sha256:6fe764713648fac53450fbc61a3c366cb6ae5335a1b2ae0c3796b495de3709d8", size = 1134722, upload-time = "2025-04-25T10:38:09.669Z" } +sdist = { url = "https://files.pythonhosted.org/packages/ee/0f/022795fc1201e7c29e742a509913badb53ce0b38f64b6db859e2f6339da9/xyzservices-2025.11.0.tar.gz", hash = "sha256:2fc72b49502b25023fd71e8f532fb4beddbbf0aa124d90ea25dba44f545e17ce", size = 1135703, upload-time = "2025-11-22T11:31:51.82Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/d6/7d/b77455d7c7c51255b2992b429107fab811b2e36ceaf76da1e55a045dc568/xyzservices-2025.4.0-py3-none-any.whl", hash = "sha256:8d4db9a59213ccb4ce1cf70210584f30b10795bff47627cdfb862b39ff6e10c9", size = 90391, upload-time = "2025-04-25T10:38:08.468Z" }, + { url = "https://files.pythonhosted.org/packages/ef/5c/2c189d18d495dd0fa3f27ccc60762bbc787eed95b9b0147266e72bb76585/xyzservices-2025.11.0-py3-none-any.whl", hash = "sha256:de66a7599a8d6dad63980b77defd1d8f5a5a9cb5fc8774ea1c6e89ca7c2a3d2f", size = 93916, upload-time = "2025-11-22T11:31:50.525Z" }, ] [[package]] diff --git a/web-editor/.gitignore b/web-editor/.gitignore new file mode 100644 index 0000000..a547bf3 --- /dev/null +++ b/web-editor/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/web-editor/CONFIG_EDITOR_IMPLEMENTATION.md b/web-editor/CONFIG_EDITOR_IMPLEMENTATION.md new file mode 100644 index 0000000..8f64ed0 --- /dev/null +++ b/web-editor/CONFIG_EDITOR_IMPLEMENTATION.md @@ -0,0 +1,160 @@ +# Configuration Editor Implementation + +## Overview +A configuration editor has been added to the Scenario Settings panel in the web-editor, allowing users to modify configuration settings directly in the UI without manually editing YAML files. + +## Features + +### Configurable Settings +The configuration editor provides expandable sections for three main configuration areas: + +#### 1. **Flight Blender Configuration** +- **URL**: Flight Blender deployment endpoint (e.g., `http://localhost:8000`) +- **Auth Type**: Authentication method (`none` or `passport`) +- **Auth Fields** (conditionally shown for passport): + - Client ID + - Client Secret + - Token Endpoint + - Passport Base URL +- **Audience**: OAuth token audience +- **Scopes**: List of required scopes (comma-separated) + +#### 2. **Data Files Configuration** +- **Trajectory**: Path to trajectory JSON file +- **Flight Declaration**: Path to flight declaration JSON file +- **Flight Declaration via Operational Intent**: Path to operational intent flight declaration +- **Geo Fence**: Path to geo-fence configuration + +#### 3. **Air Traffic Simulator Settings** +- **Number of Aircraft**: Integer field (1-100) +- **Simulation Duration**: Duration in seconds (1-3600) +- **Single or Multiple Sensors**: Dropdown selector +- **Sensor IDs**: Comma-separated list of sensor identifiers + +## Implementation Details + +### New Files +- **`src/components/ScenarioEditor/ConfigEditor.tsx`**: Main configuration editor component + - Collapsible sections for each configuration category + - Form inputs for all configuration fields + - Real-time validation and state management + +### Modified Files + +#### Type Definitions (`src/types/scenario.ts`) +- Added `FlightBlenderAuth` interface +- Added `FlightBlenderConfig` interface +- Added `DataFilesConfig` interface +- Added `AirTrafficSimulatorSettings` interface +- Added `ScenarioConfig` interface + +#### Components +- **`ScenarioEditor.tsx`**: + - Added config state management with autosave support + - Default configuration values + - Config persists to sessionStorage when dirty + - Loads config from autosave on restoration + +- **`ScenarioInfoPanel.tsx`**: + - Imported and integrated `ConfigEditor` component + - Added config prop to component signature + - Added `onUpdateConfig` callback handler + - ConfigEditor displays below description field + +- **`ScenarioList.tsx`**: + - Updated `onLoadScenario` callback signature to accept optional config + - Passes config from loaded scenarios to parent + +#### Hooks +- **`useScenarioFile.ts`**: + - Added `currentScenarioConfig` parameter + - Passes config to `convertGraphToYaml` when saving + +#### Utilities +- **`scenarioConversion.ts`**: + - `convertYamlToGraph`: Now returns config if present in scenario + - `convertGraphToYaml`: Accepts and includes config in output + +#### Tests +- **`useScenarioFile.test.ts`**: Updated all test cases to include config parameter + +#### Styling +- **`SidebarPanel.module.css`**: Added styles for config sections + - `.configSection`: Container for collapsible sections + - `.configSectionHeader`: Button styling with icon alignment + +## State Management + +### Autosave Integration +The configuration is automatically saved to sessionStorage along with other scenario data: +```typescript +- editor-autosave-config: Configuration state as JSON +``` + +### Flow +1. User modifies configuration in the UI +2. `onUpdateConfig` sets state and marks scenario as dirty +3. Dirty state triggers autosave (debounced at 500ms) +4. Configuration is persisted to sessionStorage +5. On page reload, configuration is restored from autosave + +## User Experience + +### Collapsible Sections +- Each configuration category is collapsible for better UI organization +- Default expanded state: Flight Blender section +- User can toggle sections independently +- State is maintained during the editing session + +### Form Validation +- Number fields have min/max constraints +- Sensor IDs are parsed as comma-separated values +- Scopes are automatically parsed from comma-separated input + +### Integration +- Configuration editor seamlessly integrates with existing scenario editor +- Configuration changes trigger the same dirty state as step changes +- Configuration is saved alongside scenario steps when saving to server + +## Usage + +1. Open the Scenario Settings panel (right sidebar) +2. Scroll down to find the CONFIGURATION section +3. Click section headers to expand/collapse +4. Modify configuration fields as needed +5. Changes are automatically saved to autosave +6. When saving the scenario, configuration is included in the YAML file + +## API Compatibility + +Scenarios saved with configuration will now include a `config` field in the YAML format: +```yaml +name: my_scenario +description: My scenario description +config: + flight_blender: + url: "http://localhost:8000" + auth: + type: "none" + audience: "testflight.flightblender.com" + scopes: ["flightblender.write", "flightblender.read"] + data_files: + trajectory: "config/bern/trajectory_f1.json" + flight_declaration: "config/bern/flight_declaration.json" + air_traffic_simulator_settings: + number_of_aircraft: 3 + simulation_duration: 10 + single_or_multiple_sensors: "multiple" + sensor_ids: + - "a0b7d47e5eac45dc8cbaf47e6fe0e558" +steps: + - step: "Create Flight" + arguments: {} +``` + +## Default Configuration +When creating a new scenario, default configuration values are provided: +- Flight Blender: `http://localhost:8000` with "none" auth +- Audience: `testflight.flightblender.com` +- Data Files: Bern configuration files +- Air Traffic Simulator: 3 aircraft, 10 seconds duration, multiple sensors diff --git a/web-editor/README.md b/web-editor/README.md new file mode 100644 index 0000000..1a12c1f --- /dev/null +++ b/web-editor/README.md @@ -0,0 +1,70 @@ +# OpenUTM Scenario Editor + +A browser-based editor to design verification scenarios as a Directed Acyclic Graph (DAG). + +## Features + +- **Visual DAG Editor**: Design scenarios using a node-based interface powered by @xyflow/react. +- **Drag and Drop**: Easily add steps from the toolbox to the canvas. +- **Parameter Configuration**: Edit node parameters using a dedicated properties panel. +- **Scenario Execution**: Run scenarios directly in the editor with real-time visual feedback (running, success, failure) and view results. +- **Import/Export**: Save and load scenarios as JSON files. +- **Dark Mode**: "Premium" developer-focused UI with theme toggling and optimized contrast. +- **Enhanced UX**: Clear node selection states and hover effects designed for usability. +- **Responsive Layout**: Resizable panels and responsive design. + +## Project Structure + +The project follows a modular architecture separating concerns into components, hooks, and types: + +- **`src/components/`**: UI components including the main `ScenarioEditor` and sub-components (`CustomNode`, `Toolbox`, `PropertiesPanel`, etc.). +- **`src/hooks/`**: Custom React hooks for logic isolation (`useScenarioGraph`, `useScenarioRunner`, `useScenarioFile`). +- **`src/types/`**: TypeScript definitions for strict type safety. +- **`src/styles/`**: CSS Modules for scoped styling. + +## Backend Setup + +The editor requires the backend server to be running to fetch available operations and execute scenarios. + +### Start the Backend Server + +The editor communicates with a local Python server to retrieve the list of available scenario steps (operations) and to execute them. + +Run the server from the project root: + +```bash +uv run src/openutm_verification/server/main.py +``` + +The server will start on `http://0.0.0.0:8989`. + +## Getting Started (Frontend) + +1. Navigate to the `web-editor` directory: + + ```bash + cd web-editor + ``` + +2. Install dependencies: + + ```bash + npm install + ``` + +3. Start the development server: + + ```bash + npm run dev + ``` + +4. Open your browser at `http://localhost:5173`. + +## Tech Stack + +- **React 19**: UI library. +- **TypeScript**: Static typing. +- **Vite**: Fast build tool. +- **@xyflow/react**: Graph visualization and interaction. +- **Lucide React**: Iconography. +- **CSS Modules**: Scoped styling. diff --git a/web-editor/README_GROUPS.md b/web-editor/README_GROUPS.md new file mode 100644 index 0000000..e29836d --- /dev/null +++ b/web-editor/README_GROUPS.md @@ -0,0 +1,128 @@ + diff --git a/web-editor/README_GROUP_VISUALIZATION.md b/web-editor/README_GROUP_VISUALIZATION.md new file mode 100644 index 0000000..bb0b811 --- /dev/null +++ b/web-editor/README_GROUP_VISUALIZATION.md @@ -0,0 +1,209 @@ +# Group Visualization in Scenario Editor + +## Overview + +The scenario editor provides visual representation of step groups as container boxes in the canvas. When a step references a group, all steps within that group are displayed in an expanded view, making it easy to see the composition of the group at a glance. + +## Visual Representation + +### Group Container + +When a scenario includes group references, groups are rendered as: + +- **Container nodes** with a distinctive visual style: + - Semi-transparent blue background (`rgba(100, 150, 200, 0.05)`) + - Blue border (`2px solid`) + - Border radius of `12px` for rounded corners + - Padding of `20px` for internal spacing + - Minimum width of `600px` and height calculated based on content + +### Group Label + +Group containers display a label with: +- Package emoji (`πŸ“¦`) prefix to visually distinguish groups +- Group name (e.g., `πŸ“¦ fetch_and_submit`) + +### Internal Steps + +Steps within a group are: +- Rendered as child nodes inside the container +- Positioned relative to the container parent +- Connected in sequence internally +- Included in the visual flow of the scenario + +## Architecture + +### Data Model + +```typescript +// Extended NodeData includes group indicators +interface NodeData { + isGroupContainer?: boolean; // Marks this node as a group container + isGroupReference?: boolean; // Marks this step as referencing a group + // ... other properties +} + +// Group definition in scenario +interface GroupDefinition { + description?: string; + steps: GroupStepDefinition[]; +} + +interface GroupStepDefinition { + id?: string; + step: string; + arguments?: Record; + // ... other step properties +} +``` + +### Expansion/Collapsing + +**Load YAML β†’ Expand in Canvas:** +1. `convertYamlToGraph()` detects group references +2. Creates container node for the group +3. Creates child nodes for each step in the group +4. Establishes parent-child relationships using `parentId` +5. Positions child steps relative to parent container + +**Save Canvas β†’ Collapse to YAML:** +1. `convertGraphToYaml()` identifies group containers +2. Filters out internal step nodes +3. Reconstructs group references with extracted group name +4. Saves back to YAML with `groups` section + +## User Interactions + +### Viewing Groups + +1. Load or import a scenario with groups +2. Groups automatically expand in the canvas +3. All steps within groups are visible and editable + +### Editing Groups + +1. Edit group definitions in the **Groups Manager** panel +2. Add, remove, or modify steps within groups +3. Changes are reflected in the visual canvas +4. On save, canvas collapses back to group references in YAML + +### Creating New Groups + +1. Open the **Groups Manager** panel +2. Click "Add Group" +3. Enter group name and description +4. Add steps to the group +5. Steps automatically appear as children in the canvas + +### Modifying Step Connections + +- Steps within groups maintain internal connections +- Group containers connect to: + - Previous step (edge points from previous step to group container) + - Next step (edge points from last group step to next step) + +## Technical Details + +### Parent-Child Relationships + +Groups use xyflow's parent-child node relationships: +- Container node: `parentId` is `undefined` (top-level) +- Internal steps: `parentId` equals container node ID +- Relative positioning: Child positions are relative to parent + +### Visual Styling + +Group containers use inline styles: +```typescript +{ + background: 'rgba(100, 150, 200, 0.05)', + border: '2px solid var(--accent-primary)', + borderRadius: '12px', + padding: '20px', + minWidth: '600px', + minHeight: 'calculated' +} +``` + +### Edge Routing + +1. **Incoming edges:** Point to group container ID +2. **Internal edges:** Connect steps in sequence within group +3. **Outgoing edges:** Point from last internal step to next step + +## Example + +### YAML with Groups + +```yaml +name: Example with Groups +description: Shows group visualization + +groups: + fetch_and_submit: + description: Fetch data and submit + steps: + - id: fetch + step: Fetch Data + arguments: + url: "http://api.example.com/data" + - id: submit + step: Submit Data + arguments: + endpoint: "http://api.example.com/submit" + +steps: + - step: Setup + arguments: + delay: 1000 + - step: fetch_and_submit + id: group_ref_1 + loop: + iterations: 5 + - step: Verify + arguments: + expected: "success" +``` + +### Canvas Visualization + +In the editor canvas: +``` +β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” +β”‚ Setup β”‚ +β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ + ↓ +β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” +β”‚ πŸ“¦ fetch_and_submit (x5) β”‚ +β”‚ β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚ +β”‚ β”‚Fetch Dataβ”œβ”€β”€β”€β–Άβ”‚Submit Datβ”‚ β”‚ +β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β”‚ +β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ + ↓ +β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” +β”‚ Verify β”‚ +β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ +``` + +## Benefits + +1. **Clearer Structure:** See the composition of groups at a glance +2. **Reduced Repetition:** Group definitions are reusable and visible +3. **Better Maintainability:** Changes to group content automatically update all references +4. **Visual Feedback:** Understand complex scenarios by grouping related steps +5. **Intuitive Editing:** Edit groups and see the canvas update in real-time + +## Reference Resolution + +Groups support reference resolution for step outputs: + +```yaml +steps: + - step: fetch_and_submit + id: group_op + - step: Process Results + arguments: + data: ${{ group.group_op.fetch.result.data }} +``` + +This allows steps outside a group to access results from specific steps within the group. diff --git a/web-editor/async_implementation_guide.md b/web-editor/async_implementation_guide.md new file mode 100644 index 0000000..e9d2ead --- /dev/null +++ b/web-editor/async_implementation_guide.md @@ -0,0 +1,65 @@ +# Implementing Async/Background Tasks in the UI + +This guide outlines the implementation of asynchronous background tasks (like those in `test_sdsp_track.py`) using the OpenUTM Verification Web Editor and Backend. + +## Status: Implemented + +The core infrastructure for async/background tasks has been implemented in both the Frontend and Backend. + +## 1. Client-Side Orchestration (Frontend) + +The frontend now executes scenarios step-by-step, allowing for dynamic updates and handling of long-running processes. + +### Key Components +- **`useScenarioRunner.ts`**: + - Performs topological sort of the graph to determine execution order. + - Iterates through nodes and calls the backend API for each step individually. + - Supports `runInBackground` flag: If a node is configured to run in background, it passes `run_in_background=true` to the backend. + - Updates node status to `running` (blue border + spinner) before execution, and `success`/`failure` after completion. + - Handles `step_id` passing to ensure results are stored in the backend session context. + +- **UI Updates**: + - **Running State**: Nodes now show a spinner and blue border while executing. + - **Connection Status**: A "Connected/Disconnected" indicator in the top-right panel shows backend health. + - **Toolbox Refresh**: Automatically reloads available operations when the backend connects. + +## 2. Backend Support for Background Tasks + +The backend `SessionManager` has been updated to support "fire-and-forget" tasks and task joining. + +### Implementation Details (`src/openutm_verification/server/runner.py`) + +1. **Background Execution**: + - When `run_in_background=True` is passed to `execute_single_step`: + - The method call is wrapped in `asyncio.create_task`. + - The task object is stored in `self.session_context["background_tasks"]` keyed by a UUID. + - Returns immediately with `{"task_id": , "status": "running"}`. + +2. **`SessionManager.join_task`**: + - A special handling block in `_execute_step` intercepts calls to `SessionManager.join_task`. + - It retrieves the `task_id` from parameters (which can be a direct string or a reference to a previous step's result). + - It looks up the task in `session_context["background_tasks"]`. + - It `await`s the task completion and returns the result. + +## 3. Usage Example (SDSP Track) + +To create a scenario with async tasks (e.g., `sdsp_track`): + +1. **Start Task**: Add a node (e.g., `FlightBlenderClient.submit_simulated_air_traffic`). + - Set `Run in Background` to `true` (via properties panel or JSON). +2. **Intermediate Steps**: Add other nodes (e.g., `CommonClient.wait`, `Verify Track`) that run while the background task is active. + +### Example YAML (`scenarios/sdsp_track.yaml`) + +```yaml + - step: Submit Simulated Air Traffic + arguments: + observations: ${{ steps.Generate Simulated Air Traffic Data.result }} + background: true + + # ... other steps running in parallel ... + + - step: Other step that needs to wait for BG task to finish. + needs: + - Submit Simulated Air Traffic +``` diff --git a/web-editor/eslint.config.js b/web-editor/eslint.config.js new file mode 100644 index 0000000..5e6b472 --- /dev/null +++ b/web-editor/eslint.config.js @@ -0,0 +1,23 @@ +import js from '@eslint/js' +import globals from 'globals' +import reactHooks from 'eslint-plugin-react-hooks' +import reactRefresh from 'eslint-plugin-react-refresh' +import tseslint from 'typescript-eslint' +import { defineConfig, globalIgnores } from 'eslint/config' + +export default defineConfig([ + globalIgnores(['dist']), + { + files: ['**/*.{ts,tsx}'], + extends: [ + js.configs.recommended, + tseslint.configs.recommended, + reactHooks.configs.flat.recommended, + reactRefresh.configs.vite, + ], + languageOptions: { + ecmaVersion: 2020, + globals: globals.browser, + }, + }, +]) diff --git a/web-editor/index.html b/web-editor/index.html new file mode 100644 index 0000000..7667156 --- /dev/null +++ b/web-editor/index.html @@ -0,0 +1,16 @@ + + + + + + + OpenUTM Scenario Designer + + + + + +
+ + + diff --git a/web-editor/package-lock.json b/web-editor/package-lock.json new file mode 100644 index 0000000..d005860 --- /dev/null +++ b/web-editor/package-lock.json @@ -0,0 +1,6389 @@ +{ + "name": "web-editor", + "version": "0.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "web-editor", + "version": "0.0.0", + "dependencies": { + "@dagrejs/dagre": "^1.1.8", + "@xyflow/react": "^12.9.3", + "js-yaml": "^4.1.1", + "lucide-react": "^0.554.0", + "react": "^19.2.0", + "react-dom": "^19.2.0", + "react-markdown": "^10.1.0", + "remark-gfm": "^4.0.1" + }, + "devDependencies": { + "@eslint/js": "^9.39.1", + "@testing-library/dom": "^10.4.1", + "@testing-library/jest-dom": "^6.9.1", + "@testing-library/react": "^16.3.0", + "@types/js-yaml": "^4.0.9", + "@types/node": "^24.10.0", + "@types/react": "^19.2.2", + "@types/react-dom": "^19.2.2", + "@vitejs/plugin-react": "^5.1.0", + "baseline-browser-mapping": "^2.9.15", + "eslint": "^9.39.1", + "eslint-plugin-react-hooks": "^7.0.1", + "eslint-plugin-react-refresh": "^0.4.24", + "globals": "^16.5.0", + "jsdom": "^27.2.0", + "typescript": "~5.9.3", + "typescript-eslint": "^8.46.3", + "vite": "^7.2.2", + "vitest": "^4.0.10" + } + }, + "node_modules/@acemir/cssom": { + "version": "0.9.23", + "resolved": "https://registry.npmjs.org/@acemir/cssom/-/cssom-0.9.23.tgz", + "integrity": "sha512-2kJ1HxBKzPLbmhZpxBiTZggjtgCwKg1ma5RHShxvd6zgqhDEdEkzpiwe7jLkI2p2BrZvFCXIihdoMkl1H39VnA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@adobe/css-tools": { + "version": "4.4.4", + "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.4.4.tgz", + "integrity": "sha512-Elp+iwUx5rN5+Y8xLt5/GRoG20WGoDCQ/1Fb+1LiGtvwbDavuSk0jhD/eZdckHAuzcDzccnkv+rEjyWfRx18gg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@asamuzakjp/css-color": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/@asamuzakjp/css-color/-/css-color-4.0.5.tgz", + "integrity": "sha512-lMrXidNhPGsDjytDy11Vwlb6OIGrT3CmLg3VWNFyWkLWtijKl7xjvForlh8vuj0SHGjgl4qZEQzUmYTeQA2JFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@csstools/css-calc": "^2.1.4", + "@csstools/css-color-parser": "^3.1.0", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "lru-cache": "^11.2.1" + } + }, + "node_modules/@asamuzakjp/css-color/node_modules/lru-cache": { + "version": "11.2.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.2.tgz", + "integrity": "sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg==", + "dev": true, + "license": "ISC", + "engines": { + "node": "20 || >=22" + } + }, + "node_modules/@asamuzakjp/dom-selector": { + "version": "6.7.4", + "resolved": "https://registry.npmjs.org/@asamuzakjp/dom-selector/-/dom-selector-6.7.4.tgz", + "integrity": "sha512-buQDjkm+wDPXd6c13534URWZqbz0RP5PAhXZ+LIoa5LgwInT9HVJvGIJivg75vi8I13CxDGdTnz+aY5YUJlIAA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@asamuzakjp/nwsapi": "^2.3.9", + "bidi-js": "^1.0.3", + "css-tree": "^3.1.0", + "is-potential-custom-element-name": "^1.0.1", + "lru-cache": "^11.2.2" + } + }, + "node_modules/@asamuzakjp/dom-selector/node_modules/lru-cache": { + "version": "11.2.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.2.tgz", + "integrity": "sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg==", + "dev": true, + "license": "ISC", + "engines": { + "node": "20 || >=22" + } + }, + "node_modules/@asamuzakjp/nwsapi": { + "version": "2.3.9", + "resolved": "https://registry.npmjs.org/@asamuzakjp/nwsapi/-/nwsapi-2.3.9.tgz", + "integrity": "sha512-n8GuYSrI9bF7FFZ/SjhwevlHc8xaVlb/7HmHelnc/PZXBD2ZR49NnN9sMMuDdEGPeeRQ5d0hqlSlEpgCX3Wl0Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/@babel/code-frame": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz", + "integrity": "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.5.tgz", + "integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-module-transforms": "^7.28.3", + "@babel/helpers": "^7.28.4", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/traverse": "^7.28.5", + "@babel/types": "^7.28.5", + "@jridgewell/remapping": "^2.3.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz", + "integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.28.5", + "@babel/types": "^7.28.5", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", + "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.27.2", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", + "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz", + "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1", + "@babel/traverse": "^7.28.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", + "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz", + "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz", + "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.5" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-self": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz", + "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-source": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz", + "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz", + "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz", + "integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.5", + "debug": "^4.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz", + "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@csstools/color-helpers": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.1.0.tgz", + "integrity": "sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=18" + } + }, + "node_modules/@csstools/css-calc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.4.tgz", + "integrity": "sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4" + } + }, + "node_modules/@csstools/css-color-parser": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.1.0.tgz", + "integrity": "sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "dependencies": { + "@csstools/color-helpers": "^5.1.0", + "@csstools/css-calc": "^2.1.4" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4" + } + }, + "node_modules/@csstools/css-parser-algorithms": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.5.tgz", + "integrity": "sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "peer": true, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@csstools/css-tokenizer": "^3.0.4" + } + }, + "node_modules/@csstools/css-syntax-patches-for-csstree": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/@csstools/css-syntax-patches-for-csstree/-/css-syntax-patches-for-csstree-1.0.16.tgz", + "integrity": "sha512-2SpS4/UaWQaGpBINyG5ZuCHnUDeVByOhvbkARwfmnfxDvTaj80yOI1cD8Tw93ICV5Fx4fnyDKWQZI1CDtcWyUg==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=18" + } + }, + "node_modules/@csstools/css-tokenizer": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.4.tgz", + "integrity": "sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "peer": true, + "engines": { + "node": ">=18" + } + }, + "node_modules/@dagrejs/dagre": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/@dagrejs/dagre/-/dagre-1.1.8.tgz", + "integrity": "sha512-5SEDlndt4W/LaVzPYJW+bSmSEZc9EzTf8rJ20WCKvjS5EAZAN0b+x0Yww7VMT4R3Wootkg+X9bUfUxazYw6Blw==", + "license": "MIT", + "dependencies": { + "@dagrejs/graphlib": "2.2.4" + } + }, + "node_modules/@dagrejs/graphlib": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/@dagrejs/graphlib/-/graphlib-2.2.4.tgz", + "integrity": "sha512-mepCf/e9+SKYy1d02/UkvSy6+6MoyXhVxP8lLDfA7BPE1X1d4dR0sZznmbM8/XVJ1GPM+Svnx7Xj6ZweByWUkw==", + "license": "MIT", + "engines": { + "node": ">17.0.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz", + "integrity": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.12.tgz", + "integrity": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.12.tgz", + "integrity": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.12.tgz", + "integrity": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.12.tgz", + "integrity": "sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz", + "integrity": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.12.tgz", + "integrity": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz", + "integrity": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.12.tgz", + "integrity": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.12.tgz", + "integrity": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.12.tgz", + "integrity": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.12.tgz", + "integrity": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.12.tgz", + "integrity": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.12.tgz", + "integrity": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.12.tgz", + "integrity": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.12.tgz", + "integrity": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.12.tgz", + "integrity": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.12.tgz", + "integrity": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.12.tgz", + "integrity": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.12.tgz", + "integrity": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.12.tgz", + "integrity": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.12.tgz", + "integrity": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.12.tgz", + "integrity": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.12.tgz", + "integrity": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.12.tgz", + "integrity": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.12.tgz", + "integrity": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz", + "integrity": "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.2", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", + "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.21.1", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.1.tgz", + "integrity": "sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/object-schema": "^2.1.7", + "debug": "^4.3.1", + "minimatch": "^3.1.2" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/config-helpers": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz", + "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/core": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz", + "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.1.tgz", + "integrity": "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/js": { + "version": "9.39.1", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.1.tgz", + "integrity": "sha512-S26Stp4zCy88tH94QbBv3XCuzRQiZ9yXofEILmglYTh/Ug/a9/umqvgFtYBAo3Lp0nsI/5/qH1CCrbdK3AP1Tw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz", + "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz", + "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0", + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@humanfs/core": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", + "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node": { + "version": "0.16.7", + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.7.tgz", + "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/core": "^0.19.1", + "@humanwhocodes/retry": "^0.4.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/retry": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz", + "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@rolldown/pluginutils": { + "version": "1.0.0-beta.47", + "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.47.tgz", + "integrity": "sha512-8QagwMH3kNCuzD8EWL8R2YPW5e4OrHNSAHRFDdmFqEwEaD/KcNKjVoumo+gP2vW5eKB2UPbM6vTYiGZX0ixLnw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.53.3.tgz", + "integrity": "sha512-mRSi+4cBjrRLoaal2PnqH82Wqyb+d3HsPUN/W+WslCXsZsyHa9ZeQQX/pQsZaVIWDkPcpV6jJ+3KLbTbgnwv8w==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.53.3.tgz", + "integrity": "sha512-CbDGaMpdE9sh7sCmTrTUyllhrg65t6SwhjlMJsLr+J8YjFuPmCEjbBSx4Z/e4SmDyH3aB5hGaJUP2ltV/vcs4w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.53.3.tgz", + "integrity": "sha512-Nr7SlQeqIBpOV6BHHGZgYBuSdanCXuw09hon14MGOLGmXAFYjx1wNvquVPmpZnl0tLjg25dEdr4IQ6GgyToCUA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.53.3.tgz", + "integrity": "sha512-DZ8N4CSNfl965CmPktJ8oBnfYr3F8dTTNBQkRlffnUarJ2ohudQD17sZBa097J8xhQ26AwhHJ5mvUyQW8ddTsQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.53.3.tgz", + "integrity": "sha512-yMTrCrK92aGyi7GuDNtGn2sNW+Gdb4vErx4t3Gv/Tr+1zRb8ax4z8GWVRfr3Jw8zJWvpGHNpss3vVlbF58DZ4w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.53.3.tgz", + "integrity": "sha512-lMfF8X7QhdQzseM6XaX0vbno2m3hlyZFhwcndRMw8fbAGUGL3WFMBdK0hbUBIUYcEcMhVLr1SIamDeuLBnXS+Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.53.3.tgz", + "integrity": "sha512-k9oD15soC/Ln6d2Wv/JOFPzZXIAIFLp6B+i14KhxAfnq76ajt0EhYc5YPeX6W1xJkAdItcVT+JhKl1QZh44/qw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.53.3.tgz", + "integrity": "sha512-vTNlKq+N6CK/8UktsrFuc+/7NlEYVxgaEgRXVUVK258Z5ymho29skzW1sutgYjqNnquGwVUObAaxae8rZ6YMhg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.53.3.tgz", + "integrity": "sha512-RGrFLWgMhSxRs/EWJMIFM1O5Mzuz3Xy3/mnxJp/5cVhZ2XoCAxJnmNsEyeMJtpK+wu0FJFWz+QF4mjCA7AUQ3w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.53.3.tgz", + "integrity": "sha512-kASyvfBEWYPEwe0Qv4nfu6pNkITLTb32p4yTgzFCocHnJLAHs+9LjUu9ONIhvfT/5lv4YS5muBHyuV84epBo/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.53.3.tgz", + "integrity": "sha512-JiuKcp2teLJwQ7vkJ95EwESWkNRFJD7TQgYmCnrPtlu50b4XvT5MOmurWNrCj3IFdyjBQ5p9vnrX4JM6I8OE7g==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.53.3.tgz", + "integrity": "sha512-EoGSa8nd6d3T7zLuqdojxC20oBfNT8nexBbB/rkxgKj5T5vhpAQKKnD+h3UkoMuTyXkP5jTjK/ccNRmQrPNDuw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.53.3.tgz", + "integrity": "sha512-4s+Wped2IHXHPnAEbIB0YWBv7SDohqxobiiPA1FIWZpX+w9o2i4LezzH/NkFUl8LRci/8udci6cLq+jJQlh+0g==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.53.3.tgz", + "integrity": "sha512-68k2g7+0vs2u9CxDt5ktXTngsxOQkSEV/xBbwlqYcUrAVh6P9EgMZvFsnHy4SEiUl46Xf0IObWVbMvPrr2gw8A==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.53.3.tgz", + "integrity": "sha512-VYsFMpULAz87ZW6BVYw3I6sWesGpsP9OPcyKe8ofdg9LHxSbRMd7zrVrr5xi/3kMZtpWL/wC+UIJWJYVX5uTKg==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.53.3.tgz", + "integrity": "sha512-3EhFi1FU6YL8HTUJZ51imGJWEX//ajQPfqWLI3BQq4TlvHy4X0MOr5q3D2Zof/ka0d5FNdPwZXm3Yyib/UEd+w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.53.3.tgz", + "integrity": "sha512-eoROhjcc6HbZCJr+tvVT8X4fW3/5g/WkGvvmwz/88sDtSJzO7r/blvoBDgISDiCjDRZmHpwud7h+6Q9JxFwq1Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.53.3.tgz", + "integrity": "sha512-OueLAWgrNSPGAdUdIjSWXw+u/02BRTcnfw9PN41D2vq/JSEPnJnVuBgw18VkN8wcd4fjUs+jFHVM4t9+kBSNLw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.53.3.tgz", + "integrity": "sha512-GOFuKpsxR/whszbF/bzydebLiXIHSgsEUp6M0JI8dWvi+fFa1TD6YQa4aSZHtpmh2/uAlj/Dy+nmby3TJ3pkTw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.53.3.tgz", + "integrity": "sha512-iah+THLcBJdpfZ1TstDFbKNznlzoxa8fmnFYK4V67HvmuNYkVdAywJSoteUszvBQ9/HqN2+9AZghbajMsFT+oA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.53.3.tgz", + "integrity": "sha512-J9QDiOIZlZLdcot5NXEepDkstocktoVjkaKUtqzgzpt2yWjGlbYiKyp05rWwk4nypbYUNoFAztEgixoLaSETkg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.53.3.tgz", + "integrity": "sha512-UhTd8u31dXadv0MopwGgNOBpUVROFKWVQgAg5N1ESyCz8AuBcMqm4AuTjrwgQKGDfoFuz02EuMRHQIw/frmYKQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@standard-schema/spec": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.0.0.tgz", + "integrity": "sha512-m2bOd0f2RT9k8QJx1JN85cZYyH1RqFBdlwtkSlf4tBDYLCiiZnv1fIIwacK6cqwXavOydf0NPToMQgpKq+dVlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@testing-library/dom": { + "version": "10.4.1", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-10.4.1.tgz", + "integrity": "sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^5.0.1", + "aria-query": "5.3.0", + "dom-accessibility-api": "^0.5.9", + "lz-string": "^1.5.0", + "picocolors": "1.1.1", + "pretty-format": "^27.0.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@testing-library/jest-dom": { + "version": "6.9.1", + "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-6.9.1.tgz", + "integrity": "sha512-zIcONa+hVtVSSep9UT3jZ5rizo2BsxgyDYU7WFD5eICBE7no3881HGeb/QkGfsJs6JTkY1aQhT7rIPC7e+0nnA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@adobe/css-tools": "^4.4.0", + "aria-query": "^5.0.0", + "css.escape": "^1.5.1", + "dom-accessibility-api": "^0.6.3", + "picocolors": "^1.1.1", + "redent": "^3.0.0" + }, + "engines": { + "node": ">=14", + "npm": ">=6", + "yarn": ">=1" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/dom-accessibility-api": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.6.3.tgz", + "integrity": "sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@testing-library/react": { + "version": "16.3.0", + "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-16.3.0.tgz", + "integrity": "sha512-kFSyxiEDwv1WLl2fgsq6pPBbw5aWKrsY2/noi1Id0TK0UParSF62oFQFGHXIyaG4pp2tEub/Zlel+fjjZILDsw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.5" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@testing-library/dom": "^10.0.0", + "@types/react": "^18.0.0 || ^19.0.0", + "@types/react-dom": "^18.0.0 || ^19.0.0", + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@types/aria-query": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.4.tgz", + "integrity": "sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", + "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz", + "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.2" + } + }, + "node_modules/@types/chai": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/@types/chai/-/chai-5.2.3.tgz", + "integrity": "sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/deep-eql": "*", + "assertion-error": "^2.0.1" + } + }, + "node_modules/@types/d3-color": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz", + "integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==", + "license": "MIT" + }, + "node_modules/@types/d3-drag": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@types/d3-drag/-/d3-drag-3.0.7.tgz", + "integrity": "sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==", + "license": "MIT", + "dependencies": { + "@types/d3-selection": "*" + } + }, + "node_modules/@types/d3-interpolate": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz", + "integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==", + "license": "MIT", + "dependencies": { + "@types/d3-color": "*" + } + }, + "node_modules/@types/d3-selection": { + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/@types/d3-selection/-/d3-selection-3.0.11.tgz", + "integrity": "sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w==", + "license": "MIT" + }, + "node_modules/@types/d3-transition": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@types/d3-transition/-/d3-transition-3.0.9.tgz", + "integrity": "sha512-uZS5shfxzO3rGlu0cC3bjmMFKsXv+SmZZcgp0KD22ts4uGXp5EVYGzu/0YdwZeKmddhcAccYtREJKkPfXkZuCg==", + "license": "MIT", + "dependencies": { + "@types/d3-selection": "*" + } + }, + "node_modules/@types/d3-zoom": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@types/d3-zoom/-/d3-zoom-3.0.8.tgz", + "integrity": "sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==", + "license": "MIT", + "dependencies": { + "@types/d3-interpolate": "*", + "@types/d3-selection": "*" + } + }, + "node_modules/@types/debug": { + "version": "4.1.12", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", + "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", + "license": "MIT", + "dependencies": { + "@types/ms": "*" + } + }, + "node_modules/@types/deep-eql": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/deep-eql/-/deep-eql-4.0.2.tgz", + "integrity": "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "license": "MIT" + }, + "node_modules/@types/estree-jsx": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz", + "integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==", + "license": "MIT", + "dependencies": { + "@types/estree": "*" + } + }, + "node_modules/@types/hast": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", + "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/js-yaml": { + "version": "4.0.9", + "resolved": "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-4.0.9.tgz", + "integrity": "sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/mdast": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", + "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", + "license": "MIT", + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/ms": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz", + "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==", + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "24.10.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.10.1.tgz", + "integrity": "sha512-GNWcUTRBgIRJD5zj+Tq0fKOJ5XZajIiBroOF0yvj2bSU1WvNdYS/dn9UxwsujGW4JX06dnHyjV2y9rRaybH0iQ==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/react": { + "version": "19.2.6", + "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.6.tgz", + "integrity": "sha512-p/jUvulfgU7oKtj6Xpk8cA2Y1xKTtICGpJYeJXz2YVO2UcvjQgeRMLDGfDeqeRW2Ta+0QNFwcc8X3GH8SxZz6w==", + "license": "MIT", + "peer": true, + "dependencies": { + "csstype": "^3.2.2" + } + }, + "node_modules/@types/react-dom": { + "version": "19.2.3", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz", + "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==", + "dev": true, + "license": "MIT", + "peer": true, + "peerDependencies": { + "@types/react": "^19.2.0" + } + }, + "node_modules/@types/unist": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", + "license": "MIT" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.47.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.47.0.tgz", + "integrity": "sha512-fe0rz9WJQ5t2iaLfdbDc9T80GJy0AeO453q8C3YCilnGozvOyCG5t+EZtg7j7D88+c3FipfP/x+wzGnh1xp8ZA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.10.0", + "@typescript-eslint/scope-manager": "8.47.0", + "@typescript-eslint/type-utils": "8.47.0", + "@typescript-eslint/utils": "8.47.0", + "@typescript-eslint/visitor-keys": "8.47.0", + "graphemer": "^1.4.0", + "ignore": "^7.0.0", + "natural-compare": "^1.4.0", + "ts-api-utils": "^2.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.47.0", + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", + "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "8.47.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.47.0.tgz", + "integrity": "sha512-lJi3PfxVmo0AkEY93ecfN+r8SofEqZNGByvHAI3GBLrvt1Cw6H5k1IM02nSzu0RfUafr2EvFSw0wAsZgubNplQ==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@typescript-eslint/scope-manager": "8.47.0", + "@typescript-eslint/types": "8.47.0", + "@typescript-eslint/typescript-estree": "8.47.0", + "@typescript-eslint/visitor-keys": "8.47.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/project-service": { + "version": "8.47.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.47.0.tgz", + "integrity": "sha512-2X4BX8hUeB5JcA1TQJ7GjcgulXQ+5UkNb0DL8gHsHUHdFoiCTJoYLTpib3LtSDPZsRET5ygN4qqIWrHyYIKERA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/tsconfig-utils": "^8.47.0", + "@typescript-eslint/types": "^8.47.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "8.47.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.47.0.tgz", + "integrity": "sha512-a0TTJk4HXMkfpFkL9/WaGTNuv7JWfFTQFJd6zS9dVAjKsojmv9HT55xzbEpnZoY+VUb+YXLMp+ihMLz/UlZfDg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.47.0", + "@typescript-eslint/visitor-keys": "8.47.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/tsconfig-utils": { + "version": "8.47.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.47.0.tgz", + "integrity": "sha512-ybUAvjy4ZCL11uryalkKxuT3w3sXJAuWhOoGS3T/Wu+iUu1tGJmk5ytSY8gbdACNARmcYEB0COksD2j6hfGK2g==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "8.47.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.47.0.tgz", + "integrity": "sha512-QC9RiCmZ2HmIdCEvhd1aJELBlD93ErziOXXlHEZyuBo3tBiAZieya0HLIxp+DoDWlsQqDawyKuNEhORyku+P8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.47.0", + "@typescript-eslint/typescript-estree": "8.47.0", + "@typescript-eslint/utils": "8.47.0", + "debug": "^4.3.4", + "ts-api-utils": "^2.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "8.47.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.47.0.tgz", + "integrity": "sha512-nHAE6bMKsizhA2uuYZbEbmp5z2UpffNrPEqiKIeN7VsV6UY/roxanWfoRrf6x/k9+Obf+GQdkm0nPU+vnMXo9A==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "8.47.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.47.0.tgz", + "integrity": "sha512-k6ti9UepJf5NpzCjH31hQNLHQWupTRPhZ+KFF8WtTuTpy7uHPfeg2NM7cP27aCGajoEplxJDFVCEm9TGPYyiVg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/project-service": "8.47.0", + "@typescript-eslint/tsconfig-utils": "8.47.0", + "@typescript-eslint/types": "8.47.0", + "@typescript-eslint/visitor-keys": "8.47.0", + "debug": "^4.3.4", + "fast-glob": "^3.3.2", + "is-glob": "^4.0.3", + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^2.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "8.47.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.47.0.tgz", + "integrity": "sha512-g7XrNf25iL4TJOiPqatNuaChyqt49a/onq5YsJ9+hXeugK+41LVg7AxikMfM02PC6jbNtZLCJj6AUcQXJS/jGQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.7.0", + "@typescript-eslint/scope-manager": "8.47.0", + "@typescript-eslint/types": "8.47.0", + "@typescript-eslint/typescript-estree": "8.47.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "8.47.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.47.0.tgz", + "integrity": "sha512-SIV3/6eftCy1bNzCQoPmbWsRLujS8t5iDIZ4spZOBHqrM+yfX2ogg8Tt3PDTAVKw3sSCiUgg30uOAvK2r9zGjQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.47.0", + "eslint-visitor-keys": "^4.2.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@ungap/structured-clone": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", + "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", + "license": "ISC" + }, + "node_modules/@vitejs/plugin-react": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-5.1.1.tgz", + "integrity": "sha512-WQfkSw0QbQ5aJ2CHYw23ZGkqnRwqKHD/KYsMeTkZzPT4Jcf0DcBxBtwMJxnu6E7oxw5+JC6ZAiePgh28uJ1HBA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.28.5", + "@babel/plugin-transform-react-jsx-self": "^7.27.1", + "@babel/plugin-transform-react-jsx-source": "^7.27.1", + "@rolldown/pluginutils": "1.0.0-beta.47", + "@types/babel__core": "^7.20.5", + "react-refresh": "^0.18.0" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "peerDependencies": { + "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0" + } + }, + "node_modules/@vitest/expect": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-4.0.10.tgz", + "integrity": "sha512-3QkTX/lK39FBNwARCQRSQr0TP9+ywSdxSX+LgbJ2M1WmveXP72anTbnp2yl5fH+dU6SUmBzNMrDHs80G8G2DZg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@standard-schema/spec": "^1.0.0", + "@types/chai": "^5.2.2", + "@vitest/spy": "4.0.10", + "@vitest/utils": "4.0.10", + "chai": "^6.2.1", + "tinyrainbow": "^3.0.3" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/mocker": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-4.0.10.tgz", + "integrity": "sha512-e2OfdexYkjkg8Hh3L9NVEfbwGXq5IZbDovkf30qW2tOh7Rh9sVtmSr2ztEXOFbymNxS4qjzLXUQIvATvN4B+lg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/spy": "4.0.10", + "estree-walker": "^3.0.3", + "magic-string": "^0.30.21" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "msw": "^2.4.9", + "vite": "^6.0.0 || ^7.0.0-0" + }, + "peerDependenciesMeta": { + "msw": { + "optional": true + }, + "vite": { + "optional": true + } + } + }, + "node_modules/@vitest/pretty-format": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-4.0.10.tgz", + "integrity": "sha512-99EQbpa/zuDnvVjthwz5bH9o8iPefoQZ63WV8+bsRJZNw3qQSvSltfut8yu1Jc9mqOYi7pEbsKxYTi/rjaq6PA==", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyrainbow": "^3.0.3" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/runner": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-4.0.10.tgz", + "integrity": "sha512-EXU2iSkKvNwtlL8L8doCpkyclw0mc/t4t9SeOnfOFPyqLmQwuceMPA4zJBa6jw0MKsZYbw7kAn+gl7HxrlB8UQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/utils": "4.0.10", + "pathe": "^2.0.3" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/snapshot": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-4.0.10.tgz", + "integrity": "sha512-2N4X2ZZl7kZw0qeGdQ41H0KND96L3qX1RgwuCfy6oUsF2ISGD/HpSbmms+CkIOsQmg2kulwfhJ4CI0asnZlvkg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "4.0.10", + "magic-string": "^0.30.21", + "pathe": "^2.0.3" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/spy": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-4.0.10.tgz", + "integrity": "sha512-AsY6sVS8OLb96GV5RoG8B6I35GAbNrC49AO+jNRF9YVGb/g9t+hzNm1H6kD0NDp8tt7VJLs6hb7YMkDXqu03iw==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/utils": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-4.0.10.tgz", + "integrity": "sha512-kOuqWnEwZNtQxMKg3WmPK1vmhZu9WcoX69iwWjVz+jvKTsF1emzsv3eoPcDr6ykA3qP2bsCQE7CwqfNtAVzsmg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "4.0.10", + "tinyrainbow": "^3.0.3" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@xyflow/react": { + "version": "12.9.3", + "resolved": "https://registry.npmjs.org/@xyflow/react/-/react-12.9.3.tgz", + "integrity": "sha512-PSWoJ8vHiEqSIkLIkge+0eiHWiw4C6dyFDA03VKWJkqbU4A13VlDIVwKqf/Znuysn2GQw/zA61zpHE4rGgax7Q==", + "license": "MIT", + "dependencies": { + "@xyflow/system": "0.0.73", + "classcat": "^5.0.3", + "zustand": "^4.4.0" + }, + "peerDependencies": { + "react": ">=17", + "react-dom": ">=17" + } + }, + "node_modules/@xyflow/system": { + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/@xyflow/system/-/system-0.0.73.tgz", + "integrity": "sha512-C2ymH2V4mYDkdVSiRx0D7R0s3dvfXiupVBcko6tXP5K4tVdSBMo22/e3V9yRNdn+2HQFv44RFKzwOyCcUUDAVQ==", + "license": "MIT", + "dependencies": { + "@types/d3-drag": "^3.0.7", + "@types/d3-interpolate": "^3.0.4", + "@types/d3-selection": "^3.0.10", + "@types/d3-transition": "^3.0.8", + "@types/d3-zoom": "^3.0.8", + "d3-drag": "^3.0.0", + "d3-interpolate": "^3.0.1", + "d3-selection": "^3.0.0", + "d3-zoom": "^3.0.0" + } + }, + "node_modules/acorn": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "dev": true, + "license": "MIT", + "peer": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/agent-base": { + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz", + "integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "license": "Python-2.0" + }, + "node_modules/aria-query": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/assertion-error": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz", + "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + } + }, + "node_modules/bail": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", + "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/baseline-browser-mapping": { + "version": "2.9.15", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.15.tgz", + "integrity": "sha512-kX8h7K2srmDyYnXRIppo4AH/wYgzWVCs+eKr3RusRSQ5PvRYoEFmR/I0PbdTjKFAoKqp5+kbxnNTFO9jOfSVJg==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.js" + } + }, + "node_modules/bidi-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/bidi-js/-/bidi-js-1.0.3.tgz", + "integrity": "sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==", + "dev": true, + "license": "MIT", + "dependencies": { + "require-from-string": "^2.0.2" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.0.tgz", + "integrity": "sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "peer": true, + "dependencies": { + "baseline-browser-mapping": "^2.8.25", + "caniuse-lite": "^1.0.30001754", + "electron-to-chromium": "^1.5.249", + "node-releases": "^2.0.27", + "update-browserslist-db": "^1.1.4" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001756", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001756.tgz", + "integrity": "sha512-4HnCNKbMLkLdhJz3TToeVWHSnfJvPaq6vu/eRP0Ahub/07n484XHhBF5AJoSGHdVrS8tKFauUQz8Bp9P7LVx7A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/ccount": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", + "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/chai": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/chai/-/chai-6.2.1.tgz", + "integrity": "sha512-p4Z49OGG5W/WBCPSS/dH3jQ73kD6tiMmUM+bckNK6Jr5JHMG3k9bg/BvKR8lKmtVBKmOiuVaV2ws8s9oSbwysg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/character-entities": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", + "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-html4": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", + "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-legacy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", + "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-reference-invalid": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz", + "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/classcat": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/classcat/-/classcat-5.0.5.tgz", + "integrity": "sha512-JhZUT7JFcQy/EzW605k/ktHtncoo9vnyW/2GspNYwFlN1C/WmjuV/xtS04e9SOkL2sTdw0VAZ2UGCcQ9lR6p6w==", + "license": "MIT" + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/comma-separated-tokens": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", + "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/css-tree": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.1.0.tgz", + "integrity": "sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "mdn-data": "2.12.2", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" + } + }, + "node_modules/css.escape": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", + "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==", + "dev": true, + "license": "MIT" + }, + "node_modules/cssstyle": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-5.3.3.tgz", + "integrity": "sha512-OytmFH+13/QXONJcC75QNdMtKpceNk3u8ThBjyyYjkEcy/ekBwR1mMAuNvi3gdBPW3N5TlCzQ0WZw8H0lN/bDw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@asamuzakjp/css-color": "^4.0.3", + "@csstools/css-syntax-patches-for-csstree": "^1.0.14", + "css-tree": "^3.1.0" + }, + "engines": { + "node": ">=20" + } + }, + "node_modules/csstype": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", + "license": "MIT" + }, + "node_modules/d3-color": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", + "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-dispatch": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz", + "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-drag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz", + "integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==", + "license": "ISC", + "dependencies": { + "d3-dispatch": "1 - 3", + "d3-selection": "3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-ease": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", + "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-interpolate": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", + "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", + "license": "ISC", + "dependencies": { + "d3-color": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-selection": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz", + "integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==", + "license": "ISC", + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-timer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", + "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-transition": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz", + "integrity": "sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==", + "license": "ISC", + "dependencies": { + "d3-color": "1 - 3", + "d3-dispatch": "1 - 3", + "d3-ease": "1 - 3", + "d3-interpolate": "1 - 3", + "d3-timer": "1 - 3" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "d3-selection": "2 - 3" + } + }, + "node_modules/d3-zoom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz", + "integrity": "sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==", + "license": "ISC", + "dependencies": { + "d3-dispatch": "1 - 3", + "d3-drag": "2 - 3", + "d3-interpolate": "1 - 3", + "d3-selection": "2 - 3", + "d3-transition": "2 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/data-urls": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-6.0.0.tgz", + "integrity": "sha512-BnBS08aLUM+DKamupXs3w2tJJoqU+AkaE/+6vQxi/G/DPmIZFJJp9Dkb1kM03AZx8ADehDUZgsNxju3mPXZYIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "whatwg-mimetype": "^4.0.0", + "whatwg-url": "^15.0.0" + }, + "engines": { + "node": ">=20" + } + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decimal.js": { + "version": "10.6.0", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.6.0.tgz", + "integrity": "sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==", + "dev": true, + "license": "MIT" + }, + "node_modules/decode-named-character-reference": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.2.0.tgz", + "integrity": "sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==", + "license": "MIT", + "dependencies": { + "character-entities": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/devlop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", + "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", + "license": "MIT", + "dependencies": { + "dequal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/dom-accessibility-api": { + "version": "0.5.16", + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", + "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", + "dev": true, + "license": "MIT" + }, + "node_modules/electron-to-chromium": { + "version": "1.5.256", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.256.tgz", + "integrity": "sha512-uqYq1IQhpXXLX+HgiXdyOZml7spy4xfy42yPxcCCRjswp0fYM2X+JwCON07lqnpLEGVCj739B7Yr+FngmHBMEQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/entities": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz", + "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/es-module-lexer": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz", + "integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==", + "dev": true, + "license": "MIT" + }, + "node_modules/esbuild": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.12.tgz", + "integrity": "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.25.12", + "@esbuild/android-arm": "0.25.12", + "@esbuild/android-arm64": "0.25.12", + "@esbuild/android-x64": "0.25.12", + "@esbuild/darwin-arm64": "0.25.12", + "@esbuild/darwin-x64": "0.25.12", + "@esbuild/freebsd-arm64": "0.25.12", + "@esbuild/freebsd-x64": "0.25.12", + "@esbuild/linux-arm": "0.25.12", + "@esbuild/linux-arm64": "0.25.12", + "@esbuild/linux-ia32": "0.25.12", + "@esbuild/linux-loong64": "0.25.12", + "@esbuild/linux-mips64el": "0.25.12", + "@esbuild/linux-ppc64": "0.25.12", + "@esbuild/linux-riscv64": "0.25.12", + "@esbuild/linux-s390x": "0.25.12", + "@esbuild/linux-x64": "0.25.12", + "@esbuild/netbsd-arm64": "0.25.12", + "@esbuild/netbsd-x64": "0.25.12", + "@esbuild/openbsd-arm64": "0.25.12", + "@esbuild/openbsd-x64": "0.25.12", + "@esbuild/openharmony-arm64": "0.25.12", + "@esbuild/sunos-x64": "0.25.12", + "@esbuild/win32-arm64": "0.25.12", + "@esbuild/win32-ia32": "0.25.12", + "@esbuild/win32-x64": "0.25.12" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "9.39.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.1.tgz", + "integrity": "sha512-BhHmn2yNOFA9H9JmmIVKJmd288g9hrVRDkdoIgRCRuSySRUHH7r/DI6aAXW9T1WwUuY3DFgrcaqB+deURBLR5g==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.8.0", + "@eslint-community/regexpp": "^4.12.1", + "@eslint/config-array": "^0.21.1", + "@eslint/config-helpers": "^0.4.2", + "@eslint/core": "^0.17.0", + "@eslint/eslintrc": "^3.3.1", + "@eslint/js": "9.39.1", + "@eslint/plugin-kit": "^0.4.1", + "@humanfs/node": "^0.16.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.4.2", + "@types/estree": "^1.0.6", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.6", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.4.0", + "eslint-visitor-keys": "^4.2.1", + "espree": "^10.4.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "jiti": "*" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-7.0.1.tgz", + "integrity": "sha512-O0d0m04evaNzEPoSW+59Mezf8Qt0InfgGIBJnpC0h3NH/WjUAR7BIKUfysC6todmtiZ/A0oUVS8Gce0WhBrHsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.24.4", + "@babel/parser": "^7.24.4", + "hermes-parser": "^0.25.1", + "zod": "^3.25.0 || ^4.0.0", + "zod-validation-error": "^3.5.0 || ^4.0.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0" + } + }, + "node_modules/eslint-plugin-react-refresh": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.24.tgz", + "integrity": "sha512-nLHIW7TEq3aLrEYWpVaJ1dRgFR+wLDPN8e8FpYAql/bMV2oBEfC37K0gLEGgv9fy66juNShSMV8OkTqzltcG/w==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "eslint": ">=8.40" + } + }, + "node_modules/eslint-scope": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz", + "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz", + "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.15.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.2.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-util-is-identifier-name": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz", + "integrity": "sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expect-type": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.2.2.tgz", + "integrity": "sha512-JhFGDVJ7tmDJItKhYgJCGLOWjuK9vPxiXoUFLwLDc99NlmklilbiQJwoctZtt13+xMw91MCk/REan6MWHqDjyA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "license": "MIT" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-glob": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.8" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fastq": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", + "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/flatted": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", + "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", + "dev": true, + "license": "ISC" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "16.5.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-16.5.0.tgz", + "integrity": "sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true, + "license": "MIT" + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/hast-util-to-jsx-runtime": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz", + "integrity": "sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==", + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "comma-separated-tokens": "^2.0.0", + "devlop": "^1.0.0", + "estree-util-is-identifier-name": "^3.0.0", + "hast-util-whitespace": "^3.0.0", + "mdast-util-mdx-expression": "^2.0.0", + "mdast-util-mdx-jsx": "^3.0.0", + "mdast-util-mdxjs-esm": "^2.0.0", + "property-information": "^7.0.0", + "space-separated-tokens": "^2.0.0", + "style-to-js": "^1.0.0", + "unist-util-position": "^5.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-whitespace": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", + "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hermes-estree": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz", + "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==", + "dev": true, + "license": "MIT" + }, + "node_modules/hermes-parser": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz", + "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "hermes-estree": "0.25.1" + } + }, + "node_modules/html-encoding-sniffer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz", + "integrity": "sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "whatwg-encoding": "^3.1.1" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/html-url-attributes": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/html-url-attributes/-/html-url-attributes-3.0.1.tgz", + "integrity": "sha512-ol6UPyBWqsrO6EJySPz2O7ZSr856WDrEzM5zMqp+FJJLGMW35cLYmmZnl0vztAZxRUoNZJFTCohfjuIJ8I4QBQ==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/http-proxy-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", + "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", + "dev": true, + "license": "MIT", + "dependencies": { + "agent-base": "^7.1.0", + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/https-proxy-agent": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz", + "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==", + "dev": true, + "license": "MIT", + "dependencies": { + "agent-base": "^7.1.2", + "debug": "4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/inline-style-parser": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.7.tgz", + "integrity": "sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==", + "license": "MIT" + }, + "node_modules/is-alphabetical": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz", + "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-alphanumerical": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz", + "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==", + "license": "MIT", + "dependencies": { + "is-alphabetical": "^2.0.0", + "is-decimal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-decimal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz", + "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-hexadecimal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz", + "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsdom": { + "version": "27.2.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-27.2.0.tgz", + "integrity": "sha512-454TI39PeRDW1LgpyLPyURtB4Zx1tklSr6+OFOipsxGUH1WMTvk6C65JQdrj455+DP2uJ1+veBEHTGFKWVLFoA==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@acemir/cssom": "^0.9.23", + "@asamuzakjp/dom-selector": "^6.7.4", + "cssstyle": "^5.3.3", + "data-urls": "^6.0.0", + "decimal.js": "^10.6.0", + "html-encoding-sniffer": "^4.0.0", + "http-proxy-agent": "^7.0.2", + "https-proxy-agent": "^7.0.6", + "is-potential-custom-element-name": "^1.0.1", + "parse5": "^8.0.0", + "saxes": "^6.0.0", + "symbol-tree": "^3.2.4", + "tough-cookie": "^6.0.0", + "w3c-xmlserializer": "^5.0.0", + "webidl-conversions": "^8.0.0", + "whatwg-encoding": "^3.1.1", + "whatwg-mimetype": "^4.0.0", + "whatwg-url": "^15.1.0", + "ws": "^8.18.3", + "xml-name-validator": "^5.0.0" + }, + "engines": { + "node": "^20.19.0 || ^22.12.0 || >=24.0.0" + }, + "peerDependencies": { + "canvas": "^3.0.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/longest-streak": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", + "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/lucide-react": { + "version": "0.554.0", + "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.554.0.tgz", + "integrity": "sha512-St+z29uthEJVx0Is7ellNkgTEhaeSoA42I7JjOCBCrc5X6LYMGSv0P/2uS5HDLTExP5tpiqRD2PyUEOS6s9UXA==", + "license": "ISC", + "peerDependencies": { + "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/lz-string": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", + "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", + "dev": true, + "license": "MIT", + "bin": { + "lz-string": "bin/bin.js" + } + }, + "node_modules/magic-string": { + "version": "0.30.21", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/markdown-table": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz", + "integrity": "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-find-and-replace": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz", + "integrity": "sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "escape-string-regexp": "^5.0.0", + "unist-util-is": "^6.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mdast-util-from-markdown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz", + "integrity": "sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark": "^4.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-decode-string": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz", + "integrity": "sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==", + "license": "MIT", + "dependencies": { + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-gfm-autolink-literal": "^2.0.0", + "mdast-util-gfm-footnote": "^2.0.0", + "mdast-util-gfm-strikethrough": "^2.0.0", + "mdast-util-gfm-table": "^2.0.0", + "mdast-util-gfm-task-list-item": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-autolink-literal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz", + "integrity": "sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "ccount": "^2.0.0", + "devlop": "^1.0.0", + "mdast-util-find-and-replace": "^3.0.0", + "micromark-util-character": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-footnote": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz", + "integrity": "sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.1.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-strikethrough": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz", + "integrity": "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-table": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz", + "integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "markdown-table": "^3.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-task-list-item": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz", + "integrity": "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx-expression": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.1.tgz", + "integrity": "sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==", + "license": "MIT", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx-jsx": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz", + "integrity": "sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==", + "license": "MIT", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "ccount": "^2.0.0", + "devlop": "^1.1.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0", + "parse-entities": "^4.0.0", + "stringify-entities": "^4.0.0", + "unist-util-stringify-position": "^4.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdxjs-esm": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz", + "integrity": "sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==", + "license": "MIT", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-phrasing": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz", + "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-hast": { + "version": "13.2.1", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz", + "integrity": "sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "@ungap/structured-clone": "^1.0.0", + "devlop": "^1.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "trim-lines": "^3.0.0", + "unist-util-position": "^5.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-markdown": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz", + "integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "longest-streak": "^3.0.0", + "mdast-util-phrasing": "^4.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-decode-string": "^2.0.0", + "unist-util-visit": "^5.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", + "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdn-data": { + "version": "2.12.2", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.12.2.tgz", + "integrity": "sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==", + "dev": true, + "license": "CC0-1.0" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromark": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz", + "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "@types/debug": "^4.0.0", + "debug": "^4.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-core-commonmark": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz", + "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-factory-destination": "^2.0.0", + "micromark-factory-label": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-factory-title": "^2.0.0", + "micromark-factory-whitespace": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-html-tag-name": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-gfm": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz", + "integrity": "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==", + "license": "MIT", + "dependencies": { + "micromark-extension-gfm-autolink-literal": "^2.0.0", + "micromark-extension-gfm-footnote": "^2.0.0", + "micromark-extension-gfm-strikethrough": "^2.0.0", + "micromark-extension-gfm-table": "^2.0.0", + "micromark-extension-gfm-tagfilter": "^2.0.0", + "micromark-extension-gfm-task-list-item": "^2.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-autolink-literal": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz", + "integrity": "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==", + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-footnote": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz", + "integrity": "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-strikethrough": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz", + "integrity": "sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-table": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz", + "integrity": "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-tagfilter": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz", + "integrity": "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==", + "license": "MIT", + "dependencies": { + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-task-list-item": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz", + "integrity": "sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-factory-destination": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz", + "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-label": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz", + "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-space": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-title": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz", + "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-whitespace": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz", + "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-chunked": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz", + "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-classify-character": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz", + "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-combine-extensions": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz", + "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-chunked": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-decode-numeric-character-reference": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz", + "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-decode-string": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz", + "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-encode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", + "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-html-tag-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz", + "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-normalize-identifier": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz", + "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-resolve-all": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz", + "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-sanitize-uri": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", + "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-subtokenize": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz", + "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-types": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", + "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/node-releases": { + "version": "2.0.27", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz", + "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-entities": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz", + "integrity": "sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==", + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0", + "character-entities-legacy": "^3.0.0", + "character-reference-invalid": "^2.0.0", + "decode-named-character-reference": "^1.0.0", + "is-alphanumerical": "^2.0.0", + "is-decimal": "^2.0.0", + "is-hexadecimal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/parse-entities/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==", + "license": "MIT" + }, + "node_modules/parse5": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-8.0.0.tgz", + "integrity": "sha512-9m4m5GSgXjL4AjumKzq1Fgfp3Z8rsvjRNbnkVwfu2ImRqE5D0LnY2QfDen18FSY9C573YU5XxSapdHZTZ2WolA==", + "dev": true, + "license": "MIT", + "dependencies": { + "entities": "^6.0.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/pathe": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz", + "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", + "dev": true, + "license": "MIT" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/postcss": { + "version": "8.5.6", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", + "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/property-information": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.1.0.tgz", + "integrity": "sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/react": { + "version": "19.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-19.2.0.tgz", + "integrity": "sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "19.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.0.tgz", + "integrity": "sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "scheduler": "^0.27.0" + }, + "peerDependencies": { + "react": "^19.2.0" + } + }, + "node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "dev": true, + "license": "MIT" + }, + "node_modules/react-markdown": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/react-markdown/-/react-markdown-10.1.0.tgz", + "integrity": "sha512-qKxVopLT/TyA6BX3Ue5NwabOsAzm0Q7kAPwq6L+wWDwisYs7R8vZ0nRXqq6rkueboxpkjvLGU9fWifiX/ZZFxQ==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "hast-util-to-jsx-runtime": "^2.0.0", + "html-url-attributes": "^3.0.0", + "mdast-util-to-hast": "^13.0.0", + "remark-parse": "^11.0.0", + "remark-rehype": "^11.0.0", + "unified": "^11.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + }, + "peerDependencies": { + "@types/react": ">=18", + "react": ">=18" + } + }, + "node_modules/react-refresh": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.18.0.tgz", + "integrity": "sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/redent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "dev": true, + "license": "MIT", + "dependencies": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/remark-gfm": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz", + "integrity": "sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-gfm": "^3.0.0", + "micromark-extension-gfm": "^3.0.0", + "remark-parse": "^11.0.0", + "remark-stringify": "^11.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-parse": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz", + "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-from-markdown": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-rehype": { + "version": "11.1.2", + "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz", + "integrity": "sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "mdast-util-to-hast": "^13.0.0", + "unified": "^11.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-stringify": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz", + "integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-to-markdown": "^2.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/reusify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rollup": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.53.3.tgz", + "integrity": "sha512-w8GmOxZfBmKknvdXU1sdM9NHcoQejwF/4mNgj2JuEEdRaHwwF12K7e9eXn1nLZ07ad+du76mkVsyeb2rKGllsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.8" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.53.3", + "@rollup/rollup-android-arm64": "4.53.3", + "@rollup/rollup-darwin-arm64": "4.53.3", + "@rollup/rollup-darwin-x64": "4.53.3", + "@rollup/rollup-freebsd-arm64": "4.53.3", + "@rollup/rollup-freebsd-x64": "4.53.3", + "@rollup/rollup-linux-arm-gnueabihf": "4.53.3", + "@rollup/rollup-linux-arm-musleabihf": "4.53.3", + "@rollup/rollup-linux-arm64-gnu": "4.53.3", + "@rollup/rollup-linux-arm64-musl": "4.53.3", + "@rollup/rollup-linux-loong64-gnu": "4.53.3", + "@rollup/rollup-linux-ppc64-gnu": "4.53.3", + "@rollup/rollup-linux-riscv64-gnu": "4.53.3", + "@rollup/rollup-linux-riscv64-musl": "4.53.3", + "@rollup/rollup-linux-s390x-gnu": "4.53.3", + "@rollup/rollup-linux-x64-gnu": "4.53.3", + "@rollup/rollup-linux-x64-musl": "4.53.3", + "@rollup/rollup-openharmony-arm64": "4.53.3", + "@rollup/rollup-win32-arm64-msvc": "4.53.3", + "@rollup/rollup-win32-ia32-msvc": "4.53.3", + "@rollup/rollup-win32-x64-gnu": "4.53.3", + "@rollup/rollup-win32-x64-msvc": "4.53.3", + "fsevents": "~2.3.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true, + "license": "MIT" + }, + "node_modules/saxes": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", + "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", + "dev": true, + "license": "ISC", + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=v12.22.7" + } + }, + "node_modules/scheduler": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz", + "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==", + "license": "MIT" + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/siginfo": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz", + "integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==", + "dev": true, + "license": "ISC" + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/space-separated-tokens": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", + "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/stackback": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", + "integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==", + "dev": true, + "license": "MIT" + }, + "node_modules/std-env": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.10.0.tgz", + "integrity": "sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==", + "dev": true, + "license": "MIT" + }, + "node_modules/stringify-entities": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz", + "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", + "license": "MIT", + "dependencies": { + "character-entities-html4": "^2.0.0", + "character-entities-legacy": "^3.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "min-indent": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/style-to-js": { + "version": "1.1.21", + "resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.21.tgz", + "integrity": "sha512-RjQetxJrrUJLQPHbLku6U/ocGtzyjbJMP9lCNK7Ag0CNh690nSH8woqWH9u16nMjYBAok+i7JO1NP2pOy8IsPQ==", + "license": "MIT", + "dependencies": { + "style-to-object": "1.0.14" + } + }, + "node_modules/style-to-object": { + "version": "1.0.14", + "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.14.tgz", + "integrity": "sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw==", + "license": "MIT", + "dependencies": { + "inline-style-parser": "0.2.7" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true, + "license": "MIT" + }, + "node_modules/tinybench": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz", + "integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==", + "dev": true, + "license": "MIT" + }, + "node_modules/tinyexec": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.2.tgz", + "integrity": "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/tinyglobby": { + "version": "0.2.15", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", + "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.3" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/tinyglobby/node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/tinyglobby/node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/tinyrainbow": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-3.0.3.tgz", + "integrity": "sha512-PSkbLUoxOFRzJYjjxHJt9xro7D+iilgMX/C9lawzVuYiIdcihh9DXmVibBe8lmcFrRi/VzlPjBxbN7rH24q8/Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tldts": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/tldts/-/tldts-7.0.18.tgz", + "integrity": "sha512-lCcgTAgMxQ1JKOWrVGo6E69Ukbnx4Gc1wiYLRf6J5NN4HRYJtCby1rPF8rkQ4a6qqoFBK5dvjJ1zJ0F7VfDSvw==", + "dev": true, + "license": "MIT", + "dependencies": { + "tldts-core": "^7.0.18" + }, + "bin": { + "tldts": "bin/cli.js" + } + }, + "node_modules/tldts-core": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.0.18.tgz", + "integrity": "sha512-jqJC13oP4FFAahv4JT/0WTDrCF9Okv7lpKtOZUGPLiAnNbACcSg8Y8T+Z9xthOmRBqi/Sob4yi0TE0miRCvF7Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/tough-cookie": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-6.0.0.tgz", + "integrity": "sha512-kXuRi1mtaKMrsLUxz3sQYvVl37B0Ns6MzfrtV5DvJceE9bPyspOqk9xxv7XbZWcfLWbFmm997vl83qUWVJA64w==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "tldts": "^7.0.5" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/tr46": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-6.0.0.tgz", + "integrity": "sha512-bLVMLPtstlZ4iMQHpFHTR7GAGj2jxi8Dg0s2h2MafAE4uSWF98FC/3MomU51iQAMf8/qDUbKWf5GxuvvVcXEhw==", + "dev": true, + "license": "MIT", + "dependencies": { + "punycode": "^2.3.1" + }, + "engines": { + "node": ">=20" + } + }, + "node_modules/trim-lines": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", + "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/trough": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz", + "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/ts-api-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.1.0.tgz", + "integrity": "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.12" + }, + "peerDependencies": { + "typescript": ">=4.8.4" + } + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "dev": true, + "license": "Apache-2.0", + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/typescript-eslint": { + "version": "8.47.0", + "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.47.0.tgz", + "integrity": "sha512-Lwe8i2XQ3WoMjua/r1PHrCTpkubPYJCAfOurtn+mtTzqB6jNd+14n9UN1bJ4s3F49x9ixAm0FLflB/JzQ57M8Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/eslint-plugin": "8.47.0", + "@typescript-eslint/parser": "8.47.0", + "@typescript-eslint/typescript-estree": "8.47.0", + "@typescript-eslint/utils": "8.47.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "dev": true, + "license": "MIT" + }, + "node_modules/unified": { + "version": "11.0.5", + "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz", + "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "bail": "^2.0.0", + "devlop": "^1.0.0", + "extend": "^3.0.0", + "is-plain-obj": "^4.0.0", + "trough": "^2.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-is": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz", + "integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-position": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz", + "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-stringify-position": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", + "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz", + "integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit-parents": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz", + "integrity": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz", + "integrity": "sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/use-sync-external-store": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.6.0.tgz", + "integrity": "sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==", + "license": "MIT", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/vfile": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz", + "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-message": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz", + "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vite": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/vite/-/vite-7.2.2.tgz", + "integrity": "sha512-BxAKBWmIbrDgrokdGZH1IgkIk/5mMHDreLDmCJ0qpyJaAteP8NvMhkwr/ZCQNqNH97bw/dANTE9PDzqwJghfMQ==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "esbuild": "^0.25.0", + "fdir": "^6.5.0", + "picomatch": "^4.0.3", + "postcss": "^8.5.6", + "rollup": "^4.43.0", + "tinyglobby": "^0.2.15" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^20.19.0 || >=22.12.0", + "jiti": ">=1.21.0", + "less": "^4.0.0", + "lightningcss": "^1.21.0", + "sass": "^1.70.0", + "sass-embedded": "^1.70.0", + "stylus": ">=0.54.8", + "sugarss": "^5.0.0", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/vite/node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/vite/node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/vitest": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/vitest/-/vitest-4.0.10.tgz", + "integrity": "sha512-2Fqty3MM9CDwOVet/jaQalYlbcjATZwPYGcqpiYQqgQ/dLC7GuHdISKgTYIVF/kaishKxLzleKWWfbSDklyIKg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/expect": "4.0.10", + "@vitest/mocker": "4.0.10", + "@vitest/pretty-format": "4.0.10", + "@vitest/runner": "4.0.10", + "@vitest/snapshot": "4.0.10", + "@vitest/spy": "4.0.10", + "@vitest/utils": "4.0.10", + "debug": "^4.4.3", + "es-module-lexer": "^1.7.0", + "expect-type": "^1.2.2", + "magic-string": "^0.30.21", + "pathe": "^2.0.3", + "picomatch": "^4.0.3", + "std-env": "^3.10.0", + "tinybench": "^2.9.0", + "tinyexec": "^0.3.2", + "tinyglobby": "^0.2.15", + "tinyrainbow": "^3.0.3", + "vite": "^6.0.0 || ^7.0.0", + "why-is-node-running": "^2.3.0" + }, + "bin": { + "vitest": "vitest.mjs" + }, + "engines": { + "node": "^20.0.0 || ^22.0.0 || >=24.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "@edge-runtime/vm": "*", + "@types/debug": "^4.1.12", + "@types/node": "^20.0.0 || ^22.0.0 || >=24.0.0", + "@vitest/browser-playwright": "4.0.10", + "@vitest/browser-preview": "4.0.10", + "@vitest/browser-webdriverio": "4.0.10", + "@vitest/ui": "4.0.10", + "happy-dom": "*", + "jsdom": "*" + }, + "peerDependenciesMeta": { + "@edge-runtime/vm": { + "optional": true + }, + "@types/debug": { + "optional": true + }, + "@types/node": { + "optional": true + }, + "@vitest/browser-playwright": { + "optional": true + }, + "@vitest/browser-preview": { + "optional": true + }, + "@vitest/browser-webdriverio": { + "optional": true + }, + "@vitest/ui": { + "optional": true + }, + "happy-dom": { + "optional": true + }, + "jsdom": { + "optional": true + } + } + }, + "node_modules/vitest/node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/w3c-xmlserializer": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-5.0.0.tgz", + "integrity": "sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==", + "dev": true, + "license": "MIT", + "dependencies": { + "xml-name-validator": "^5.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/webidl-conversions": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-8.0.0.tgz", + "integrity": "sha512-n4W4YFyz5JzOfQeA8oN7dUYpR+MBP3PIUsn2jLjWXwK5ASUzt0Jc/A5sAUZoCYFJRGF0FBKJ+1JjN43rNdsQzA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=20" + } + }, + "node_modules/whatwg-encoding": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz", + "integrity": "sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "iconv-lite": "0.6.3" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/whatwg-mimetype": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz", + "integrity": "sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/whatwg-url": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-15.1.0.tgz", + "integrity": "sha512-2ytDk0kiEj/yu90JOAp44PVPUkO9+jVhyf+SybKlRHSDlvOOZhdPIrr7xTH64l4WixO2cP+wQIcgujkGBPPz6g==", + "dev": true, + "license": "MIT", + "dependencies": { + "tr46": "^6.0.0", + "webidl-conversions": "^8.0.0" + }, + "engines": { + "node": ">=20" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/why-is-node-running": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz", + "integrity": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==", + "dev": true, + "license": "MIT", + "dependencies": { + "siginfo": "^2.0.0", + "stackback": "0.0.2" + }, + "bin": { + "why-is-node-running": "cli.js" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ws": { + "version": "8.18.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz", + "integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xml-name-validator": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-5.0.0.tgz", + "integrity": "sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18" + } + }, + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "dev": true, + "license": "MIT" + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "license": "ISC" + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zod": { + "version": "4.1.12", + "resolved": "https://registry.npmjs.org/zod/-/zod-4.1.12.tgz", + "integrity": "sha512-JInaHOamG8pt5+Ey8kGmdcAcg3OL9reK8ltczgHTAwNhMys/6ThXHityHxVV2p3fkw/c+MAvBHFVYHFZDmjMCQ==", + "dev": true, + "license": "MIT", + "peer": true, + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, + "node_modules/zod-validation-error": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-4.0.2.tgz", + "integrity": "sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "zod": "^3.25.0 || ^4.0.0" + } + }, + "node_modules/zustand": { + "version": "4.5.7", + "resolved": "https://registry.npmjs.org/zustand/-/zustand-4.5.7.tgz", + "integrity": "sha512-CHOUy7mu3lbD6o6LJLfllpjkzhHXSBlX8B9+qPddUsIfeF5S/UZ5q0kmCsnRqT1UHFQZchNFDDzMbQsuesHWlw==", + "license": "MIT", + "dependencies": { + "use-sync-external-store": "^1.2.2" + }, + "engines": { + "node": ">=12.7.0" + }, + "peerDependencies": { + "@types/react": ">=16.8", + "immer": ">=9.0.6", + "react": ">=16.8" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "immer": { + "optional": true + }, + "react": { + "optional": true + } + } + }, + "node_modules/zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + } + } +} diff --git a/web-editor/package.json b/web-editor/package.json new file mode 100644 index 0000000..a60ccf5 --- /dev/null +++ b/web-editor/package.json @@ -0,0 +1,44 @@ +{ + "name": "web-editor", + "private": true, + "version": "0.0.0", + "type": "module", + "scripts": { + "dev": "vite", + "build": "tsc -b && vite build", + "lint": "eslint .", + "test": "vitest", + "preview": "vite preview" + }, + "dependencies": { + "@dagrejs/dagre": "^1.1.8", + "@xyflow/react": "^12.9.3", + "js-yaml": "^4.1.1", + "lucide-react": "^0.554.0", + "react": "^19.2.0", + "react-dom": "^19.2.0", + "react-markdown": "^10.1.0", + "remark-gfm": "^4.0.1" + }, + "devDependencies": { + "@eslint/js": "^9.39.1", + "@testing-library/dom": "^10.4.1", + "@testing-library/jest-dom": "^6.9.1", + "@testing-library/react": "^16.3.0", + "@types/js-yaml": "^4.0.9", + "@types/node": "^24.10.0", + "@types/react": "^19.2.2", + "@types/react-dom": "^19.2.2", + "@vitejs/plugin-react": "^5.1.0", + "baseline-browser-mapping": "^2.9.15", + "eslint": "^9.39.1", + "eslint-plugin-react-hooks": "^7.0.1", + "eslint-plugin-react-refresh": "^0.4.24", + "globals": "^16.5.0", + "jsdom": "^27.2.0", + "typescript": "~5.9.3", + "typescript-eslint": "^8.46.3", + "vite": "^7.2.2", + "vitest": "^4.0.10" + } +} diff --git a/web-editor/public/vite.svg b/web-editor/public/vite.svg new file mode 100644 index 0000000..ee9fada --- /dev/null +++ b/web-editor/public/vite.svg @@ -0,0 +1 @@ + diff --git a/web-editor/src/App.tsx b/web-editor/src/App.tsx new file mode 100644 index 0000000..c4e547d --- /dev/null +++ b/web-editor/src/App.tsx @@ -0,0 +1,11 @@ +import ScenarioEditor from './components/ScenarioEditor' + +function App() { + return ( +
+ +
+ ) +} + +export default App diff --git a/web-editor/src/components/ScenarioEditor.tsx b/web-editor/src/components/ScenarioEditor.tsx new file mode 100644 index 0000000..2b447cf --- /dev/null +++ b/web-editor/src/components/ScenarioEditor.tsx @@ -0,0 +1,1229 @@ +import React, { useCallback, useState, useEffect, useRef, useMemo } from 'react'; +import { + ReactFlow, + Controls, + Background, + BackgroundVariant, + Panel, + ReactFlowProvider, + type Node, + type Edge, + type NodeTypes, + type OnSelectionChangeParams, +} from '@xyflow/react'; +import '@xyflow/react/dist/style.css'; +import layoutStyles from '../styles/EditorLayout.module.css'; +import type { Operation, OperationParam, NodeData, ScenarioConfig, GroupDefinition } from '../types/scenario'; + +import { CustomNode } from './ScenarioEditor/CustomNode'; +import { Toolbox } from './ScenarioEditor/Toolbox'; +import { ScenarioList } from './ScenarioEditor/ScenarioList'; +import { PropertiesPanel } from './ScenarioEditor/PropertiesPanel'; +import { BottomPanel } from './ScenarioEditor/BottomPanel'; +import { Header } from './ScenarioEditor/Header'; +import { ScenarioInfoPanel } from './ScenarioEditor/ScenarioInfoPanel'; + +import { useScenarioGraph } from '../hooks/useScenarioGraph'; +import { useScenarioRunner } from '../hooks/useScenarioRunner'; +import { useScenarioFile } from '../hooks/useScenarioFile'; +import { convertGraphToYaml, convertYamlToGraph } from '../utils/scenarioConversion'; +import { createWaitEdge } from '../utils/edgeStyles'; + +const nodeTypes: NodeTypes = { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + custom: CustomNode as any, +}; + +// Helper function moved outside component to avoid recreation +const updateParameterInList = (params: OperationParam[], paramName: string, value: unknown) => { + return params.map((param) => + param.name === paramName ? { ...param, default: value } : param + ); +}; + +// Memoize child components to prevent unnecessary re-renders +const MemoizedToolbox = React.memo(Toolbox); +const MemoizedPropertiesPanel = React.memo(PropertiesPanel); +const MemoizedScenarioInfoPanel = React.memo(ScenarioInfoPanel); +const MemoizedBottomPanel = React.memo(BottomPanel); +const MemoizedHeader = React.memo(Header); + +const ScenarioEditorContent = () => { + // Default configuration + const getDefaultConfig = (): ScenarioConfig => ({ + flight_blender: { + url: "http://localhost:8000", + auth: { + type: "none", + audience: "testflight.flightblender.com", + scopes: ["flightblender.write", "flightblender.read"] + } + }, + data_files: { + trajectory: "config/bern/trajectory_f1.json", + flight_declaration: "config/bern/flight_declaration.json", + flight_declaration_via_operational_intent: "config/bern/flight_declaration_via_operational_intent.json" + }, + air_traffic_simulator_settings: { + number_of_aircraft: 3, + simulation_duration: 10, + single_or_multiple_sensors: "multiple", + sensor_ids: ["a0b7d47e5eac45dc8cbaf47e6fe0e558"] + }, + blue_sky_air_traffic_simulator_settings: { + number_of_aircraft: 3, + simulation_duration_seconds: 30, + single_or_multiple_sensors: "multiple", + sensor_ids: ["562e6297036a4adebb4848afcd1ede90"] + } + }); + + const groupPadding = 40; + + // Synchronously read autosave state for lazy initialization + const [initialState] = useState(() => { + if (typeof window === 'undefined') return { nodes: [], edges: [], desc: "", config: getDefaultConfig(), groups: {}, isDirty: false, isRestored: false }; + + const savedIsDirty = sessionStorage.getItem('editor-is-dirty') === 'true'; + const savedScenarioName = sessionStorage.getItem('editor-autosave-scenario-name'); + const currentScenarioName = sessionStorage.getItem('currentScenarioName'); + + if (savedIsDirty && savedScenarioName === currentScenarioName) { + try { + const nodes = JSON.parse(sessionStorage.getItem('editor-autosave-nodes') || '[]'); + const edges = JSON.parse(sessionStorage.getItem('editor-autosave-edges') || '[]'); + const desc = sessionStorage.getItem('editor-autosave-description') || ""; + const config = JSON.parse(sessionStorage.getItem('editor-autosave-config') || JSON.stringify(getDefaultConfig())); + const groups = JSON.parse(sessionStorage.getItem('editor-autosave-groups') || '{}'); + return { nodes, edges, desc, config, groups, isDirty: true, isRestored: true }; + } catch (e) { + console.error("Failed to parse autosave data", e); + } + } + return { nodes: [], edges: [], desc: "", config: getDefaultConfig(), groups: {}, isDirty: false, isRestored: false }; + }); + + const reactFlowWrapper = useRef(null); + const [theme, setTheme] = useState<'light' | 'dark'>(() => { + if (typeof window !== 'undefined') { + const saved = sessionStorage.getItem('editor-theme'); + if (saved === 'light' || saved === 'dark') return saved; + } + return 'light'; + }); + const [selectedNode, setSelectedNode] = useState | null>(null); + const [selectedNodes, setSelectedNodes] = useState[]>([]); + const [selectedEdgeId, setSelectedEdgeId] = useState(null); + const [operations, setOperations] = useState([]); + const [isConnected, setIsConnected] = useState(false); + const [currentScenarioName, setCurrentScenarioName] = useState(() => { + if (typeof window !== 'undefined') { + return sessionStorage.getItem('currentScenarioName'); + } + return null; + }); + const [currentScenarioDescription, setCurrentScenarioDescription] = useState(initialState.desc); + const [currentScenarioConfig, setCurrentScenarioConfig] = useState(initialState.config); + const [currentScenarioGroups, setCurrentScenarioGroups] = useState>(initialState.groups || {}); + const [scenarioListRefreshKey, setScenarioListRefreshKey] = useState(0); + const [isDirty, setIsDirty] = useState(initialState.isDirty); + const [reportError, setReportError] = useState<{ title: string; message: string } | null>(null); + + const incrementScenarioListRefreshKey = useCallback(() => { + setScenarioListRefreshKey(prev => prev + 1); + }, []); + + useEffect(() => { + const checkHealth = async () => { + try { + const res = await fetch('/health'); + if (res.ok) { + setIsConnected(true); + } else { + setIsConnected(false); + } + } catch { + setIsConnected(false); + } + }; + + checkHealth(); + const interval = setInterval(checkHealth, 5000); + return () => clearInterval(interval); + }, []); + + useEffect(() => { + if (isConnected) { + fetch('/operations') + .then(res => res.json()) + .then(data => setOperations(data)) + .catch(err => console.error('Failed to fetch operations:', err)); + } + }, [isConnected]); + + const { + nodes, + edges, + setNodes, + setEdges, + onNodesChange, + onEdgesChange, + onConnect, + onDrop, + onLayout, + clearGraph, + setReactFlowInstance, + reactFlowInstance, + onGraphDragStart, + onGraphDragStop + } = useScenarioGraph(initialState.nodes, initialState.edges); + + // Refs to keep track of latest nodes/edges without triggering re-renders in callbacks + const nodesRef = useRef(nodes); + const edgesRef = useRef(edges); + + useEffect(() => { + nodesRef.current = nodes; + edgesRef.current = edges; + }, [nodes, edges]); + + const { isRunning, runScenario } = useScenarioRunner(); + const { handleSaveToServer, handleSaveAs } = useScenarioFile( + nodes, + edges, + operations, + currentScenarioName, + setCurrentScenarioName, + currentScenarioDescription, + currentScenarioConfig, + currentScenarioGroups, + incrementScenarioListRefreshKey, + () => setIsDirty(false) + ); + + const loadScenarioFromYaml = useCallback((newNodes: Node[], newEdges: Edge[], newConfig?: ScenarioConfig, newGroups?: Record, newDescription?: string) => { + setNodes(newNodes); + setEdges(newEdges); + if (newConfig) { + setCurrentScenarioConfig(newConfig); + } + // Always set groups to the new scenario's groups (or empty object if none provided) + setCurrentScenarioGroups(newGroups || {}); + if (typeof newDescription === 'string') { + setCurrentScenarioDescription(newDescription); + } + setIsDirty(false); + setTimeout(() => reactFlowInstance?.fitView({ padding: 0.2, duration: 400 }), 100); + }, [setNodes, setEdges, reactFlowInstance]); + + useEffect(() => { + // Also load description from the ScenarioList load if possible, + // but for now the list only loads scenarios by name. + // We might want to clear description if we can't load it? + }, [loadScenarioFromYaml]); + + useEffect(() => { + if (currentScenarioName) { + sessionStorage.setItem('currentScenarioName', currentScenarioName); + } else { + sessionStorage.removeItem('currentScenarioName'); + } + }, [currentScenarioName]); + + // Autosave dirty state + useEffect(() => { + const saveState = () => { + if (isDirty) { + sessionStorage.setItem('editor-is-dirty', 'true'); + sessionStorage.setItem('editor-autosave-nodes', JSON.stringify(nodes)); + sessionStorage.setItem('editor-autosave-edges', JSON.stringify(edges)); + sessionStorage.setItem('editor-autosave-description', currentScenarioDescription); + sessionStorage.setItem('editor-autosave-config', JSON.stringify(currentScenarioConfig)); + sessionStorage.setItem('editor-autosave-groups', JSON.stringify(currentScenarioGroups)); + // Save the scenario name to verify autosave is for the correct scenario + if (currentScenarioName) { + sessionStorage.setItem('editor-autosave-scenario-name', currentScenarioName); + } + } else { + sessionStorage.removeItem('editor-is-dirty'); + sessionStorage.removeItem('editor-autosave-nodes'); + sessionStorage.removeItem('editor-autosave-edges'); + sessionStorage.removeItem('editor-autosave-description'); + sessionStorage.removeItem('editor-autosave-config'); + sessionStorage.removeItem('editor-autosave-groups'); + sessionStorage.removeItem('editor-autosave-scenario-name'); + } + }; + + // Debounce save to avoid performance impact + const timeoutId = setTimeout(saveState, 500); + return () => clearTimeout(timeoutId); + }, [isDirty, nodes, edges, currentScenarioDescription, currentScenarioConfig, currentScenarioGroups, currentScenarioName]); + + // Load saved scenario on mount (refresh) if available + const [isRestored, setIsRestored] = useState(initialState.isRestored); + + // Fallback to server load on mount if not restored from autosave + useEffect(() => { + if (isRestored) return; + + // Fallback to server load if not dirty or autosave failed + if (operations.length > 0 && currentScenarioName && nodes.length === 0) { + fetch(`/api/scenarios/${currentScenarioName}`) + .then(res => res.json()) + .then(scenario => { + const { nodes: newNodes, edges: newEdges, config } = convertYamlToGraph(scenario, operations); + loadScenarioFromYaml(newNodes, newEdges, config, scenario.groups); + setCurrentScenarioDescription(scenario.description || ""); + setIsRestored(true); + }) + .catch(err => { + console.error('Failed to restore scenario:', err); + setIsRestored(true); + }); + } + }, [operations, currentScenarioName, nodes.length, loadScenarioFromYaml, isRestored]); + + useEffect(() => { + document.documentElement.dataset.theme = theme; + sessionStorage.setItem('editor-theme', theme); + }, [theme]); + + // Update edge styles when selection changes + useEffect(() => { + setEdges(eds => eds.map(edge => ({ + ...edge, + style: { + ...edge.style, + stroke: edge.id === selectedEdgeId ? 'var(--success)' : 'var(--accent-primary)', + strokeWidth: edge.id === selectedEdgeId ? 2 : 1 + } + }))); + }, [selectedEdgeId, setEdges]); + + const toggleTheme = useCallback(() => { + setTheme(prev => prev === 'light' ? 'dark' : 'light'); + }, []); + + const onNodeClick = useCallback((_event: React.MouseEvent, node: Node) => { + setSelectedNode(node as Node); + setSelectedEdgeId(null); + }, []); + + const onNodeDragStart = useCallback((_event: React.MouseEvent, node: Node) => { + setSelectedNode(node as Node); + setSelectedEdgeId(null); + onGraphDragStart(); + }, [onGraphDragStart]); + + const onNodeDragStop = useCallback((_event: React.MouseEvent, node: Node) => { + onGraphDragStop(); + + // Only auto-attach when the node is free-floating (no edges) and not itself a group + const hasEdges = edgesRef.current.some(e => e.source === node.id || e.target === node.id); + if (hasEdges || node.data?.isGroupContainer || node.data?.isGroupReference) return; + + // Compute absolute position (child nodes store positions relative to parent) + const getAbsolutePosition = (n: Node): { x: number; y: number } => { + let x = n.position.x; + let y = n.position.y; + if (n.parentId) { + const parent = nodesRef.current.find(p => p.id === n.parentId); + if (parent) { + const parentPos = getAbsolutePosition(parent); + x += parentPos.x; + y += parentPos.y; + } + } + return { x, y }; + }; + + const nodeAbs = getAbsolutePosition(node); + + const parseSize = (value: unknown, fallback: number) => { + if (typeof value === 'number') return value; + if (typeof value === 'string') { + const num = parseFloat(value); + return Number.isFinite(num) ? num : fallback; + } + return fallback; + }; + + // Find the first group container that encloses the drop point + const targetGroup = nodesRef.current.find(g => { + if (!g.data?.isGroupContainer) return false; + const width = parseSize(g.style?.minWidth, 400); + const height = parseSize(g.style?.minHeight, 200); + const gx = g.position.x; + const gy = g.position.y; + return nodeAbs.x >= gx && nodeAbs.x <= gx + width && nodeAbs.y >= gy && nodeAbs.y <= gy + height; + }); + + if (!targetGroup || targetGroup.id === node.parentId) return; + + const gx = targetGroup.position.x; + const gy = targetGroup.position.y; + const relativePos = { + x: nodeAbs.x - gx, + y: nodeAbs.y - gy, + }; + + setNodes(prev => prev.map(n => { + if (n.id === node.id) { + return { + ...n, + parentId: targetGroup.id, + position: relativePos, + }; + } + if (n.id === targetGroup.id) { + const width = parseSize(n.style?.minWidth, 400); + const height = parseSize(n.style?.minHeight, 200); + const neededW = Math.max(width, relativePos.x + groupPadding); + const neededH = Math.max(height, relativePos.y + groupPadding); + return { + ...n, + style: { + ...n.style, + minWidth: `${neededW}px`, + minHeight: `${neededH}px`, + } + }; + } + return n; + })); + setIsDirty(true); + }, [onGraphDragStop, setNodes, groupPadding]); + + const onPaneClick = useCallback(() => { + setSelectedNode(null); + setSelectedEdgeId(null); + }, []); + + const onEdgeClick = useCallback((_event: React.MouseEvent, edge: Edge) => { + setSelectedEdgeId(edge.id); + setSelectedNode(null); + }, []); + + const onSelectionChange = useCallback((params: OnSelectionChangeParams) => { + const nodesSel = (params.nodes || []) as Node[]; + setSelectedNodes(nodesSel); + + if (nodesSel.length === 1) { + setSelectedNode(nodesSel[0]); + } else { + setSelectedNode(null); + } + }, []); + + const clampChildPositionChanges = useCallback((changes: Parameters[0]) => { + return changes.map(change => { + if (change.type !== 'position' || !('position' in change) || !change.position) return change; + const node = nodesRef.current.find(n => n.id === change.id); + if (!node?.parentId) return change; + const clampedX = Math.max(groupPadding, change.position.x); + const clampedY = Math.max(groupPadding, change.position.y); + if (clampedX === change.position.x && clampedY === change.position.y) return change; + return { ...change, position: { x: clampedX, y: clampedY } }; + }); + }, [groupPadding]); + + const expandParentForChildren = useCallback((changes: Parameters[0]) => { + const sizeUpdates: Record = {}; + + const parseSize = (value: unknown, fallback: number) => { + if (typeof value === 'number') return value; + if (typeof value === 'string') { + const num = parseFloat(value); + return Number.isFinite(num) ? num : fallback; + } + return fallback; + }; + + changes.forEach(change => { + if (change.type !== 'position' || !('position' in change) || !change.position) return; + const node = nodesRef.current.find(n => n.id === change.id); + if (!node?.parentId) return; + const parent = nodesRef.current.find(n => n.id === node.parentId); + if (!parent) return; + + const currentMinW = parseSize(parent.style?.minWidth, 400); + const currentMinH = parseSize(parent.style?.minHeight, 200); + const neededW = Math.max(currentMinW, change.position.x + groupPadding); + const neededH = Math.max(currentMinH, change.position.y + groupPadding); + + if (neededW !== currentMinW || neededH !== currentMinH) { + const prev = sizeUpdates[parent.id]; + sizeUpdates[parent.id] = { + minWidth: prev ? Math.max(prev.minWidth, neededW) : neededW, + minHeight: prev ? Math.max(prev.minHeight, neededH) : neededH, + }; + } + }); + + if (Object.keys(sizeUpdates).length > 0) { + setNodes(prev => prev.map(n => { + const update = sizeUpdates[n.id]; + if (!update) return n; + return { + ...n, + style: { + ...n.style, + minWidth: `${update.minWidth}px`, + minHeight: `${update.minHeight}px`, + } + }; + })); + } + }, [setNodes]); + + const ungroupSelectedNode = useCallback(() => { + if (!selectedNode?.data.isGroupContainer) return; + const groupId = selectedNode.id; + const groupName = selectedNode.data.label.replace(/^πŸ“¦\s*/, '').trim(); + + // Prefer unwrapping existing child nodes to avoid duplication + const childNodes = nodes.filter(n => n.parentId === groupId); + const childIds = new Set(childNodes.map(n => n.id)); + const childInternalEdges = edges.filter(e => childIds.has(e.source) && childIds.has(e.target)); + + let unwrapNodes: Node[] = []; + let internalEdges: Edge[] = childInternalEdges; + + if (childNodes.length > 0) { + // Convert child positions to absolute and drop parentId + unwrapNodes = childNodes.map(n => ({ + ...n, + parentId: undefined, + position: { + x: n.position.x + selectedNode.position.x, + y: n.position.y + selectedNode.position.y, + }, + selected: false, + })); + } else { + // Fall back to rebuilding from group definition if children missing + const groupDef = currentScenarioGroups[groupName]; + if (!groupDef) return; + + const tempScenario = { + name: 'temp', + description: '', + steps: groupDef.steps, + } as unknown as Parameters[0]; + + const { nodes: groupNodes, edges: groupEdges } = convertYamlToGraph(tempScenario, operations); + const offsetX = selectedNode.position.x + 50; + const offsetY = selectedNode.position.y + 50; + + unwrapNodes = groupNodes.map(n => ({ + ...n, + position: { + x: n.position.x + offsetX, + y: n.position.y + offsetY, + }, + selected: false, + })); + internalEdges = groupEdges as Edge[]; + } + + // Identify roots and leaves for rewiring + const incomingCount: Record = {}; + const outgoingCount: Record = {}; + internalEdges.forEach(e => { + incomingCount[e.target] = (incomingCount[e.target] || 0) + 1; + outgoingCount[e.source] = (outgoingCount[e.source] || 0) + 1; + }); + const roots = unwrapNodes.filter(n => !incomingCount[n.id]); + const leaves = unwrapNodes.filter(n => !outgoingCount[n.id]); + + // External edges + const incomingEdges = edges.filter(e => e.target === groupId && e.style?.strokeDasharray !== '5 5'); + const outgoingEdges = edges.filter(e => e.source === groupId && e.style?.strokeDasharray !== '5 5'); + + // Remove group container and any existing children + const remainingNodes = nodes.filter(n => n.id !== groupId && n.parentId !== groupId); + const remainingEdges = edges.filter(e => e.source !== groupId && e.target !== groupId && !childIds.has(e.source) && !childIds.has(e.target)); + + const rewiredIncoming: Edge[] = incomingEdges.flatMap(e => roots.map(root => ({ + ...e, + id: `e_${e.source}-${root.id}`, + target: root.id, + }))); + + const rewiredOutgoing: Edge[] = outgoingEdges.flatMap(e => leaves.map(leaf => ({ + ...e, + id: `e_${leaf.id}-${e.target}`, + source: leaf.id, + }))); + + const nodesAfterUngroup = [...remainingNodes, ...unwrapNodes]; + setNodes(nodesAfterUngroup); + setEdges([...remainingEdges, ...internalEdges, ...rewiredIncoming, ...rewiredOutgoing]); + setCurrentScenarioGroups(prev => { + const next = { ...prev }; + delete next[groupName]; + return next; + }); + setSelectedNode(null); + setSelectedNodes([]); + setIsDirty(true); + }, [selectedNode, currentScenarioGroups, operations, edges, nodes, setNodes, setEdges, setCurrentScenarioGroups]); + + const groupSelectedNodes = useCallback(() => { + if (selectedNodes.length < 2) return; + + const selectedIds = new Set(selectedNodes.map(n => n.id)); + + // Keep only sequence edges (non dotted) fully inside selection + const internalEdges = edges.filter(e => selectedIds.has(e.source) && selectedIds.has(e.target) && e.style?.strokeDasharray !== '5 5'); + + // Build steps from the selected subgraph using existing converter + const tempScenario = convertGraphToYaml(selectedNodes, internalEdges, operations, 'temp', 'temp'); + const groupSteps = tempScenario.steps || []; + if (groupSteps.length === 0) return; + + const defaultName = `group_${Date.now()}`; + const groupName = window.prompt('Name this group', defaultName); + if (!groupName) return; + + // Compute placement of new group node near selection + const minX = Math.min(...selectedNodes.map(n => n.position.x)); + const minY = Math.min(...selectedNodes.map(n => n.position.y)); + const maxX = Math.max(...selectedNodes.map(n => n.position.x)); + const maxY = Math.max(...selectedNodes.map(n => n.position.y)); + const containerMinWidth = Math.max(400, (maxX - minX) + groupPadding * 3); + const containerMinHeight = Math.max(200, (maxY - minY) + groupPadding * 3); + const groupNodeId = `group_${groupName}`; + + // Rewire external edges to group roots/leaves (not to container) so flow stays intact + const incomingEdges = edges.filter(e => !selectedIds.has(e.source) && selectedIds.has(e.target) && e.style?.strokeDasharray !== '5 5'); + const outgoingEdges = edges.filter(e => selectedIds.has(e.source) && !selectedIds.has(e.target) && e.style?.strokeDasharray !== '5 5'); + + // Identify roots and leaves within the selection + const incomingCount: Record = {}; + const outgoingCount: Record = {}; + internalEdges.forEach(e => { + incomingCount[e.target] = (incomingCount[e.target] || 0) + 1; + outgoingCount[e.source] = (outgoingCount[e.source] || 0) + 1; + }); + const roots = selectedNodes.filter(n => !incomingCount[n.id]); + const leaves = selectedNodes.filter(n => !outgoingCount[n.id]); + + // Base edges: those fully outside selection + const rewiredEdges: Edge[] = edges.filter(e => !selectedIds.has(e.source) && !selectedIds.has(e.target)); + + // Add incoming edges mapped to all roots + rewiredEdges.push( + ...incomingEdges.flatMap(e => roots.map(root => ({ ...e, id: `e_${e.source}-${root.id}`, target: root.id }))) + ); + + // Add outgoing edges mapped from all leaves + rewiredEdges.push( + ...outgoingEdges.flatMap(e => leaves.map(leaf => ({ ...e, id: `e_${leaf.id}-${e.target}`, source: leaf.id }))) + ); + + // Keep internal edges so child steps remain connected + rewiredEdges.push(...internalEdges); + + // Create container node + const groupNode: Node = { + id: groupNodeId, + type: 'custom', + position: { x: minX - 50, y: minY - 50 }, + data: { + label: `πŸ“¦ ${groupName}`, + description: `Group created from selection (${groupSteps.length} steps)`, + isGroupContainer: true, + isGroupReference: true, + }, + style: { + background: 'rgba(100, 150, 200, 0.05)', + border: '2px solid var(--accent-primary)', + borderRadius: '12px', + padding: `${groupPadding}px`, + boxShadow: 'inset 0 0 0 1px var(--border-color)', + minWidth: `${containerMinWidth}px`, + minHeight: `${containerMinHeight}px` + } + }; + + // Re-parent selected nodes as children of the group container so they stay visible + const childNodes = selectedNodes.map(n => ({ + ...n, + parentId: groupNodeId, + position: { + x: n.position.x - (minX - 50), + y: n.position.y - (minY - 50), + }, + selected: false, + })); + + const remainingNodes = nodes.filter(n => !selectedIds.has(n.id)); + const nodesAfterGroup = [...remainingNodes, groupNode, ...childNodes]; + + setNodes(nodesAfterGroup); + setEdges(rewiredEdges); + setCurrentScenarioGroups(prev => ({ + ...prev, + [groupName]: { + description: 'Group created from selection', + steps: groupSteps as GroupDefinition['steps'] + } + })); + setSelectedNodes([]); + setSelectedNode(null); + setIsDirty(true); + }, [selectedNodes, edges, operations, nodes, setNodes, setEdges, setCurrentScenarioGroups]); + + const onDragOver = useCallback((event: React.DragEvent) => { + event.preventDefault(); + event.dataTransfer.dropEffect = 'move'; + }, []); + + const handleDrop = useCallback((event: React.DragEvent) => { + setIsDirty(true); + onDrop(event, operations); + }, [onDrop, operations]); + + const handleNew = useCallback(() => { + if (!isDirty || globalThis.confirm('Create new scenario? Any unsaved changes will be lost.')) { + clearGraph(); + setSelectedNode(null); + setSelectedEdgeId(null); + setCurrentScenarioName(null); + setCurrentScenarioDescription(""); + setIsDirty(false); + } + }, [clearGraph, isDirty]); + + const updateNodesWithResults = useCallback((currentNodes: Node[], results: { id: string; status: 'success' | 'failure' | 'error' | 'skipped'; result?: unknown; logs?: string[] }[]) => { + return currentNodes.map(node => { + const stepId = node.data.stepId || node.id; + const stepName = node.data.label; + const hasCustomStepId = !!node.data.stepId?.trim(); + const stepResult = results.find((r) => + r.id === stepId || + r.id === node.id || + r.id?.endsWith(`.${stepId}`) || + (!hasCustomStepId && (r.id === stepName || r.id?.endsWith(`.${stepName}`))) + ); + if (stepResult) { + return { + ...node, + data: { + ...node.data, + status: stepResult.status, + result: stepResult.result, + logs: stepResult.logs, + } + }; + } + return node; + }); + }, []); + + const handleOpenReport = useCallback(async () => { + const scenarioParam = currentScenarioName ? `?scenario=${encodeURIComponent(currentScenarioName)}` : ''; + const url = `/api/reports/latest${scenarioParam}`; + + // Strategy: Open "about:blank" first, then navigate. + const newWindow = window.open('', '_blank'); + + if (!newWindow) { + setReportError({ title: "Popup Blocked", message: "Please allow popups for this site to view reports." }); + return; + } + + // Set a loading title or message + newWindow.document.title = "Loading Report..."; + newWindow.document.body.innerHTML = '
Finding latest report...
'; + + try { + const res = await fetch(url); + if (res.ok) { + // If it's a redirect, res.url is the final destination. + // If the backend returns 200 OK directly, res.url is the served content url. + newWindow.location.href = res.url; + } else { + newWindow.close(); + // Get error details from JSON if possible + let message = "Unable to find the report."; + try { + const errorData = await res.json(); + if (errorData.detail) message = errorData.detail; + } catch { /* ignore JSON parse error */ } + + setReportError({ title: "Report Not Found", message }); + } + } catch { + newWindow?.close(); + setReportError({ title: "Connection Error", message: "Failed to connect to the server." }); + } + }, [currentScenarioName]); + + const handleRun = useCallback(async () => { + // Clear previous results/errors from the UI immediately + setNodes((nds) => nds.map(node => ({ + ...node, + data: { + ...node.data, + status: undefined, + result: undefined + } + }))); + + // Use getNodes/getEdges from instance to ensure we have the latest state + // Fallback to refs if instance not ready + const currentNodes = reactFlowInstance ? reactFlowInstance.getNodes() : nodesRef.current; + const currentEdges = reactFlowInstance ? reactFlowInstance.getEdges() : edgesRef.current; + + // Pass a callback to update nodes incrementally + const onStepComplete = (stepResult: { id: string; status: 'success' | 'failure' | 'error' | 'skipped'; result?: unknown }) => { + setNodes((nds) => updateNodesWithResults(nds, [stepResult])); + }; + + const onStepStart = (nodeId: string) => { + setNodes((nds) => nds.map(node => { + if (node.id === nodeId) { + return { + ...node, + data: { + ...node.data, + status: 'running' + } + }; + } + return node; + })); + }; + + await runScenario( + currentNodes, + currentEdges, + currentScenarioName || "Interactive Session", + onStepComplete, + onStepStart, + currentScenarioConfig, + operations, + currentScenarioGroups, + currentScenarioDescription + ); + }, [ + runScenario, + currentScenarioName, + currentScenarioConfig, + currentScenarioGroups, + currentScenarioDescription, + operations, + setNodes, + updateNodesWithResults, + reactFlowInstance + ]); + + const updateNodeParameter = useCallback((nodeId: string, paramName: string, value: unknown) => { + setIsDirty(true); + setNodes((nds) => { + return nds.map((node) => { + if (node.id === nodeId) { + const updatedParameters = updateParameterInList( + (node.data.parameters || []), + paramName, + value + ); + return { + ...node, + data: { ...node.data, parameters: updatedParameters }, + }; + } + return node; + }); + }); + + setSelectedNode((prev) => { + if (!prev || prev.id !== nodeId) return prev; + const updatedParameters = updateParameterInList( + (prev.data.parameters || []), + paramName, + value + ); + return { + ...prev, + data: { ...prev.data, parameters: updatedParameters }, + }; + }); + }, [setNodes]); + + const updateNodeRunInBackground = useCallback((nodeId: string, value: boolean) => { + setIsDirty(true); + setNodes((nds) => nds.map((node) => ( + node.id === nodeId + ? { ...node, data: { ...node.data, runInBackground: value } } + : node + ))); + + setSelectedNode((prev) => { + if (!prev || prev.id !== nodeId) return prev; + return { + ...prev, + data: { ...prev.data, runInBackground: value }, + }; + }); + }, [setNodes]); + + const updateNodeNeeds = useCallback((nodeId: string, needs: string[]) => { + setIsDirty(true); + const cleanedNeeds = needs.filter(Boolean); + + setNodes((nds) => nds.map((node) => ( + node.id === nodeId + ? { ...node, data: { ...node.data, needs: cleanedNeeds } } + : node + ))); + + setEdges((eds) => { + const base = eds.filter(e => !(e.target === nodeId && e.style?.strokeDasharray === '5 5')); + const newEdges: Edge[] = cleanedNeeds + .map(depId => { + const sourceExists = nodesRef.current.find(n => n.id === depId); + if (!sourceExists) return null; + return createWaitEdge(depId, nodeId); + }) + .filter((e): e is Edge => !!e); + return [...base, ...newEdges]; + }); + + setSelectedNode((prev) => { + if (!prev || prev.id !== nodeId) return prev; + return { + ...prev, + data: { ...prev.data, needs: cleanedNeeds }, + }; + }); + }, [setNodes, setEdges]); + + const updateNodeStepId = useCallback((nodeId: string, stepId: string) => { + setIsDirty(true); + setNodes((nds) => { + return nds.map((node) => { + if (node.id === nodeId) { + return { + ...node, + data: { ...node.data, stepId: stepId }, + }; + } + return node; + }); + }); + + setSelectedNode((prev) => { + if (!prev || prev.id !== nodeId) return prev; + return { + ...prev, + data: { ...prev.data, stepId: stepId }, + }; + }); + }, [setNodes]); + + const updateNodeIfCondition = useCallback((nodeId: string, condition: string) => { + setIsDirty(true); + setNodes((nds) => { + return nds.map((node) => { + if (node.id === nodeId) { + return { + ...node, + data: { ...node.data, ifCondition: condition }, + }; + } + return node; + }); + }); + + setSelectedNode((prev) => { + if (!prev || prev.id !== nodeId) return prev; + return { + ...prev, + data: { ...prev.data, ifCondition: condition }, + }; + }); + }, [setNodes]); + + const updateNodeLoop = useCallback((nodeId: string, loopConfig: NodeData['loop']) => { + setIsDirty(true); + setNodes((nds) => { + return nds.map((node) => { + if (node.id === nodeId) { + return { + ...node, + data: { ...node.data, loop: loopConfig }, + }; + } + return node; + }); + }); + + setSelectedNode((prev) => { + if (!prev || prev.id !== nodeId) return prev; + return { + ...prev, + data: { ...prev.data, loop: loopConfig }, + }; + }); + }, [setNodes]); + + const updateGroupDescription = useCallback((groupName: string, newDescription: string) => { + setIsDirty(true); + // Update in state + setCurrentScenarioGroups(prev => ({ + ...prev, + [groupName]: { + ...prev[groupName], + description: newDescription + } + })); + // Also update the container node data + setNodes((nds) => { + return nds.map((node) => { + if (node.data.isGroupContainer && node.data.label.includes(groupName)) { + return { + ...node, + data: { ...node.data, description: newDescription } + }; + } + return node; + }); + }); + setSelectedNode((prev) => { + if (!prev || !prev.data.isGroupContainer) return prev; + if (prev.data.label.includes(groupName)) { + return { + ...prev, + data: { ...prev.data, description: newDescription } + }; + } + return prev; + }); + }, [setNodes]); + + const getConnectedSourceNodes = useCallback((targetNodeId: string) => { + const sourceNodeIds = new Set(edges + .filter(edge => edge.target === targetNodeId && edge.style?.strokeDasharray !== '5 5') + .map(edge => edge.source)); + return nodes.filter(node => sourceNodeIds.has(node.id)); + }, [edges, nodes]); + + const connectedNodes = useMemo(() => + selectedNode ? getConnectedSourceNodes(selectedNode.id) : [], + [selectedNode, getConnectedSourceNodes] + ); + + return ( +
+ + +
+ + + + +
+
+ , Edge> + nodes={nodes} + edges={edges} + nodeTypes={nodeTypes} + onNodesChange={(changes) => { + const boundedChanges = clampChildPositionChanges(changes); + expandParentForChildren(boundedChanges); + // Only mark dirty if relevant changes occur (add, remove, reset, position drag end?) + // simple 'position' change fires on every mouse move, we might want to be less aggressive or just accept it. + // But selection changes also fire onNodesChange. + const isRelevantChange = boundedChanges.some(c => c.type !== 'select' && c.type !== 'dimensions'); + if (isRelevantChange) setIsDirty(true); + onNodesChange(boundedChanges); + }} + onEdgesChange={(changes) => { + // Selection changes fire onEdgesChange too + const isRelevantChange = changes.some(c => c.type !== 'select'); + if (isRelevantChange) setIsDirty(true); + onEdgesChange(changes); + }} + onConnect={(connection) => { + setIsDirty(true); + onConnect(connection); + }} + onInit={setReactFlowInstance} + onDrop={handleDrop} + onDragOver={onDragOver} + onNodeClick={onNodeClick} + onNodeDragStart={onNodeDragStart} + onNodeDragStop={onNodeDragStop} + onPaneClick={onPaneClick} + onEdgeClick={onEdgeClick} + onSelectionChange={onSelectionChange} + fitView + className={theme === 'dark' ? "dark-flow" : ""} + colorMode={theme} + > + + + +
+ {currentScenarioName && ( +
+ {currentScenarioName}{isDirty && *} +
+ )} + {selectedNodes.length >= 2 && ( + + )} + {selectedNode?.data.isGroupContainer && ( + + )} +
+
+ {isConnected ? 'Connected' : 'Disconnected'} +
+
+
+ +
+ + {selectedNode && ( + setSelectedNode(null)} + /> + )} +
+ + {selectedNode ? ( + setSelectedNode(null)} + onUpdateParameter={updateNodeParameter} + onUpdateRunInBackground={updateNodeRunInBackground} + onUpdateNeeds={updateNodeNeeds} + onUpdateStepId={updateNodeStepId} + onUpdateIfCondition={updateNodeIfCondition} + onUpdateLoop={updateNodeLoop} + onUpdateGroupDescription={updateGroupDescription} + /> + ) : ( + { + setCurrentScenarioName(name); + setIsDirty(true); + }} + onUpdateDescription={(desc) => { + setCurrentScenarioDescription(desc); + setIsDirty(true); + }} + onUpdateConfig={(config) => { + setCurrentScenarioConfig(config); + setIsDirty(true); + }} + onOpenReport={handleOpenReport} + /> + )} +
+ {reportError && ( +
+
+
+

{reportError.title}

+ +
+

+ {reportError.message} +

+
+ +
+
+
+ )} +
+ ); +}; + +export default function ScenarioEditor() { + return ( + + + + ); +} diff --git a/web-editor/src/components/ScenarioEditor/BottomPanel.tsx b/web-editor/src/components/ScenarioEditor/BottomPanel.tsx new file mode 100644 index 0000000..c6e7d21 --- /dev/null +++ b/web-editor/src/components/ScenarioEditor/BottomPanel.tsx @@ -0,0 +1,178 @@ +import { useState, useMemo } from 'react'; +import { X } from 'lucide-react'; +import layoutStyles from '../../styles/EditorLayout.module.css'; +import panelStyles from '../../styles/SidebarPanel.module.css'; +import styles from '../../styles/BottomPanel.module.css'; +import { useBottomPanelResize } from '../../hooks/useBottomPanelResize'; +import type { Node } from '@xyflow/react'; +import type { NodeData } from '../../types/scenario'; + +const JsonViewer = ({ data }: { data: unknown }) => { + const jsonString = JSON.stringify(data, null, 2); + + const html = jsonString.replace(/("[^"]*":?|\btrue\b|\bfalse\b|\bnull\b|-?\d+(?:\.\d+)?)/g, (match) => { + let cls = styles.jsonNumber; + if (match.startsWith('"')) { + if (match.endsWith(':')) { + cls = styles.jsonKey; + } else { + cls = styles.jsonString; + } + } else if (/true|false/.test(match)) { + cls = styles.jsonBoolean; + } else if (/null/.test(match)) { + cls = styles.jsonNull; + } + return `${match}`; + }); + + return
; +}; + +const parseLog = (log: string) => { + const parts = log.split(' | '); + if (parts.length >= 3) { + return { + time: parts[0], + level: parts[1].trim(), + message: parts.slice(2).join(' | ') + }; + } + return { time: '', level: 'UNKNOWN', message: log }; +}; + +interface BottomPanelProps { + selectedNode: Node | null; + onClose: () => void; +} + +export const BottomPanel = ({ selectedNode, onClose }: BottomPanelProps) => { + const { panelHeight, isResizing, startResizing } = useBottomPanelResize(); + const [activeTab, setActiveTab] = useState<'output' | 'logs'>('output'); + const [logLevel, setLogLevel] = useState('ALL'); + + const result = selectedNode?.data?.result; + const nodeLogs = (selectedNode?.data as { logs?: string[] } | undefined)?.logs; + // eslint-disable-next-line @typescript-eslint/no-explicit-any + const resultLogs = (result as any)?.logs as string[] | undefined; + const logs = nodeLogs || resultLogs; + + const filteredLogs = useMemo(() => { + if (!logs) return []; + if (logLevel === 'ALL') return logs; + return logs.filter(log => { + const { level } = parseLog(log); + return level === logLevel; + }); + }, [logs, logLevel]); + + if (!selectedNode) return null; + + const { status, label } = selectedNode.data; + + return ( +
+ +
+ +
+ + +
+ +
+ {result ? ( +
+ {activeTab === 'output' && ( +
+ +
+ )} + + {activeTab === 'logs' && ( +
+
+ + + {filteredLogs.length} lines + +
+ {filteredLogs.length > 0 ? ( +
+ {filteredLogs.map((log, i) => ( +
{log}
+ ))} +
+ ) : ( +
+ No logs available. +
+ )} +
+ )} +
+ ) : ( +
+ No results available for this step. Run the scenario to generate results. +
+ )} +
+
+
+ ); +}; diff --git a/web-editor/src/components/ScenarioEditor/ConfigEditor.tsx b/web-editor/src/components/ScenarioEditor/ConfigEditor.tsx new file mode 100644 index 0000000..d9b85af --- /dev/null +++ b/web-editor/src/components/ScenarioEditor/ConfigEditor.tsx @@ -0,0 +1,456 @@ +import React, { useState } from 'react'; +import { Settings, Database, Server, ChevronDown, ChevronRight } from 'lucide-react'; +import styles from '../../styles/SidebarPanel.module.css'; +import type { ScenarioConfig } from '../../types/scenario'; + +interface ConfigEditorProps { + config: ScenarioConfig; + onUpdateConfig: (config: ScenarioConfig) => void; +} + +export const ConfigEditor: React.FC = ({ config, onUpdateConfig }) => { + const [expandedSections, setExpandedSections] = useState>(new Set(['flight_blender'])); + + const toggleSection = (section: string) => { + setExpandedSections(prev => { + const next = new Set(prev); + if (next.has(section)) { + next.delete(section); + } else { + next.add(section); + } + return next; + }); + }; + + const updateFlightBlender = (field: string, value: string) => { + onUpdateConfig({ + ...config, + flight_blender: { + ...config.flight_blender, + [field]: value + } + }); + }; + + const updateFlightBlenderAuth = (field: string, value: string | string[]) => { + onUpdateConfig({ + ...config, + flight_blender: { + ...config.flight_blender, + auth: { + ...config.flight_blender.auth, + [field]: value + } + } + }); + }; + + const updateDataFiles = (field: string, value: string) => { + onUpdateConfig({ + ...config, + data_files: { + ...config.data_files, + [field]: value + } + }); + }; + + const updateAirTrafficSimulator = (field: string, value: string | number | string[]) => { + onUpdateConfig({ + ...config, + air_traffic_simulator_settings: { + ...config.air_traffic_simulator_settings, + [field]: value + } + }); + }; + + const updateBlueSkyAirTrafficSimulator = (field: string, value: string | number | string[]) => { + onUpdateConfig({ + ...config, + blue_sky_air_traffic_simulator_settings: { + ...(config.blue_sky_air_traffic_simulator_settings || {}), + [field]: value + } + }); + }; + + const updateSensorIds = (value: string) => { + const ids = value.split(',').map(id => id.trim()).filter(id => id.length > 0); + updateAirTrafficSimulator('sensor_ids', ids); + }; + + const updateBlueSkySensorIds = (value: string) => { + const ids = value.split(',').map(id => id.trim()).filter(id => id.length > 0); + updateBlueSkyAirTrafficSimulator('sensor_ids', ids); + }; + + return ( +
+
+ + CONFIGURATION +
+ + {/* Flight Blender Section */} +
+ + + {expandedSections.has('flight_blender') && ( +
+
+ + updateFlightBlender('url', e.target.value)} + placeholder="http://localhost:8000" + /> +
+ +
+ + +
+ + {config.flight_blender.auth.type === 'passport' && ( + <> +
+ + updateFlightBlenderAuth('client_id', e.target.value)} + placeholder="your-client-id" + /> +
+ +
+ + updateFlightBlenderAuth('client_secret', e.target.value)} + placeholder="your-client-secret" + /> +
+ +
+ + updateFlightBlenderAuth('token_endpoint', e.target.value)} + placeholder="/oauth/token/" + /> +
+ +
+ + updateFlightBlenderAuth('passport_base_url', e.target.value)} + placeholder="https://passport.testflight.openutm.net" + /> +
+ + )} + +
+ + updateFlightBlenderAuth('audience', e.target.value)} + placeholder="testflight.flightblender.com" + /> +
+ +
+ + updateFlightBlenderAuth('scopes', e.target.value.split(',').map(s => s.trim()))} + placeholder="flightblender.write, flightblender.read" + /> +
+
+ )} +
+ + {/* Data Files Section */} +
+ + + {expandedSections.has('data_files') && ( +
+
+ + updateDataFiles('trajectory', e.target.value)} + placeholder="config/bern/trajectory_f1.json" + /> +
+ +
+ + updateDataFiles('flight_declaration', e.target.value)} + placeholder="config/bern/flight_declaration.json" + /> +
+ +
+ + updateDataFiles('flight_declaration_via_operational_intent', e.target.value)} + placeholder="config/bern/flight_declaration_via_operational_intent.json" + /> +
+ +
+ + updateDataFiles('geo_fence', e.target.value)} + placeholder="config/geo_fences.json" + /> +
+
+ )} +
+ + {/* Air Traffic Simulator Section */} +
+ + + {expandedSections.has('air_traffic') && ( +
+
+ + updateAirTrafficSimulator('number_of_aircraft', parseInt(e.target.value))} + min="1" + max="100" + /> +
+ +
+ + updateAirTrafficSimulator('simulation_duration', parseInt(e.target.value))} + min="1" + max="3600" + /> +
+ +
+ + +
+ +
+ + updateSensorIds(e.target.value)} + placeholder="a0b7d47e5eac45dc8cbaf47e6fe0e558" + /> +
+
+ )} +
+ + {/* BlueSky Air Traffic Simulator Section */} +
+ + + {expandedSections.has('blue_sky_air_traffic') && ( +
+
+ + updateBlueSkyAirTrafficSimulator('number_of_aircraft', parseInt(e.target.value))} + min="1" + max="100" + /> +
+ +
+ + updateBlueSkyAirTrafficSimulator('simulation_duration_seconds', parseInt(e.target.value))} + min="1" + max="3600" + /> +
+ +
+ + +
+ +
+ + updateBlueSkySensorIds(e.target.value)} + placeholder="562e6297036a4adebb4848afcd1ede90" + /> +
+
+ )} +
+
+ ); +}; diff --git a/web-editor/src/components/ScenarioEditor/CustomNode.tsx b/web-editor/src/components/ScenarioEditor/CustomNode.tsx new file mode 100644 index 0000000..f216ab6 --- /dev/null +++ b/web-editor/src/components/ScenarioEditor/CustomNode.tsx @@ -0,0 +1,139 @@ + +import { Handle, Position, type NodeProps, type Node } from '@xyflow/react'; +import { Box, CheckCircle, XCircle, AlertTriangle, Loader2, MinusCircle, RotateCw, GitBranch, Timer } from 'lucide-react'; +import styles from '../../styles/Node.module.css'; +import type { NodeData } from '../../types/scenario'; + +export const CustomNode = ({ data, selected }: NodeProps>) => { + const isGroupContainer = data.isGroupContainer; + + let statusClass = ''; + if (data.status === 'success') { + statusClass = styles.statusSuccess; + } else if (data.status === 'failure' || data.status === 'error') { + statusClass = styles.statusError; + } else if (data.status === 'running') { + statusClass = styles.statusRunning; + } else if (data.status === 'skipped') { + statusClass = styles.statusSkipped; + } + + const selectedClass = selected ? styles.selected : ''; + + // Render group containers with label and badges overlay + if (isGroupContainer) { + return ( +
+
+ {data.label} +
+ {data.runInBackground && ( +
+ + bg +
+ )} + {data.ifCondition && data.ifCondition.trim() !== '' && ( +
+ + if +
+ )} + {data.loop && ( +
+ + loop +
+ )} +
+
+
+ ); + } + + return ( +
+ +
+ + {data.label} +
+ {data.runInBackground && ( +
+ + bg +
+ )} + {data.ifCondition && data.ifCondition.trim() !== '' && ( +
+ + if +
+ )} + {data.loop && ( +
+ + loop +
+ )} +
+ {data.status && ( +
+ {data.status === 'success' && ( +
{ + e.stopPropagation(); + data.onShowResult?.(data.result); + }} + > + +
+ )} + {data.status === 'failure' && ( +
{ + e.stopPropagation(); + data.onShowResult?.(data.result); + }} + > + +
+ )} + {data.status === 'error' && ( +
{ + e.stopPropagation(); + data.onShowResult?.(data.result); + }} + > + +
+ )} + {data.status === 'running' && ( + + )} + {data.status === 'skipped' && ( +
{ + e.stopPropagation(); + data.onShowResult?.(data.result); + }} + > + +
+ )} +
+ )} +
+ +
+ ); +}; diff --git a/web-editor/src/components/ScenarioEditor/DocumentationModal.tsx b/web-editor/src/components/ScenarioEditor/DocumentationModal.tsx new file mode 100644 index 0000000..5b4ab8d --- /dev/null +++ b/web-editor/src/components/ScenarioEditor/DocumentationModal.tsx @@ -0,0 +1,75 @@ +import { useEffect, useState } from 'react'; +import ReactMarkdown from 'react-markdown'; +import remarkGfm from 'remark-gfm'; +import { X } from 'lucide-react'; +import styles from '../../styles/DocumentationModal.module.css'; + +interface DocumentationModalProps { + scenarioName: string | null; + isOpen: boolean; + onClose: () => void; +} + +export const DocumentationModal = ({ scenarioName, isOpen, onClose }: DocumentationModalProps) => { + const [content, setContent] = useState(''); + const [loading, setLoading] = useState(false); + const [error, setError] = useState(null); + + useEffect(() => { + if (!isOpen || !scenarioName) return; + + // Use a timeout to avoid preventing cascading renders warning from synchronous setState + const timer = setTimeout(() => { + setLoading(true); + setError(null); + + fetch(`/api/scenarios/${scenarioName}/docs`) + .then(async (res) => { + if (!res.ok) { + if (res.status === 404) { + throw new Error('Documentation not found for this scenario.'); + } + throw new Error('Failed to load documentation.'); + } + return res.text(); + }) + .then(text => setContent(text)) + .catch(err => { + console.error(err); + setError(err.message); + setContent(''); + }) + .finally(() => setLoading(false)); + }, 0); + + return () => clearTimeout(timer); + }, [isOpen, scenarioName]); + + if (!isOpen) return null; + + return ( +
+
e.stopPropagation()}> + + + {loading &&
Loading documentation...
} + + {error && ( +
+ {error} +
+ )} + + {!loading && !error && ( +
+ + {content} + +
+ )} +
+
+ ); +}; diff --git a/web-editor/src/components/ScenarioEditor/GroupsManager.tsx b/web-editor/src/components/ScenarioEditor/GroupsManager.tsx new file mode 100644 index 0000000..067652d --- /dev/null +++ b/web-editor/src/components/ScenarioEditor/GroupsManager.tsx @@ -0,0 +1,286 @@ +import React, { useState } from 'react'; +import { Plus, Trash2, ChevronDown, ChevronUp } from 'lucide-react'; +import styles from '../../styles/SidebarPanel.module.css'; +import type { GroupDefinition, GroupStepDefinition } from '../../types/scenario'; + +interface GroupsManagerProps { + groups: Record; + onGroupsChange: (groups: Record) => void; +} + +export const GroupsManager: React.FC = ({ groups, onGroupsChange }) => { + const [expandedGroups, setExpandedGroups] = useState>(new Set()); + const [newGroupName, setNewGroupName] = useState(''); + + const toggleGroupExpanded = (groupName: string) => { + const newExpanded = new Set(expandedGroups); + if (newExpanded.has(groupName)) { + newExpanded.delete(groupName); + } else { + newExpanded.add(groupName); + } + setExpandedGroups(newExpanded); + }; + + const addGroup = () => { + if (!newGroupName.trim()) return; + if (newGroupName in groups) { + alert('Group already exists'); + return; + } + + const updated = { + ...groups, + [newGroupName]: { + description: '', + steps: [] + } + }; + onGroupsChange(updated); + setNewGroupName(''); + }; + + const deleteGroup = (groupName: string) => { + if (confirm(`Delete group "${groupName}"? This cannot be undone.`)) { + const updated = { ...groups }; + delete updated[groupName]; + onGroupsChange(updated); + } + }; + + const updateGroupDescription = (groupName: string, description: string) => { + const updated = { + ...groups, + [groupName]: { + ...groups[groupName], + description + } + }; + onGroupsChange(updated); + }; + + const addStepToGroup = (groupName: string) => { + const newStep: GroupStepDefinition = { + id: `step_${Date.now()}`, + step: 'Select Operation', + arguments: {} + }; + + const updated = { + ...groups, + [groupName]: { + ...groups[groupName], + steps: [...(groups[groupName].steps || []), newStep] + } + }; + onGroupsChange(updated); + }; + + const updateGroupStep = (groupName: string, stepIndex: number, step: GroupStepDefinition) => { + const updated = { + ...groups, + [groupName]: { + ...groups[groupName], + steps: groups[groupName].steps.map((s, i) => i === stepIndex ? step : s) + } + }; + onGroupsChange(updated); + }; + + const deleteGroupStep = (groupName: string, stepIndex: number) => { + const updated = { + ...groups, + [groupName]: { + ...groups[groupName], + steps: groups[groupName].steps.filter((_, i) => i !== stepIndex) + } + }; + onGroupsChange(updated); + }; + + return ( +
+
+

Step Groups

+
+ setNewGroupName(e.target.value)} + onKeyDown={(e) => { + if (e.key === 'Enter') { + addGroup(); + } + }} + style={{ flex: 1 }} + /> + +
+
+ Groups are reusable collections of steps that can be looped and referenced as a single unit. +
+
+ +
+ {Object.entries(groups).length === 0 ? ( +
+ No groups defined yet. Create one to get started! +
+ ) : ( + Object.entries(groups).map(([groupName, group]) => ( +
+
toggleGroupExpanded(groupName)} + > +
+ {expandedGroups.has(groupName) ? : } + + {groupName} + + + ({group.steps.length} steps) + +
+
{ + e.stopPropagation(); + deleteGroup(groupName); + }} + style={{ + cursor: 'pointer', + padding: '4px', + borderRadius: '4px', + transition: 'background-color 0.2s' + }} + onMouseEnter={(e) => (e.currentTarget.style.backgroundColor = 'var(--accent-danger)')} + onMouseLeave={(e) => (e.currentTarget.style.backgroundColor = 'transparent')} + title="Delete group" + > + +
+
+ + {expandedGroups.has(groupName) && ( +
+
+ +