cli-claw-kit 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +245 -0
- package/config/default-groups.json +1 -0
- package/config/global-agents-md.template.md +37 -0
- package/config/mount-allowlist.json +11 -0
- package/container/Dockerfile +160 -0
- package/container/agent-runner/dist/.tsbuildinfo +1 -0
- package/container/agent-runner/dist/agent-definitions.js +22 -0
- package/container/agent-runner/dist/channel-prefixes.js +16 -0
- package/container/agent-runner/dist/codex-config.js +29 -0
- package/container/agent-runner/dist/image-detector.js +96 -0
- package/container/agent-runner/dist/index.js +2587 -0
- package/container/agent-runner/dist/mcp-tools.js +1076 -0
- package/container/agent-runner/dist/stream-event.types.js +5 -0
- package/container/agent-runner/dist/stream-processor.js +867 -0
- package/container/agent-runner/dist/types.js +6 -0
- package/container/agent-runner/dist/utils.js +115 -0
- package/container/agent-runner/package.json +36 -0
- package/container/agent-runner/prompts/security-rules.md +31 -0
- package/container/agent-runner/src/agent-definitions.ts +27 -0
- package/container/agent-runner/src/channel-prefixes.ts +16 -0
- package/container/agent-runner/src/codex-config.ts +40 -0
- package/container/agent-runner/src/image-detector.ts +116 -0
- package/container/agent-runner/src/index.ts +3107 -0
- package/container/agent-runner/src/mcp-tools.ts +1295 -0
- package/container/agent-runner/src/stream-event.types.ts +10 -0
- package/container/agent-runner/src/stream-processor.ts +932 -0
- package/container/agent-runner/src/types.ts +75 -0
- package/container/agent-runner/src/utils.ts +114 -0
- package/container/agent-runner/tsconfig.json +17 -0
- package/container/build.sh +28 -0
- package/container/entrypoint.sh +64 -0
- package/container/skills/agent-browser/SKILL.md +159 -0
- package/container/skills/install-skill/SKILL.md +64 -0
- package/container/skills/post-test-cleanup/SKILL.md +121 -0
- package/dist/.tsbuildinfo +1 -0
- package/dist/agent-output-parser.js +459 -0
- package/dist/app-root.js +52 -0
- package/dist/assistant-meta-footer.js +1 -0
- package/dist/auth.js +91 -0
- package/dist/billing.js +694 -0
- package/dist/channel-prefixes.js +16 -0
- package/dist/cli.js +86 -0
- package/dist/commands.js +79 -0
- package/dist/config.js +120 -0
- package/dist/container-runner.js +981 -0
- package/dist/daily-summary.js +210 -0
- package/dist/db.js +3683 -0
- package/dist/dingtalk.js +1347 -0
- package/dist/feishu-markdown-style.js +97 -0
- package/dist/feishu-streaming-card.js +1875 -0
- package/dist/feishu.js +1628 -0
- package/dist/file-manager.js +270 -0
- package/dist/group-queue.js +1070 -0
- package/dist/group-runtime.js +35 -0
- package/dist/host-workspace-cwd.js +85 -0
- package/dist/im-channel.js +384 -0
- package/dist/im-command-utils.js +142 -0
- package/dist/im-downloader.js +45 -0
- package/dist/im-manager.js +527 -0
- package/dist/im-utils.js +53 -0
- package/dist/image-detector.js +96 -0
- package/dist/index.js +5828 -0
- package/dist/logger.js +22 -0
- package/dist/mcp-utils.js +66 -0
- package/dist/message-attachments.js +69 -0
- package/dist/message-notifier.js +36 -0
- package/dist/middleware/auth.js +85 -0
- package/dist/mount-security.js +315 -0
- package/dist/permissions.js +67 -0
- package/dist/project-memory.js +6 -0
- package/dist/provider-pool.js +189 -0
- package/dist/qq.js +826 -0
- package/dist/reset-admin.js +42 -0
- package/dist/routes/admin.js +543 -0
- package/dist/routes/agent-definitions.js +241 -0
- package/dist/routes/agents.js +533 -0
- package/dist/routes/auth.js +675 -0
- package/dist/routes/billing.js +490 -0
- package/dist/routes/browse.js +210 -0
- package/dist/routes/bug-report.js +387 -0
- package/dist/routes/config.js +1868 -0
- package/dist/routes/files.js +671 -0
- package/dist/routes/groups.js +1367 -0
- package/dist/routes/mcp-servers.js +320 -0
- package/dist/routes/memory.js +523 -0
- package/dist/routes/monitor.js +307 -0
- package/dist/routes/skills.js +777 -0
- package/dist/routes/tasks.js +509 -0
- package/dist/routes/usage.js +64 -0
- package/dist/routes/workspace-config.js +458 -0
- package/dist/runtime-build.js +112 -0
- package/dist/runtime-command-handler.js +189 -0
- package/dist/runtime-command-registry.js +1 -0
- package/dist/runtime-config.js +1777 -0
- package/dist/runtime-identity.js +52 -0
- package/dist/schemas.js +590 -0
- package/dist/script-runner.js +64 -0
- package/dist/sdk-query.js +82 -0
- package/dist/skill-utils.js +145 -0
- package/dist/sqlite-compat.js +19 -0
- package/dist/stream-event.types.js +5 -0
- package/dist/streaming-runtime-meta.js +29 -0
- package/dist/task-scheduler.js +695 -0
- package/dist/task-utils.js +13 -0
- package/dist/telegram-pairing.js +59 -0
- package/dist/telegram.js +897 -0
- package/dist/terminal-manager.js +307 -0
- package/dist/tool-step-display.js +1 -0
- package/dist/types.js +1 -0
- package/dist/utils.js +85 -0
- package/dist/web-context.js +161 -0
- package/dist/web.js +1377 -0
- package/dist/wechat-crypto.js +182 -0
- package/dist/wechat.js +589 -0
- package/dist/workspace-runtime-reset.js +35 -0
- package/package.json +107 -0
- package/shared/assistant-meta-footer.ts +127 -0
- package/shared/channel-prefixes.ts +16 -0
- package/shared/dist/assistant-meta-footer.d.ts +29 -0
- package/shared/dist/assistant-meta-footer.js +85 -0
- package/shared/dist/channel-prefixes.d.ts +4 -0
- package/shared/dist/channel-prefixes.js +16 -0
- package/shared/dist/image-detector.d.ts +20 -0
- package/shared/dist/image-detector.js +96 -0
- package/shared/dist/runtime-command-registry.d.ts +38 -0
- package/shared/dist/runtime-command-registry.js +185 -0
- package/shared/dist/stream-event.d.ts +65 -0
- package/shared/dist/stream-event.js +8 -0
- package/shared/dist/tool-step-display.d.ts +4 -0
- package/shared/dist/tool-step-display.js +11 -0
- package/shared/image-detector.ts +116 -0
- package/shared/runtime-command-registry.ts +252 -0
- package/shared/stream-event.ts +67 -0
- package/shared/tool-step-display.ts +21 -0
- package/shared/tsconfig.json +24 -0
- package/web/dist/assets/BillingPage-B1wBR_o-.js +52 -0
- package/web/dist/assets/ChatPage-6GBZ9nXN.css +32 -0
- package/web/dist/assets/ChatPage-BOJcXtaj.js +161 -0
- package/web/dist/assets/KaTeX_AMS-Regular-BQhdFMY1.woff2 +0 -0
- package/web/dist/assets/KaTeX_AMS-Regular-DMm9YOAa.woff +0 -0
- package/web/dist/assets/KaTeX_AMS-Regular-DRggAlZN.ttf +0 -0
- package/web/dist/assets/KaTeX_Caligraphic-Bold-ATXxdsX0.ttf +0 -0
- package/web/dist/assets/KaTeX_Caligraphic-Bold-BEiXGLvX.woff +0 -0
- package/web/dist/assets/KaTeX_Caligraphic-Bold-Dq_IR9rO.woff2 +0 -0
- package/web/dist/assets/KaTeX_Caligraphic-Regular-CTRA-rTL.woff +0 -0
- package/web/dist/assets/KaTeX_Caligraphic-Regular-Di6jR-x-.woff2 +0 -0
- package/web/dist/assets/KaTeX_Caligraphic-Regular-wX97UBjC.ttf +0 -0
- package/web/dist/assets/KaTeX_Fraktur-Bold-BdnERNNW.ttf +0 -0
- package/web/dist/assets/KaTeX_Fraktur-Bold-BsDP51OF.woff +0 -0
- package/web/dist/assets/KaTeX_Fraktur-Bold-CL6g_b3V.woff2 +0 -0
- package/web/dist/assets/KaTeX_Fraktur-Regular-CB_wures.ttf +0 -0
- package/web/dist/assets/KaTeX_Fraktur-Regular-CTYiF6lA.woff2 +0 -0
- package/web/dist/assets/KaTeX_Fraktur-Regular-Dxdc4cR9.woff +0 -0
- package/web/dist/assets/KaTeX_Main-Bold-Cx986IdX.woff2 +0 -0
- package/web/dist/assets/KaTeX_Main-Bold-Jm3AIy58.woff +0 -0
- package/web/dist/assets/KaTeX_Main-Bold-waoOVXN0.ttf +0 -0
- package/web/dist/assets/KaTeX_Main-BoldItalic-DxDJ3AOS.woff2 +0 -0
- package/web/dist/assets/KaTeX_Main-BoldItalic-DzxPMmG6.ttf +0 -0
- package/web/dist/assets/KaTeX_Main-BoldItalic-SpSLRI95.woff +0 -0
- package/web/dist/assets/KaTeX_Main-Italic-3WenGoN9.ttf +0 -0
- package/web/dist/assets/KaTeX_Main-Italic-BMLOBm91.woff +0 -0
- package/web/dist/assets/KaTeX_Main-Italic-NWA7e6Wa.woff2 +0 -0
- package/web/dist/assets/KaTeX_Main-Regular-B22Nviop.woff2 +0 -0
- package/web/dist/assets/KaTeX_Main-Regular-Dr94JaBh.woff +0 -0
- package/web/dist/assets/KaTeX_Main-Regular-ypZvNtVU.ttf +0 -0
- package/web/dist/assets/KaTeX_Math-BoldItalic-B3XSjfu4.ttf +0 -0
- package/web/dist/assets/KaTeX_Math-BoldItalic-CZnvNsCZ.woff2 +0 -0
- package/web/dist/assets/KaTeX_Math-BoldItalic-iY-2wyZ7.woff +0 -0
- package/web/dist/assets/KaTeX_Math-Italic-DA0__PXp.woff +0 -0
- package/web/dist/assets/KaTeX_Math-Italic-flOr_0UB.ttf +0 -0
- package/web/dist/assets/KaTeX_Math-Italic-t53AETM-.woff2 +0 -0
- package/web/dist/assets/KaTeX_SansSerif-Bold-CFMepnvq.ttf +0 -0
- package/web/dist/assets/KaTeX_SansSerif-Bold-D1sUS0GD.woff2 +0 -0
- package/web/dist/assets/KaTeX_SansSerif-Bold-DbIhKOiC.woff +0 -0
- package/web/dist/assets/KaTeX_SansSerif-Italic-C3H0VqGB.woff2 +0 -0
- package/web/dist/assets/KaTeX_SansSerif-Italic-DN2j7dab.woff +0 -0
- package/web/dist/assets/KaTeX_SansSerif-Italic-YYjJ1zSn.ttf +0 -0
- package/web/dist/assets/KaTeX_SansSerif-Regular-BNo7hRIc.ttf +0 -0
- package/web/dist/assets/KaTeX_SansSerif-Regular-CS6fqUqJ.woff +0 -0
- package/web/dist/assets/KaTeX_SansSerif-Regular-DDBCnlJ7.woff2 +0 -0
- package/web/dist/assets/KaTeX_Script-Regular-C5JkGWo-.ttf +0 -0
- package/web/dist/assets/KaTeX_Script-Regular-D3wIWfF6.woff2 +0 -0
- package/web/dist/assets/KaTeX_Script-Regular-D5yQViql.woff +0 -0
- package/web/dist/assets/KaTeX_Size1-Regular-C195tn64.woff +0 -0
- package/web/dist/assets/KaTeX_Size1-Regular-Dbsnue_I.ttf +0 -0
- package/web/dist/assets/KaTeX_Size1-Regular-mCD8mA8B.woff2 +0 -0
- package/web/dist/assets/KaTeX_Size2-Regular-B7gKUWhC.ttf +0 -0
- package/web/dist/assets/KaTeX_Size2-Regular-Dy4dx90m.woff2 +0 -0
- package/web/dist/assets/KaTeX_Size2-Regular-oD1tc_U0.woff +0 -0
- package/web/dist/assets/KaTeX_Size3-Regular-CTq5MqoE.woff +0 -0
- package/web/dist/assets/KaTeX_Size3-Regular-DgpXs0kz.ttf +0 -0
- package/web/dist/assets/KaTeX_Size4-Regular-BF-4gkZK.woff +0 -0
- package/web/dist/assets/KaTeX_Size4-Regular-DWFBv043.ttf +0 -0
- package/web/dist/assets/KaTeX_Size4-Regular-Dl5lxZxV.woff2 +0 -0
- package/web/dist/assets/KaTeX_Typewriter-Regular-C0xS9mPB.woff +0 -0
- package/web/dist/assets/KaTeX_Typewriter-Regular-CO6r4hn1.woff2 +0 -0
- package/web/dist/assets/KaTeX_Typewriter-Regular-D3Ib7_Hf.ttf +0 -0
- package/web/dist/assets/SettingsPage-DoY7FoZ_.js +153 -0
- package/web/dist/assets/ShareImageDialog-C1ga8b7l.js +22 -0
- package/web/dist/assets/TasksPage-CRivnNsx.js +14 -0
- package/web/dist/assets/_basePickBy-Bf-bSoS9.js +1 -0
- package/web/dist/assets/_baseUniq-zAOaCuKw.js +1 -0
- package/web/dist/assets/arc-Dm9mVQ9U.js +1 -0
- package/web/dist/assets/architectureDiagram-2XIMDMQ5-BLmzX1wr.js +36 -0
- package/web/dist/assets/band-CquvqAHh.js +1 -0
- package/web/dist/assets/blockDiagram-WCTKOSBZ-B9pcqm3j.js +132 -0
- package/web/dist/assets/c4Diagram-IC4MRINW-Cytx1q3b.js +10 -0
- package/web/dist/assets/channel-BOVj73LR.js +1 -0
- package/web/dist/assets/channel-meta-CQD0Pei-.js +41 -0
- package/web/dist/assets/chunk-4BX2VUAB-0ToDr6RE.js +1 -0
- package/web/dist/assets/chunk-55IACEB6-DQDjnXfS.js +1 -0
- package/web/dist/assets/chunk-FMBD7UC4-Di8ABm6c.js +15 -0
- package/web/dist/assets/chunk-JSJVCQXG-BZQN6rnX.js +1 -0
- package/web/dist/assets/chunk-KX2RTZJC-zBbcpaN_.js +1 -0
- package/web/dist/assets/chunk-NQ4KR5QH-BCrLoU88.js +220 -0
- package/web/dist/assets/chunk-QZHKN3VN-Bqk8juan.js +1 -0
- package/web/dist/assets/chunk-WL4C6EOR-D2YX-MHY.js +189 -0
- package/web/dist/assets/classDiagram-VBA2DB6C-DUUoMyaK.js +1 -0
- package/web/dist/assets/classDiagram-v2-RAHNMMFH-DUUoMyaK.js +1 -0
- package/web/dist/assets/clone-BmaCesfa.js +1 -0
- package/web/dist/assets/cose-bilkent-S5V4N54A-CTsv6qQA.js +1 -0
- package/web/dist/assets/cytoscape.esm-BQaXIfA_.js +331 -0
- package/web/dist/assets/dagre-KLK3FWXG-Ci4Jh9nu.js +4 -0
- package/web/dist/assets/defaultLocale-DX6XiGOO.js +1 -0
- package/web/dist/assets/diagram-E7M64L7V-BFRnfTI2.js +24 -0
- package/web/dist/assets/diagram-IFDJBPK2-B7Zhnp0b.js +43 -0
- package/web/dist/assets/diagram-P4PSJMXO-BVyP7nwq.js +24 -0
- package/web/dist/assets/erDiagram-INFDFZHY-NorKdTOF.js +70 -0
- package/web/dist/assets/error-CGD5mp5f.js +1 -0
- package/web/dist/assets/flowDiagram-PKNHOUZH-Ch97nABF.js +162 -0
- package/web/dist/assets/ganttDiagram-A5KZAMGK-BQ2pLWsy.js +292 -0
- package/web/dist/assets/gitGraphDiagram-K3NZZRJ6-bcvnBsD2.js +65 -0
- package/web/dist/assets/graph-CeAEckur.js +1 -0
- package/web/dist/assets/index-CPnL1_qC.js +768 -0
- package/web/dist/assets/index-DVevCbcO.css +10 -0
- package/web/dist/assets/infoDiagram-LFFYTUFH-CcsrFdj-.js +2 -0
- package/web/dist/assets/init-Dmth1JHB.js +1 -0
- package/web/dist/assets/ishikawaDiagram-PHBUUO56-1upyMfHN.js +70 -0
- package/web/dist/assets/journeyDiagram-4ABVD52K-CKUi-V0c.js +139 -0
- package/web/dist/assets/kanban-definition-K7BYSVSG-DOnQwXfL.js +89 -0
- package/web/dist/assets/layout-BmMMqTnJ.js +1 -0
- package/web/dist/assets/linear-DiaJloY5.js +1 -0
- package/web/dist/assets/mermaid.core-BWLV1B2v.js +254 -0
- package/web/dist/assets/mindmap-definition-YRQLILUH-BeAKHVWP.js +68 -0
- package/web/dist/assets/ordinal-DILIJJjt.js +1 -0
- package/web/dist/assets/pieDiagram-SKSYHLDU-DfiMSfWo.js +30 -0
- package/web/dist/assets/quadrantDiagram-337W2JSQ-wZxZOJxd.js +7 -0
- package/web/dist/assets/requirementDiagram-Z7DCOOCP-BK4HHm17.js +73 -0
- package/web/dist/assets/sankeyDiagram-WA2Y5GQK-BX6t2avX.js +10 -0
- package/web/dist/assets/sequenceDiagram-2WXFIKYE-BPQlkbAa.js +145 -0
- package/web/dist/assets/sheet-rI0FfB1g.js +6 -0
- package/web/dist/assets/sliders-horizontal-CuijWFNK.js +6 -0
- package/web/dist/assets/sparkles-BsMYXJoT.js +11 -0
- package/web/dist/assets/square-0CqMX1Q3.js +11 -0
- package/web/dist/assets/stateDiagram-RAJIS63D-DxkV0Vwd.js +1 -0
- package/web/dist/assets/stateDiagram-v2-FVOUBMTO-qLYoiOPe.js +1 -0
- package/web/dist/assets/step-D51IIHGA.js +1 -0
- package/web/dist/assets/tasks-D8JjBTwx.js +1 -0
- package/web/dist/assets/time-O8zIGux3.js +1 -0
- package/web/dist/assets/timeline-definition-YZTLITO2-kNp1DyFc.js +61 -0
- package/web/dist/assets/treemap-KZPCXAKY-CkrClVhk.js +162 -0
- package/web/dist/assets/utils-KGAn0XTg.js +11 -0
- package/web/dist/assets/vennDiagram-LZ73GAT5-CgdzEZz4.js +34 -0
- package/web/dist/assets/xychartDiagram-JWTSCODW-DfYGPfNB.js +7 -0
- package/web/dist/assets/zap-_hKJYy7J.js +6 -0
- package/web/dist/favicon.svg +332 -0
- package/web/dist/fonts/AlibabaPuHuiTi-3-55-Regular.woff2 +0 -0
- package/web/dist/fonts/AlibabaPuHuiTi-3-65-Medium.woff2 +0 -0
- package/web/dist/fonts/AlibabaPuHuiTi-3-75-SemiBold.woff2 +0 -0
- package/web/dist/fonts/DMSans-latin-ext.woff2 +0 -0
- package/web/dist/fonts/DMSans-latin.woff2 +0 -0
- package/web/dist/icons/README.md +20 -0
- package/web/dist/icons/apple-touch-icon-180.png +0 -0
- package/web/dist/icons/icon-128.png +0 -0
- package/web/dist/icons/icon-144.png +0 -0
- package/web/dist/icons/icon-152.png +0 -0
- package/web/dist/icons/icon-192.png +0 -0
- package/web/dist/icons/icon-192.svg +332 -0
- package/web/dist/icons/icon-384.png +0 -0
- package/web/dist/icons/icon-48.png +0 -0
- package/web/dist/icons/icon-512-maskable.png +0 -0
- package/web/dist/icons/icon-512.png +0 -0
- package/web/dist/icons/icon-512.svg +332 -0
- package/web/dist/icons/icon-72.png +0 -0
- package/web/dist/icons/icon-96.png +0 -0
- package/web/dist/icons/loading-logo.svg +332 -0
- package/web/dist/icons/logo-1024.png +0 -0
- package/web/dist/icons/logo-icon.svg +332 -0
- package/web/dist/icons/logo-text.svg +332 -0
- package/web/dist/index.html +30 -0
- package/web/dist/manifest.webmanifest +1 -0
- package/web/dist/registerSW.js +1 -0
- package/web/dist/sw.js +1 -0
- package/web/dist/workbox-08d6266a.js +1 -0
|
@@ -0,0 +1,254 @@
|
|
|
1
|
+
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/index-CPnL1_qC.js","assets/index-DVevCbcO.css","assets/dagre-KLK3FWXG-Ci4Jh9nu.js","assets/graph-CeAEckur.js","assets/_baseUniq-zAOaCuKw.js","assets/layout-BmMMqTnJ.js","assets/_basePickBy-Bf-bSoS9.js","assets/clone-BmaCesfa.js","assets/step-D51IIHGA.js","assets/cose-bilkent-S5V4N54A-CTsv6qQA.js","assets/cytoscape.esm-BQaXIfA_.js","assets/c4Diagram-IC4MRINW-Cytx1q3b.js","assets/chunk-JSJVCQXG-BZQN6rnX.js","assets/flowDiagram-PKNHOUZH-Ch97nABF.js","assets/chunk-FMBD7UC4-Di8ABm6c.js","assets/chunk-55IACEB6-DQDjnXfS.js","assets/chunk-KX2RTZJC-zBbcpaN_.js","assets/channel-BOVj73LR.js","assets/erDiagram-INFDFZHY-NorKdTOF.js","assets/gitGraphDiagram-K3NZZRJ6-bcvnBsD2.js","assets/chunk-4BX2VUAB-0ToDr6RE.js","assets/chunk-QZHKN3VN-Bqk8juan.js","assets/treemap-KZPCXAKY-CkrClVhk.js","assets/ganttDiagram-A5KZAMGK-BQ2pLWsy.js","assets/time-O8zIGux3.js","assets/linear-DiaJloY5.js","assets/init-Dmth1JHB.js","assets/defaultLocale-DX6XiGOO.js","assets/infoDiagram-LFFYTUFH-CcsrFdj-.js","assets/pieDiagram-SKSYHLDU-DfiMSfWo.js","assets/arc-Dm9mVQ9U.js","assets/ordinal-DILIJJjt.js","assets/quadrantDiagram-337W2JSQ-wZxZOJxd.js","assets/xychartDiagram-JWTSCODW-DfYGPfNB.js","assets/band-CquvqAHh.js","assets/requirementDiagram-Z7DCOOCP-BK4HHm17.js","assets/sequenceDiagram-2WXFIKYE-BPQlkbAa.js","assets/classDiagram-VBA2DB6C-DUUoMyaK.js","assets/chunk-WL4C6EOR-D2YX-MHY.js","assets/classDiagram-v2-RAHNMMFH-DUUoMyaK.js","assets/stateDiagram-RAJIS63D-DxkV0Vwd.js","assets/chunk-NQ4KR5QH-BCrLoU88.js","assets/stateDiagram-v2-FVOUBMTO-qLYoiOPe.js","assets/journeyDiagram-4ABVD52K-CKUi-V0c.js","assets/timeline-definition-YZTLITO2-kNp1DyFc.js","assets/mindmap-definition-YRQLILUH-BeAKHVWP.js","assets/kanban-definition-K7BYSVSG-DOnQwXfL.js","assets/sankeyDiagram-WA2Y5GQK-BX6t2avX.js","assets/diagram-P4PSJMXO-BVyP7nwq.js","assets/diagram-IFDJBPK2-B7Zhnp0b.js","assets/blockDiagram-WCTKOSBZ-B9pcqm3j.js","assets/architectureDiagram-2XIMDMQ5-BLmzX1wr.js","assets/ishikawaDiagram-PHBUUO56-1upyMfHN.js","assets/vennDiagram-LZ73GAT5-CgdzEZz4.js","assets/diagram-E7M64L7V-BFRnfTI2.js"])))=>i.map(i=>d[i]);
|
|
2
|
+
var fp=Object.defineProperty;var pp=(e,t,r)=>t in e?fp(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r;var ct=(e,t,r)=>pp(e,typeof t!="symbol"?t+"":t,r);import{G as gp,p as sr,ae as it}from"./index-CPnL1_qC.js";import{y as Le,z as Ws,A as Hs,B as mp,D as nl,E as Di,e as js,F as sl,G as ol,H as ll,I as cl,J as hl,K as ul,L as yp,M as Ci,N as dl,O as fl,P as xp,Q as bp,c as Xa,l as Cp}from"./step-D51IIHGA.js";var ki={exports:{}},kp=ki.exports,Ys;function wp(){return Ys||(Ys=1,(function(e,t){(function(r,i){e.exports=i()})(kp,(function(){var r=1e3,i=6e4,a=36e5,n="millisecond",o="second",s="minute",c="hour",l="day",h="week",u="month",f="quarter",d="year",g="date",m="Invalid Date",y=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,x=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,b={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(M){var L=["th","st","nd","rd"],T=M%100;return"["+M+(L[(T-20)%10]||L[T]||L[0])+"]"}},k=function(M,L,T){var $=String(M);return!$||$.length>=L?M:""+Array(L+1-$.length).join(T)+M},S={s:k,z:function(M){var L=-M.utcOffset(),T=Math.abs(L),$=Math.floor(T/60),B=T%60;return(L<=0?"+":"-")+k($,2,"0")+":"+k(B,2,"0")},m:function M(L,T){if(L.date()<T.date())return-M(T,L);var $=12*(T.year()-L.year())+(T.month()-L.month()),B=L.clone().add($,u),P=T-B<0,Y=L.clone().add($+(P?-1:1),u);return+(-($+(T-B)/(P?B-Y:Y-B))||0)},a:function(M){return M<0?Math.ceil(M)||0:Math.floor(M)},p:function(M){return{M:u,y:d,w:h,d:l,D:g,h:c,m:s,s:o,ms:n,Q:f}[M]||String(M||"").toLowerCase().replace(/s$/,"")},u:function(M){return M===void 0}},v="en",C={};C[v]=b;var _="$isDayjsObject",A=function(M){return M instanceof z||!(!M||!M[_])},I=function M(L,T,$){var B;if(!L)return v;if(typeof L=="string"){var P=L.toLowerCase();C[P]&&(B=P),T&&(C[P]=T,B=P);var Y=L.split("-");if(!B&&Y.length>1)return M(Y[0])}else{var J=L.name;C[J]=L,B=J}return!$&&B&&(v=B),B||!$&&v},O=function(M,L){if(A(M))return M.clone();var T=typeof L=="object"?L:{};return T.date=M,T.args=arguments,new z(T)},F=S;F.l=I,F.i=A,F.w=function(M,L){return O(M,{locale:L.$L,utc:L.$u,x:L.$x,$offset:L.$offset})};var z=(function(){function M(T){this.$L=I(T.locale,null,!0),this.parse(T),this.$x=this.$x||T.x||{},this[_]=!0}var L=M.prototype;return L.parse=function(T){this.$d=(function($){var B=$.date,P=$.utc;if(B===null)return new Date(NaN);if(F.u(B))return new Date;if(B instanceof Date)return new Date(B);if(typeof B=="string"&&!/Z$/i.test(B)){var Y=B.match(y);if(Y){var J=Y[2]-1||0,ot=(Y[7]||"0").substring(0,3);return P?new Date(Date.UTC(Y[1],J,Y[3]||1,Y[4]||0,Y[5]||0,Y[6]||0,ot)):new Date(Y[1],J,Y[3]||1,Y[4]||0,Y[5]||0,Y[6]||0,ot)}}return new Date(B)})(T),this.init()},L.init=function(){var T=this.$d;this.$y=T.getFullYear(),this.$M=T.getMonth(),this.$D=T.getDate(),this.$W=T.getDay(),this.$H=T.getHours(),this.$m=T.getMinutes(),this.$s=T.getSeconds(),this.$ms=T.getMilliseconds()},L.$utils=function(){return F},L.isValid=function(){return this.$d.toString()!==m},L.isSame=function(T,$){var B=O(T);return this.startOf($)<=B&&B<=this.endOf($)},L.isAfter=function(T,$){return O(T)<this.startOf($)},L.isBefore=function(T,$){return this.endOf($)<O(T)},L.$g=function(T,$,B){return F.u(T)?this[$]:this.set(B,T)},L.unix=function(){return Math.floor(this.valueOf()/1e3)},L.valueOf=function(){return this.$d.getTime()},L.startOf=function(T,$){var B=this,P=!!F.u($)||$,Y=F.p(T),J=function(mt,pt){var vt=F.w(B.$u?Date.UTC(B.$y,pt,mt):new Date(B.$y,pt,mt),B);return P?vt:vt.endOf(l)},ot=function(mt,pt){return F.w(B.toDate()[mt].apply(B.toDate("s"),(P?[0,0,0,0]:[23,59,59,999]).slice(pt)),B)},ht=this.$W,dt=this.$M,gt=this.$D,et="set"+(this.$u?"UTC":"");switch(Y){case d:return P?J(1,0):J(31,11);case u:return P?J(1,dt):J(0,dt+1);case h:var nt=this.$locale().weekStart||0,xt=(ht<nt?ht+7:ht)-nt;return J(P?gt-xt:gt+(6-xt),dt);case l:case g:return ot(et+"Hours",0);case c:return ot(et+"Minutes",1);case s:return ot(et+"Seconds",2);case o:return ot(et+"Milliseconds",3);default:return this.clone()}},L.endOf=function(T){return this.startOf(T,!1)},L.$set=function(T,$){var B,P=F.p(T),Y="set"+(this.$u?"UTC":""),J=(B={},B[l]=Y+"Date",B[g]=Y+"Date",B[u]=Y+"Month",B[d]=Y+"FullYear",B[c]=Y+"Hours",B[s]=Y+"Minutes",B[o]=Y+"Seconds",B[n]=Y+"Milliseconds",B)[P],ot=P===l?this.$D+($-this.$W):$;if(P===u||P===d){var ht=this.clone().set(g,1);ht.$d[J](ot),ht.init(),this.$d=ht.set(g,Math.min(this.$D,ht.daysInMonth())).$d}else J&&this.$d[J](ot);return this.init(),this},L.set=function(T,$){return this.clone().$set(T,$)},L.get=function(T){return this[F.p(T)]()},L.add=function(T,$){var B,P=this;T=Number(T);var Y=F.p($),J=function(dt){var gt=O(P);return F.w(gt.date(gt.date()+Math.round(dt*T)),P)};if(Y===u)return this.set(u,this.$M+T);if(Y===d)return this.set(d,this.$y+T);if(Y===l)return J(1);if(Y===h)return J(7);var ot=(B={},B[s]=i,B[c]=a,B[o]=r,B)[Y]||1,ht=this.$d.getTime()+T*ot;return F.w(ht,this)},L.subtract=function(T,$){return this.add(-1*T,$)},L.format=function(T){var $=this,B=this.$locale();if(!this.isValid())return B.invalidDate||m;var P=T||"YYYY-MM-DDTHH:mm:ssZ",Y=F.z(this),J=this.$H,ot=this.$m,ht=this.$M,dt=B.weekdays,gt=B.months,et=B.meridiem,nt=function(pt,vt,me,Cr){return pt&&(pt[vt]||pt($,P))||me[vt].slice(0,Cr)},xt=function(pt){return F.s(J%12||12,pt,"0")},mt=et||function(pt,vt,me){var Cr=pt<12?"AM":"PM";return me?Cr.toLowerCase():Cr};return P.replace(x,(function(pt,vt){return vt||(function(me){switch(me){case"YY":return String($.$y).slice(-2);case"YYYY":return F.s($.$y,4,"0");case"M":return ht+1;case"MM":return F.s(ht+1,2,"0");case"MMM":return nt(B.monthsShort,ht,gt,3);case"MMMM":return nt(gt,ht);case"D":return $.$D;case"DD":return F.s($.$D,2,"0");case"d":return String($.$W);case"dd":return nt(B.weekdaysMin,$.$W,dt,2);case"ddd":return nt(B.weekdaysShort,$.$W,dt,3);case"dddd":return dt[$.$W];case"H":return String(J);case"HH":return F.s(J,2,"0");case"h":return xt(1);case"hh":return xt(2);case"a":return mt(J,ot,!0);case"A":return mt(J,ot,!1);case"m":return String(ot);case"mm":return F.s(ot,2,"0");case"s":return String($.$s);case"ss":return F.s($.$s,2,"0");case"SSS":return F.s($.$ms,3,"0");case"Z":return Y}return null})(pt)||Y.replace(":","")}))},L.utcOffset=function(){return 15*-Math.round(this.$d.getTimezoneOffset()/15)},L.diff=function(T,$,B){var P,Y=this,J=F.p($),ot=O(T),ht=(ot.utcOffset()-this.utcOffset())*i,dt=this-ot,gt=function(){return F.m(Y,ot)};switch(J){case d:P=gt()/12;break;case u:P=gt();break;case f:P=gt()/3;break;case h:P=(dt-ht)/6048e5;break;case l:P=(dt-ht)/864e5;break;case c:P=dt/a;break;case s:P=dt/i;break;case o:P=dt/r;break;default:P=dt}return B?P:F.a(P)},L.daysInMonth=function(){return this.endOf(u).$D},L.$locale=function(){return C[this.$L]},L.locale=function(T,$){if(!T)return this.$L;var B=this.clone(),P=I(T,$,!0);return P&&(B.$L=P),B},L.clone=function(){return F.w(this.$d,this)},L.toDate=function(){return new Date(this.valueOf())},L.toJSON=function(){return this.isValid()?this.toISOString():null},L.toISOString=function(){return this.$d.toISOString()},L.toString=function(){return this.$d.toUTCString()},M})(),D=z.prototype;return O.prototype=D,[["$ms",n],["$s",o],["$m",s],["$H",c],["$W",l],["$M",u],["$y",d],["$D",g]].forEach((function(M){D[M[1]]=function(L){return this.$g(L,M[0],M[1])}})),O.extend=function(M,L){return M.$i||(M(L,z,O),M.$i=!0),O},O.locale=I,O.isDayjs=A,O.unix=function(M){return O(1e3*M)},O.en=C[v],O.Ls=C,O.p={},O}))})(ki)),ki.exports}var vp=wp();const _p=gp(vp);var pl=Object.defineProperty,p=(e,t)=>pl(e,"name",{value:t,configurable:!0}),Sp=(e,t)=>{for(var r in t)pl(e,r,{get:t[r],enumerable:!0})},ne={trace:0,debug:1,info:2,warn:3,error:4,fatal:5},E={trace:p((...e)=>{},"trace"),debug:p((...e)=>{},"debug"),info:p((...e)=>{},"info"),warn:p((...e)=>{},"warn"),error:p((...e)=>{},"error"),fatal:p((...e)=>{},"fatal")},Hn=p(function(e="fatal"){let t=ne.fatal;typeof e=="string"?e.toLowerCase()in ne&&(t=ne[e]):typeof e=="number"&&(t=e),E.trace=()=>{},E.debug=()=>{},E.info=()=>{},E.warn=()=>{},E.error=()=>{},E.fatal=()=>{},t<=ne.fatal&&(E.fatal=console.error?console.error.bind(console,Wt("FATAL"),"color: orange"):console.log.bind(console,"\x1B[35m",Wt("FATAL"))),t<=ne.error&&(E.error=console.error?console.error.bind(console,Wt("ERROR"),"color: orange"):console.log.bind(console,"\x1B[31m",Wt("ERROR"))),t<=ne.warn&&(E.warn=console.warn?console.warn.bind(console,Wt("WARN"),"color: orange"):console.log.bind(console,"\x1B[33m",Wt("WARN"))),t<=ne.info&&(E.info=console.info?console.info.bind(console,Wt("INFO"),"color: lightblue"):console.log.bind(console,"\x1B[34m",Wt("INFO"))),t<=ne.debug&&(E.debug=console.debug?console.debug.bind(console,Wt("DEBUG"),"color: lightgreen"):console.log.bind(console,"\x1B[32m",Wt("DEBUG"))),t<=ne.trace&&(E.trace=console.debug?console.debug.bind(console,Wt("TRACE"),"color: lightgreen"):console.log.bind(console,"\x1B[32m",Wt("TRACE")))},"setLogLevel"),Wt=p(e=>`%c${_p().format("ss.SSS")} : ${e} : `,"format");const wi={min:{r:0,g:0,b:0,s:0,l:0,a:0},max:{r:255,g:255,b:255,h:360,s:100,l:100,a:1},clamp:{r:e=>e>=255?255:e<0?0:e,g:e=>e>=255?255:e<0?0:e,b:e=>e>=255?255:e<0?0:e,h:e=>e%360,s:e=>e>=100?100:e<0?0:e,l:e=>e>=100?100:e<0?0:e,a:e=>e>=1?1:e<0?0:e},toLinear:e=>{const t=e/255;return e>.03928?Math.pow((t+.055)/1.055,2.4):t/12.92},hue2rgb:(e,t,r)=>(r<0&&(r+=1),r>1&&(r-=1),r<1/6?e+(t-e)*6*r:r<1/2?t:r<2/3?e+(t-e)*(2/3-r)*6:e),hsl2rgb:({h:e,s:t,l:r},i)=>{if(!t)return r*2.55;e/=360,t/=100,r/=100;const a=r<.5?r*(1+t):r+t-r*t,n=2*r-a;switch(i){case"r":return wi.hue2rgb(n,a,e+1/3)*255;case"g":return wi.hue2rgb(n,a,e)*255;case"b":return wi.hue2rgb(n,a,e-1/3)*255}},rgb2hsl:({r:e,g:t,b:r},i)=>{e/=255,t/=255,r/=255;const a=Math.max(e,t,r),n=Math.min(e,t,r),o=(a+n)/2;if(i==="l")return o*100;if(a===n)return 0;const s=a-n,c=o>.5?s/(2-a-n):s/(a+n);if(i==="s")return c*100;switch(a){case e:return((t-r)/s+(t<r?6:0))*60;case t:return((r-e)/s+2)*60;case r:return((e-t)/s+4)*60;default:return-1}}},Tp={clamp:(e,t,r)=>t>r?Math.min(t,Math.max(r,e)):Math.min(r,Math.max(t,e)),round:e=>Math.round(e*1e10)/1e10},Bp={dec2hex:e=>{const t=Math.round(e).toString(16);return t.length>1?t:`0${t}`}},Q={channel:wi,lang:Tp,unit:Bp},ye={};for(let e=0;e<=255;e++)ye[e]=Q.unit.dec2hex(e);const Tt={ALL:0,RGB:1,HSL:2};class Lp{constructor(){this.type=Tt.ALL}get(){return this.type}set(t){if(this.type&&this.type!==t)throw new Error("Cannot change both RGB and HSL channels at the same time");this.type=t}reset(){this.type=Tt.ALL}is(t){return this.type===t}}class Mp{constructor(t,r){this.color=r,this.changed=!1,this.data=t,this.type=new Lp}set(t,r){return this.color=r,this.changed=!1,this.data=t,this.type.type=Tt.ALL,this}_ensureHSL(){const t=this.data,{h:r,s:i,l:a}=t;r===void 0&&(t.h=Q.channel.rgb2hsl(t,"h")),i===void 0&&(t.s=Q.channel.rgb2hsl(t,"s")),a===void 0&&(t.l=Q.channel.rgb2hsl(t,"l"))}_ensureRGB(){const t=this.data,{r,g:i,b:a}=t;r===void 0&&(t.r=Q.channel.hsl2rgb(t,"r")),i===void 0&&(t.g=Q.channel.hsl2rgb(t,"g")),a===void 0&&(t.b=Q.channel.hsl2rgb(t,"b"))}get r(){const t=this.data,r=t.r;return!this.type.is(Tt.HSL)&&r!==void 0?r:(this._ensureHSL(),Q.channel.hsl2rgb(t,"r"))}get g(){const t=this.data,r=t.g;return!this.type.is(Tt.HSL)&&r!==void 0?r:(this._ensureHSL(),Q.channel.hsl2rgb(t,"g"))}get b(){const t=this.data,r=t.b;return!this.type.is(Tt.HSL)&&r!==void 0?r:(this._ensureHSL(),Q.channel.hsl2rgb(t,"b"))}get h(){const t=this.data,r=t.h;return!this.type.is(Tt.RGB)&&r!==void 0?r:(this._ensureRGB(),Q.channel.rgb2hsl(t,"h"))}get s(){const t=this.data,r=t.s;return!this.type.is(Tt.RGB)&&r!==void 0?r:(this._ensureRGB(),Q.channel.rgb2hsl(t,"s"))}get l(){const t=this.data,r=t.l;return!this.type.is(Tt.RGB)&&r!==void 0?r:(this._ensureRGB(),Q.channel.rgb2hsl(t,"l"))}get a(){return this.data.a}set r(t){this.type.set(Tt.RGB),this.changed=!0,this.data.r=t}set g(t){this.type.set(Tt.RGB),this.changed=!0,this.data.g=t}set b(t){this.type.set(Tt.RGB),this.changed=!0,this.data.b=t}set h(t){this.type.set(Tt.HSL),this.changed=!0,this.data.h=t}set s(t){this.type.set(Tt.HSL),this.changed=!0,this.data.s=t}set l(t){this.type.set(Tt.HSL),this.changed=!0,this.data.l=t}set a(t){this.changed=!0,this.data.a=t}}const da=new Mp({r:0,g:0,b:0,a:0},"transparent"),Ze={re:/^#((?:[a-f0-9]{2}){2,4}|[a-f0-9]{3})$/i,parse:e=>{if(e.charCodeAt(0)!==35)return;const t=e.match(Ze.re);if(!t)return;const r=t[1],i=parseInt(r,16),a=r.length,n=a%4===0,o=a>4,s=o?1:17,c=o?8:4,l=n?0:-1,h=o?255:15;return da.set({r:(i>>c*(l+3)&h)*s,g:(i>>c*(l+2)&h)*s,b:(i>>c*(l+1)&h)*s,a:n?(i&h)*s/255:1},e)},stringify:e=>{const{r:t,g:r,b:i,a}=e;return a<1?`#${ye[Math.round(t)]}${ye[Math.round(r)]}${ye[Math.round(i)]}${ye[Math.round(a*255)]}`:`#${ye[Math.round(t)]}${ye[Math.round(r)]}${ye[Math.round(i)]}`}},Ae={re:/^hsla?\(\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e-?\d+)?(?:deg|grad|rad|turn)?)\s*?(?:,|\s)\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e-?\d+)?%)\s*?(?:,|\s)\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e-?\d+)?%)(?:\s*?(?:,|\/)\s*?\+?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e-?\d+)?(%)?))?\s*?\)$/i,hueRe:/^(.+?)(deg|grad|rad|turn)$/i,_hue2deg:e=>{const t=e.match(Ae.hueRe);if(t){const[,r,i]=t;switch(i){case"grad":return Q.channel.clamp.h(parseFloat(r)*.9);case"rad":return Q.channel.clamp.h(parseFloat(r)*180/Math.PI);case"turn":return Q.channel.clamp.h(parseFloat(r)*360)}}return Q.channel.clamp.h(parseFloat(e))},parse:e=>{const t=e.charCodeAt(0);if(t!==104&&t!==72)return;const r=e.match(Ae.re);if(!r)return;const[,i,a,n,o,s]=r;return da.set({h:Ae._hue2deg(i),s:Q.channel.clamp.s(parseFloat(a)),l:Q.channel.clamp.l(parseFloat(n)),a:o?Q.channel.clamp.a(s?parseFloat(o)/100:parseFloat(o)):1},e)},stringify:e=>{const{h:t,s:r,l:i,a}=e;return a<1?`hsla(${Q.lang.round(t)}, ${Q.lang.round(r)}%, ${Q.lang.round(i)}%, ${a})`:`hsl(${Q.lang.round(t)}, ${Q.lang.round(r)}%, ${Q.lang.round(i)}%)`}},Rr={colors:{aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyanaqua:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",transparent:"#00000000",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"},parse:e=>{e=e.toLowerCase();const t=Rr.colors[e];if(t)return Ze.parse(t)},stringify:e=>{const t=Ze.stringify(e);for(const r in Rr.colors)if(Rr.colors[r]===t)return r}},Mr={re:/^rgba?\(\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e\d+)?(%?))\s*?(?:,|\s)\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e\d+)?(%?))\s*?(?:,|\s)\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e\d+)?(%?))(?:\s*?(?:,|\/)\s*?\+?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e\d+)?(%?)))?\s*?\)$/i,parse:e=>{const t=e.charCodeAt(0);if(t!==114&&t!==82)return;const r=e.match(Mr.re);if(!r)return;const[,i,a,n,o,s,c,l,h]=r;return da.set({r:Q.channel.clamp.r(a?parseFloat(i)*2.55:parseFloat(i)),g:Q.channel.clamp.g(o?parseFloat(n)*2.55:parseFloat(n)),b:Q.channel.clamp.b(c?parseFloat(s)*2.55:parseFloat(s)),a:l?Q.channel.clamp.a(h?parseFloat(l)/100:parseFloat(l)):1},e)},stringify:e=>{const{r:t,g:r,b:i,a}=e;return a<1?`rgba(${Q.lang.round(t)}, ${Q.lang.round(r)}, ${Q.lang.round(i)}, ${Q.lang.round(a)})`:`rgb(${Q.lang.round(t)}, ${Q.lang.round(r)}, ${Q.lang.round(i)})`}},ee={format:{keyword:Rr,hex:Ze,rgb:Mr,rgba:Mr,hsl:Ae,hsla:Ae},parse:e=>{if(typeof e!="string")return e;const t=Ze.parse(e)||Mr.parse(e)||Ae.parse(e)||Rr.parse(e);if(t)return t;throw new Error(`Unsupported color format: "${e}"`)},stringify:e=>!e.changed&&e.color?e.color:e.type.is(Tt.HSL)||e.data.r===void 0?Ae.stringify(e):e.a<1||!Number.isInteger(e.r)||!Number.isInteger(e.g)||!Number.isInteger(e.b)?Mr.stringify(e):Ze.stringify(e)},gl=(e,t)=>{const r=ee.parse(e);for(const i in t)r[i]=Q.channel.clamp[i](t[i]);return ee.stringify(r)},Pr=(e,t,r=0,i=1)=>{if(typeof e!="number")return gl(e,{a:t});const a=da.set({r:Q.channel.clamp.r(e),g:Q.channel.clamp.g(t),b:Q.channel.clamp.b(r),a:Q.channel.clamp.a(i)});return ee.stringify(a)},$p=e=>{const{r:t,g:r,b:i}=ee.parse(e),a=.2126*Q.channel.toLinear(t)+.7152*Q.channel.toLinear(r)+.0722*Q.channel.toLinear(i);return Q.lang.round(a)},Ap=e=>$p(e)>=.5,ti=e=>!Ap(e),ml=(e,t,r)=>{const i=ee.parse(e),a=i[t],n=Q.channel.clamp[t](a+r);return a!==n&&(i[t]=n),ee.stringify(i)},q=(e,t)=>ml(e,"l",t),U=(e,t)=>ml(e,"l",-t),w=(e,t)=>{const r=ee.parse(e),i={};for(const a in t)t[a]&&(i[a]=r[a]+t[a]);return gl(e,i)},Fp=(e,t,r=50)=>{const{r:i,g:a,b:n,a:o}=ee.parse(e),{r:s,g:c,b:l,a:h}=ee.parse(t),u=r/100,f=u*2-1,d=o-h,m=((f*d===-1?f:(f+d)/(1+f*d))+1)/2,y=1-m,x=i*m+s*y,b=a*m+c*y,k=n*m+l*y,S=o*u+h*(1-u);return Pr(x,b,k,S)},R=(e,t=100)=>{const r=ee.parse(e);return r.r=255-r.r,r.g=255-r.g,r.b=255-r.b,Fp(r,e,t)};var yl=/^-{3}\s*[\n\r](.*?)[\n\r]-{3}\s*[\n\r]+/s,Nr=/%{2}{\s*(?:(\w+)\s*:|(\w+))\s*(?:(\w+)|((?:(?!}%{2}).|\r?\n)*))?\s*(?:}%{2})?/gi,Ep=/\s*%%.*\n/gm,Qe,xl=(Qe=class extends Error{constructor(t){super(t),this.name="UnknownDiagramError"}},p(Qe,"UnknownDiagramError"),Qe),Oe={},jn=p(function(e,t){e=e.replace(yl,"").replace(Nr,"").replace(Ep,`
|
|
3
|
+
`);for(const[r,{detector:i}]of Object.entries(Oe))if(i(e,t))return r;throw new xl(`No diagram type detected matching given configuration for text: ${e}`)},"detectType"),Za=p((...e)=>{for(const{id:t,detector:r,loader:i}of e)bl(t,r,i)},"registerLazyLoadedDiagrams"),bl=p((e,t,r)=>{Oe[e]&&E.warn(`Detector with key ${e} already exists. Overwriting.`),Oe[e]={detector:t,loader:r},E.debug(`Detector with key ${e} added${r?" with loader":""}`)},"addDetector"),Dp=p(e=>Oe[e].loader,"getDiagramLoader"),Ka=p((e,t,{depth:r=2,clobber:i=!1}={})=>{const a={depth:r,clobber:i};return Array.isArray(t)&&!Array.isArray(e)?(t.forEach(n=>Ka(e,n,a)),e):Array.isArray(t)&&Array.isArray(e)?(t.forEach(n=>{e.includes(n)||e.push(n)}),e):e===void 0||r<=0?e!=null&&typeof e=="object"&&typeof t=="object"?Object.assign(e,t):t:(t!==void 0&&typeof e=="object"&&typeof t=="object"&&Object.keys(t).forEach(n=>{typeof t[n]=="object"&&t[n]!==null&&(e[n]===void 0||typeof e[n]=="object")?(e[n]===void 0&&(e[n]=Array.isArray(t[n])?[]:{}),e[n]=Ka(e[n],t[n],{depth:r-1,clobber:i})):(i||typeof e[n]!="object"&&typeof t[n]!="object")&&(e[n]=t[n])}),e)},"assignWithDepth"),kt=Ka,fa="#ffffff",pa="#f2f2f2",Et=p((e,t)=>t?w(e,{s:-40,l:10}):w(e,{s:-40,l:-10}),"mkBorder"),Je,Op=(Je=class{constructor(){this.background="#f4f4f4",this.primaryColor="#fff4dd",this.noteBkgColor="#fff5ad",this.noteTextColor="#333",this.THEME_COLOR_LIMIT=12,this.fontFamily='"trebuchet ms", verdana, arial, sans-serif',this.fontSize="16px"}updateColors(){var r,i,a,n,o,s,c,l,h,u,f,d,g,m,y,x,b,k,S,v,C;if(this.primaryTextColor=this.primaryTextColor||(this.darkMode?"#eee":"#333"),this.secondaryColor=this.secondaryColor||w(this.primaryColor,{h:-120}),this.tertiaryColor=this.tertiaryColor||w(this.primaryColor,{h:180,l:5}),this.primaryBorderColor=this.primaryBorderColor||Et(this.primaryColor,this.darkMode),this.secondaryBorderColor=this.secondaryBorderColor||Et(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=this.tertiaryBorderColor||Et(this.tertiaryColor,this.darkMode),this.noteBorderColor=this.noteBorderColor||Et(this.noteBkgColor,this.darkMode),this.noteBkgColor=this.noteBkgColor||"#fff5ad",this.noteTextColor=this.noteTextColor||"#333",this.secondaryTextColor=this.secondaryTextColor||R(this.secondaryColor),this.tertiaryTextColor=this.tertiaryTextColor||R(this.tertiaryColor),this.lineColor=this.lineColor||R(this.background),this.arrowheadColor=this.arrowheadColor||R(this.background),this.textColor=this.textColor||this.primaryTextColor,this.border2=this.border2||this.tertiaryBorderColor,this.nodeBkg=this.nodeBkg||this.primaryColor,this.mainBkg=this.mainBkg||this.primaryColor,this.nodeBorder=this.nodeBorder||this.primaryBorderColor,this.clusterBkg=this.clusterBkg||this.tertiaryColor,this.clusterBorder=this.clusterBorder||this.tertiaryBorderColor,this.defaultLinkColor=this.defaultLinkColor||this.lineColor,this.titleColor=this.titleColor||this.tertiaryTextColor,this.edgeLabelBackground=this.edgeLabelBackground||(this.darkMode?U(this.secondaryColor,30):this.secondaryColor),this.nodeTextColor=this.nodeTextColor||this.primaryTextColor,this.actorBorder=this.actorBorder||this.primaryBorderColor,this.actorBkg=this.actorBkg||this.mainBkg,this.actorTextColor=this.actorTextColor||this.primaryTextColor,this.actorLineColor=this.actorLineColor||this.actorBorder,this.labelBoxBkgColor=this.labelBoxBkgColor||this.actorBkg,this.signalColor=this.signalColor||this.textColor,this.signalTextColor=this.signalTextColor||this.textColor,this.labelBoxBorderColor=this.labelBoxBorderColor||this.actorBorder,this.labelTextColor=this.labelTextColor||this.actorTextColor,this.loopTextColor=this.loopTextColor||this.actorTextColor,this.activationBorderColor=this.activationBorderColor||U(this.secondaryColor,10),this.activationBkgColor=this.activationBkgColor||this.secondaryColor,this.sequenceNumberColor=this.sequenceNumberColor||R(this.lineColor),this.sectionBkgColor=this.sectionBkgColor||this.tertiaryColor,this.altSectionBkgColor=this.altSectionBkgColor||"white",this.sectionBkgColor=this.sectionBkgColor||this.secondaryColor,this.sectionBkgColor2=this.sectionBkgColor2||this.primaryColor,this.excludeBkgColor=this.excludeBkgColor||"#eeeeee",this.taskBorderColor=this.taskBorderColor||this.primaryBorderColor,this.taskBkgColor=this.taskBkgColor||this.primaryColor,this.activeTaskBorderColor=this.activeTaskBorderColor||this.primaryColor,this.activeTaskBkgColor=this.activeTaskBkgColor||q(this.primaryColor,23),this.gridColor=this.gridColor||"lightgrey",this.doneTaskBkgColor=this.doneTaskBkgColor||"lightgrey",this.doneTaskBorderColor=this.doneTaskBorderColor||"grey",this.critBorderColor=this.critBorderColor||"#ff8888",this.critBkgColor=this.critBkgColor||"red",this.todayLineColor=this.todayLineColor||"red",this.vertLineColor=this.vertLineColor||"navy",this.taskTextColor=this.taskTextColor||this.textColor,this.taskTextOutsideColor=this.taskTextOutsideColor||this.textColor,this.taskTextLightColor=this.taskTextLightColor||this.textColor,this.taskTextColor=this.taskTextColor||this.primaryTextColor,this.taskTextDarkColor=this.taskTextDarkColor||this.textColor,this.taskTextClickableColor=this.taskTextClickableColor||"#003163",this.personBorder=this.personBorder||this.primaryBorderColor,this.personBkg=this.personBkg||this.mainBkg,this.darkMode?(this.rowOdd=this.rowOdd||U(this.mainBkg,5)||"#ffffff",this.rowEven=this.rowEven||U(this.mainBkg,10)):(this.rowOdd=this.rowOdd||q(this.mainBkg,75)||"#ffffff",this.rowEven=this.rowEven||q(this.mainBkg,5)),this.transitionColor=this.transitionColor||this.lineColor,this.transitionLabelColor=this.transitionLabelColor||this.textColor,this.stateLabelColor=this.stateLabelColor||this.stateBkg||this.primaryTextColor,this.stateBkg=this.stateBkg||this.mainBkg,this.labelBackgroundColor=this.labelBackgroundColor||this.stateBkg,this.compositeBackground=this.compositeBackground||this.background||this.tertiaryColor,this.altBackground=this.altBackground||this.tertiaryColor,this.compositeTitleBackground=this.compositeTitleBackground||this.mainBkg,this.compositeBorder=this.compositeBorder||this.nodeBorder,this.innerEndBackground=this.nodeBorder,this.errorBkgColor=this.errorBkgColor||this.tertiaryColor,this.errorTextColor=this.errorTextColor||this.tertiaryTextColor,this.transitionColor=this.transitionColor||this.lineColor,this.specialStateColor=this.lineColor,this.cScale0=this.cScale0||this.primaryColor,this.cScale1=this.cScale1||this.secondaryColor,this.cScale2=this.cScale2||this.tertiaryColor,this.cScale3=this.cScale3||w(this.primaryColor,{h:30}),this.cScale4=this.cScale4||w(this.primaryColor,{h:60}),this.cScale5=this.cScale5||w(this.primaryColor,{h:90}),this.cScale6=this.cScale6||w(this.primaryColor,{h:120}),this.cScale7=this.cScale7||w(this.primaryColor,{h:150}),this.cScale8=this.cScale8||w(this.primaryColor,{h:210,l:150}),this.cScale9=this.cScale9||w(this.primaryColor,{h:270}),this.cScale10=this.cScale10||w(this.primaryColor,{h:300}),this.cScale11=this.cScale11||w(this.primaryColor,{h:330}),this.darkMode)for(let _=0;_<this.THEME_COLOR_LIMIT;_++)this["cScale"+_]=U(this["cScale"+_],75);else for(let _=0;_<this.THEME_COLOR_LIMIT;_++)this["cScale"+_]=U(this["cScale"+_],25);for(let _=0;_<this.THEME_COLOR_LIMIT;_++)this["cScaleInv"+_]=this["cScaleInv"+_]||R(this["cScale"+_]);for(let _=0;_<this.THEME_COLOR_LIMIT;_++)this.darkMode?this["cScalePeer"+_]=this["cScalePeer"+_]||q(this["cScale"+_],10):this["cScalePeer"+_]=this["cScalePeer"+_]||U(this["cScale"+_],10);this.scaleLabelColor=this.scaleLabelColor||this.labelTextColor;for(let _=0;_<this.THEME_COLOR_LIMIT;_++)this["cScaleLabel"+_]=this["cScaleLabel"+_]||this.scaleLabelColor;const t=this.darkMode?-4:-1;for(let _=0;_<5;_++)this["surface"+_]=this["surface"+_]||w(this.mainBkg,{h:180,s:-15,l:t*(5+_*3)}),this["surfacePeer"+_]=this["surfacePeer"+_]||w(this.mainBkg,{h:180,s:-15,l:t*(8+_*3)});this.classText=this.classText||this.textColor,this.fillType0=this.fillType0||this.primaryColor,this.fillType1=this.fillType1||this.secondaryColor,this.fillType2=this.fillType2||w(this.primaryColor,{h:64}),this.fillType3=this.fillType3||w(this.secondaryColor,{h:64}),this.fillType4=this.fillType4||w(this.primaryColor,{h:-64}),this.fillType5=this.fillType5||w(this.secondaryColor,{h:-64}),this.fillType6=this.fillType6||w(this.primaryColor,{h:128}),this.fillType7=this.fillType7||w(this.secondaryColor,{h:128}),this.pie1=this.pie1||this.primaryColor,this.pie2=this.pie2||this.secondaryColor,this.pie3=this.pie3||this.tertiaryColor,this.pie4=this.pie4||w(this.primaryColor,{l:-10}),this.pie5=this.pie5||w(this.secondaryColor,{l:-10}),this.pie6=this.pie6||w(this.tertiaryColor,{l:-10}),this.pie7=this.pie7||w(this.primaryColor,{h:60,l:-10}),this.pie8=this.pie8||w(this.primaryColor,{h:-60,l:-10}),this.pie9=this.pie9||w(this.primaryColor,{h:120,l:0}),this.pie10=this.pie10||w(this.primaryColor,{h:60,l:-20}),this.pie11=this.pie11||w(this.primaryColor,{h:-60,l:-20}),this.pie12=this.pie12||w(this.primaryColor,{h:120,l:-10}),this.pieTitleTextSize=this.pieTitleTextSize||"25px",this.pieTitleTextColor=this.pieTitleTextColor||this.taskTextDarkColor,this.pieSectionTextSize=this.pieSectionTextSize||"17px",this.pieSectionTextColor=this.pieSectionTextColor||this.textColor,this.pieLegendTextSize=this.pieLegendTextSize||"17px",this.pieLegendTextColor=this.pieLegendTextColor||this.taskTextDarkColor,this.pieStrokeColor=this.pieStrokeColor||"black",this.pieStrokeWidth=this.pieStrokeWidth||"2px",this.pieOuterStrokeWidth=this.pieOuterStrokeWidth||"2px",this.pieOuterStrokeColor=this.pieOuterStrokeColor||"black",this.pieOpacity=this.pieOpacity||"0.7",this.venn1=this.venn1??w(this.primaryColor,{l:-30}),this.venn2=this.venn2??w(this.secondaryColor,{l:-30}),this.venn3=this.venn3??w(this.tertiaryColor,{l:-30}),this.venn4=this.venn4??w(this.primaryColor,{h:60,l:-30}),this.venn5=this.venn5??w(this.primaryColor,{h:-60,l:-30}),this.venn6=this.venn6??w(this.secondaryColor,{h:60,l:-30}),this.venn7=this.venn7??w(this.primaryColor,{h:120,l:-30}),this.venn8=this.venn8??w(this.secondaryColor,{h:120,l:-30}),this.vennTitleTextColor=this.vennTitleTextColor??this.titleColor,this.vennSetTextColor=this.vennSetTextColor??this.textColor,this.radar={axisColor:((r=this.radar)==null?void 0:r.axisColor)||this.lineColor,axisStrokeWidth:((i=this.radar)==null?void 0:i.axisStrokeWidth)||2,axisLabelFontSize:((a=this.radar)==null?void 0:a.axisLabelFontSize)||12,curveOpacity:((n=this.radar)==null?void 0:n.curveOpacity)||.5,curveStrokeWidth:((o=this.radar)==null?void 0:o.curveStrokeWidth)||2,graticuleColor:((s=this.radar)==null?void 0:s.graticuleColor)||"#DEDEDE",graticuleStrokeWidth:((c=this.radar)==null?void 0:c.graticuleStrokeWidth)||1,graticuleOpacity:((l=this.radar)==null?void 0:l.graticuleOpacity)||.3,legendBoxSize:((h=this.radar)==null?void 0:h.legendBoxSize)||12,legendFontSize:((u=this.radar)==null?void 0:u.legendFontSize)||12},this.archEdgeColor=this.archEdgeColor||"#777",this.archEdgeArrowColor=this.archEdgeArrowColor||"#777",this.archEdgeWidth=this.archEdgeWidth||"3",this.archGroupBorderColor=this.archGroupBorderColor||"#000",this.archGroupBorderWidth=this.archGroupBorderWidth||"2px",this.quadrant1Fill=this.quadrant1Fill||this.primaryColor,this.quadrant2Fill=this.quadrant2Fill||w(this.primaryColor,{r:5,g:5,b:5}),this.quadrant3Fill=this.quadrant3Fill||w(this.primaryColor,{r:10,g:10,b:10}),this.quadrant4Fill=this.quadrant4Fill||w(this.primaryColor,{r:15,g:15,b:15}),this.quadrant1TextFill=this.quadrant1TextFill||this.primaryTextColor,this.quadrant2TextFill=this.quadrant2TextFill||w(this.primaryTextColor,{r:-5,g:-5,b:-5}),this.quadrant3TextFill=this.quadrant3TextFill||w(this.primaryTextColor,{r:-10,g:-10,b:-10}),this.quadrant4TextFill=this.quadrant4TextFill||w(this.primaryTextColor,{r:-15,g:-15,b:-15}),this.quadrantPointFill=this.quadrantPointFill||ti(this.quadrant1Fill)?q(this.quadrant1Fill):U(this.quadrant1Fill),this.quadrantPointTextFill=this.quadrantPointTextFill||this.primaryTextColor,this.quadrantXAxisTextFill=this.quadrantXAxisTextFill||this.primaryTextColor,this.quadrantYAxisTextFill=this.quadrantYAxisTextFill||this.primaryTextColor,this.quadrantInternalBorderStrokeFill=this.quadrantInternalBorderStrokeFill||this.primaryBorderColor,this.quadrantExternalBorderStrokeFill=this.quadrantExternalBorderStrokeFill||this.primaryBorderColor,this.quadrantTitleFill=this.quadrantTitleFill||this.primaryTextColor,this.xyChart={backgroundColor:((f=this.xyChart)==null?void 0:f.backgroundColor)||this.background,titleColor:((d=this.xyChart)==null?void 0:d.titleColor)||this.primaryTextColor,xAxisTitleColor:((g=this.xyChart)==null?void 0:g.xAxisTitleColor)||this.primaryTextColor,xAxisLabelColor:((m=this.xyChart)==null?void 0:m.xAxisLabelColor)||this.primaryTextColor,xAxisTickColor:((y=this.xyChart)==null?void 0:y.xAxisTickColor)||this.primaryTextColor,xAxisLineColor:((x=this.xyChart)==null?void 0:x.xAxisLineColor)||this.primaryTextColor,yAxisTitleColor:((b=this.xyChart)==null?void 0:b.yAxisTitleColor)||this.primaryTextColor,yAxisLabelColor:((k=this.xyChart)==null?void 0:k.yAxisLabelColor)||this.primaryTextColor,yAxisTickColor:((S=this.xyChart)==null?void 0:S.yAxisTickColor)||this.primaryTextColor,yAxisLineColor:((v=this.xyChart)==null?void 0:v.yAxisLineColor)||this.primaryTextColor,plotColorPalette:((C=this.xyChart)==null?void 0:C.plotColorPalette)||"#FFF4DD,#FFD8B1,#FFA07A,#ECEFF1,#D6DBDF,#C3E0A8,#FFB6A4,#FFD74D,#738FA7,#FFFFF0"},this.requirementBackground=this.requirementBackground||this.primaryColor,this.requirementBorderColor=this.requirementBorderColor||this.primaryBorderColor,this.requirementBorderSize=this.requirementBorderSize||"1",this.requirementTextColor=this.requirementTextColor||this.primaryTextColor,this.relationColor=this.relationColor||this.lineColor,this.relationLabelBackground=this.relationLabelBackground||(this.darkMode?U(this.secondaryColor,30):this.secondaryColor),this.relationLabelColor=this.relationLabelColor||this.actorTextColor,this.git0=this.git0||this.primaryColor,this.git1=this.git1||this.secondaryColor,this.git2=this.git2||this.tertiaryColor,this.git3=this.git3||w(this.primaryColor,{h:-30}),this.git4=this.git4||w(this.primaryColor,{h:-60}),this.git5=this.git5||w(this.primaryColor,{h:-90}),this.git6=this.git6||w(this.primaryColor,{h:60}),this.git7=this.git7||w(this.primaryColor,{h:120}),this.darkMode?(this.git0=q(this.git0,25),this.git1=q(this.git1,25),this.git2=q(this.git2,25),this.git3=q(this.git3,25),this.git4=q(this.git4,25),this.git5=q(this.git5,25),this.git6=q(this.git6,25),this.git7=q(this.git7,25)):(this.git0=U(this.git0,25),this.git1=U(this.git1,25),this.git2=U(this.git2,25),this.git3=U(this.git3,25),this.git4=U(this.git4,25),this.git5=U(this.git5,25),this.git6=U(this.git6,25),this.git7=U(this.git7,25)),this.gitInv0=this.gitInv0||R(this.git0),this.gitInv1=this.gitInv1||R(this.git1),this.gitInv2=this.gitInv2||R(this.git2),this.gitInv3=this.gitInv3||R(this.git3),this.gitInv4=this.gitInv4||R(this.git4),this.gitInv5=this.gitInv5||R(this.git5),this.gitInv6=this.gitInv6||R(this.git6),this.gitInv7=this.gitInv7||R(this.git7),this.branchLabelColor=this.branchLabelColor||(this.darkMode?"black":this.labelTextColor),this.gitBranchLabel0=this.gitBranchLabel0||this.branchLabelColor,this.gitBranchLabel1=this.gitBranchLabel1||this.branchLabelColor,this.gitBranchLabel2=this.gitBranchLabel2||this.branchLabelColor,this.gitBranchLabel3=this.gitBranchLabel3||this.branchLabelColor,this.gitBranchLabel4=this.gitBranchLabel4||this.branchLabelColor,this.gitBranchLabel5=this.gitBranchLabel5||this.branchLabelColor,this.gitBranchLabel6=this.gitBranchLabel6||this.branchLabelColor,this.gitBranchLabel7=this.gitBranchLabel7||this.branchLabelColor,this.tagLabelColor=this.tagLabelColor||this.primaryTextColor,this.tagLabelBackground=this.tagLabelBackground||this.primaryColor,this.tagLabelBorder=this.tagBorder||this.primaryBorderColor,this.tagLabelFontSize=this.tagLabelFontSize||"10px",this.commitLabelColor=this.commitLabelColor||this.secondaryTextColor,this.commitLabelBackground=this.commitLabelBackground||this.secondaryColor,this.commitLabelFontSize=this.commitLabelFontSize||"10px",this.attributeBackgroundColorOdd=this.attributeBackgroundColorOdd||fa,this.attributeBackgroundColorEven=this.attributeBackgroundColorEven||pa}calculate(t){if(typeof t!="object"){this.updateColors();return}const r=Object.keys(t);r.forEach(i=>{this[i]=t[i]}),this.updateColors(),r.forEach(i=>{this[i]=t[i]})}},p(Je,"Theme"),Je),Ip=p(e=>{const t=new Op;return t.calculate(e),t},"getThemeVariables"),tr,Rp=(tr=class{constructor(){this.background="#333",this.primaryColor="#1f2020",this.secondaryColor=q(this.primaryColor,16),this.tertiaryColor=w(this.primaryColor,{h:-160}),this.primaryBorderColor=R(this.background),this.secondaryBorderColor=Et(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=Et(this.tertiaryColor,this.darkMode),this.primaryTextColor=R(this.primaryColor),this.secondaryTextColor=R(this.secondaryColor),this.tertiaryTextColor=R(this.tertiaryColor),this.lineColor=R(this.background),this.textColor=R(this.background),this.mainBkg="#1f2020",this.secondBkg="calculated",this.mainContrastColor="lightgrey",this.darkTextColor=q(R("#323D47"),10),this.lineColor="calculated",this.border1="#ccc",this.border2=Pr(255,255,255,.25),this.arrowheadColor="calculated",this.fontFamily='"trebuchet ms", verdana, arial, sans-serif',this.fontSize="16px",this.labelBackground="#181818",this.textColor="#ccc",this.THEME_COLOR_LIMIT=12,this.nodeBkg="calculated",this.nodeBorder="calculated",this.clusterBkg="calculated",this.clusterBorder="calculated",this.defaultLinkColor="calculated",this.titleColor="#F9FFFE",this.edgeLabelBackground="calculated",this.actorBorder="calculated",this.actorBkg="calculated",this.actorTextColor="calculated",this.actorLineColor="calculated",this.signalColor="calculated",this.signalTextColor="calculated",this.labelBoxBkgColor="calculated",this.labelBoxBorderColor="calculated",this.labelTextColor="calculated",this.loopTextColor="calculated",this.noteBorderColor="calculated",this.noteBkgColor="#fff5ad",this.noteTextColor="calculated",this.activationBorderColor="calculated",this.activationBkgColor="calculated",this.sequenceNumberColor="black",this.sectionBkgColor=U("#EAE8D9",30),this.altSectionBkgColor="calculated",this.sectionBkgColor2="#EAE8D9",this.excludeBkgColor=U(this.sectionBkgColor,10),this.taskBorderColor=Pr(255,255,255,70),this.taskBkgColor="calculated",this.taskTextColor="calculated",this.taskTextLightColor="calculated",this.taskTextOutsideColor="calculated",this.taskTextClickableColor="#003163",this.activeTaskBorderColor=Pr(255,255,255,50),this.activeTaskBkgColor="#81B1DB",this.gridColor="calculated",this.doneTaskBkgColor="calculated",this.doneTaskBorderColor="grey",this.critBorderColor="#E83737",this.critBkgColor="#E83737",this.taskTextDarkColor="calculated",this.todayLineColor="#DB5757",this.vertLineColor="#00BFFF",this.personBorder=this.primaryBorderColor,this.personBkg=this.mainBkg,this.archEdgeColor="calculated",this.archEdgeArrowColor="calculated",this.archEdgeWidth="3",this.archGroupBorderColor=this.primaryBorderColor,this.archGroupBorderWidth="2px",this.rowOdd=this.rowOdd||q(this.mainBkg,5)||"#ffffff",this.rowEven=this.rowEven||U(this.mainBkg,10),this.labelColor="calculated",this.errorBkgColor="#a44141",this.errorTextColor="#ddd"}updateColors(){var t,r,i,a,n,o,s,c,l,h,u,f,d,g,m,y,x,b,k,S,v;this.secondBkg=q(this.mainBkg,16),this.lineColor=this.mainContrastColor,this.arrowheadColor=this.mainContrastColor,this.nodeBkg=this.mainBkg,this.nodeBorder=this.border1,this.clusterBkg=this.secondBkg,this.clusterBorder=this.border2,this.defaultLinkColor=this.lineColor,this.edgeLabelBackground=q(this.labelBackground,25),this.actorBorder=this.border1,this.actorBkg=this.mainBkg,this.actorTextColor=this.mainContrastColor,this.actorLineColor=this.actorBorder,this.signalColor=this.mainContrastColor,this.signalTextColor=this.mainContrastColor,this.labelBoxBkgColor=this.actorBkg,this.labelBoxBorderColor=this.actorBorder,this.labelTextColor=this.mainContrastColor,this.loopTextColor=this.mainContrastColor,this.noteBorderColor=this.secondaryBorderColor,this.noteBkgColor=this.secondBkg,this.noteTextColor=this.secondaryTextColor,this.activationBorderColor=this.border1,this.activationBkgColor=this.secondBkg,this.altSectionBkgColor=this.background,this.taskBkgColor=q(this.mainBkg,23),this.taskTextColor=this.darkTextColor,this.taskTextLightColor=this.mainContrastColor,this.taskTextOutsideColor=this.taskTextLightColor,this.gridColor=this.mainContrastColor,this.doneTaskBkgColor=this.mainContrastColor,this.taskTextDarkColor=R(this.doneTaskBkgColor),this.archEdgeColor=this.lineColor,this.archEdgeArrowColor=this.lineColor,this.transitionColor=this.transitionColor||this.lineColor,this.transitionLabelColor=this.transitionLabelColor||this.textColor,this.stateLabelColor=this.stateLabelColor||this.stateBkg||this.primaryTextColor,this.stateBkg=this.stateBkg||this.mainBkg,this.labelBackgroundColor=this.labelBackgroundColor||this.stateBkg,this.compositeBackground=this.compositeBackground||this.background||this.tertiaryColor,this.altBackground=this.altBackground||"#555",this.compositeTitleBackground=this.compositeTitleBackground||this.mainBkg,this.compositeBorder=this.compositeBorder||this.nodeBorder,this.innerEndBackground=this.primaryBorderColor,this.specialStateColor="#f4f4f4",this.errorBkgColor=this.errorBkgColor||this.tertiaryColor,this.errorTextColor=this.errorTextColor||this.tertiaryTextColor,this.fillType0=this.primaryColor,this.fillType1=this.secondaryColor,this.fillType2=w(this.primaryColor,{h:64}),this.fillType3=w(this.secondaryColor,{h:64}),this.fillType4=w(this.primaryColor,{h:-64}),this.fillType5=w(this.secondaryColor,{h:-64}),this.fillType6=w(this.primaryColor,{h:128}),this.fillType7=w(this.secondaryColor,{h:128}),this.cScale1=this.cScale1||"#0b0000",this.cScale2=this.cScale2||"#4d1037",this.cScale3=this.cScale3||"#3f5258",this.cScale4=this.cScale4||"#4f2f1b",this.cScale5=this.cScale5||"#6e0a0a",this.cScale6=this.cScale6||"#3b0048",this.cScale7=this.cScale7||"#995a01",this.cScale8=this.cScale8||"#154706",this.cScale9=this.cScale9||"#161722",this.cScale10=this.cScale10||"#00296f",this.cScale11=this.cScale11||"#01629c",this.cScale12=this.cScale12||"#010029",this.cScale0=this.cScale0||this.primaryColor,this.cScale1=this.cScale1||this.secondaryColor,this.cScale2=this.cScale2||this.tertiaryColor,this.cScale3=this.cScale3||w(this.primaryColor,{h:30}),this.cScale4=this.cScale4||w(this.primaryColor,{h:60}),this.cScale5=this.cScale5||w(this.primaryColor,{h:90}),this.cScale6=this.cScale6||w(this.primaryColor,{h:120}),this.cScale7=this.cScale7||w(this.primaryColor,{h:150}),this.cScale8=this.cScale8||w(this.primaryColor,{h:210}),this.cScale9=this.cScale9||w(this.primaryColor,{h:270}),this.cScale10=this.cScale10||w(this.primaryColor,{h:300}),this.cScale11=this.cScale11||w(this.primaryColor,{h:330});for(let C=0;C<this.THEME_COLOR_LIMIT;C++)this["cScaleInv"+C]=this["cScaleInv"+C]||R(this["cScale"+C]);for(let C=0;C<this.THEME_COLOR_LIMIT;C++)this["cScalePeer"+C]=this["cScalePeer"+C]||q(this["cScale"+C],10);for(let C=0;C<5;C++)this["surface"+C]=this["surface"+C]||w(this.mainBkg,{h:30,s:-30,l:-(-10+C*4)}),this["surfacePeer"+C]=this["surfacePeer"+C]||w(this.mainBkg,{h:30,s:-30,l:-(-7+C*4)});this.scaleLabelColor=this.scaleLabelColor||(this.darkMode?"black":this.labelTextColor);for(let C=0;C<this.THEME_COLOR_LIMIT;C++)this["cScaleLabel"+C]=this["cScaleLabel"+C]||this.scaleLabelColor;for(let C=0;C<this.THEME_COLOR_LIMIT;C++)this["pie"+C]=this["cScale"+C];this.pieTitleTextSize=this.pieTitleTextSize||"25px",this.pieTitleTextColor=this.pieTitleTextColor||this.mainContrastColor,this.pieSectionTextSize=this.pieSectionTextSize||"17px",this.pieSectionTextColor=this.pieSectionTextColor||this.textColor,this.pieLegendTextSize=this.pieLegendTextSize||"17px",this.pieLegendTextColor=this.pieLegendTextColor||this.mainContrastColor,this.pieStrokeColor=this.pieStrokeColor||"black",this.pieStrokeWidth=this.pieStrokeWidth||"2px",this.pieOuterStrokeWidth=this.pieOuterStrokeWidth||"2px",this.pieOuterStrokeColor=this.pieOuterStrokeColor||"black",this.pieOpacity=this.pieOpacity||"0.7";for(let C=0;C<8;C++)this["venn"+(C+1)]=this["venn"+(C+1)]??q(this["cScale"+C],30);this.vennTitleTextColor=this.vennTitleTextColor??this.titleColor,this.vennSetTextColor=this.vennSetTextColor??this.textColor,this.quadrant1Fill=this.quadrant1Fill||this.primaryColor,this.quadrant2Fill=this.quadrant2Fill||w(this.primaryColor,{r:5,g:5,b:5}),this.quadrant3Fill=this.quadrant3Fill||w(this.primaryColor,{r:10,g:10,b:10}),this.quadrant4Fill=this.quadrant4Fill||w(this.primaryColor,{r:15,g:15,b:15}),this.quadrant1TextFill=this.quadrant1TextFill||this.primaryTextColor,this.quadrant2TextFill=this.quadrant2TextFill||w(this.primaryTextColor,{r:-5,g:-5,b:-5}),this.quadrant3TextFill=this.quadrant3TextFill||w(this.primaryTextColor,{r:-10,g:-10,b:-10}),this.quadrant4TextFill=this.quadrant4TextFill||w(this.primaryTextColor,{r:-15,g:-15,b:-15}),this.quadrantPointFill=this.quadrantPointFill||ti(this.quadrant1Fill)?q(this.quadrant1Fill):U(this.quadrant1Fill),this.quadrantPointTextFill=this.quadrantPointTextFill||this.primaryTextColor,this.quadrantXAxisTextFill=this.quadrantXAxisTextFill||this.primaryTextColor,this.quadrantYAxisTextFill=this.quadrantYAxisTextFill||this.primaryTextColor,this.quadrantInternalBorderStrokeFill=this.quadrantInternalBorderStrokeFill||this.primaryBorderColor,this.quadrantExternalBorderStrokeFill=this.quadrantExternalBorderStrokeFill||this.primaryBorderColor,this.quadrantTitleFill=this.quadrantTitleFill||this.primaryTextColor,this.xyChart={backgroundColor:((t=this.xyChart)==null?void 0:t.backgroundColor)||this.background,titleColor:((r=this.xyChart)==null?void 0:r.titleColor)||this.primaryTextColor,xAxisTitleColor:((i=this.xyChart)==null?void 0:i.xAxisTitleColor)||this.primaryTextColor,xAxisLabelColor:((a=this.xyChart)==null?void 0:a.xAxisLabelColor)||this.primaryTextColor,xAxisTickColor:((n=this.xyChart)==null?void 0:n.xAxisTickColor)||this.primaryTextColor,xAxisLineColor:((o=this.xyChart)==null?void 0:o.xAxisLineColor)||this.primaryTextColor,yAxisTitleColor:((s=this.xyChart)==null?void 0:s.yAxisTitleColor)||this.primaryTextColor,yAxisLabelColor:((c=this.xyChart)==null?void 0:c.yAxisLabelColor)||this.primaryTextColor,yAxisTickColor:((l=this.xyChart)==null?void 0:l.yAxisTickColor)||this.primaryTextColor,yAxisLineColor:((h=this.xyChart)==null?void 0:h.yAxisLineColor)||this.primaryTextColor,plotColorPalette:((u=this.xyChart)==null?void 0:u.plotColorPalette)||"#3498db,#2ecc71,#e74c3c,#f1c40f,#bdc3c7,#ffffff,#34495e,#9b59b6,#1abc9c,#e67e22"},this.packet={startByteColor:this.primaryTextColor,endByteColor:this.primaryTextColor,labelColor:this.primaryTextColor,titleColor:this.primaryTextColor,blockStrokeColor:this.primaryTextColor,blockFillColor:this.background},this.radar={axisColor:((f=this.radar)==null?void 0:f.axisColor)||this.lineColor,axisStrokeWidth:((d=this.radar)==null?void 0:d.axisStrokeWidth)||2,axisLabelFontSize:((g=this.radar)==null?void 0:g.axisLabelFontSize)||12,curveOpacity:((m=this.radar)==null?void 0:m.curveOpacity)||.5,curveStrokeWidth:((y=this.radar)==null?void 0:y.curveStrokeWidth)||2,graticuleColor:((x=this.radar)==null?void 0:x.graticuleColor)||"#DEDEDE",graticuleStrokeWidth:((b=this.radar)==null?void 0:b.graticuleStrokeWidth)||1,graticuleOpacity:((k=this.radar)==null?void 0:k.graticuleOpacity)||.3,legendBoxSize:((S=this.radar)==null?void 0:S.legendBoxSize)||12,legendFontSize:((v=this.radar)==null?void 0:v.legendFontSize)||12},this.classText=this.primaryTextColor,this.requirementBackground=this.requirementBackground||this.primaryColor,this.requirementBorderColor=this.requirementBorderColor||this.primaryBorderColor,this.requirementBorderSize=this.requirementBorderSize||"1",this.requirementTextColor=this.requirementTextColor||this.primaryTextColor,this.relationColor=this.relationColor||this.lineColor,this.relationLabelBackground=this.relationLabelBackground||(this.darkMode?U(this.secondaryColor,30):this.secondaryColor),this.relationLabelColor=this.relationLabelColor||this.actorTextColor,this.git0=q(this.secondaryColor,20),this.git1=q(this.pie2||this.secondaryColor,20),this.git2=q(this.pie3||this.tertiaryColor,20),this.git3=q(this.pie4||w(this.primaryColor,{h:-30}),20),this.git4=q(this.pie5||w(this.primaryColor,{h:-60}),20),this.git5=q(this.pie6||w(this.primaryColor,{h:-90}),10),this.git6=q(this.pie7||w(this.primaryColor,{h:60}),10),this.git7=q(this.pie8||w(this.primaryColor,{h:120}),20),this.gitInv0=this.gitInv0||R(this.git0),this.gitInv1=this.gitInv1||R(this.git1),this.gitInv2=this.gitInv2||R(this.git2),this.gitInv3=this.gitInv3||R(this.git3),this.gitInv4=this.gitInv4||R(this.git4),this.gitInv5=this.gitInv5||R(this.git5),this.gitInv6=this.gitInv6||R(this.git6),this.gitInv7=this.gitInv7||R(this.git7),this.gitBranchLabel0=this.gitBranchLabel0||R(this.labelTextColor),this.gitBranchLabel1=this.gitBranchLabel1||this.labelTextColor,this.gitBranchLabel2=this.gitBranchLabel2||this.labelTextColor,this.gitBranchLabel3=this.gitBranchLabel3||R(this.labelTextColor),this.gitBranchLabel4=this.gitBranchLabel4||this.labelTextColor,this.gitBranchLabel5=this.gitBranchLabel5||this.labelTextColor,this.gitBranchLabel6=this.gitBranchLabel6||this.labelTextColor,this.gitBranchLabel7=this.gitBranchLabel7||this.labelTextColor,this.tagLabelColor=this.tagLabelColor||this.primaryTextColor,this.tagLabelBackground=this.tagLabelBackground||this.primaryColor,this.tagLabelBorder=this.tagBorder||this.primaryBorderColor,this.tagLabelFontSize=this.tagLabelFontSize||"10px",this.commitLabelColor=this.commitLabelColor||this.secondaryTextColor,this.commitLabelBackground=this.commitLabelBackground||this.secondaryColor,this.commitLabelFontSize=this.commitLabelFontSize||"10px",this.attributeBackgroundColorOdd=this.attributeBackgroundColorOdd||q(this.background,12),this.attributeBackgroundColorEven=this.attributeBackgroundColorEven||q(this.background,2),this.nodeBorder=this.nodeBorder||"#999"}calculate(t){if(typeof t!="object"){this.updateColors();return}const r=Object.keys(t);r.forEach(i=>{this[i]=t[i]}),this.updateColors(),r.forEach(i=>{this[i]=t[i]})}},p(tr,"Theme"),tr),Pp=p(e=>{const t=new Rp;return t.calculate(e),t},"getThemeVariables"),er,Np=(er=class{constructor(){this.background="#f4f4f4",this.primaryColor="#ECECFF",this.secondaryColor=w(this.primaryColor,{h:120}),this.secondaryColor="#ffffde",this.tertiaryColor=w(this.primaryColor,{h:-160}),this.primaryBorderColor=Et(this.primaryColor,this.darkMode),this.secondaryBorderColor=Et(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=Et(this.tertiaryColor,this.darkMode),this.primaryTextColor=R(this.primaryColor),this.secondaryTextColor=R(this.secondaryColor),this.tertiaryTextColor=R(this.tertiaryColor),this.lineColor=R(this.background),this.textColor=R(this.background),this.background="white",this.mainBkg="#ECECFF",this.secondBkg="#ffffde",this.lineColor="#333333",this.border1="#9370DB",this.border2="#aaaa33",this.arrowheadColor="#333333",this.fontFamily='"trebuchet ms", verdana, arial, sans-serif',this.fontSize="16px",this.labelBackground="rgba(232,232,232, 0.8)",this.textColor="#333",this.THEME_COLOR_LIMIT=12,this.nodeBkg="calculated",this.nodeBorder="calculated",this.clusterBkg="calculated",this.clusterBorder="calculated",this.defaultLinkColor="calculated",this.titleColor="calculated",this.edgeLabelBackground="calculated",this.actorBorder="calculated",this.actorBkg="calculated",this.actorTextColor="black",this.actorLineColor="calculated",this.signalColor="calculated",this.signalTextColor="calculated",this.labelBoxBkgColor="calculated",this.labelBoxBorderColor="calculated",this.labelTextColor="calculated",this.loopTextColor="calculated",this.noteBorderColor="calculated",this.noteBkgColor="#fff5ad",this.noteTextColor="calculated",this.activationBorderColor="#666",this.activationBkgColor="#f4f4f4",this.sequenceNumberColor="white",this.sectionBkgColor="calculated",this.altSectionBkgColor="calculated",this.sectionBkgColor2="calculated",this.excludeBkgColor="#eeeeee",this.taskBorderColor="calculated",this.taskBkgColor="calculated",this.taskTextLightColor="calculated",this.taskTextColor=this.taskTextLightColor,this.taskTextDarkColor="calculated",this.taskTextOutsideColor=this.taskTextDarkColor,this.taskTextClickableColor="calculated",this.activeTaskBorderColor="calculated",this.activeTaskBkgColor="calculated",this.gridColor="calculated",this.doneTaskBkgColor="calculated",this.doneTaskBorderColor="calculated",this.critBorderColor="calculated",this.critBkgColor="calculated",this.todayLineColor="calculated",this.vertLineColor="calculated",this.sectionBkgColor=Pr(102,102,255,.49),this.altSectionBkgColor="white",this.sectionBkgColor2="#fff400",this.taskBorderColor="#534fbc",this.taskBkgColor="#8a90dd",this.taskTextLightColor="white",this.taskTextColor="calculated",this.taskTextDarkColor="black",this.taskTextOutsideColor="calculated",this.taskTextClickableColor="#003163",this.activeTaskBorderColor="#534fbc",this.activeTaskBkgColor="#bfc7ff",this.gridColor="lightgrey",this.doneTaskBkgColor="lightgrey",this.doneTaskBorderColor="grey",this.critBorderColor="#ff8888",this.critBkgColor="red",this.todayLineColor="red",this.vertLineColor="navy",this.personBorder=this.primaryBorderColor,this.personBkg=this.mainBkg,this.archEdgeColor="calculated",this.archEdgeArrowColor="calculated",this.archEdgeWidth="3",this.archGroupBorderColor=this.primaryBorderColor,this.archGroupBorderWidth="2px",this.rowOdd="calculated",this.rowEven="calculated",this.labelColor="black",this.errorBkgColor="#552222",this.errorTextColor="#552222",this.updateColors()}updateColors(){var t,r,i,a,n,o,s,c,l,h,u,f,d,g,m,y,x,b,k,S,v;this.cScale0=this.cScale0||this.primaryColor,this.cScale1=this.cScale1||this.secondaryColor,this.cScale2=this.cScale2||this.tertiaryColor,this.cScale3=this.cScale3||w(this.primaryColor,{h:30}),this.cScale4=this.cScale4||w(this.primaryColor,{h:60}),this.cScale5=this.cScale5||w(this.primaryColor,{h:90}),this.cScale6=this.cScale6||w(this.primaryColor,{h:120}),this.cScale7=this.cScale7||w(this.primaryColor,{h:150}),this.cScale8=this.cScale8||w(this.primaryColor,{h:210}),this.cScale9=this.cScale9||w(this.primaryColor,{h:270}),this.cScale10=this.cScale10||w(this.primaryColor,{h:300}),this.cScale11=this.cScale11||w(this.primaryColor,{h:330}),this.cScalePeer1=this.cScalePeer1||U(this.secondaryColor,45),this.cScalePeer2=this.cScalePeer2||U(this.tertiaryColor,40);for(let C=0;C<this.THEME_COLOR_LIMIT;C++)this["cScale"+C]=U(this["cScale"+C],10),this["cScalePeer"+C]=this["cScalePeer"+C]||U(this["cScale"+C],25);for(let C=0;C<this.THEME_COLOR_LIMIT;C++)this["cScaleInv"+C]=this["cScaleInv"+C]||w(this["cScale"+C],{h:180});for(let C=0;C<5;C++)this["surface"+C]=this["surface"+C]||w(this.mainBkg,{h:30,l:-(5+C*5)}),this["surfacePeer"+C]=this["surfacePeer"+C]||w(this.mainBkg,{h:30,l:-(7+C*5)});if(this.scaleLabelColor=this.scaleLabelColor!=="calculated"&&this.scaleLabelColor?this.scaleLabelColor:this.labelTextColor,this.labelTextColor!=="calculated"){this.cScaleLabel0=this.cScaleLabel0||R(this.labelTextColor),this.cScaleLabel3=this.cScaleLabel3||R(this.labelTextColor);for(let C=0;C<this.THEME_COLOR_LIMIT;C++)this["cScaleLabel"+C]=this["cScaleLabel"+C]||this.labelTextColor}this.nodeBkg=this.mainBkg,this.nodeBorder=this.border1,this.clusterBkg=this.secondBkg,this.clusterBorder=this.border2,this.defaultLinkColor=this.lineColor,this.titleColor=this.textColor,this.edgeLabelBackground=this.labelBackground,this.actorBorder=q(this.border1,23),this.actorBkg=this.mainBkg,this.labelBoxBkgColor=this.actorBkg,this.signalColor=this.textColor,this.signalTextColor=this.textColor,this.labelBoxBorderColor=this.actorBorder,this.labelTextColor=this.actorTextColor,this.loopTextColor=this.actorTextColor,this.noteBorderColor=this.border2,this.noteTextColor=this.actorTextColor,this.actorLineColor=this.actorBorder,this.taskTextColor=this.taskTextLightColor,this.taskTextOutsideColor=this.taskTextDarkColor,this.archEdgeColor=this.lineColor,this.archEdgeArrowColor=this.lineColor,this.rowOdd=this.rowOdd||q(this.primaryColor,75)||"#ffffff",this.rowEven=this.rowEven||q(this.primaryColor,1),this.transitionColor=this.transitionColor||this.lineColor,this.transitionLabelColor=this.transitionLabelColor||this.textColor,this.stateLabelColor=this.stateLabelColor||this.stateBkg||this.primaryTextColor,this.stateBkg=this.stateBkg||this.mainBkg,this.labelBackgroundColor=this.labelBackgroundColor||this.stateBkg,this.compositeBackground=this.compositeBackground||this.background||this.tertiaryColor,this.altBackground=this.altBackground||"#f0f0f0",this.compositeTitleBackground=this.compositeTitleBackground||this.mainBkg,this.compositeBorder=this.compositeBorder||this.nodeBorder,this.innerEndBackground=this.nodeBorder,this.specialStateColor=this.lineColor,this.errorBkgColor=this.errorBkgColor||this.tertiaryColor,this.errorTextColor=this.errorTextColor||this.tertiaryTextColor,this.transitionColor=this.transitionColor||this.lineColor,this.classText=this.primaryTextColor,this.fillType0=this.primaryColor,this.fillType1=this.secondaryColor,this.fillType2=w(this.primaryColor,{h:64}),this.fillType3=w(this.secondaryColor,{h:64}),this.fillType4=w(this.primaryColor,{h:-64}),this.fillType5=w(this.secondaryColor,{h:-64}),this.fillType6=w(this.primaryColor,{h:128}),this.fillType7=w(this.secondaryColor,{h:128}),this.pie1=this.pie1||this.primaryColor,this.pie2=this.pie2||this.secondaryColor,this.pie3=this.pie3||w(this.tertiaryColor,{l:-40}),this.pie4=this.pie4||w(this.primaryColor,{l:-10}),this.pie5=this.pie5||w(this.secondaryColor,{l:-30}),this.pie6=this.pie6||w(this.tertiaryColor,{l:-20}),this.pie7=this.pie7||w(this.primaryColor,{h:60,l:-20}),this.pie8=this.pie8||w(this.primaryColor,{h:-60,l:-40}),this.pie9=this.pie9||w(this.primaryColor,{h:120,l:-40}),this.pie10=this.pie10||w(this.primaryColor,{h:60,l:-40}),this.pie11=this.pie11||w(this.primaryColor,{h:-90,l:-40}),this.pie12=this.pie12||w(this.primaryColor,{h:120,l:-30}),this.pieTitleTextSize=this.pieTitleTextSize||"25px",this.pieTitleTextColor=this.pieTitleTextColor||this.taskTextDarkColor,this.pieSectionTextSize=this.pieSectionTextSize||"17px",this.pieSectionTextColor=this.pieSectionTextColor||this.textColor,this.pieLegendTextSize=this.pieLegendTextSize||"17px",this.pieLegendTextColor=this.pieLegendTextColor||this.taskTextDarkColor,this.pieStrokeColor=this.pieStrokeColor||"black",this.pieStrokeWidth=this.pieStrokeWidth||"2px",this.pieOuterStrokeWidth=this.pieOuterStrokeWidth||"2px",this.pieOuterStrokeColor=this.pieOuterStrokeColor||"black",this.pieOpacity=this.pieOpacity||"0.7",this.venn1=this.venn1??w(this.primaryColor,{l:-30}),this.venn2=this.venn2??w(this.secondaryColor,{l:-30}),this.venn3=this.venn3??w(this.tertiaryColor,{l:-40}),this.venn4=this.venn4??w(this.primaryColor,{h:60,l:-30}),this.venn5=this.venn5??w(this.primaryColor,{h:-60,l:-30}),this.venn6=this.venn6??w(this.secondaryColor,{h:60,l:-30}),this.venn7=this.venn7??w(this.primaryColor,{h:120,l:-30}),this.venn8=this.venn8??w(this.secondaryColor,{h:120,l:-30}),this.vennTitleTextColor=this.vennTitleTextColor??this.titleColor,this.vennSetTextColor=this.vennSetTextColor??this.textColor,this.quadrant1Fill=this.quadrant1Fill||this.primaryColor,this.quadrant2Fill=this.quadrant2Fill||w(this.primaryColor,{r:5,g:5,b:5}),this.quadrant3Fill=this.quadrant3Fill||w(this.primaryColor,{r:10,g:10,b:10}),this.quadrant4Fill=this.quadrant4Fill||w(this.primaryColor,{r:15,g:15,b:15}),this.quadrant1TextFill=this.quadrant1TextFill||this.primaryTextColor,this.quadrant2TextFill=this.quadrant2TextFill||w(this.primaryTextColor,{r:-5,g:-5,b:-5}),this.quadrant3TextFill=this.quadrant3TextFill||w(this.primaryTextColor,{r:-10,g:-10,b:-10}),this.quadrant4TextFill=this.quadrant4TextFill||w(this.primaryTextColor,{r:-15,g:-15,b:-15}),this.quadrantPointFill=this.quadrantPointFill||ti(this.quadrant1Fill)?q(this.quadrant1Fill):U(this.quadrant1Fill),this.quadrantPointTextFill=this.quadrantPointTextFill||this.primaryTextColor,this.quadrantXAxisTextFill=this.quadrantXAxisTextFill||this.primaryTextColor,this.quadrantYAxisTextFill=this.quadrantYAxisTextFill||this.primaryTextColor,this.quadrantInternalBorderStrokeFill=this.quadrantInternalBorderStrokeFill||this.primaryBorderColor,this.quadrantExternalBorderStrokeFill=this.quadrantExternalBorderStrokeFill||this.primaryBorderColor,this.quadrantTitleFill=this.quadrantTitleFill||this.primaryTextColor,this.radar={axisColor:((t=this.radar)==null?void 0:t.axisColor)||this.lineColor,axisStrokeWidth:((r=this.radar)==null?void 0:r.axisStrokeWidth)||2,axisLabelFontSize:((i=this.radar)==null?void 0:i.axisLabelFontSize)||12,curveOpacity:((a=this.radar)==null?void 0:a.curveOpacity)||.5,curveStrokeWidth:((n=this.radar)==null?void 0:n.curveStrokeWidth)||2,graticuleColor:((o=this.radar)==null?void 0:o.graticuleColor)||"#DEDEDE",graticuleStrokeWidth:((s=this.radar)==null?void 0:s.graticuleStrokeWidth)||1,graticuleOpacity:((c=this.radar)==null?void 0:c.graticuleOpacity)||.3,legendBoxSize:((l=this.radar)==null?void 0:l.legendBoxSize)||12,legendFontSize:((h=this.radar)==null?void 0:h.legendFontSize)||12},this.xyChart={backgroundColor:((u=this.xyChart)==null?void 0:u.backgroundColor)||this.background,titleColor:((f=this.xyChart)==null?void 0:f.titleColor)||this.primaryTextColor,xAxisTitleColor:((d=this.xyChart)==null?void 0:d.xAxisTitleColor)||this.primaryTextColor,xAxisLabelColor:((g=this.xyChart)==null?void 0:g.xAxisLabelColor)||this.primaryTextColor,xAxisTickColor:((m=this.xyChart)==null?void 0:m.xAxisTickColor)||this.primaryTextColor,xAxisLineColor:((y=this.xyChart)==null?void 0:y.xAxisLineColor)||this.primaryTextColor,yAxisTitleColor:((x=this.xyChart)==null?void 0:x.yAxisTitleColor)||this.primaryTextColor,yAxisLabelColor:((b=this.xyChart)==null?void 0:b.yAxisLabelColor)||this.primaryTextColor,yAxisTickColor:((k=this.xyChart)==null?void 0:k.yAxisTickColor)||this.primaryTextColor,yAxisLineColor:((S=this.xyChart)==null?void 0:S.yAxisLineColor)||this.primaryTextColor,plotColorPalette:((v=this.xyChart)==null?void 0:v.plotColorPalette)||"#ECECFF,#8493A6,#FFC3A0,#DCDDE1,#B8E994,#D1A36F,#C3CDE6,#FFB6C1,#496078,#F8F3E3"},this.requirementBackground=this.requirementBackground||this.primaryColor,this.requirementBorderColor=this.requirementBorderColor||this.primaryBorderColor,this.requirementBorderSize=this.requirementBorderSize||"1",this.requirementTextColor=this.requirementTextColor||this.primaryTextColor,this.relationColor=this.relationColor||this.lineColor,this.relationLabelBackground=this.relationLabelBackground||this.labelBackground,this.relationLabelColor=this.relationLabelColor||this.actorTextColor,this.git0=this.git0||this.primaryColor,this.git1=this.git1||this.secondaryColor,this.git2=this.git2||this.tertiaryColor,this.git3=this.git3||w(this.primaryColor,{h:-30}),this.git4=this.git4||w(this.primaryColor,{h:-60}),this.git5=this.git5||w(this.primaryColor,{h:-90}),this.git6=this.git6||w(this.primaryColor,{h:60}),this.git7=this.git7||w(this.primaryColor,{h:120}),this.darkMode?(this.git0=q(this.git0,25),this.git1=q(this.git1,25),this.git2=q(this.git2,25),this.git3=q(this.git3,25),this.git4=q(this.git4,25),this.git5=q(this.git5,25),this.git6=q(this.git6,25),this.git7=q(this.git7,25)):(this.git0=U(this.git0,25),this.git1=U(this.git1,25),this.git2=U(this.git2,25),this.git3=U(this.git3,25),this.git4=U(this.git4,25),this.git5=U(this.git5,25),this.git6=U(this.git6,25),this.git7=U(this.git7,25)),this.gitInv0=this.gitInv0||U(R(this.git0),25),this.gitInv1=this.gitInv1||R(this.git1),this.gitInv2=this.gitInv2||R(this.git2),this.gitInv3=this.gitInv3||R(this.git3),this.gitInv4=this.gitInv4||R(this.git4),this.gitInv5=this.gitInv5||R(this.git5),this.gitInv6=this.gitInv6||R(this.git6),this.gitInv7=this.gitInv7||R(this.git7),this.gitBranchLabel0=this.gitBranchLabel0||R(this.labelTextColor),this.gitBranchLabel1=this.gitBranchLabel1||this.labelTextColor,this.gitBranchLabel2=this.gitBranchLabel2||this.labelTextColor,this.gitBranchLabel3=this.gitBranchLabel3||R(this.labelTextColor),this.gitBranchLabel4=this.gitBranchLabel4||this.labelTextColor,this.gitBranchLabel5=this.gitBranchLabel5||this.labelTextColor,this.gitBranchLabel6=this.gitBranchLabel6||this.labelTextColor,this.gitBranchLabel7=this.gitBranchLabel7||this.labelTextColor,this.tagLabelColor=this.tagLabelColor||this.primaryTextColor,this.tagLabelBackground=this.tagLabelBackground||this.primaryColor,this.tagLabelBorder=this.tagBorder||this.primaryBorderColor,this.tagLabelFontSize=this.tagLabelFontSize||"10px",this.commitLabelColor=this.commitLabelColor||this.secondaryTextColor,this.commitLabelBackground=this.commitLabelBackground||this.secondaryColor,this.commitLabelFontSize=this.commitLabelFontSize||"10px",this.attributeBackgroundColorOdd=this.attributeBackgroundColorOdd||fa,this.attributeBackgroundColorEven=this.attributeBackgroundColorEven||pa}calculate(t){if(Object.keys(this).forEach(i=>{this[i]==="calculated"&&(this[i]=void 0)}),typeof t!="object"){this.updateColors();return}const r=Object.keys(t);r.forEach(i=>{this[i]=t[i]}),this.updateColors(),r.forEach(i=>{this[i]=t[i]})}},p(er,"Theme"),er),zp=p(e=>{const t=new Np;return t.calculate(e),t},"getThemeVariables"),rr,qp=(rr=class{constructor(){this.background="#f4f4f4",this.primaryColor="#cde498",this.secondaryColor="#cdffb2",this.background="white",this.mainBkg="#cde498",this.secondBkg="#cdffb2",this.lineColor="green",this.border1="#13540c",this.border2="#6eaa49",this.arrowheadColor="green",this.fontFamily='"trebuchet ms", verdana, arial, sans-serif',this.fontSize="16px",this.tertiaryColor=q("#cde498",10),this.primaryBorderColor=Et(this.primaryColor,this.darkMode),this.secondaryBorderColor=Et(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=Et(this.tertiaryColor,this.darkMode),this.primaryTextColor=R(this.primaryColor),this.secondaryTextColor=R(this.secondaryColor),this.tertiaryTextColor=R(this.primaryColor),this.lineColor=R(this.background),this.textColor=R(this.background),this.THEME_COLOR_LIMIT=12,this.nodeBkg="calculated",this.nodeBorder="calculated",this.clusterBkg="calculated",this.clusterBorder="calculated",this.defaultLinkColor="calculated",this.titleColor="#333",this.edgeLabelBackground="#e8e8e8",this.actorBorder="calculated",this.actorBkg="calculated",this.actorTextColor="black",this.actorLineColor="calculated",this.signalColor="#333",this.signalTextColor="#333",this.labelBoxBkgColor="calculated",this.labelBoxBorderColor="#326932",this.labelTextColor="calculated",this.loopTextColor="calculated",this.noteBorderColor="calculated",this.noteBkgColor="#fff5ad",this.noteTextColor="calculated",this.activationBorderColor="#666",this.activationBkgColor="#f4f4f4",this.sequenceNumberColor="white",this.sectionBkgColor="#6eaa49",this.altSectionBkgColor="white",this.sectionBkgColor2="#6eaa49",this.excludeBkgColor="#eeeeee",this.taskBorderColor="calculated",this.taskBkgColor="#487e3a",this.taskTextLightColor="white",this.taskTextColor="calculated",this.taskTextDarkColor="black",this.taskTextOutsideColor="calculated",this.taskTextClickableColor="#003163",this.activeTaskBorderColor="calculated",this.activeTaskBkgColor="calculated",this.gridColor="lightgrey",this.doneTaskBkgColor="lightgrey",this.doneTaskBorderColor="grey",this.critBorderColor="#ff8888",this.critBkgColor="red",this.todayLineColor="red",this.vertLineColor="#00BFFF",this.personBorder=this.primaryBorderColor,this.personBkg=this.mainBkg,this.archEdgeColor="calculated",this.archEdgeArrowColor="calculated",this.archEdgeWidth="3",this.archGroupBorderColor=this.primaryBorderColor,this.archGroupBorderWidth="2px",this.labelColor="black",this.errorBkgColor="#552222",this.errorTextColor="#552222"}updateColors(){var t,r,i,a,n,o,s,c,l,h,u,f,d,g,m,y,x,b,k,S,v;this.actorBorder=U(this.mainBkg,20),this.actorBkg=this.mainBkg,this.labelBoxBkgColor=this.actorBkg,this.labelTextColor=this.actorTextColor,this.loopTextColor=this.actorTextColor,this.noteBorderColor=this.border2,this.noteTextColor=this.actorTextColor,this.actorLineColor=this.actorBorder,this.cScale0=this.cScale0||this.primaryColor,this.cScale1=this.cScale1||this.secondaryColor,this.cScale2=this.cScale2||this.tertiaryColor,this.cScale3=this.cScale3||w(this.primaryColor,{h:30}),this.cScale4=this.cScale4||w(this.primaryColor,{h:60}),this.cScale5=this.cScale5||w(this.primaryColor,{h:90}),this.cScale6=this.cScale6||w(this.primaryColor,{h:120}),this.cScale7=this.cScale7||w(this.primaryColor,{h:150}),this.cScale8=this.cScale8||w(this.primaryColor,{h:210}),this.cScale9=this.cScale9||w(this.primaryColor,{h:270}),this.cScale10=this.cScale10||w(this.primaryColor,{h:300}),this.cScale11=this.cScale11||w(this.primaryColor,{h:330}),this.cScalePeer1=this.cScalePeer1||U(this.secondaryColor,45),this.cScalePeer2=this.cScalePeer2||U(this.tertiaryColor,40);for(let C=0;C<this.THEME_COLOR_LIMIT;C++)this["cScale"+C]=U(this["cScale"+C],10),this["cScalePeer"+C]=this["cScalePeer"+C]||U(this["cScale"+C],25);for(let C=0;C<this.THEME_COLOR_LIMIT;C++)this["cScaleInv"+C]=this["cScaleInv"+C]||w(this["cScale"+C],{h:180});this.scaleLabelColor=this.scaleLabelColor!=="calculated"&&this.scaleLabelColor?this.scaleLabelColor:this.labelTextColor;for(let C=0;C<this.THEME_COLOR_LIMIT;C++)this["cScaleLabel"+C]=this["cScaleLabel"+C]||this.scaleLabelColor;for(let C=0;C<5;C++)this["surface"+C]=this["surface"+C]||w(this.mainBkg,{h:30,s:-30,l:-(5+C*5)}),this["surfacePeer"+C]=this["surfacePeer"+C]||w(this.mainBkg,{h:30,s:-30,l:-(8+C*5)});this.nodeBkg=this.mainBkg,this.nodeBorder=this.border1,this.clusterBkg=this.secondBkg,this.clusterBorder=this.border2,this.defaultLinkColor=this.lineColor,this.taskBorderColor=this.border1,this.taskTextColor=this.taskTextLightColor,this.taskTextOutsideColor=this.taskTextDarkColor,this.activeTaskBorderColor=this.taskBorderColor,this.activeTaskBkgColor=this.mainBkg,this.archEdgeColor=this.lineColor,this.archEdgeArrowColor=this.lineColor,this.rowOdd=this.rowOdd||q(this.mainBkg,75)||"#ffffff",this.rowEven=this.rowEven||q(this.mainBkg,20),this.transitionColor=this.transitionColor||this.lineColor,this.transitionLabelColor=this.transitionLabelColor||this.textColor,this.stateLabelColor=this.stateLabelColor||this.stateBkg||this.primaryTextColor,this.stateBkg=this.stateBkg||this.mainBkg,this.labelBackgroundColor=this.labelBackgroundColor||this.stateBkg,this.compositeBackground=this.compositeBackground||this.background||this.tertiaryColor,this.altBackground=this.altBackground||"#f0f0f0",this.compositeTitleBackground=this.compositeTitleBackground||this.mainBkg,this.compositeBorder=this.compositeBorder||this.nodeBorder,this.innerEndBackground=this.primaryBorderColor,this.specialStateColor=this.lineColor,this.errorBkgColor=this.errorBkgColor||this.tertiaryColor,this.errorTextColor=this.errorTextColor||this.tertiaryTextColor,this.transitionColor=this.transitionColor||this.lineColor,this.classText=this.primaryTextColor,this.fillType0=this.primaryColor,this.fillType1=this.secondaryColor,this.fillType2=w(this.primaryColor,{h:64}),this.fillType3=w(this.secondaryColor,{h:64}),this.fillType4=w(this.primaryColor,{h:-64}),this.fillType5=w(this.secondaryColor,{h:-64}),this.fillType6=w(this.primaryColor,{h:128}),this.fillType7=w(this.secondaryColor,{h:128}),this.pie1=this.pie1||this.primaryColor,this.pie2=this.pie2||this.secondaryColor,this.pie3=this.pie3||this.tertiaryColor,this.pie4=this.pie4||w(this.primaryColor,{l:-30}),this.pie5=this.pie5||w(this.secondaryColor,{l:-30}),this.pie6=this.pie6||w(this.tertiaryColor,{h:40,l:-40}),this.pie7=this.pie7||w(this.primaryColor,{h:60,l:-10}),this.pie8=this.pie8||w(this.primaryColor,{h:-60,l:-10}),this.pie9=this.pie9||w(this.primaryColor,{h:120,l:0}),this.pie10=this.pie10||w(this.primaryColor,{h:60,l:-50}),this.pie11=this.pie11||w(this.primaryColor,{h:-60,l:-50}),this.pie12=this.pie12||w(this.primaryColor,{h:120,l:-50}),this.pieTitleTextSize=this.pieTitleTextSize||"25px",this.pieTitleTextColor=this.pieTitleTextColor||this.taskTextDarkColor,this.pieSectionTextSize=this.pieSectionTextSize||"17px",this.pieSectionTextColor=this.pieSectionTextColor||this.textColor,this.pieLegendTextSize=this.pieLegendTextSize||"17px",this.pieLegendTextColor=this.pieLegendTextColor||this.taskTextDarkColor,this.pieStrokeColor=this.pieStrokeColor||"black",this.pieStrokeWidth=this.pieStrokeWidth||"2px",this.pieOuterStrokeWidth=this.pieOuterStrokeWidth||"2px",this.pieOuterStrokeColor=this.pieOuterStrokeColor||"black",this.pieOpacity=this.pieOpacity||"0.7",this.venn1=this.venn1??w(this.primaryColor,{l:-30}),this.venn2=this.venn2??w(this.secondaryColor,{l:-30}),this.venn3=this.venn3??w(this.tertiaryColor,{l:-30}),this.venn4=this.venn4??w(this.primaryColor,{h:60,l:-30}),this.venn5=this.venn5??w(this.primaryColor,{h:-60,l:-30}),this.venn6=this.venn6??w(this.secondaryColor,{h:60,l:-30}),this.venn7=this.venn7??w(this.primaryColor,{h:120,l:-30}),this.venn8=this.venn8??w(this.secondaryColor,{h:120,l:-30}),this.vennTitleTextColor=this.vennTitleTextColor??this.titleColor,this.vennSetTextColor=this.vennSetTextColor??this.textColor,this.quadrant1Fill=this.quadrant1Fill||this.primaryColor,this.quadrant2Fill=this.quadrant2Fill||w(this.primaryColor,{r:5,g:5,b:5}),this.quadrant3Fill=this.quadrant3Fill||w(this.primaryColor,{r:10,g:10,b:10}),this.quadrant4Fill=this.quadrant4Fill||w(this.primaryColor,{r:15,g:15,b:15}),this.quadrant1TextFill=this.quadrant1TextFill||this.primaryTextColor,this.quadrant2TextFill=this.quadrant2TextFill||w(this.primaryTextColor,{r:-5,g:-5,b:-5}),this.quadrant3TextFill=this.quadrant3TextFill||w(this.primaryTextColor,{r:-10,g:-10,b:-10}),this.quadrant4TextFill=this.quadrant4TextFill||w(this.primaryTextColor,{r:-15,g:-15,b:-15}),this.quadrantPointFill=this.quadrantPointFill||ti(this.quadrant1Fill)?q(this.quadrant1Fill):U(this.quadrant1Fill),this.quadrantPointTextFill=this.quadrantPointTextFill||this.primaryTextColor,this.quadrantXAxisTextFill=this.quadrantXAxisTextFill||this.primaryTextColor,this.quadrantYAxisTextFill=this.quadrantYAxisTextFill||this.primaryTextColor,this.quadrantInternalBorderStrokeFill=this.quadrantInternalBorderStrokeFill||this.primaryBorderColor,this.quadrantExternalBorderStrokeFill=this.quadrantExternalBorderStrokeFill||this.primaryBorderColor,this.quadrantTitleFill=this.quadrantTitleFill||this.primaryTextColor,this.packet={startByteColor:this.primaryTextColor,endByteColor:this.primaryTextColor,labelColor:this.primaryTextColor,titleColor:this.primaryTextColor,blockStrokeColor:this.primaryTextColor,blockFillColor:this.mainBkg},this.radar={axisColor:((t=this.radar)==null?void 0:t.axisColor)||this.lineColor,axisStrokeWidth:((r=this.radar)==null?void 0:r.axisStrokeWidth)||2,axisLabelFontSize:((i=this.radar)==null?void 0:i.axisLabelFontSize)||12,curveOpacity:((a=this.radar)==null?void 0:a.curveOpacity)||.5,curveStrokeWidth:((n=this.radar)==null?void 0:n.curveStrokeWidth)||2,graticuleColor:((o=this.radar)==null?void 0:o.graticuleColor)||"#DEDEDE",graticuleStrokeWidth:((s=this.radar)==null?void 0:s.graticuleStrokeWidth)||1,graticuleOpacity:((c=this.radar)==null?void 0:c.graticuleOpacity)||.3,legendBoxSize:((l=this.radar)==null?void 0:l.legendBoxSize)||12,legendFontSize:((h=this.radar)==null?void 0:h.legendFontSize)||12},this.xyChart={backgroundColor:((u=this.xyChart)==null?void 0:u.backgroundColor)||this.background,titleColor:((f=this.xyChart)==null?void 0:f.titleColor)||this.primaryTextColor,xAxisTitleColor:((d=this.xyChart)==null?void 0:d.xAxisTitleColor)||this.primaryTextColor,xAxisLabelColor:((g=this.xyChart)==null?void 0:g.xAxisLabelColor)||this.primaryTextColor,xAxisTickColor:((m=this.xyChart)==null?void 0:m.xAxisTickColor)||this.primaryTextColor,xAxisLineColor:((y=this.xyChart)==null?void 0:y.xAxisLineColor)||this.primaryTextColor,yAxisTitleColor:((x=this.xyChart)==null?void 0:x.yAxisTitleColor)||this.primaryTextColor,yAxisLabelColor:((b=this.xyChart)==null?void 0:b.yAxisLabelColor)||this.primaryTextColor,yAxisTickColor:((k=this.xyChart)==null?void 0:k.yAxisTickColor)||this.primaryTextColor,yAxisLineColor:((S=this.xyChart)==null?void 0:S.yAxisLineColor)||this.primaryTextColor,plotColorPalette:((v=this.xyChart)==null?void 0:v.plotColorPalette)||"#CDE498,#FF6B6B,#A0D2DB,#D7BDE2,#F0F0F0,#FFC3A0,#7FD8BE,#FF9A8B,#FAF3E0,#FFF176"},this.requirementBackground=this.requirementBackground||this.primaryColor,this.requirementBorderColor=this.requirementBorderColor||this.primaryBorderColor,this.requirementBorderSize=this.requirementBorderSize||"1",this.requirementTextColor=this.requirementTextColor||this.primaryTextColor,this.relationColor=this.relationColor||this.lineColor,this.relationLabelBackground=this.relationLabelBackground||this.edgeLabelBackground,this.relationLabelColor=this.relationLabelColor||this.actorTextColor,this.git0=this.git0||this.primaryColor,this.git1=this.git1||this.secondaryColor,this.git2=this.git2||this.tertiaryColor,this.git3=this.git3||w(this.primaryColor,{h:-30}),this.git4=this.git4||w(this.primaryColor,{h:-60}),this.git5=this.git5||w(this.primaryColor,{h:-90}),this.git6=this.git6||w(this.primaryColor,{h:60}),this.git7=this.git7||w(this.primaryColor,{h:120}),this.darkMode?(this.git0=q(this.git0,25),this.git1=q(this.git1,25),this.git2=q(this.git2,25),this.git3=q(this.git3,25),this.git4=q(this.git4,25),this.git5=q(this.git5,25),this.git6=q(this.git6,25),this.git7=q(this.git7,25)):(this.git0=U(this.git0,25),this.git1=U(this.git1,25),this.git2=U(this.git2,25),this.git3=U(this.git3,25),this.git4=U(this.git4,25),this.git5=U(this.git5,25),this.git6=U(this.git6,25),this.git7=U(this.git7,25)),this.gitInv0=this.gitInv0||R(this.git0),this.gitInv1=this.gitInv1||R(this.git1),this.gitInv2=this.gitInv2||R(this.git2),this.gitInv3=this.gitInv3||R(this.git3),this.gitInv4=this.gitInv4||R(this.git4),this.gitInv5=this.gitInv5||R(this.git5),this.gitInv6=this.gitInv6||R(this.git6),this.gitInv7=this.gitInv7||R(this.git7),this.gitBranchLabel0=this.gitBranchLabel0||R(this.labelTextColor),this.gitBranchLabel1=this.gitBranchLabel1||this.labelTextColor,this.gitBranchLabel2=this.gitBranchLabel2||this.labelTextColor,this.gitBranchLabel3=this.gitBranchLabel3||R(this.labelTextColor),this.gitBranchLabel4=this.gitBranchLabel4||this.labelTextColor,this.gitBranchLabel5=this.gitBranchLabel5||this.labelTextColor,this.gitBranchLabel6=this.gitBranchLabel6||this.labelTextColor,this.gitBranchLabel7=this.gitBranchLabel7||this.labelTextColor,this.tagLabelColor=this.tagLabelColor||this.primaryTextColor,this.tagLabelBackground=this.tagLabelBackground||this.primaryColor,this.tagLabelBorder=this.tagBorder||this.primaryBorderColor,this.tagLabelFontSize=this.tagLabelFontSize||"10px",this.commitLabelColor=this.commitLabelColor||this.secondaryTextColor,this.commitLabelBackground=this.commitLabelBackground||this.secondaryColor,this.commitLabelFontSize=this.commitLabelFontSize||"10px",this.attributeBackgroundColorOdd=this.attributeBackgroundColorOdd||fa,this.attributeBackgroundColorEven=this.attributeBackgroundColorEven||pa}calculate(t){if(typeof t!="object"){this.updateColors();return}const r=Object.keys(t);r.forEach(i=>{this[i]=t[i]}),this.updateColors(),r.forEach(i=>{this[i]=t[i]})}},p(rr,"Theme"),rr),Wp=p(e=>{const t=new qp;return t.calculate(e),t},"getThemeVariables"),ir,Hp=(ir=class{constructor(){this.primaryColor="#eee",this.contrast="#707070",this.secondaryColor=q(this.contrast,55),this.background="#ffffff",this.tertiaryColor=w(this.primaryColor,{h:-160}),this.primaryBorderColor=Et(this.primaryColor,this.darkMode),this.secondaryBorderColor=Et(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=Et(this.tertiaryColor,this.darkMode),this.primaryTextColor=R(this.primaryColor),this.secondaryTextColor=R(this.secondaryColor),this.tertiaryTextColor=R(this.tertiaryColor),this.lineColor=R(this.background),this.textColor=R(this.background),this.mainBkg="#eee",this.secondBkg="calculated",this.lineColor="#666",this.border1="#999",this.border2="calculated",this.note="#ffa",this.text="#333",this.critical="#d42",this.done="#bbb",this.arrowheadColor="#333333",this.fontFamily='"trebuchet ms", verdana, arial, sans-serif',this.fontSize="16px",this.THEME_COLOR_LIMIT=12,this.nodeBkg="calculated",this.nodeBorder="calculated",this.clusterBkg="calculated",this.clusterBorder="calculated",this.defaultLinkColor="calculated",this.titleColor="calculated",this.edgeLabelBackground="white",this.actorBorder="calculated",this.actorBkg="calculated",this.actorTextColor="calculated",this.actorLineColor=this.actorBorder,this.signalColor="calculated",this.signalTextColor="calculated",this.labelBoxBkgColor="calculated",this.labelBoxBorderColor="calculated",this.labelTextColor="calculated",this.loopTextColor="calculated",this.noteBorderColor="calculated",this.noteBkgColor="calculated",this.noteTextColor="calculated",this.activationBorderColor="#666",this.activationBkgColor="#f4f4f4",this.sequenceNumberColor="white",this.sectionBkgColor="calculated",this.altSectionBkgColor="white",this.sectionBkgColor2="calculated",this.excludeBkgColor="#eeeeee",this.taskBorderColor="calculated",this.taskBkgColor="calculated",this.taskTextLightColor="white",this.taskTextColor="calculated",this.taskTextDarkColor="calculated",this.taskTextOutsideColor="calculated",this.taskTextClickableColor="#003163",this.activeTaskBorderColor="calculated",this.activeTaskBkgColor="calculated",this.gridColor="calculated",this.doneTaskBkgColor="calculated",this.doneTaskBorderColor="calculated",this.critBkgColor="calculated",this.critBorderColor="calculated",this.todayLineColor="calculated",this.vertLineColor="calculated",this.personBorder=this.primaryBorderColor,this.personBkg=this.mainBkg,this.archEdgeColor="calculated",this.archEdgeArrowColor="calculated",this.archEdgeWidth="3",this.archGroupBorderColor=this.primaryBorderColor,this.archGroupBorderWidth="2px",this.rowOdd=this.rowOdd||q(this.mainBkg,75)||"#ffffff",this.rowEven=this.rowEven||"#f4f4f4",this.labelColor="black",this.errorBkgColor="#552222",this.errorTextColor="#552222"}updateColors(){var t,r,i,a,n,o,s,c,l,h,u,f,d,g,m,y,x,b,k,S,v;this.secondBkg=q(this.contrast,55),this.border2=this.contrast,this.actorBorder=q(this.border1,23),this.actorBkg=this.mainBkg,this.actorTextColor=this.text,this.actorLineColor=this.actorBorder,this.signalColor=this.text,this.signalTextColor=this.text,this.labelBoxBkgColor=this.actorBkg,this.labelBoxBorderColor=this.actorBorder,this.labelTextColor=this.text,this.loopTextColor=this.text,this.noteBorderColor="#999",this.noteBkgColor="#666",this.noteTextColor="#fff",this.cScale0=this.cScale0||"#555",this.cScale1=this.cScale1||"#F4F4F4",this.cScale2=this.cScale2||"#555",this.cScale3=this.cScale3||"#BBB",this.cScale4=this.cScale4||"#777",this.cScale5=this.cScale5||"#999",this.cScale6=this.cScale6||"#DDD",this.cScale7=this.cScale7||"#FFF",this.cScale8=this.cScale8||"#DDD",this.cScale9=this.cScale9||"#BBB",this.cScale10=this.cScale10||"#999",this.cScale11=this.cScale11||"#777";for(let C=0;C<this.THEME_COLOR_LIMIT;C++)this["cScaleInv"+C]=this["cScaleInv"+C]||R(this["cScale"+C]);for(let C=0;C<this.THEME_COLOR_LIMIT;C++)this.darkMode?this["cScalePeer"+C]=this["cScalePeer"+C]||q(this["cScale"+C],10):this["cScalePeer"+C]=this["cScalePeer"+C]||U(this["cScale"+C],10);this.scaleLabelColor=this.scaleLabelColor||(this.darkMode?"black":this.labelTextColor),this.cScaleLabel0=this.cScaleLabel0||this.cScale1,this.cScaleLabel2=this.cScaleLabel2||this.cScale1;for(let C=0;C<this.THEME_COLOR_LIMIT;C++)this["cScaleLabel"+C]=this["cScaleLabel"+C]||this.scaleLabelColor;for(let C=0;C<5;C++)this["surface"+C]=this["surface"+C]||w(this.mainBkg,{l:-(5+C*5)}),this["surfacePeer"+C]=this["surfacePeer"+C]||w(this.mainBkg,{l:-(8+C*5)});this.nodeBkg=this.mainBkg,this.nodeBorder=this.border1,this.clusterBkg=this.secondBkg,this.clusterBorder=this.border2,this.defaultLinkColor=this.lineColor,this.titleColor=this.text,this.sectionBkgColor=q(this.contrast,30),this.sectionBkgColor2=q(this.contrast,30),this.taskBorderColor=U(this.contrast,10),this.taskBkgColor=this.contrast,this.taskTextColor=this.taskTextLightColor,this.taskTextDarkColor=this.text,this.taskTextOutsideColor=this.taskTextDarkColor,this.activeTaskBorderColor=this.taskBorderColor,this.activeTaskBkgColor=this.mainBkg,this.gridColor=q(this.border1,30),this.doneTaskBkgColor=this.done,this.doneTaskBorderColor=this.lineColor,this.critBkgColor=this.critical,this.critBorderColor=U(this.critBkgColor,10),this.todayLineColor=this.critBkgColor,this.vertLineColor=this.critBkgColor,this.archEdgeColor=this.lineColor,this.archEdgeArrowColor=this.lineColor,this.transitionColor=this.transitionColor||"#000",this.transitionLabelColor=this.transitionLabelColor||this.textColor,this.stateLabelColor=this.stateLabelColor||this.stateBkg||this.primaryTextColor,this.stateBkg=this.stateBkg||this.mainBkg,this.labelBackgroundColor=this.labelBackgroundColor||this.stateBkg,this.compositeBackground=this.compositeBackground||this.background||this.tertiaryColor,this.altBackground=this.altBackground||"#f4f4f4",this.compositeTitleBackground=this.compositeTitleBackground||this.mainBkg,this.stateBorder=this.stateBorder||"#000",this.innerEndBackground=this.primaryBorderColor,this.specialStateColor="#222",this.errorBkgColor=this.errorBkgColor||this.tertiaryColor,this.errorTextColor=this.errorTextColor||this.tertiaryTextColor,this.classText=this.primaryTextColor,this.fillType0=this.primaryColor,this.fillType1=this.secondaryColor,this.fillType2=w(this.primaryColor,{h:64}),this.fillType3=w(this.secondaryColor,{h:64}),this.fillType4=w(this.primaryColor,{h:-64}),this.fillType5=w(this.secondaryColor,{h:-64}),this.fillType6=w(this.primaryColor,{h:128}),this.fillType7=w(this.secondaryColor,{h:128});for(let C=0;C<this.THEME_COLOR_LIMIT;C++)this["pie"+C]=this["cScale"+C];this.pie12=this.pie0,this.pieTitleTextSize=this.pieTitleTextSize||"25px",this.pieTitleTextColor=this.pieTitleTextColor||this.taskTextDarkColor,this.pieSectionTextSize=this.pieSectionTextSize||"17px",this.pieSectionTextColor=this.pieSectionTextColor||this.textColor,this.pieLegendTextSize=this.pieLegendTextSize||"17px",this.pieLegendTextColor=this.pieLegendTextColor||this.taskTextDarkColor,this.pieStrokeColor=this.pieStrokeColor||"black",this.pieStrokeWidth=this.pieStrokeWidth||"2px",this.pieOuterStrokeWidth=this.pieOuterStrokeWidth||"2px",this.pieOuterStrokeColor=this.pieOuterStrokeColor||"black",this.pieOpacity=this.pieOpacity||"0.7";for(let C=0;C<8;C++)this["venn"+(C+1)]=this["venn"+(C+1)]??this["cScale"+C];this.vennTitleTextColor=this.vennTitleTextColor??this.titleColor,this.vennSetTextColor=this.vennSetTextColor??this.textColor,this.quadrant1Fill=this.quadrant1Fill||this.primaryColor,this.quadrant2Fill=this.quadrant2Fill||w(this.primaryColor,{r:5,g:5,b:5}),this.quadrant3Fill=this.quadrant3Fill||w(this.primaryColor,{r:10,g:10,b:10}),this.quadrant4Fill=this.quadrant4Fill||w(this.primaryColor,{r:15,g:15,b:15}),this.quadrant1TextFill=this.quadrant1TextFill||this.primaryTextColor,this.quadrant2TextFill=this.quadrant2TextFill||w(this.primaryTextColor,{r:-5,g:-5,b:-5}),this.quadrant3TextFill=this.quadrant3TextFill||w(this.primaryTextColor,{r:-10,g:-10,b:-10}),this.quadrant4TextFill=this.quadrant4TextFill||w(this.primaryTextColor,{r:-15,g:-15,b:-15}),this.quadrantPointFill=this.quadrantPointFill||ti(this.quadrant1Fill)?q(this.quadrant1Fill):U(this.quadrant1Fill),this.quadrantPointTextFill=this.quadrantPointTextFill||this.primaryTextColor,this.quadrantXAxisTextFill=this.quadrantXAxisTextFill||this.primaryTextColor,this.quadrantYAxisTextFill=this.quadrantYAxisTextFill||this.primaryTextColor,this.quadrantInternalBorderStrokeFill=this.quadrantInternalBorderStrokeFill||this.primaryBorderColor,this.quadrantExternalBorderStrokeFill=this.quadrantExternalBorderStrokeFill||this.primaryBorderColor,this.quadrantTitleFill=this.quadrantTitleFill||this.primaryTextColor,this.xyChart={backgroundColor:((t=this.xyChart)==null?void 0:t.backgroundColor)||this.background,titleColor:((r=this.xyChart)==null?void 0:r.titleColor)||this.primaryTextColor,xAxisTitleColor:((i=this.xyChart)==null?void 0:i.xAxisTitleColor)||this.primaryTextColor,xAxisLabelColor:((a=this.xyChart)==null?void 0:a.xAxisLabelColor)||this.primaryTextColor,xAxisTickColor:((n=this.xyChart)==null?void 0:n.xAxisTickColor)||this.primaryTextColor,xAxisLineColor:((o=this.xyChart)==null?void 0:o.xAxisLineColor)||this.primaryTextColor,yAxisTitleColor:((s=this.xyChart)==null?void 0:s.yAxisTitleColor)||this.primaryTextColor,yAxisLabelColor:((c=this.xyChart)==null?void 0:c.yAxisLabelColor)||this.primaryTextColor,yAxisTickColor:((l=this.xyChart)==null?void 0:l.yAxisTickColor)||this.primaryTextColor,yAxisLineColor:((h=this.xyChart)==null?void 0:h.yAxisLineColor)||this.primaryTextColor,plotColorPalette:((u=this.xyChart)==null?void 0:u.plotColorPalette)||"#EEE,#6BB8E4,#8ACB88,#C7ACD6,#E8DCC2,#FFB2A8,#FFF380,#7E8D91,#FFD8B1,#FAF3E0"},this.radar={axisColor:((f=this.radar)==null?void 0:f.axisColor)||this.lineColor,axisStrokeWidth:((d=this.radar)==null?void 0:d.axisStrokeWidth)||2,axisLabelFontSize:((g=this.radar)==null?void 0:g.axisLabelFontSize)||12,curveOpacity:((m=this.radar)==null?void 0:m.curveOpacity)||.5,curveStrokeWidth:((y=this.radar)==null?void 0:y.curveStrokeWidth)||2,graticuleColor:((x=this.radar)==null?void 0:x.graticuleColor)||"#DEDEDE",graticuleStrokeWidth:((b=this.radar)==null?void 0:b.graticuleStrokeWidth)||1,graticuleOpacity:((k=this.radar)==null?void 0:k.graticuleOpacity)||.3,legendBoxSize:((S=this.radar)==null?void 0:S.legendBoxSize)||12,legendFontSize:((v=this.radar)==null?void 0:v.legendFontSize)||12},this.requirementBackground=this.requirementBackground||this.primaryColor,this.requirementBorderColor=this.requirementBorderColor||this.primaryBorderColor,this.requirementBorderSize=this.requirementBorderSize||"1",this.requirementTextColor=this.requirementTextColor||this.primaryTextColor,this.relationColor=this.relationColor||this.lineColor,this.relationLabelBackground=this.relationLabelBackground||this.edgeLabelBackground,this.relationLabelColor=this.relationLabelColor||this.actorTextColor,this.git0=U(this.pie1,25)||this.primaryColor,this.git1=this.pie2||this.secondaryColor,this.git2=this.pie3||this.tertiaryColor,this.git3=this.pie4||w(this.primaryColor,{h:-30}),this.git4=this.pie5||w(this.primaryColor,{h:-60}),this.git5=this.pie6||w(this.primaryColor,{h:-90}),this.git6=this.pie7||w(this.primaryColor,{h:60}),this.git7=this.pie8||w(this.primaryColor,{h:120}),this.gitInv0=this.gitInv0||R(this.git0),this.gitInv1=this.gitInv1||R(this.git1),this.gitInv2=this.gitInv2||R(this.git2),this.gitInv3=this.gitInv3||R(this.git3),this.gitInv4=this.gitInv4||R(this.git4),this.gitInv5=this.gitInv5||R(this.git5),this.gitInv6=this.gitInv6||R(this.git6),this.gitInv7=this.gitInv7||R(this.git7),this.branchLabelColor=this.branchLabelColor||this.labelTextColor,this.gitBranchLabel0=this.branchLabelColor,this.gitBranchLabel1="white",this.gitBranchLabel2=this.branchLabelColor,this.gitBranchLabel3="white",this.gitBranchLabel4=this.branchLabelColor,this.gitBranchLabel5=this.branchLabelColor,this.gitBranchLabel6=this.branchLabelColor,this.gitBranchLabel7=this.branchLabelColor,this.tagLabelColor=this.tagLabelColor||this.primaryTextColor,this.tagLabelBackground=this.tagLabelBackground||this.primaryColor,this.tagLabelBorder=this.tagBorder||this.primaryBorderColor,this.tagLabelFontSize=this.tagLabelFontSize||"10px",this.commitLabelColor=this.commitLabelColor||this.secondaryTextColor,this.commitLabelBackground=this.commitLabelBackground||this.secondaryColor,this.commitLabelFontSize=this.commitLabelFontSize||"10px",this.attributeBackgroundColorOdd=this.attributeBackgroundColorOdd||fa,this.attributeBackgroundColorEven=this.attributeBackgroundColorEven||pa}calculate(t){if(typeof t!="object"){this.updateColors();return}const r=Object.keys(t);r.forEach(i=>{this[i]=t[i]}),this.updateColors(),r.forEach(i=>{this[i]=t[i]})}},p(ir,"Theme"),ir),jp=p(e=>{const t=new Hp;return t.calculate(e),t},"getThemeVariables"),ce={base:{getThemeVariables:Ip},dark:{getThemeVariables:Pp},default:{getThemeVariables:zp},forest:{getThemeVariables:Wp},neutral:{getThemeVariables:jp}},Ht={flowchart:{useMaxWidth:!0,titleTopMargin:25,subGraphTitleMargin:{top:0,bottom:0},diagramPadding:8,htmlLabels:null,nodeSpacing:50,rankSpacing:50,curve:"basis",padding:15,defaultRenderer:"dagre-wrapper",wrappingWidth:200,inheritDir:!1},sequence:{useMaxWidth:!0,hideUnusedParticipants:!1,activationWidth:10,diagramMarginX:50,diagramMarginY:10,actorMargin:50,width:150,height:65,boxMargin:10,boxTextMargin:5,noteMargin:10,messageMargin:35,messageAlign:"center",mirrorActors:!0,forceMenus:!1,bottomMarginAdj:1,rightAngles:!1,showSequenceNumbers:!1,actorFontSize:14,actorFontFamily:'"Open Sans", sans-serif',actorFontWeight:400,noteFontSize:14,noteFontFamily:'"trebuchet ms", verdana, arial, sans-serif',noteFontWeight:400,noteAlign:"center",messageFontSize:16,messageFontFamily:'"trebuchet ms", verdana, arial, sans-serif',messageFontWeight:400,wrap:!1,wrapPadding:10,labelBoxWidth:50,labelBoxHeight:20},gantt:{useMaxWidth:!0,titleTopMargin:25,barHeight:20,barGap:4,topPadding:50,rightPadding:75,leftPadding:75,gridLineStartPadding:35,fontSize:11,sectionFontSize:11,numberSectionStyles:4,axisFormat:"%Y-%m-%d",topAxis:!1,displayMode:"",weekday:"sunday"},journey:{useMaxWidth:!0,diagramMarginX:50,diagramMarginY:10,leftMargin:150,maxLabelWidth:360,width:150,height:50,boxMargin:10,boxTextMargin:5,noteMargin:10,messageMargin:35,messageAlign:"center",bottomMarginAdj:1,rightAngles:!1,taskFontSize:14,taskFontFamily:'"Open Sans", sans-serif',taskMargin:50,activationWidth:10,textPlacement:"fo",actorColours:["#8FBC8F","#7CFC00","#00FFFF","#20B2AA","#B0E0E6","#FFFFE0"],sectionFills:["#191970","#8B008B","#4B0082","#2F4F4F","#800000","#8B4513","#00008B"],sectionColours:["#fff"],titleColor:"",titleFontFamily:'"trebuchet ms", verdana, arial, sans-serif',titleFontSize:"4ex"},class:{useMaxWidth:!0,titleTopMargin:25,arrowMarkerAbsolute:!1,dividerMargin:10,padding:5,textHeight:10,defaultRenderer:"dagre-wrapper",htmlLabels:!1,hideEmptyMembersBox:!1},state:{useMaxWidth:!0,titleTopMargin:25,dividerMargin:10,sizeUnit:5,padding:8,textHeight:10,titleShift:-15,noteMargin:10,forkWidth:70,forkHeight:7,miniPadding:2,fontSizeFactor:5.02,fontSize:24,labelHeight:16,edgeLengthFactor:"20",compositTitleSize:35,radius:5,defaultRenderer:"dagre-wrapper"},er:{useMaxWidth:!0,titleTopMargin:25,diagramPadding:20,layoutDirection:"TB",minEntityWidth:100,minEntityHeight:75,entityPadding:15,nodeSpacing:140,rankSpacing:80,stroke:"gray",fill:"honeydew",fontSize:12},pie:{useMaxWidth:!0,textPosition:.75},quadrantChart:{useMaxWidth:!0,chartWidth:500,chartHeight:500,titleFontSize:20,titlePadding:10,quadrantPadding:5,xAxisLabelPadding:5,yAxisLabelPadding:5,xAxisLabelFontSize:16,yAxisLabelFontSize:16,quadrantLabelFontSize:16,quadrantTextTopPadding:5,pointTextPadding:5,pointLabelFontSize:12,pointRadius:5,xAxisPosition:"top",yAxisPosition:"left",quadrantInternalBorderStrokeWidth:1,quadrantExternalBorderStrokeWidth:2},xyChart:{useMaxWidth:!0,width:700,height:500,titleFontSize:20,titlePadding:10,showDataLabel:!1,showTitle:!0,xAxis:{$ref:"#/$defs/XYChartAxisConfig",showLabel:!0,labelFontSize:14,labelPadding:5,showTitle:!0,titleFontSize:16,titlePadding:5,showTick:!0,tickLength:5,tickWidth:2,showAxisLine:!0,axisLineWidth:2},yAxis:{$ref:"#/$defs/XYChartAxisConfig",showLabel:!0,labelFontSize:14,labelPadding:5,showTitle:!0,titleFontSize:16,titlePadding:5,showTick:!0,tickLength:5,tickWidth:2,showAxisLine:!0,axisLineWidth:2},chartOrientation:"vertical",plotReservedSpacePercent:50},requirement:{useMaxWidth:!0,rect_fill:"#f9f9f9",text_color:"#333",rect_border_size:"0.5px",rect_border_color:"#bbb",rect_min_width:200,rect_min_height:200,fontSize:14,rect_padding:10,line_height:20},mindmap:{useMaxWidth:!0,padding:10,maxNodeWidth:200,layoutAlgorithm:"cose-bilkent"},ishikawa:{useMaxWidth:!0,diagramPadding:20},kanban:{useMaxWidth:!0,padding:8,sectionWidth:200,ticketBaseUrl:""},timeline:{useMaxWidth:!0,diagramMarginX:50,diagramMarginY:10,leftMargin:150,width:150,height:50,boxMargin:10,boxTextMargin:5,noteMargin:10,messageMargin:35,messageAlign:"center",bottomMarginAdj:1,rightAngles:!1,taskFontSize:14,taskFontFamily:'"Open Sans", sans-serif',taskMargin:50,activationWidth:10,textPlacement:"fo",actorColours:["#8FBC8F","#7CFC00","#00FFFF","#20B2AA","#B0E0E6","#FFFFE0"],sectionFills:["#191970","#8B008B","#4B0082","#2F4F4F","#800000","#8B4513","#00008B"],sectionColours:["#fff"],disableMulticolor:!1},gitGraph:{useMaxWidth:!0,titleTopMargin:25,diagramPadding:8,nodeLabel:{width:75,height:100,x:-25,y:0},mainBranchName:"main",mainBranchOrder:0,showCommitLabel:!0,showBranches:!0,rotateCommitLabel:!0,parallelCommits:!1,arrowMarkerAbsolute:!1},c4:{useMaxWidth:!0,diagramMarginX:50,diagramMarginY:10,c4ShapeMargin:50,c4ShapePadding:20,width:216,height:60,boxMargin:10,c4ShapeInRow:4,nextLinePaddingX:0,c4BoundaryInRow:2,personFontSize:14,personFontFamily:'"Open Sans", sans-serif',personFontWeight:"normal",external_personFontSize:14,external_personFontFamily:'"Open Sans", sans-serif',external_personFontWeight:"normal",systemFontSize:14,systemFontFamily:'"Open Sans", sans-serif',systemFontWeight:"normal",external_systemFontSize:14,external_systemFontFamily:'"Open Sans", sans-serif',external_systemFontWeight:"normal",system_dbFontSize:14,system_dbFontFamily:'"Open Sans", sans-serif',system_dbFontWeight:"normal",external_system_dbFontSize:14,external_system_dbFontFamily:'"Open Sans", sans-serif',external_system_dbFontWeight:"normal",system_queueFontSize:14,system_queueFontFamily:'"Open Sans", sans-serif',system_queueFontWeight:"normal",external_system_queueFontSize:14,external_system_queueFontFamily:'"Open Sans", sans-serif',external_system_queueFontWeight:"normal",boundaryFontSize:14,boundaryFontFamily:'"Open Sans", sans-serif',boundaryFontWeight:"normal",messageFontSize:12,messageFontFamily:'"Open Sans", sans-serif',messageFontWeight:"normal",containerFontSize:14,containerFontFamily:'"Open Sans", sans-serif',containerFontWeight:"normal",external_containerFontSize:14,external_containerFontFamily:'"Open Sans", sans-serif',external_containerFontWeight:"normal",container_dbFontSize:14,container_dbFontFamily:'"Open Sans", sans-serif',container_dbFontWeight:"normal",external_container_dbFontSize:14,external_container_dbFontFamily:'"Open Sans", sans-serif',external_container_dbFontWeight:"normal",container_queueFontSize:14,container_queueFontFamily:'"Open Sans", sans-serif',container_queueFontWeight:"normal",external_container_queueFontSize:14,external_container_queueFontFamily:'"Open Sans", sans-serif',external_container_queueFontWeight:"normal",componentFontSize:14,componentFontFamily:'"Open Sans", sans-serif',componentFontWeight:"normal",external_componentFontSize:14,external_componentFontFamily:'"Open Sans", sans-serif',external_componentFontWeight:"normal",component_dbFontSize:14,component_dbFontFamily:'"Open Sans", sans-serif',component_dbFontWeight:"normal",external_component_dbFontSize:14,external_component_dbFontFamily:'"Open Sans", sans-serif',external_component_dbFontWeight:"normal",component_queueFontSize:14,component_queueFontFamily:'"Open Sans", sans-serif',component_queueFontWeight:"normal",external_component_queueFontSize:14,external_component_queueFontFamily:'"Open Sans", sans-serif',external_component_queueFontWeight:"normal",wrap:!0,wrapPadding:10,person_bg_color:"#08427B",person_border_color:"#073B6F",external_person_bg_color:"#686868",external_person_border_color:"#8A8A8A",system_bg_color:"#1168BD",system_border_color:"#3C7FC0",system_db_bg_color:"#1168BD",system_db_border_color:"#3C7FC0",system_queue_bg_color:"#1168BD",system_queue_border_color:"#3C7FC0",external_system_bg_color:"#999999",external_system_border_color:"#8A8A8A",external_system_db_bg_color:"#999999",external_system_db_border_color:"#8A8A8A",external_system_queue_bg_color:"#999999",external_system_queue_border_color:"#8A8A8A",container_bg_color:"#438DD5",container_border_color:"#3C7FC0",container_db_bg_color:"#438DD5",container_db_border_color:"#3C7FC0",container_queue_bg_color:"#438DD5",container_queue_border_color:"#3C7FC0",external_container_bg_color:"#B3B3B3",external_container_border_color:"#A6A6A6",external_container_db_bg_color:"#B3B3B3",external_container_db_border_color:"#A6A6A6",external_container_queue_bg_color:"#B3B3B3",external_container_queue_border_color:"#A6A6A6",component_bg_color:"#85BBF0",component_border_color:"#78A8D8",component_db_bg_color:"#85BBF0",component_db_border_color:"#78A8D8",component_queue_bg_color:"#85BBF0",component_queue_border_color:"#78A8D8",external_component_bg_color:"#CCCCCC",external_component_border_color:"#BFBFBF",external_component_db_bg_color:"#CCCCCC",external_component_db_border_color:"#BFBFBF",external_component_queue_bg_color:"#CCCCCC",external_component_queue_border_color:"#BFBFBF"},sankey:{useMaxWidth:!0,width:600,height:400,linkColor:"gradient",nodeAlignment:"justify",showValues:!0,prefix:"",suffix:""},block:{useMaxWidth:!0,padding:8},packet:{useMaxWidth:!0,rowHeight:32,bitWidth:32,bitsPerRow:32,showBits:!0,paddingX:5,paddingY:5},architecture:{useMaxWidth:!0,padding:40,iconSize:80,fontSize:16},radar:{useMaxWidth:!0,width:600,height:600,marginTop:50,marginRight:50,marginBottom:50,marginLeft:50,axisScaleFactor:1,axisLabelFactor:1.05,curveTension:.17},venn:{useMaxWidth:!0,width:800,height:450,padding:8,useDebugLayout:!1},theme:"default",look:"classic",handDrawnSeed:0,layout:"dagre",maxTextSize:5e4,maxEdges:500,darkMode:!1,fontFamily:'"trebuchet ms", verdana, arial, sans-serif;',logLevel:5,securityLevel:"strict",startOnLoad:!0,arrowMarkerAbsolute:!1,secure:["secure","securityLevel","startOnLoad","maxTextSize","suppressErrorRendering","maxEdges"],legacyMathML:!1,forceLegacyMathML:!1,deterministicIds:!1,fontSize:16,markdownAutoWrap:!0,suppressErrorRendering:!1},Cl={...Ht,deterministicIDSeed:void 0,elk:{mergeEdges:!1,nodePlacementStrategy:"BRANDES_KOEPF",forceNodeModelOrder:!1,considerModelOrder:"NODES_AND_EDGES"},themeCSS:void 0,themeVariables:ce.default.getThemeVariables(),sequence:{...Ht.sequence,messageFont:p(function(){return{fontFamily:this.messageFontFamily,fontSize:this.messageFontSize,fontWeight:this.messageFontWeight}},"messageFont"),noteFont:p(function(){return{fontFamily:this.noteFontFamily,fontSize:this.noteFontSize,fontWeight:this.noteFontWeight}},"noteFont"),actorFont:p(function(){return{fontFamily:this.actorFontFamily,fontSize:this.actorFontSize,fontWeight:this.actorFontWeight}},"actorFont")},class:{hideEmptyMembersBox:!1},gantt:{...Ht.gantt,tickInterval:void 0,useWidth:void 0},c4:{...Ht.c4,useWidth:void 0,personFont:p(function(){return{fontFamily:this.personFontFamily,fontSize:this.personFontSize,fontWeight:this.personFontWeight}},"personFont"),flowchart:{...Ht.flowchart,inheritDir:!1},external_personFont:p(function(){return{fontFamily:this.external_personFontFamily,fontSize:this.external_personFontSize,fontWeight:this.external_personFontWeight}},"external_personFont"),systemFont:p(function(){return{fontFamily:this.systemFontFamily,fontSize:this.systemFontSize,fontWeight:this.systemFontWeight}},"systemFont"),external_systemFont:p(function(){return{fontFamily:this.external_systemFontFamily,fontSize:this.external_systemFontSize,fontWeight:this.external_systemFontWeight}},"external_systemFont"),system_dbFont:p(function(){return{fontFamily:this.system_dbFontFamily,fontSize:this.system_dbFontSize,fontWeight:this.system_dbFontWeight}},"system_dbFont"),external_system_dbFont:p(function(){return{fontFamily:this.external_system_dbFontFamily,fontSize:this.external_system_dbFontSize,fontWeight:this.external_system_dbFontWeight}},"external_system_dbFont"),system_queueFont:p(function(){return{fontFamily:this.system_queueFontFamily,fontSize:this.system_queueFontSize,fontWeight:this.system_queueFontWeight}},"system_queueFont"),external_system_queueFont:p(function(){return{fontFamily:this.external_system_queueFontFamily,fontSize:this.external_system_queueFontSize,fontWeight:this.external_system_queueFontWeight}},"external_system_queueFont"),containerFont:p(function(){return{fontFamily:this.containerFontFamily,fontSize:this.containerFontSize,fontWeight:this.containerFontWeight}},"containerFont"),external_containerFont:p(function(){return{fontFamily:this.external_containerFontFamily,fontSize:this.external_containerFontSize,fontWeight:this.external_containerFontWeight}},"external_containerFont"),container_dbFont:p(function(){return{fontFamily:this.container_dbFontFamily,fontSize:this.container_dbFontSize,fontWeight:this.container_dbFontWeight}},"container_dbFont"),external_container_dbFont:p(function(){return{fontFamily:this.external_container_dbFontFamily,fontSize:this.external_container_dbFontSize,fontWeight:this.external_container_dbFontWeight}},"external_container_dbFont"),container_queueFont:p(function(){return{fontFamily:this.container_queueFontFamily,fontSize:this.container_queueFontSize,fontWeight:this.container_queueFontWeight}},"container_queueFont"),external_container_queueFont:p(function(){return{fontFamily:this.external_container_queueFontFamily,fontSize:this.external_container_queueFontSize,fontWeight:this.external_container_queueFontWeight}},"external_container_queueFont"),componentFont:p(function(){return{fontFamily:this.componentFontFamily,fontSize:this.componentFontSize,fontWeight:this.componentFontWeight}},"componentFont"),external_componentFont:p(function(){return{fontFamily:this.external_componentFontFamily,fontSize:this.external_componentFontSize,fontWeight:this.external_componentFontWeight}},"external_componentFont"),component_dbFont:p(function(){return{fontFamily:this.component_dbFontFamily,fontSize:this.component_dbFontSize,fontWeight:this.component_dbFontWeight}},"component_dbFont"),external_component_dbFont:p(function(){return{fontFamily:this.external_component_dbFontFamily,fontSize:this.external_component_dbFontSize,fontWeight:this.external_component_dbFontWeight}},"external_component_dbFont"),component_queueFont:p(function(){return{fontFamily:this.component_queueFontFamily,fontSize:this.component_queueFontSize,fontWeight:this.component_queueFontWeight}},"component_queueFont"),external_component_queueFont:p(function(){return{fontFamily:this.external_component_queueFontFamily,fontSize:this.external_component_queueFontSize,fontWeight:this.external_component_queueFontWeight}},"external_component_queueFont"),boundaryFont:p(function(){return{fontFamily:this.boundaryFontFamily,fontSize:this.boundaryFontSize,fontWeight:this.boundaryFontWeight}},"boundaryFont"),messageFont:p(function(){return{fontFamily:this.messageFontFamily,fontSize:this.messageFontSize,fontWeight:this.messageFontWeight}},"messageFont")},pie:{...Ht.pie,useWidth:984},xyChart:{...Ht.xyChart,useWidth:void 0},requirement:{...Ht.requirement,useWidth:void 0},packet:{...Ht.packet},radar:{...Ht.radar},ishikawa:{...Ht.ishikawa},treemap:{useMaxWidth:!0,padding:10,diagramPadding:8,showValues:!0,nodeWidth:100,nodeHeight:40,borderWidth:1,valueFontSize:12,labelFontSize:14,valueFormat:","},venn:{...Ht.venn}},kl=p((e,t="")=>Object.keys(e).reduce((r,i)=>Array.isArray(e[i])?r:typeof e[i]=="object"&&e[i]!==null?[...r,t+i,...kl(e[i],"")]:[...r,t+i],[]),"keyify"),Yp=new Set(kl(Cl,"")),wl=Cl,Oi=p(e=>{if(E.debug("sanitizeDirective called with",e),!(typeof e!="object"||e==null)){if(Array.isArray(e)){e.forEach(t=>Oi(t));return}for(const t of Object.keys(e)){if(E.debug("Checking key",t),t.startsWith("__")||t.includes("proto")||t.includes("constr")||!Yp.has(t)||e[t]==null){E.debug("sanitize deleting key: ",t),delete e[t];continue}if(typeof e[t]=="object"){E.debug("sanitizing object",t),Oi(e[t]);continue}const r=["themeCSS","fontFamily","altFontFamily"];for(const i of r)t.includes(i)&&(E.debug("sanitizing css option",t),e[t]=Vp(e[t]))}if(e.themeVariables)for(const t of Object.keys(e.themeVariables)){const r=e.themeVariables[t];r!=null&&r.match&&!r.match(/^[\d "#%(),.;A-Za-z]+$/)&&(e.themeVariables[t]="")}E.debug("After sanitization",e)}},"sanitizeDirective"),Vp=p(e=>{let t=0,r=0;for(const i of e){if(t<r)return"{ /* ERROR: Unbalanced CSS */ }";i==="{"?t++:i==="}"&&r++}return t!==r?"{ /* ERROR: Unbalanced CSS */ }":e},"sanitizeCss"),or=Object.freeze(wl),_e=p(e=>!(e===!1||["false","null","0"].includes(String(e).trim().toLowerCase())),"evaluate"),Rt=kt({},or),Ii,Ie=[],zr=kt({},or),ga=p((e,t)=>{let r=kt({},e),i={};for(const a of t)Sl(a),i=kt(i,a);if(r=kt(r,i),i.theme&&i.theme in ce){const a=kt({},Ii),n=kt(a.themeVariables||{},i.themeVariables);r.theme&&r.theme in ce&&(r.themeVariables=ce[r.theme].getThemeVariables(n))}return zr=r,Bl(zr),zr},"updateCurrentConfig"),Gp=p(e=>(Rt=kt({},or),Rt=kt(Rt,e),e.theme&&ce[e.theme]&&(Rt.themeVariables=ce[e.theme].getThemeVariables(e.themeVariables)),ga(Rt,Ie),Rt),"setSiteConfig"),Up=p(e=>{Ii=kt({},e)},"saveConfigFromInitialize"),Xp=p(e=>(Rt=kt(Rt,e),ga(Rt,Ie),Rt),"updateSiteConfig"),vl=p(()=>kt({},Rt),"getSiteConfig"),_l=p(e=>(Bl(e),kt(zr,e),Lt()),"setConfig"),Lt=p(()=>kt({},zr),"getConfig"),Sl=p(e=>{e&&(["secure",...Rt.secure??[]].forEach(t=>{Object.hasOwn(e,t)&&(E.debug(`Denied attempt to modify a secure key ${t}`,e[t]),delete e[t])}),Object.keys(e).forEach(t=>{t.startsWith("__")&&delete e[t]}),Object.keys(e).forEach(t=>{typeof e[t]=="string"&&(e[t].includes("<")||e[t].includes(">")||e[t].includes("url(data:"))&&delete e[t],typeof e[t]=="object"&&Sl(e[t])}))},"sanitize"),Zp=p(e=>{var t;Oi(e),e.fontFamily&&!((t=e.themeVariables)!=null&&t.fontFamily)&&(e.themeVariables={...e.themeVariables,fontFamily:e.fontFamily}),Ie.push(e),ga(Rt,Ie)},"addDirective"),Ri=p((e=Rt)=>{Ie=[],ga(e,Ie)},"reset"),Kp={LAZY_LOAD_DEPRECATED:"The configuration options lazyLoadedDiagrams and loadExternalDiagramsAtStartup are deprecated. Please use registerExternalDiagrams instead.",FLOWCHART_HTML_LABELS_DEPRECATED:"flowchart.htmlLabels is deprecated. Please use global htmlLabels instead."},Vs={},Tl=p(e=>{Vs[e]||(E.warn(Kp[e]),Vs[e]=!0)},"issueWarning"),Bl=p(e=>{e&&(e.lazyLoadedDiagrams||e.loadExternalDiagramsAtStartup)&&Tl("LAZY_LOAD_DEPRECATED")},"checkConfig"),$S=p(()=>{let e={};Ii&&(e=kt(e,Ii));for(const t of Ie)e=kt(e,t);return e},"getUserDefinedConfig"),At=p(e=>{var t,r;return((t=e.flowchart)==null?void 0:t.htmlLabels)!=null&&Tl("FLOWCHART_HTML_LABELS_DEPRECATED"),_e(e.htmlLabels??((r=e.flowchart)==null?void 0:r.htmlLabels)??!0)},"getEffectiveHtmlLabels"),ei=/<br\s*\/?>/gi,Qp=p(e=>e?$l(e).replace(/\\n/g,"#br#").split("#br#"):[""],"getRows"),Jp=(()=>{let e=!1;return()=>{e||(Ll(),e=!0)}})();function Ll(){const e="data-temp-href-target";sr.addHook("beforeSanitizeAttributes",t=>{t.tagName==="A"&&t.hasAttribute("target")&&t.setAttribute(e,t.getAttribute("target")??"")}),sr.addHook("afterSanitizeAttributes",t=>{t.tagName==="A"&&t.hasAttribute(e)&&(t.setAttribute("target",t.getAttribute(e)??""),t.removeAttribute(e),t.getAttribute("target")==="_blank"&&t.setAttribute("rel","noopener"))})}p(Ll,"setupDompurifyHooks");var Ml=p(e=>(Jp(),sr.sanitize(e)),"removeScript"),Gs=p((e,t)=>{if(At(t)){const r=t.securityLevel;r==="antiscript"||r==="strict"||r==="sandbox"?e=Ml(e):r!=="loose"&&(e=$l(e),e=e.replace(/</g,"<").replace(/>/g,">"),e=e.replace(/=/g,"="),e=ig(e))}return e},"sanitizeMore"),Zt=p((e,t)=>e&&(t.dompurifyConfig?e=sr.sanitize(Gs(e,t),t.dompurifyConfig).toString():e=sr.sanitize(Gs(e,t),{FORBID_TAGS:["style"]}).toString(),e),"sanitizeText"),tg=p((e,t)=>typeof e=="string"?Zt(e,t):e.flat().map(r=>Zt(r,t)),"sanitizeTextOrArray"),eg=p(e=>ei.test(e),"hasBreaks"),rg=p(e=>e.split(ei),"splitBreaks"),ig=p(e=>e.replace(/#br#/g,"<br/>"),"placeholderToBreak"),$l=p(e=>e.replace(ei,"#br#"),"breakToPlaceholder"),ag=p(e=>{let t="";return e&&(t=window.location.protocol+"//"+window.location.host+window.location.pathname+window.location.search,t=CSS.escape(t)),t},"getUrl"),ng=p(function(...e){const t=e.filter(r=>!isNaN(r));return Math.max(...t)},"getMax"),sg=p(function(...e){const t=e.filter(r=>!isNaN(r));return Math.min(...t)},"getMin"),Us=p(function(e){const t=e.split(/(,)/),r=[];for(let i=0;i<t.length;i++){let a=t[i];if(a===","&&i>0&&i+1<t.length){const n=t[i-1],o=t[i+1];og(n,o)&&(a=n+","+o,i++,r.pop())}r.push(lg(a))}return r.join("")},"parseGenericTypes"),Qa=p((e,t)=>Math.max(0,e.split(t).length-1),"countOccurrence"),og=p((e,t)=>{const r=Qa(e,"~"),i=Qa(t,"~");return r===1&&i===1},"shouldCombineSets"),lg=p(e=>{const t=Qa(e,"~");let r=!1;if(t<=1)return e;t%2!==0&&e.startsWith("~")&&(e=e.substring(1),r=!0);const i=[...e];let a=i.indexOf("~"),n=i.lastIndexOf("~");for(;a!==-1&&n!==-1&&a!==n;)i[a]="<",i[n]=">",a=i.indexOf("~"),n=i.lastIndexOf("~");return r&&i.unshift("~"),i.join("")},"processSet"),Xs=p(()=>window.MathMLElement!==void 0,"isMathMLSupported"),Ja=/\$\$(.*)\$\$/g,Hr=p(e=>{var t;return(((t=e.match(Ja))==null?void 0:t.length)??0)>0},"hasKatex"),AS=p(async(e,t)=>{const r=document.createElement("div");r.innerHTML=await Al(e,t),r.id="katex-temp",r.style.visibility="hidden",r.style.position="absolute",r.style.top="0";const i=document.querySelector("body");i==null||i.insertAdjacentElement("beforeend",r);const a={width:r.clientWidth,height:r.clientHeight};return r.remove(),a},"calculateMathMLDimensions"),cg=p(async(e,t)=>{if(!Hr(e))return e;if(!(Xs()||t.legacyMathML||t.forceLegacyMathML))return e.replace(Ja,"MathML is unsupported in this environment.");{const{default:r}=await it(async()=>{const{default:a}=await import("./index-CPnL1_qC.js").then(n=>n.bk);return{default:a}},__vite__mapDeps([0,1])),i=t.forceLegacyMathML||!Xs()&&t.legacyMathML?"htmlAndMathml":"mathml";return e.split(ei).map(a=>Hr(a)?`<div style="display: flex; align-items: center; justify-content: center; white-space: nowrap;">${a}</div>`:`<div>${a}</div>`).join("").replace(Ja,(a,n)=>r.renderToString(n,{throwOnError:!0,displayMode:!0,output:i}).replace(/\n/g," ").replace(/<annotation.*<\/annotation>/g,""))}},"renderKatexUnsanitized"),Al=p(async(e,t)=>Zt(await cg(e,t),t),"renderKatexSanitized"),ri={getRows:Qp,sanitizeText:Zt,sanitizeTextOrArray:tg,hasBreaks:eg,splitBreaks:rg,lineBreakRegex:ei,removeScript:Ml,getUrl:ag,evaluate:_e,getMax:ng,getMin:sg},hg=p(function(e,t){for(let r of t)e.attr(r[0],r[1])},"d3Attrs"),ug=p(function(e,t,r){let i=new Map;return r?(i.set("width","100%"),i.set("style",`max-width: ${t}px;`)):(i.set("height",e),i.set("width",t)),i},"calculateSvgSizeAttrs"),Fl=p(function(e,t,r,i){const a=ug(t,r,i);hg(e,a)},"configureSvgSize"),dg=p(function(e,t,r,i){const a=t.node().getBBox(),n=a.width,o=a.height;E.info(`SVG bounds: ${n}x${o}`,a);let s=0,c=0;E.info(`Graph bounds: ${s}x${c}`,e),s=n+r*2,c=o+r*2,E.info(`Calculated bounds: ${s}x${c}`),Fl(t,c,s,i);const l=`${a.x-r} ${a.y-r} ${a.width+2*r} ${a.height+2*r}`;t.attr("viewBox",l)},"setupGraphViewbox"),vi={},fg=p((e,t,r)=>{let i="";return e in vi&&vi[e]?i=vi[e](r):E.warn(`No theme found for ${e}`),` & {
|
|
4
|
+
font-family: ${r.fontFamily};
|
|
5
|
+
font-size: ${r.fontSize};
|
|
6
|
+
fill: ${r.textColor}
|
|
7
|
+
}
|
|
8
|
+
@keyframes edge-animation-frame {
|
|
9
|
+
from {
|
|
10
|
+
stroke-dashoffset: 0;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
@keyframes dash {
|
|
14
|
+
to {
|
|
15
|
+
stroke-dashoffset: 0;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
& .edge-animation-slow {
|
|
19
|
+
stroke-dasharray: 9,5 !important;
|
|
20
|
+
stroke-dashoffset: 900;
|
|
21
|
+
animation: dash 50s linear infinite;
|
|
22
|
+
stroke-linecap: round;
|
|
23
|
+
}
|
|
24
|
+
& .edge-animation-fast {
|
|
25
|
+
stroke-dasharray: 9,5 !important;
|
|
26
|
+
stroke-dashoffset: 900;
|
|
27
|
+
animation: dash 20s linear infinite;
|
|
28
|
+
stroke-linecap: round;
|
|
29
|
+
}
|
|
30
|
+
/* Classes common for multiple diagrams */
|
|
31
|
+
|
|
32
|
+
& .error-icon {
|
|
33
|
+
fill: ${r.errorBkgColor};
|
|
34
|
+
}
|
|
35
|
+
& .error-text {
|
|
36
|
+
fill: ${r.errorTextColor};
|
|
37
|
+
stroke: ${r.errorTextColor};
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
& .edge-thickness-normal {
|
|
41
|
+
stroke-width: 1px;
|
|
42
|
+
}
|
|
43
|
+
& .edge-thickness-thick {
|
|
44
|
+
stroke-width: 3.5px
|
|
45
|
+
}
|
|
46
|
+
& .edge-pattern-solid {
|
|
47
|
+
stroke-dasharray: 0;
|
|
48
|
+
}
|
|
49
|
+
& .edge-thickness-invisible {
|
|
50
|
+
stroke-width: 0;
|
|
51
|
+
fill: none;
|
|
52
|
+
}
|
|
53
|
+
& .edge-pattern-dashed{
|
|
54
|
+
stroke-dasharray: 3;
|
|
55
|
+
}
|
|
56
|
+
.edge-pattern-dotted {
|
|
57
|
+
stroke-dasharray: 2;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
& .marker {
|
|
61
|
+
fill: ${r.lineColor};
|
|
62
|
+
stroke: ${r.lineColor};
|
|
63
|
+
}
|
|
64
|
+
& .marker.cross {
|
|
65
|
+
stroke: ${r.lineColor};
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
& svg {
|
|
69
|
+
font-family: ${r.fontFamily};
|
|
70
|
+
font-size: ${r.fontSize};
|
|
71
|
+
}
|
|
72
|
+
& p {
|
|
73
|
+
margin: 0
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
${i}
|
|
77
|
+
|
|
78
|
+
${t}
|
|
79
|
+
`},"getStyles"),pg=p((e,t)=>{t!==void 0&&(vi[e]=t)},"addStylesForDiagram"),gg=fg,El={};Sp(El,{clear:()=>mg,getAccDescription:()=>Cg,getAccTitle:()=>xg,getDiagramTitle:()=>wg,setAccDescription:()=>bg,setAccTitle:()=>yg,setDiagramTitle:()=>kg});var Yn="",Vn="",Gn="",Un=p(e=>Zt(e,Lt()),"sanitizeText"),mg=p(()=>{Yn="",Gn="",Vn=""},"clear"),yg=p(e=>{Yn=Un(e).replace(/^\s+/g,"")},"setAccTitle"),xg=p(()=>Yn,"getAccTitle"),bg=p(e=>{Gn=Un(e).replace(/\n\s+/g,`
|
|
80
|
+
`)},"setAccDescription"),Cg=p(()=>Gn,"getAccDescription"),kg=p(e=>{Vn=Un(e)},"setDiagramTitle"),wg=p(()=>Vn,"getDiagramTitle"),Zs=E,vg=Hn,st=Lt,FS=_l,ES=or,Xn=p(e=>Zt(e,st()),"sanitizeText"),_g=dg,Sg=p(()=>El,"getCommonDb"),Pi={},Ni=p((e,t,r)=>{var i;Pi[e]&&Zs.warn(`Diagram with id ${e} already registered. Overwriting.`),Pi[e]=t,r&&bl(e,r),pg(e,t.styles),(i=t.injectUtils)==null||i.call(t,Zs,vg,st,Xn,_g,Sg(),()=>{})},"registerDiagram"),tn=p(e=>{if(e in Pi)return Pi[e];throw new Tg(e)},"getDiagram"),ar,Tg=(ar=class extends Error{constructor(t){super(`Diagram ${t} not found.`)}},p(ar,"DiagramNotFoundError"),ar),Bg={value:()=>{}};function Dl(){for(var e=0,t=arguments.length,r={},i;e<t;++e){if(!(i=arguments[e]+"")||i in r||/[\s.]/.test(i))throw new Error("illegal type: "+i);r[i]=[]}return new _i(r)}function _i(e){this._=e}function Lg(e,t){return e.trim().split(/^|\s+/).map(function(r){var i="",a=r.indexOf(".");if(a>=0&&(i=r.slice(a+1),r=r.slice(0,a)),r&&!t.hasOwnProperty(r))throw new Error("unknown type: "+r);return{type:r,name:i}})}_i.prototype=Dl.prototype={constructor:_i,on:function(e,t){var r=this._,i=Lg(e+"",r),a,n=-1,o=i.length;if(arguments.length<2){for(;++n<o;)if((a=(e=i[n]).type)&&(a=Mg(r[a],e.name)))return a;return}if(t!=null&&typeof t!="function")throw new Error("invalid callback: "+t);for(;++n<o;)if(a=(e=i[n]).type)r[a]=Ks(r[a],e.name,t);else if(t==null)for(a in r)r[a]=Ks(r[a],e.name,null);return this},copy:function(){var e={},t=this._;for(var r in t)e[r]=t[r].slice();return new _i(e)},call:function(e,t){if((a=arguments.length-2)>0)for(var r=new Array(a),i=0,a,n;i<a;++i)r[i]=arguments[i+2];if(!this._.hasOwnProperty(e))throw new Error("unknown type: "+e);for(n=this._[e],i=0,a=n.length;i<a;++i)n[i].value.apply(t,r)},apply:function(e,t,r){if(!this._.hasOwnProperty(e))throw new Error("unknown type: "+e);for(var i=this._[e],a=0,n=i.length;a<n;++a)i[a].value.apply(t,r)}};function Mg(e,t){for(var r=0,i=e.length,a;r<i;++r)if((a=e[r]).name===t)return a.value}function Ks(e,t,r){for(var i=0,a=e.length;i<a;++i)if(e[i].name===t){e[i]=Bg,e=e.slice(0,i).concat(e.slice(i+1));break}return r!=null&&e.push({name:t,value:r}),e}var en="http://www.w3.org/1999/xhtml";const Qs={svg:"http://www.w3.org/2000/svg",xhtml:en,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};function ma(e){var t=e+="",r=t.indexOf(":");return r>=0&&(t=e.slice(0,r))!=="xmlns"&&(e=e.slice(r+1)),Qs.hasOwnProperty(t)?{space:Qs[t],local:e}:e}function $g(e){return function(){var t=this.ownerDocument,r=this.namespaceURI;return r===en&&t.documentElement.namespaceURI===en?t.createElement(e):t.createElementNS(r,e)}}function Ag(e){return function(){return this.ownerDocument.createElementNS(e.space,e.local)}}function Ol(e){var t=ma(e);return(t.local?Ag:$g)(t)}function Fg(){}function Zn(e){return e==null?Fg:function(){return this.querySelector(e)}}function Eg(e){typeof e!="function"&&(e=Zn(e));for(var t=this._groups,r=t.length,i=new Array(r),a=0;a<r;++a)for(var n=t[a],o=n.length,s=i[a]=new Array(o),c,l,h=0;h<o;++h)(c=n[h])&&(l=e.call(c,c.__data__,h,n))&&("__data__"in c&&(l.__data__=c.__data__),s[h]=l);return new qt(i,this._parents)}function Dg(e){return e==null?[]:Array.isArray(e)?e:Array.from(e)}function Og(){return[]}function Il(e){return e==null?Og:function(){return this.querySelectorAll(e)}}function Ig(e){return function(){return Dg(e.apply(this,arguments))}}function Rg(e){typeof e=="function"?e=Ig(e):e=Il(e);for(var t=this._groups,r=t.length,i=[],a=[],n=0;n<r;++n)for(var o=t[n],s=o.length,c,l=0;l<s;++l)(c=o[l])&&(i.push(e.call(c,c.__data__,l,o)),a.push(c));return new qt(i,a)}function Rl(e){return function(){return this.matches(e)}}function Pl(e){return function(t){return t.matches(e)}}var Pg=Array.prototype.find;function Ng(e){return function(){return Pg.call(this.children,e)}}function zg(){return this.firstElementChild}function qg(e){return this.select(e==null?zg:Ng(typeof e=="function"?e:Pl(e)))}var Wg=Array.prototype.filter;function Hg(){return Array.from(this.children)}function jg(e){return function(){return Wg.call(this.children,e)}}function Yg(e){return this.selectAll(e==null?Hg:jg(typeof e=="function"?e:Pl(e)))}function Vg(e){typeof e!="function"&&(e=Rl(e));for(var t=this._groups,r=t.length,i=new Array(r),a=0;a<r;++a)for(var n=t[a],o=n.length,s=i[a]=[],c,l=0;l<o;++l)(c=n[l])&&e.call(c,c.__data__,l,n)&&s.push(c);return new qt(i,this._parents)}function Nl(e){return new Array(e.length)}function Gg(){return new qt(this._enter||this._groups.map(Nl),this._parents)}function zi(e,t){this.ownerDocument=e.ownerDocument,this.namespaceURI=e.namespaceURI,this._next=null,this._parent=e,this.__data__=t}zi.prototype={constructor:zi,appendChild:function(e){return this._parent.insertBefore(e,this._next)},insertBefore:function(e,t){return this._parent.insertBefore(e,t)},querySelector:function(e){return this._parent.querySelector(e)},querySelectorAll:function(e){return this._parent.querySelectorAll(e)}};function Ug(e){return function(){return e}}function Xg(e,t,r,i,a,n){for(var o=0,s,c=t.length,l=n.length;o<l;++o)(s=t[o])?(s.__data__=n[o],i[o]=s):r[o]=new zi(e,n[o]);for(;o<c;++o)(s=t[o])&&(a[o]=s)}function Zg(e,t,r,i,a,n,o){var s,c,l=new Map,h=t.length,u=n.length,f=new Array(h),d;for(s=0;s<h;++s)(c=t[s])&&(f[s]=d=o.call(c,c.__data__,s,t)+"",l.has(d)?a[s]=c:l.set(d,c));for(s=0;s<u;++s)d=o.call(e,n[s],s,n)+"",(c=l.get(d))?(i[s]=c,c.__data__=n[s],l.delete(d)):r[s]=new zi(e,n[s]);for(s=0;s<h;++s)(c=t[s])&&l.get(f[s])===c&&(a[s]=c)}function Kg(e){return e.__data__}function Qg(e,t){if(!arguments.length)return Array.from(this,Kg);var r=t?Zg:Xg,i=this._parents,a=this._groups;typeof e!="function"&&(e=Ug(e));for(var n=a.length,o=new Array(n),s=new Array(n),c=new Array(n),l=0;l<n;++l){var h=i[l],u=a[l],f=u.length,d=Jg(e.call(h,h&&h.__data__,l,i)),g=d.length,m=s[l]=new Array(g),y=o[l]=new Array(g),x=c[l]=new Array(f);r(h,u,m,y,x,d,t);for(var b=0,k=0,S,v;b<g;++b)if(S=m[b]){for(b>=k&&(k=b+1);!(v=y[k])&&++k<g;);S._next=v||null}}return o=new qt(o,i),o._enter=s,o._exit=c,o}function Jg(e){return typeof e=="object"&&"length"in e?e:Array.from(e)}function tm(){return new qt(this._exit||this._groups.map(Nl),this._parents)}function em(e,t,r){var i=this.enter(),a=this,n=this.exit();return typeof e=="function"?(i=e(i),i&&(i=i.selection())):i=i.append(e+""),t!=null&&(a=t(a),a&&(a=a.selection())),r==null?n.remove():r(n),i&&a?i.merge(a).order():a}function rm(e){for(var t=e.selection?e.selection():e,r=this._groups,i=t._groups,a=r.length,n=i.length,o=Math.min(a,n),s=new Array(a),c=0;c<o;++c)for(var l=r[c],h=i[c],u=l.length,f=s[c]=new Array(u),d,g=0;g<u;++g)(d=l[g]||h[g])&&(f[g]=d);for(;c<a;++c)s[c]=r[c];return new qt(s,this._parents)}function im(){for(var e=this._groups,t=-1,r=e.length;++t<r;)for(var i=e[t],a=i.length-1,n=i[a],o;--a>=0;)(o=i[a])&&(n&&o.compareDocumentPosition(n)^4&&n.parentNode.insertBefore(o,n),n=o);return this}function am(e){e||(e=nm);function t(u,f){return u&&f?e(u.__data__,f.__data__):!u-!f}for(var r=this._groups,i=r.length,a=new Array(i),n=0;n<i;++n){for(var o=r[n],s=o.length,c=a[n]=new Array(s),l,h=0;h<s;++h)(l=o[h])&&(c[h]=l);c.sort(t)}return new qt(a,this._parents).order()}function nm(e,t){return e<t?-1:e>t?1:e>=t?0:NaN}function sm(){var e=arguments[0];return arguments[0]=this,e.apply(null,arguments),this}function om(){return Array.from(this)}function lm(){for(var e=this._groups,t=0,r=e.length;t<r;++t)for(var i=e[t],a=0,n=i.length;a<n;++a){var o=i[a];if(o)return o}return null}function cm(){let e=0;for(const t of this)++e;return e}function hm(){return!this.node()}function um(e){for(var t=this._groups,r=0,i=t.length;r<i;++r)for(var a=t[r],n=0,o=a.length,s;n<o;++n)(s=a[n])&&e.call(s,s.__data__,n,a);return this}function dm(e){return function(){this.removeAttribute(e)}}function fm(e){return function(){this.removeAttributeNS(e.space,e.local)}}function pm(e,t){return function(){this.setAttribute(e,t)}}function gm(e,t){return function(){this.setAttributeNS(e.space,e.local,t)}}function mm(e,t){return function(){var r=t.apply(this,arguments);r==null?this.removeAttribute(e):this.setAttribute(e,r)}}function ym(e,t){return function(){var r=t.apply(this,arguments);r==null?this.removeAttributeNS(e.space,e.local):this.setAttributeNS(e.space,e.local,r)}}function xm(e,t){var r=ma(e);if(arguments.length<2){var i=this.node();return r.local?i.getAttributeNS(r.space,r.local):i.getAttribute(r)}return this.each((t==null?r.local?fm:dm:typeof t=="function"?r.local?ym:mm:r.local?gm:pm)(r,t))}function zl(e){return e.ownerDocument&&e.ownerDocument.defaultView||e.document&&e||e.defaultView}function bm(e){return function(){this.style.removeProperty(e)}}function Cm(e,t,r){return function(){this.style.setProperty(e,t,r)}}function km(e,t,r){return function(){var i=t.apply(this,arguments);i==null?this.style.removeProperty(e):this.style.setProperty(e,i,r)}}function wm(e,t,r){return arguments.length>1?this.each((t==null?bm:typeof t=="function"?km:Cm)(e,t,r??"")):lr(this.node(),e)}function lr(e,t){return e.style.getPropertyValue(t)||zl(e).getComputedStyle(e,null).getPropertyValue(t)}function vm(e){return function(){delete this[e]}}function _m(e,t){return function(){this[e]=t}}function Sm(e,t){return function(){var r=t.apply(this,arguments);r==null?delete this[e]:this[e]=r}}function Tm(e,t){return arguments.length>1?this.each((t==null?vm:typeof t=="function"?Sm:_m)(e,t)):this.node()[e]}function ql(e){return e.trim().split(/^|\s+/)}function Kn(e){return e.classList||new Wl(e)}function Wl(e){this._node=e,this._names=ql(e.getAttribute("class")||"")}Wl.prototype={add:function(e){var t=this._names.indexOf(e);t<0&&(this._names.push(e),this._node.setAttribute("class",this._names.join(" ")))},remove:function(e){var t=this._names.indexOf(e);t>=0&&(this._names.splice(t,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(e){return this._names.indexOf(e)>=0}};function Hl(e,t){for(var r=Kn(e),i=-1,a=t.length;++i<a;)r.add(t[i])}function jl(e,t){for(var r=Kn(e),i=-1,a=t.length;++i<a;)r.remove(t[i])}function Bm(e){return function(){Hl(this,e)}}function Lm(e){return function(){jl(this,e)}}function Mm(e,t){return function(){(t.apply(this,arguments)?Hl:jl)(this,e)}}function $m(e,t){var r=ql(e+"");if(arguments.length<2){for(var i=Kn(this.node()),a=-1,n=r.length;++a<n;)if(!i.contains(r[a]))return!1;return!0}return this.each((typeof t=="function"?Mm:t?Bm:Lm)(r,t))}function Am(){this.textContent=""}function Fm(e){return function(){this.textContent=e}}function Em(e){return function(){var t=e.apply(this,arguments);this.textContent=t??""}}function Dm(e){return arguments.length?this.each(e==null?Am:(typeof e=="function"?Em:Fm)(e)):this.node().textContent}function Om(){this.innerHTML=""}function Im(e){return function(){this.innerHTML=e}}function Rm(e){return function(){var t=e.apply(this,arguments);this.innerHTML=t??""}}function Pm(e){return arguments.length?this.each(e==null?Om:(typeof e=="function"?Rm:Im)(e)):this.node().innerHTML}function Nm(){this.nextSibling&&this.parentNode.appendChild(this)}function zm(){return this.each(Nm)}function qm(){this.previousSibling&&this.parentNode.insertBefore(this,this.parentNode.firstChild)}function Wm(){return this.each(qm)}function Hm(e){var t=typeof e=="function"?e:Ol(e);return this.select(function(){return this.appendChild(t.apply(this,arguments))})}function jm(){return null}function Ym(e,t){var r=typeof e=="function"?e:Ol(e),i=t==null?jm:typeof t=="function"?t:Zn(t);return this.select(function(){return this.insertBefore(r.apply(this,arguments),i.apply(this,arguments)||null)})}function Vm(){var e=this.parentNode;e&&e.removeChild(this)}function Gm(){return this.each(Vm)}function Um(){var e=this.cloneNode(!1),t=this.parentNode;return t?t.insertBefore(e,this.nextSibling):e}function Xm(){var e=this.cloneNode(!0),t=this.parentNode;return t?t.insertBefore(e,this.nextSibling):e}function Zm(e){return this.select(e?Xm:Um)}function Km(e){return arguments.length?this.property("__data__",e):this.node().__data__}function Qm(e){return function(t){e.call(this,t,this.__data__)}}function Jm(e){return e.trim().split(/^|\s+/).map(function(t){var r="",i=t.indexOf(".");return i>=0&&(r=t.slice(i+1),t=t.slice(0,i)),{type:t,name:r}})}function ty(e){return function(){var t=this.__on;if(t){for(var r=0,i=-1,a=t.length,n;r<a;++r)n=t[r],(!e.type||n.type===e.type)&&n.name===e.name?this.removeEventListener(n.type,n.listener,n.options):t[++i]=n;++i?t.length=i:delete this.__on}}}function ey(e,t,r){return function(){var i=this.__on,a,n=Qm(t);if(i){for(var o=0,s=i.length;o<s;++o)if((a=i[o]).type===e.type&&a.name===e.name){this.removeEventListener(a.type,a.listener,a.options),this.addEventListener(a.type,a.listener=n,a.options=r),a.value=t;return}}this.addEventListener(e.type,n,r),a={type:e.type,name:e.name,value:t,listener:n,options:r},i?i.push(a):this.__on=[a]}}function ry(e,t,r){var i=Jm(e+""),a,n=i.length,o;if(arguments.length<2){var s=this.node().__on;if(s){for(var c=0,l=s.length,h;c<l;++c)for(a=0,h=s[c];a<n;++a)if((o=i[a]).type===h.type&&o.name===h.name)return h.value}return}for(s=t?ey:ty,a=0;a<n;++a)this.each(s(i[a],t,r));return this}function Yl(e,t,r){var i=zl(e),a=i.CustomEvent;typeof a=="function"?a=new a(t,r):(a=i.document.createEvent("Event"),r?(a.initEvent(t,r.bubbles,r.cancelable),a.detail=r.detail):a.initEvent(t,!1,!1)),e.dispatchEvent(a)}function iy(e,t){return function(){return Yl(this,e,t)}}function ay(e,t){return function(){return Yl(this,e,t.apply(this,arguments))}}function ny(e,t){return this.each((typeof t=="function"?ay:iy)(e,t))}function*sy(){for(var e=this._groups,t=0,r=e.length;t<r;++t)for(var i=e[t],a=0,n=i.length,o;a<n;++a)(o=i[a])&&(yield o)}var Vl=[null];function qt(e,t){this._groups=e,this._parents=t}function ii(){return new qt([[document.documentElement]],Vl)}function oy(){return this}qt.prototype=ii.prototype={constructor:qt,select:Eg,selectAll:Rg,selectChild:qg,selectChildren:Yg,filter:Vg,data:Qg,enter:Gg,exit:tm,join:em,merge:rm,selection:oy,order:im,sort:am,call:sm,nodes:om,node:lm,size:cm,empty:hm,each:um,attr:xm,style:wm,property:Tm,classed:$m,text:Dm,html:Pm,raise:zm,lower:Wm,append:Hm,insert:Ym,remove:Gm,clone:Zm,datum:Km,on:ry,dispatch:ny,[Symbol.iterator]:sy};function tt(e){return typeof e=="string"?new qt([[document.querySelector(e)]],[document.documentElement]):new qt([[e]],Vl)}var Js=180/Math.PI,rn={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function Gl(e,t,r,i,a,n){var o,s,c;return(o=Math.sqrt(e*e+t*t))&&(e/=o,t/=o),(c=e*r+t*i)&&(r-=e*c,i-=t*c),(s=Math.sqrt(r*r+i*i))&&(r/=s,i/=s,c/=s),e*i<t*r&&(e=-e,t=-t,c=-c,o=-o),{translateX:a,translateY:n,rotate:Math.atan2(t,e)*Js,skewX:Math.atan(c)*Js,scaleX:o,scaleY:s}}var ui;function ly(e){const t=new(typeof DOMMatrix=="function"?DOMMatrix:WebKitCSSMatrix)(e+"");return t.isIdentity?rn:Gl(t.a,t.b,t.c,t.d,t.e,t.f)}function cy(e){return e==null||(ui||(ui=document.createElementNS("http://www.w3.org/2000/svg","g")),ui.setAttribute("transform",e),!(e=ui.transform.baseVal.consolidate()))?rn:(e=e.matrix,Gl(e.a,e.b,e.c,e.d,e.e,e.f))}function Ul(e,t,r,i){function a(l){return l.length?l.pop()+" ":""}function n(l,h,u,f,d,g){if(l!==u||h!==f){var m=d.push("translate(",null,t,null,r);g.push({i:m-4,x:Le(l,u)},{i:m-2,x:Le(h,f)})}else(u||f)&&d.push("translate("+u+t+f+r)}function o(l,h,u,f){l!==h?(l-h>180?h+=360:h-l>180&&(l+=360),f.push({i:u.push(a(u)+"rotate(",null,i)-2,x:Le(l,h)})):h&&u.push(a(u)+"rotate("+h+i)}function s(l,h,u,f){l!==h?f.push({i:u.push(a(u)+"skewX(",null,i)-2,x:Le(l,h)}):h&&u.push(a(u)+"skewX("+h+i)}function c(l,h,u,f,d,g){if(l!==u||h!==f){var m=d.push(a(d)+"scale(",null,",",null,")");g.push({i:m-4,x:Le(l,u)},{i:m-2,x:Le(h,f)})}else(u!==1||f!==1)&&d.push(a(d)+"scale("+u+","+f+")")}return function(l,h){var u=[],f=[];return l=e(l),h=e(h),n(l.translateX,l.translateY,h.translateX,h.translateY,u,f),o(l.rotate,h.rotate,u,f),s(l.skewX,h.skewX,u,f),c(l.scaleX,l.scaleY,h.scaleX,h.scaleY,u,f),l=h=null,function(d){for(var g=-1,m=f.length,y;++g<m;)u[(y=f[g]).i]=y.x(d);return u.join("")}}}var hy=Ul(ly,"px, ","px)","deg)"),uy=Ul(cy,", ",")",")"),cr=0,$r=0,kr=0,Xl=1e3,qi,Ar,Wi=0,Re=0,ya=0,jr=typeof performance=="object"&&performance.now?performance:Date,Zl=typeof window=="object"&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):function(e){setTimeout(e,17)};function Qn(){return Re||(Zl(dy),Re=jr.now()+ya)}function dy(){Re=0}function Hi(){this._call=this._time=this._next=null}Hi.prototype=Kl.prototype={constructor:Hi,restart:function(e,t,r){if(typeof e!="function")throw new TypeError("callback is not a function");r=(r==null?Qn():+r)+(t==null?0:+t),!this._next&&Ar!==this&&(Ar?Ar._next=this:qi=this,Ar=this),this._call=e,this._time=r,an()},stop:function(){this._call&&(this._call=null,this._time=1/0,an())}};function Kl(e,t,r){var i=new Hi;return i.restart(e,t,r),i}function fy(){Qn(),++cr;for(var e=qi,t;e;)(t=Re-e._time)>=0&&e._call.call(void 0,t),e=e._next;--cr}function to(){Re=(Wi=jr.now())+ya,cr=$r=0;try{fy()}finally{cr=0,gy(),Re=0}}function py(){var e=jr.now(),t=e-Wi;t>Xl&&(ya-=t,Wi=e)}function gy(){for(var e,t=qi,r,i=1/0;t;)t._call?(i>t._time&&(i=t._time),e=t,t=t._next):(r=t._next,t._next=null,t=e?e._next=r:qi=r);Ar=e,an(i)}function an(e){if(!cr){$r&&($r=clearTimeout($r));var t=e-Re;t>24?(e<1/0&&($r=setTimeout(to,e-jr.now()-ya)),kr&&(kr=clearInterval(kr))):(kr||(Wi=jr.now(),kr=setInterval(py,Xl)),cr=1,Zl(to))}}function eo(e,t,r){var i=new Hi;return t=t==null?0:+t,i.restart(a=>{i.stop(),e(a+t)},t,r),i}var my=Dl("start","end","cancel","interrupt"),yy=[],Ql=0,ro=1,nn=2,Si=3,io=4,sn=5,Ti=6;function xa(e,t,r,i,a,n){var o=e.__transition;if(!o)e.__transition={};else if(r in o)return;xy(e,r,{name:t,index:i,group:a,on:my,tween:yy,time:n.time,delay:n.delay,duration:n.duration,ease:n.ease,timer:null,state:Ql})}function Jn(e,t){var r=Kt(e,t);if(r.state>Ql)throw new Error("too late; already scheduled");return r}function ie(e,t){var r=Kt(e,t);if(r.state>Si)throw new Error("too late; already running");return r}function Kt(e,t){var r=e.__transition;if(!r||!(r=r[t]))throw new Error("transition not found");return r}function xy(e,t,r){var i=e.__transition,a;i[t]=r,r.timer=Kl(n,0,r.time);function n(l){r.state=ro,r.timer.restart(o,r.delay,r.time),r.delay<=l&&o(l-r.delay)}function o(l){var h,u,f,d;if(r.state!==ro)return c();for(h in i)if(d=i[h],d.name===r.name){if(d.state===Si)return eo(o);d.state===io?(d.state=Ti,d.timer.stop(),d.on.call("interrupt",e,e.__data__,d.index,d.group),delete i[h]):+h<t&&(d.state=Ti,d.timer.stop(),d.on.call("cancel",e,e.__data__,d.index,d.group),delete i[h])}if(eo(function(){r.state===Si&&(r.state=io,r.timer.restart(s,r.delay,r.time),s(l))}),r.state=nn,r.on.call("start",e,e.__data__,r.index,r.group),r.state===nn){for(r.state=Si,a=new Array(f=r.tween.length),h=0,u=-1;h<f;++h)(d=r.tween[h].value.call(e,e.__data__,r.index,r.group))&&(a[++u]=d);a.length=u+1}}function s(l){for(var h=l<r.duration?r.ease.call(null,l/r.duration):(r.timer.restart(c),r.state=sn,1),u=-1,f=a.length;++u<f;)a[u].call(e,h);r.state===sn&&(r.on.call("end",e,e.__data__,r.index,r.group),c())}function c(){r.state=Ti,r.timer.stop(),delete i[t];for(var l in i)return;delete e.__transition}}function by(e,t){var r=e.__transition,i,a,n=!0,o;if(r){t=t==null?null:t+"";for(o in r){if((i=r[o]).name!==t){n=!1;continue}a=i.state>nn&&i.state<sn,i.state=Ti,i.timer.stop(),i.on.call(a?"interrupt":"cancel",e,e.__data__,i.index,i.group),delete r[o]}n&&delete e.__transition}}function Cy(e){return this.each(function(){by(this,e)})}function ky(e,t){var r,i;return function(){var a=ie(this,e),n=a.tween;if(n!==r){i=r=n;for(var o=0,s=i.length;o<s;++o)if(i[o].name===t){i=i.slice(),i.splice(o,1);break}}a.tween=i}}function wy(e,t,r){var i,a;if(typeof r!="function")throw new Error;return function(){var n=ie(this,e),o=n.tween;if(o!==i){a=(i=o).slice();for(var s={name:t,value:r},c=0,l=a.length;c<l;++c)if(a[c].name===t){a[c]=s;break}c===l&&a.push(s)}n.tween=a}}function vy(e,t){var r=this._id;if(e+="",arguments.length<2){for(var i=Kt(this.node(),r).tween,a=0,n=i.length,o;a<n;++a)if((o=i[a]).name===e)return o.value;return null}return this.each((t==null?ky:wy)(r,e,t))}function ts(e,t,r){var i=e._id;return e.each(function(){var a=ie(this,i);(a.value||(a.value={}))[t]=r.apply(this,arguments)}),function(a){return Kt(a,i).value[t]}}function Jl(e,t){var r;return(typeof t=="number"?Le:t instanceof Ws?Hs:(r=Ws(t))?(t=r,Hs):mp)(e,t)}function _y(e){return function(){this.removeAttribute(e)}}function Sy(e){return function(){this.removeAttributeNS(e.space,e.local)}}function Ty(e,t,r){var i,a=r+"",n;return function(){var o=this.getAttribute(e);return o===a?null:o===i?n:n=t(i=o,r)}}function By(e,t,r){var i,a=r+"",n;return function(){var o=this.getAttributeNS(e.space,e.local);return o===a?null:o===i?n:n=t(i=o,r)}}function Ly(e,t,r){var i,a,n;return function(){var o,s=r(this),c;return s==null?void this.removeAttribute(e):(o=this.getAttribute(e),c=s+"",o===c?null:o===i&&c===a?n:(a=c,n=t(i=o,s)))}}function My(e,t,r){var i,a,n;return function(){var o,s=r(this),c;return s==null?void this.removeAttributeNS(e.space,e.local):(o=this.getAttributeNS(e.space,e.local),c=s+"",o===c?null:o===i&&c===a?n:(a=c,n=t(i=o,s)))}}function $y(e,t){var r=ma(e),i=r==="transform"?uy:Jl;return this.attrTween(e,typeof t=="function"?(r.local?My:Ly)(r,i,ts(this,"attr."+e,t)):t==null?(r.local?Sy:_y)(r):(r.local?By:Ty)(r,i,t))}function Ay(e,t){return function(r){this.setAttribute(e,t.call(this,r))}}function Fy(e,t){return function(r){this.setAttributeNS(e.space,e.local,t.call(this,r))}}function Ey(e,t){var r,i;function a(){var n=t.apply(this,arguments);return n!==i&&(r=(i=n)&&Fy(e,n)),r}return a._value=t,a}function Dy(e,t){var r,i;function a(){var n=t.apply(this,arguments);return n!==i&&(r=(i=n)&&Ay(e,n)),r}return a._value=t,a}function Oy(e,t){var r="attr."+e;if(arguments.length<2)return(r=this.tween(r))&&r._value;if(t==null)return this.tween(r,null);if(typeof t!="function")throw new Error;var i=ma(e);return this.tween(r,(i.local?Ey:Dy)(i,t))}function Iy(e,t){return function(){Jn(this,e).delay=+t.apply(this,arguments)}}function Ry(e,t){return t=+t,function(){Jn(this,e).delay=t}}function Py(e){var t=this._id;return arguments.length?this.each((typeof e=="function"?Iy:Ry)(t,e)):Kt(this.node(),t).delay}function Ny(e,t){return function(){ie(this,e).duration=+t.apply(this,arguments)}}function zy(e,t){return t=+t,function(){ie(this,e).duration=t}}function qy(e){var t=this._id;return arguments.length?this.each((typeof e=="function"?Ny:zy)(t,e)):Kt(this.node(),t).duration}function Wy(e,t){if(typeof t!="function")throw new Error;return function(){ie(this,e).ease=t}}function Hy(e){var t=this._id;return arguments.length?this.each(Wy(t,e)):Kt(this.node(),t).ease}function jy(e,t){return function(){var r=t.apply(this,arguments);if(typeof r!="function")throw new Error;ie(this,e).ease=r}}function Yy(e){if(typeof e!="function")throw new Error;return this.each(jy(this._id,e))}function Vy(e){typeof e!="function"&&(e=Rl(e));for(var t=this._groups,r=t.length,i=new Array(r),a=0;a<r;++a)for(var n=t[a],o=n.length,s=i[a]=[],c,l=0;l<o;++l)(c=n[l])&&e.call(c,c.__data__,l,n)&&s.push(c);return new ue(i,this._parents,this._name,this._id)}function Gy(e){if(e._id!==this._id)throw new Error;for(var t=this._groups,r=e._groups,i=t.length,a=r.length,n=Math.min(i,a),o=new Array(i),s=0;s<n;++s)for(var c=t[s],l=r[s],h=c.length,u=o[s]=new Array(h),f,d=0;d<h;++d)(f=c[d]||l[d])&&(u[d]=f);for(;s<i;++s)o[s]=t[s];return new ue(o,this._parents,this._name,this._id)}function Uy(e){return(e+"").trim().split(/^|\s+/).every(function(t){var r=t.indexOf(".");return r>=0&&(t=t.slice(0,r)),!t||t==="start"})}function Xy(e,t,r){var i,a,n=Uy(t)?Jn:ie;return function(){var o=n(this,e),s=o.on;s!==i&&(a=(i=s).copy()).on(t,r),o.on=a}}function Zy(e,t){var r=this._id;return arguments.length<2?Kt(this.node(),r).on.on(e):this.each(Xy(r,e,t))}function Ky(e){return function(){var t=this.parentNode;for(var r in this.__transition)if(+r!==e)return;t&&t.removeChild(this)}}function Qy(){return this.on("end.remove",Ky(this._id))}function Jy(e){var t=this._name,r=this._id;typeof e!="function"&&(e=Zn(e));for(var i=this._groups,a=i.length,n=new Array(a),o=0;o<a;++o)for(var s=i[o],c=s.length,l=n[o]=new Array(c),h,u,f=0;f<c;++f)(h=s[f])&&(u=e.call(h,h.__data__,f,s))&&("__data__"in h&&(u.__data__=h.__data__),l[f]=u,xa(l[f],t,r,f,l,Kt(h,r)));return new ue(n,this._parents,t,r)}function t0(e){var t=this._name,r=this._id;typeof e!="function"&&(e=Il(e));for(var i=this._groups,a=i.length,n=[],o=[],s=0;s<a;++s)for(var c=i[s],l=c.length,h,u=0;u<l;++u)if(h=c[u]){for(var f=e.call(h,h.__data__,u,c),d,g=Kt(h,r),m=0,y=f.length;m<y;++m)(d=f[m])&&xa(d,t,r,m,f,g);n.push(f),o.push(h)}return new ue(n,o,t,r)}var e0=ii.prototype.constructor;function r0(){return new e0(this._groups,this._parents)}function i0(e,t){var r,i,a;return function(){var n=lr(this,e),o=(this.style.removeProperty(e),lr(this,e));return n===o?null:n===r&&o===i?a:a=t(r=n,i=o)}}function tc(e){return function(){this.style.removeProperty(e)}}function a0(e,t,r){var i,a=r+"",n;return function(){var o=lr(this,e);return o===a?null:o===i?n:n=t(i=o,r)}}function n0(e,t,r){var i,a,n;return function(){var o=lr(this,e),s=r(this),c=s+"";return s==null&&(c=s=(this.style.removeProperty(e),lr(this,e))),o===c?null:o===i&&c===a?n:(a=c,n=t(i=o,s))}}function s0(e,t){var r,i,a,n="style."+t,o="end."+n,s;return function(){var c=ie(this,e),l=c.on,h=c.value[n]==null?s||(s=tc(t)):void 0;(l!==r||a!==h)&&(i=(r=l).copy()).on(o,a=h),c.on=i}}function o0(e,t,r){var i=(e+="")=="transform"?hy:Jl;return t==null?this.styleTween(e,i0(e,i)).on("end.style."+e,tc(e)):typeof t=="function"?this.styleTween(e,n0(e,i,ts(this,"style."+e,t))).each(s0(this._id,e)):this.styleTween(e,a0(e,i,t),r).on("end.style."+e,null)}function l0(e,t,r){return function(i){this.style.setProperty(e,t.call(this,i),r)}}function c0(e,t,r){var i,a;function n(){var o=t.apply(this,arguments);return o!==a&&(i=(a=o)&&l0(e,o,r)),i}return n._value=t,n}function h0(e,t,r){var i="style."+(e+="");if(arguments.length<2)return(i=this.tween(i))&&i._value;if(t==null)return this.tween(i,null);if(typeof t!="function")throw new Error;return this.tween(i,c0(e,t,r??""))}function u0(e){return function(){this.textContent=e}}function d0(e){return function(){var t=e(this);this.textContent=t??""}}function f0(e){return this.tween("text",typeof e=="function"?d0(ts(this,"text",e)):u0(e==null?"":e+""))}function p0(e){return function(t){this.textContent=e.call(this,t)}}function g0(e){var t,r;function i(){var a=e.apply(this,arguments);return a!==r&&(t=(r=a)&&p0(a)),t}return i._value=e,i}function m0(e){var t="text";if(arguments.length<1)return(t=this.tween(t))&&t._value;if(e==null)return this.tween(t,null);if(typeof e!="function")throw new Error;return this.tween(t,g0(e))}function y0(){for(var e=this._name,t=this._id,r=ec(),i=this._groups,a=i.length,n=0;n<a;++n)for(var o=i[n],s=o.length,c,l=0;l<s;++l)if(c=o[l]){var h=Kt(c,t);xa(c,e,r,l,o,{time:h.time+h.delay+h.duration,delay:0,duration:h.duration,ease:h.ease})}return new ue(i,this._parents,e,r)}function x0(){var e,t,r=this,i=r._id,a=r.size();return new Promise(function(n,o){var s={value:o},c={value:function(){--a===0&&n()}};r.each(function(){var l=ie(this,i),h=l.on;h!==e&&(t=(e=h).copy(),t._.cancel.push(s),t._.interrupt.push(s),t._.end.push(c)),l.on=t}),a===0&&n()})}var b0=0;function ue(e,t,r,i){this._groups=e,this._parents=t,this._name=r,this._id=i}function ec(){return++b0}var se=ii.prototype;ue.prototype={constructor:ue,select:Jy,selectAll:t0,selectChild:se.selectChild,selectChildren:se.selectChildren,filter:Vy,merge:Gy,selection:r0,transition:y0,call:se.call,nodes:se.nodes,node:se.node,size:se.size,empty:se.empty,each:se.each,on:Zy,attr:$y,attrTween:Oy,style:o0,styleTween:h0,text:f0,textTween:m0,remove:Qy,tween:vy,delay:Py,duration:qy,ease:Hy,easeVarying:Yy,end:x0,[Symbol.iterator]:se[Symbol.iterator]};function C0(e){return((e*=2)<=1?e*e*e:(e-=2)*e*e+2)/2}var k0={time:null,delay:0,duration:250,ease:C0};function w0(e,t){for(var r;!(r=e.__transition)||!(r=r[t]);)if(!(e=e.parentNode))throw new Error(`transition ${t} not found`);return r}function v0(e){var t,r;e instanceof ue?(t=e._id,e=e._name):(t=ec(),(r=k0).time=Qn(),e=e==null?null:e+"");for(var i=this._groups,a=i.length,n=0;n<a;++n)for(var o=i[n],s=o.length,c,l=0;l<s;++l)(c=o[l])&&xa(c,e,t,l,o,r||w0(c,t));return new ue(i,this._parents,e,t)}ii.prototype.interrupt=Cy;ii.prototype.transition=v0;function rc(e,t){this._basis=new nl(e),this._beta=t}rc.prototype={lineStart:function(){this._x=[],this._y=[],this._basis.lineStart()},lineEnd:function(){var e=this._x,t=this._y,r=e.length-1;if(r>0)for(var i=e[0],a=t[0],n=e[r]-i,o=t[r]-a,s=-1,c;++s<=r;)c=s/r,this._basis.point(this._beta*e[s]+(1-this._beta)*(i+c*n),this._beta*t[s]+(1-this._beta)*(a+c*o));this._x=this._y=null,this._basis.lineEnd()},point:function(e,t){this._x.push(+e),this._y.push(+t)}};const _0=(function e(t){function r(i){return t===1?new nl(i):new rc(i,t)}return r.beta=function(i){return e(+i)},r})(.85);function ji(e,t,r){e._context.bezierCurveTo(e._x1+e._k*(e._x2-e._x0),e._y1+e._k*(e._y2-e._y0),e._x2+e._k*(e._x1-t),e._y2+e._k*(e._y1-r),e._x2,e._y2)}function es(e,t){this._context=e,this._k=(1-t)/6}es.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:ji(this,this._x1,this._y1);break}(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line=1-this._line},point:function(e,t){switch(e=+e,t=+t,this._point){case 0:this._point=1,this._line?this._context.lineTo(e,t):this._context.moveTo(e,t);break;case 1:this._point=2,this._x1=e,this._y1=t;break;case 2:this._point=3;default:ji(this,e,t);break}this._x0=this._x1,this._x1=this._x2,this._x2=e,this._y0=this._y1,this._y1=this._y2,this._y2=t}};const ic=(function e(t){function r(i){return new es(i,t)}return r.tension=function(i){return e(+i)},r})(0);function rs(e,t){this._context=e,this._k=(1-t)/6}rs.prototype={areaStart:Di,areaEnd:Di,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:{this._context.moveTo(this._x3,this._y3),this._context.closePath();break}case 2:{this._context.lineTo(this._x3,this._y3),this._context.closePath();break}case 3:{this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5);break}}},point:function(e,t){switch(e=+e,t=+t,this._point){case 0:this._point=1,this._x3=e,this._y3=t;break;case 1:this._point=2,this._context.moveTo(this._x4=e,this._y4=t);break;case 2:this._point=3,this._x5=e,this._y5=t;break;default:ji(this,e,t);break}this._x0=this._x1,this._x1=this._x2,this._x2=e,this._y0=this._y1,this._y1=this._y2,this._y2=t}};const S0=(function e(t){function r(i){return new rs(i,t)}return r.tension=function(i){return e(+i)},r})(0);function is(e,t){this._context=e,this._k=(1-t)/6}is.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){(this._line||this._line!==0&&this._point===3)&&this._context.closePath(),this._line=1-this._line},point:function(e,t){switch(e=+e,t=+t,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:ji(this,e,t);break}this._x0=this._x1,this._x1=this._x2,this._x2=e,this._y0=this._y1,this._y1=this._y2,this._y2=t}};const T0=(function e(t){function r(i){return new is(i,t)}return r.tension=function(i){return e(+i)},r})(0);function as(e,t,r){var i=e._x1,a=e._y1,n=e._x2,o=e._y2;if(e._l01_a>js){var s=2*e._l01_2a+3*e._l01_a*e._l12_a+e._l12_2a,c=3*e._l01_a*(e._l01_a+e._l12_a);i=(i*s-e._x0*e._l12_2a+e._x2*e._l01_2a)/c,a=(a*s-e._y0*e._l12_2a+e._y2*e._l01_2a)/c}if(e._l23_a>js){var l=2*e._l23_2a+3*e._l23_a*e._l12_a+e._l12_2a,h=3*e._l23_a*(e._l23_a+e._l12_a);n=(n*l+e._x1*e._l23_2a-t*e._l12_2a)/h,o=(o*l+e._y1*e._l23_2a-r*e._l12_2a)/h}e._context.bezierCurveTo(i,a,n,o,e._x2,e._y2)}function ac(e,t){this._context=e,this._alpha=t}ac.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:this.point(this._x2,this._y2);break}(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line=1-this._line},point:function(e,t){if(e=+e,t=+t,this._point){var r=this._x2-e,i=this._y2-t;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+i*i,this._alpha))}switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(e,t):this._context.moveTo(e,t);break;case 1:this._point=2;break;case 2:this._point=3;default:as(this,e,t);break}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=e,this._y0=this._y1,this._y1=this._y2,this._y2=t}};const nc=(function e(t){function r(i){return t?new ac(i,t):new es(i,0)}return r.alpha=function(i){return e(+i)},r})(.5);function sc(e,t){this._context=e,this._alpha=t}sc.prototype={areaStart:Di,areaEnd:Di,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 1:{this._context.moveTo(this._x3,this._y3),this._context.closePath();break}case 2:{this._context.lineTo(this._x3,this._y3),this._context.closePath();break}case 3:{this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5);break}}},point:function(e,t){if(e=+e,t=+t,this._point){var r=this._x2-e,i=this._y2-t;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+i*i,this._alpha))}switch(this._point){case 0:this._point=1,this._x3=e,this._y3=t;break;case 1:this._point=2,this._context.moveTo(this._x4=e,this._y4=t);break;case 2:this._point=3,this._x5=e,this._y5=t;break;default:as(this,e,t);break}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=e,this._y0=this._y1,this._y1=this._y2,this._y2=t}};const B0=(function e(t){function r(i){return t?new sc(i,t):new rs(i,0)}return r.alpha=function(i){return e(+i)},r})(.5);function oc(e,t){this._context=e,this._alpha=t}oc.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){(this._line||this._line!==0&&this._point===3)&&this._context.closePath(),this._line=1-this._line},point:function(e,t){if(e=+e,t=+t,this._point){var r=this._x2-e,i=this._y2-t;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+i*i,this._alpha))}switch(this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:as(this,e,t);break}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=e,this._y0=this._y1,this._y1=this._y2,this._y2=t}};const L0=(function e(t){function r(i){return t?new oc(i,t):new is(i,0)}return r.alpha=function(i){return e(+i)},r})(.5);function Fr(e,t,r){this.k=e,this.x=t,this.y=r}Fr.prototype={constructor:Fr,scale:function(e){return e===1?this:new Fr(this.k*e,this.x,this.y)},translate:function(e,t){return e===0&t===0?this:new Fr(this.k,this.x+this.k*e,this.y+this.k*t)},apply:function(e){return[e[0]*this.k+this.x,e[1]*this.k+this.y]},applyX:function(e){return e*this.k+this.x},applyY:function(e){return e*this.k+this.y},invert:function(e){return[(e[0]-this.x)/this.k,(e[1]-this.y)/this.k]},invertX:function(e){return(e-this.x)/this.k},invertY:function(e){return(e-this.y)/this.k},rescaleX:function(e){return e.copy().domain(e.range().map(this.invertX,this).map(e.invert,e))},rescaleY:function(e){return e.copy().domain(e.range().map(this.invertY,this).map(e.invert,e))},toString:function(){return"translate("+this.x+","+this.y+") scale("+this.k+")"}};Fr.prototype;var M0=p(e=>{var a;const{securityLevel:t}=st();let r=tt("body");if(t==="sandbox"){const o=((a=tt(`#i${e}`).node())==null?void 0:a.contentDocument)??document;r=tt(o.body)}return r.select(`#${e}`)},"selectSvgElement");function ns(e){return typeof e>"u"||e===null}p(ns,"isNothing");function lc(e){return typeof e=="object"&&e!==null}p(lc,"isObject");function cc(e){return Array.isArray(e)?e:ns(e)?[]:[e]}p(cc,"toArray");function hc(e,t){var r,i,a,n;if(t)for(n=Object.keys(t),r=0,i=n.length;r<i;r+=1)a=n[r],e[a]=t[a];return e}p(hc,"extend");function uc(e,t){var r="",i;for(i=0;i<t;i+=1)r+=e;return r}p(uc,"repeat");function dc(e){return e===0&&Number.NEGATIVE_INFINITY===1/e}p(dc,"isNegativeZero");var $0=ns,A0=lc,F0=cc,E0=uc,D0=dc,O0=hc,wt={isNothing:$0,isObject:A0,toArray:F0,repeat:E0,isNegativeZero:D0,extend:O0};function ss(e,t){var r="",i=e.reason||"(unknown reason)";return e.mark?(e.mark.name&&(r+='in "'+e.mark.name+'" '),r+="("+(e.mark.line+1)+":"+(e.mark.column+1)+")",!t&&e.mark.snippet&&(r+=`
|
|
81
|
+
|
|
82
|
+
`+e.mark.snippet),i+" "+r):i}p(ss,"formatError");function hr(e,t){Error.call(this),this.name="YAMLException",this.reason=e,this.mark=t,this.message=ss(this,!1),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack||""}p(hr,"YAMLException$1");hr.prototype=Object.create(Error.prototype);hr.prototype.constructor=hr;hr.prototype.toString=p(function(t){return this.name+": "+ss(this,t)},"toString");var Pt=hr;function Bi(e,t,r,i,a){var n="",o="",s=Math.floor(a/2)-1;return i-t>s&&(n=" ... ",t=i-s+n.length),r-i>s&&(o=" ...",r=i+s-o.length),{str:n+e.slice(t,r).replace(/\t/g,"→")+o,pos:i-t+n.length}}p(Bi,"getLine");function Li(e,t){return wt.repeat(" ",t-e.length)+e}p(Li,"padStart");function fc(e,t){if(t=Object.create(t||null),!e.buffer)return null;t.maxLength||(t.maxLength=79),typeof t.indent!="number"&&(t.indent=1),typeof t.linesBefore!="number"&&(t.linesBefore=3),typeof t.linesAfter!="number"&&(t.linesAfter=2);for(var r=/\r?\n|\r|\0/g,i=[0],a=[],n,o=-1;n=r.exec(e.buffer);)a.push(n.index),i.push(n.index+n[0].length),e.position<=n.index&&o<0&&(o=i.length-2);o<0&&(o=i.length-1);var s="",c,l,h=Math.min(e.line+t.linesAfter,a.length).toString().length,u=t.maxLength-(t.indent+h+3);for(c=1;c<=t.linesBefore&&!(o-c<0);c++)l=Bi(e.buffer,i[o-c],a[o-c],e.position-(i[o]-i[o-c]),u),s=wt.repeat(" ",t.indent)+Li((e.line-c+1).toString(),h)+" | "+l.str+`
|
|
83
|
+
`+s;for(l=Bi(e.buffer,i[o],a[o],e.position,u),s+=wt.repeat(" ",t.indent)+Li((e.line+1).toString(),h)+" | "+l.str+`
|
|
84
|
+
`,s+=wt.repeat("-",t.indent+h+3+l.pos)+`^
|
|
85
|
+
`,c=1;c<=t.linesAfter&&!(o+c>=a.length);c++)l=Bi(e.buffer,i[o+c],a[o+c],e.position-(i[o]-i[o+c]),u),s+=wt.repeat(" ",t.indent)+Li((e.line+c+1).toString(),h)+" | "+l.str+`
|
|
86
|
+
`;return s.replace(/\n$/,"")}p(fc,"makeSnippet");var I0=fc,R0=["kind","multi","resolve","construct","instanceOf","predicate","represent","representName","defaultStyle","styleAliases"],P0=["scalar","sequence","mapping"];function pc(e){var t={};return e!==null&&Object.keys(e).forEach(function(r){e[r].forEach(function(i){t[String(i)]=r})}),t}p(pc,"compileStyleAliases");function gc(e,t){if(t=t||{},Object.keys(t).forEach(function(r){if(R0.indexOf(r)===-1)throw new Pt('Unknown option "'+r+'" is met in definition of "'+e+'" YAML type.')}),this.options=t,this.tag=e,this.kind=t.kind||null,this.resolve=t.resolve||function(){return!0},this.construct=t.construct||function(r){return r},this.instanceOf=t.instanceOf||null,this.predicate=t.predicate||null,this.represent=t.represent||null,this.representName=t.representName||null,this.defaultStyle=t.defaultStyle||null,this.multi=t.multi||!1,this.styleAliases=pc(t.styleAliases||null),P0.indexOf(this.kind)===-1)throw new Pt('Unknown kind "'+this.kind+'" is specified for "'+e+'" YAML type.')}p(gc,"Type$1");var Mt=gc;function on(e,t){var r=[];return e[t].forEach(function(i){var a=r.length;r.forEach(function(n,o){n.tag===i.tag&&n.kind===i.kind&&n.multi===i.multi&&(a=o)}),r[a]=i}),r}p(on,"compileList");function mc(){var e={scalar:{},sequence:{},mapping:{},fallback:{},multi:{scalar:[],sequence:[],mapping:[],fallback:[]}},t,r;function i(a){a.multi?(e.multi[a.kind].push(a),e.multi.fallback.push(a)):e[a.kind][a.tag]=e.fallback[a.tag]=a}for(p(i,"collectType"),t=0,r=arguments.length;t<r;t+=1)arguments[t].forEach(i);return e}p(mc,"compileMap");function Yi(e){return this.extend(e)}p(Yi,"Schema$1");Yi.prototype.extend=p(function(t){var r=[],i=[];if(t instanceof Mt)i.push(t);else if(Array.isArray(t))i=i.concat(t);else if(t&&(Array.isArray(t.implicit)||Array.isArray(t.explicit)))t.implicit&&(r=r.concat(t.implicit)),t.explicit&&(i=i.concat(t.explicit));else throw new Pt("Schema.extend argument should be a Type, [ Type ], or a schema definition ({ implicit: [...], explicit: [...] })");r.forEach(function(n){if(!(n instanceof Mt))throw new Pt("Specified list of YAML types (or a single Type object) contains a non-Type object.");if(n.loadKind&&n.loadKind!=="scalar")throw new Pt("There is a non-scalar type in the implicit list of a schema. Implicit resolving of such types is not supported.");if(n.multi)throw new Pt("There is a multi type in the implicit list of a schema. Multi tags can only be listed as explicit.")}),i.forEach(function(n){if(!(n instanceof Mt))throw new Pt("Specified list of YAML types (or a single Type object) contains a non-Type object.")});var a=Object.create(Yi.prototype);return a.implicit=(this.implicit||[]).concat(r),a.explicit=(this.explicit||[]).concat(i),a.compiledImplicit=on(a,"implicit"),a.compiledExplicit=on(a,"explicit"),a.compiledTypeMap=mc(a.compiledImplicit,a.compiledExplicit),a},"extend");var N0=Yi,z0=new Mt("tag:yaml.org,2002:str",{kind:"scalar",construct:p(function(e){return e!==null?e:""},"construct")}),q0=new Mt("tag:yaml.org,2002:seq",{kind:"sequence",construct:p(function(e){return e!==null?e:[]},"construct")}),W0=new Mt("tag:yaml.org,2002:map",{kind:"mapping",construct:p(function(e){return e!==null?e:{}},"construct")}),H0=new N0({explicit:[z0,q0,W0]});function yc(e){if(e===null)return!0;var t=e.length;return t===1&&e==="~"||t===4&&(e==="null"||e==="Null"||e==="NULL")}p(yc,"resolveYamlNull");function xc(){return null}p(xc,"constructYamlNull");function bc(e){return e===null}p(bc,"isNull");var j0=new Mt("tag:yaml.org,2002:null",{kind:"scalar",resolve:yc,construct:xc,predicate:bc,represent:{canonical:p(function(){return"~"},"canonical"),lowercase:p(function(){return"null"},"lowercase"),uppercase:p(function(){return"NULL"},"uppercase"),camelcase:p(function(){return"Null"},"camelcase"),empty:p(function(){return""},"empty")},defaultStyle:"lowercase"});function Cc(e){if(e===null)return!1;var t=e.length;return t===4&&(e==="true"||e==="True"||e==="TRUE")||t===5&&(e==="false"||e==="False"||e==="FALSE")}p(Cc,"resolveYamlBoolean");function kc(e){return e==="true"||e==="True"||e==="TRUE"}p(kc,"constructYamlBoolean");function wc(e){return Object.prototype.toString.call(e)==="[object Boolean]"}p(wc,"isBoolean");var Y0=new Mt("tag:yaml.org,2002:bool",{kind:"scalar",resolve:Cc,construct:kc,predicate:wc,represent:{lowercase:p(function(e){return e?"true":"false"},"lowercase"),uppercase:p(function(e){return e?"TRUE":"FALSE"},"uppercase"),camelcase:p(function(e){return e?"True":"False"},"camelcase")},defaultStyle:"lowercase"});function vc(e){return 48<=e&&e<=57||65<=e&&e<=70||97<=e&&e<=102}p(vc,"isHexCode");function _c(e){return 48<=e&&e<=55}p(_c,"isOctCode");function Sc(e){return 48<=e&&e<=57}p(Sc,"isDecCode");function Tc(e){if(e===null)return!1;var t=e.length,r=0,i=!1,a;if(!t)return!1;if(a=e[r],(a==="-"||a==="+")&&(a=e[++r]),a==="0"){if(r+1===t)return!0;if(a=e[++r],a==="b"){for(r++;r<t;r++)if(a=e[r],a!=="_"){if(a!=="0"&&a!=="1")return!1;i=!0}return i&&a!=="_"}if(a==="x"){for(r++;r<t;r++)if(a=e[r],a!=="_"){if(!vc(e.charCodeAt(r)))return!1;i=!0}return i&&a!=="_"}if(a==="o"){for(r++;r<t;r++)if(a=e[r],a!=="_"){if(!_c(e.charCodeAt(r)))return!1;i=!0}return i&&a!=="_"}}if(a==="_")return!1;for(;r<t;r++)if(a=e[r],a!=="_"){if(!Sc(e.charCodeAt(r)))return!1;i=!0}return!(!i||a==="_")}p(Tc,"resolveYamlInteger");function Bc(e){var t=e,r=1,i;if(t.indexOf("_")!==-1&&(t=t.replace(/_/g,"")),i=t[0],(i==="-"||i==="+")&&(i==="-"&&(r=-1),t=t.slice(1),i=t[0]),t==="0")return 0;if(i==="0"){if(t[1]==="b")return r*parseInt(t.slice(2),2);if(t[1]==="x")return r*parseInt(t.slice(2),16);if(t[1]==="o")return r*parseInt(t.slice(2),8)}return r*parseInt(t,10)}p(Bc,"constructYamlInteger");function Lc(e){return Object.prototype.toString.call(e)==="[object Number]"&&e%1===0&&!wt.isNegativeZero(e)}p(Lc,"isInteger");var V0=new Mt("tag:yaml.org,2002:int",{kind:"scalar",resolve:Tc,construct:Bc,predicate:Lc,represent:{binary:p(function(e){return e>=0?"0b"+e.toString(2):"-0b"+e.toString(2).slice(1)},"binary"),octal:p(function(e){return e>=0?"0o"+e.toString(8):"-0o"+e.toString(8).slice(1)},"octal"),decimal:p(function(e){return e.toString(10)},"decimal"),hexadecimal:p(function(e){return e>=0?"0x"+e.toString(16).toUpperCase():"-0x"+e.toString(16).toUpperCase().slice(1)},"hexadecimal")},defaultStyle:"decimal",styleAliases:{binary:[2,"bin"],octal:[8,"oct"],decimal:[10,"dec"],hexadecimal:[16,"hex"]}}),G0=new RegExp("^(?:[-+]?(?:[0-9][0-9_]*)(?:\\.[0-9_]*)?(?:[eE][-+]?[0-9]+)?|\\.[0-9_]+(?:[eE][-+]?[0-9]+)?|[-+]?\\.(?:inf|Inf|INF)|\\.(?:nan|NaN|NAN))$");function Mc(e){return!(e===null||!G0.test(e)||e[e.length-1]==="_")}p(Mc,"resolveYamlFloat");function $c(e){var t,r;return t=e.replace(/_/g,"").toLowerCase(),r=t[0]==="-"?-1:1,"+-".indexOf(t[0])>=0&&(t=t.slice(1)),t===".inf"?r===1?Number.POSITIVE_INFINITY:Number.NEGATIVE_INFINITY:t===".nan"?NaN:r*parseFloat(t,10)}p($c,"constructYamlFloat");var U0=/^[-+]?[0-9]+e/;function Ac(e,t){var r;if(isNaN(e))switch(t){case"lowercase":return".nan";case"uppercase":return".NAN";case"camelcase":return".NaN"}else if(Number.POSITIVE_INFINITY===e)switch(t){case"lowercase":return".inf";case"uppercase":return".INF";case"camelcase":return".Inf"}else if(Number.NEGATIVE_INFINITY===e)switch(t){case"lowercase":return"-.inf";case"uppercase":return"-.INF";case"camelcase":return"-.Inf"}else if(wt.isNegativeZero(e))return"-0.0";return r=e.toString(10),U0.test(r)?r.replace("e",".e"):r}p(Ac,"representYamlFloat");function Fc(e){return Object.prototype.toString.call(e)==="[object Number]"&&(e%1!==0||wt.isNegativeZero(e))}p(Fc,"isFloat");var X0=new Mt("tag:yaml.org,2002:float",{kind:"scalar",resolve:Mc,construct:$c,predicate:Fc,represent:Ac,defaultStyle:"lowercase"}),Ec=H0.extend({implicit:[j0,Y0,V0,X0]}),Z0=Ec,Dc=new RegExp("^([0-9][0-9][0-9][0-9])-([0-9][0-9])-([0-9][0-9])$"),Oc=new RegExp("^([0-9][0-9][0-9][0-9])-([0-9][0-9]?)-([0-9][0-9]?)(?:[Tt]|[ \\t]+)([0-9][0-9]?):([0-9][0-9]):([0-9][0-9])(?:\\.([0-9]*))?(?:[ \\t]*(Z|([-+])([0-9][0-9]?)(?::([0-9][0-9]))?))?$");function Ic(e){return e===null?!1:Dc.exec(e)!==null||Oc.exec(e)!==null}p(Ic,"resolveYamlTimestamp");function Rc(e){var t,r,i,a,n,o,s,c=0,l=null,h,u,f;if(t=Dc.exec(e),t===null&&(t=Oc.exec(e)),t===null)throw new Error("Date resolve error");if(r=+t[1],i=+t[2]-1,a=+t[3],!t[4])return new Date(Date.UTC(r,i,a));if(n=+t[4],o=+t[5],s=+t[6],t[7]){for(c=t[7].slice(0,3);c.length<3;)c+="0";c=+c}return t[9]&&(h=+t[10],u=+(t[11]||0),l=(h*60+u)*6e4,t[9]==="-"&&(l=-l)),f=new Date(Date.UTC(r,i,a,n,o,s,c)),l&&f.setTime(f.getTime()-l),f}p(Rc,"constructYamlTimestamp");function Pc(e){return e.toISOString()}p(Pc,"representYamlTimestamp");var K0=new Mt("tag:yaml.org,2002:timestamp",{kind:"scalar",resolve:Ic,construct:Rc,instanceOf:Date,represent:Pc});function Nc(e){return e==="<<"||e===null}p(Nc,"resolveYamlMerge");var Q0=new Mt("tag:yaml.org,2002:merge",{kind:"scalar",resolve:Nc}),os=`ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=
|
|
87
|
+
\r`;function zc(e){if(e===null)return!1;var t,r,i=0,a=e.length,n=os;for(r=0;r<a;r++)if(t=n.indexOf(e.charAt(r)),!(t>64)){if(t<0)return!1;i+=6}return i%8===0}p(zc,"resolveYamlBinary");function qc(e){var t,r,i=e.replace(/[\r\n=]/g,""),a=i.length,n=os,o=0,s=[];for(t=0;t<a;t++)t%4===0&&t&&(s.push(o>>16&255),s.push(o>>8&255),s.push(o&255)),o=o<<6|n.indexOf(i.charAt(t));return r=a%4*6,r===0?(s.push(o>>16&255),s.push(o>>8&255),s.push(o&255)):r===18?(s.push(o>>10&255),s.push(o>>2&255)):r===12&&s.push(o>>4&255),new Uint8Array(s)}p(qc,"constructYamlBinary");function Wc(e){var t="",r=0,i,a,n=e.length,o=os;for(i=0;i<n;i++)i%3===0&&i&&(t+=o[r>>18&63],t+=o[r>>12&63],t+=o[r>>6&63],t+=o[r&63]),r=(r<<8)+e[i];return a=n%3,a===0?(t+=o[r>>18&63],t+=o[r>>12&63],t+=o[r>>6&63],t+=o[r&63]):a===2?(t+=o[r>>10&63],t+=o[r>>4&63],t+=o[r<<2&63],t+=o[64]):a===1&&(t+=o[r>>2&63],t+=o[r<<4&63],t+=o[64],t+=o[64]),t}p(Wc,"representYamlBinary");function Hc(e){return Object.prototype.toString.call(e)==="[object Uint8Array]"}p(Hc,"isBinary");var J0=new Mt("tag:yaml.org,2002:binary",{kind:"scalar",resolve:zc,construct:qc,predicate:Hc,represent:Wc}),tx=Object.prototype.hasOwnProperty,ex=Object.prototype.toString;function jc(e){if(e===null)return!0;var t=[],r,i,a,n,o,s=e;for(r=0,i=s.length;r<i;r+=1){if(a=s[r],o=!1,ex.call(a)!=="[object Object]")return!1;for(n in a)if(tx.call(a,n))if(!o)o=!0;else return!1;if(!o)return!1;if(t.indexOf(n)===-1)t.push(n);else return!1}return!0}p(jc,"resolveYamlOmap");function Yc(e){return e!==null?e:[]}p(Yc,"constructYamlOmap");var rx=new Mt("tag:yaml.org,2002:omap",{kind:"sequence",resolve:jc,construct:Yc}),ix=Object.prototype.toString;function Vc(e){if(e===null)return!0;var t,r,i,a,n,o=e;for(n=new Array(o.length),t=0,r=o.length;t<r;t+=1){if(i=o[t],ix.call(i)!=="[object Object]"||(a=Object.keys(i),a.length!==1))return!1;n[t]=[a[0],i[a[0]]]}return!0}p(Vc,"resolveYamlPairs");function Gc(e){if(e===null)return[];var t,r,i,a,n,o=e;for(n=new Array(o.length),t=0,r=o.length;t<r;t+=1)i=o[t],a=Object.keys(i),n[t]=[a[0],i[a[0]]];return n}p(Gc,"constructYamlPairs");var ax=new Mt("tag:yaml.org,2002:pairs",{kind:"sequence",resolve:Vc,construct:Gc}),nx=Object.prototype.hasOwnProperty;function Uc(e){if(e===null)return!0;var t,r=e;for(t in r)if(nx.call(r,t)&&r[t]!==null)return!1;return!0}p(Uc,"resolveYamlSet");function Xc(e){return e!==null?e:{}}p(Xc,"constructYamlSet");var sx=new Mt("tag:yaml.org,2002:set",{kind:"mapping",resolve:Uc,construct:Xc}),Zc=Z0.extend({implicit:[K0,Q0],explicit:[J0,rx,ax,sx]}),ke=Object.prototype.hasOwnProperty,Vi=1,Kc=2,Qc=3,Gi=4,Ra=1,ox=2,ao=3,lx=/[\x00-\x08\x0B\x0C\x0E-\x1F\x7F-\x84\x86-\x9F\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,cx=/[\x85\u2028\u2029]/,hx=/[,\[\]\{\}]/,Jc=/^(?:!|!!|![a-z\-]+!)$/i,th=/^(?:!|[^,\[\]\{\}])(?:%[0-9a-f]{2}|[0-9a-z\-#;\/\?:@&=\+\$,_\.!~\*'\(\)\[\]])*$/i;function ln(e){return Object.prototype.toString.call(e)}p(ln,"_class");function Ut(e){return e===10||e===13}p(Ut,"is_EOL");function Ce(e){return e===9||e===32}p(Ce,"is_WHITE_SPACE");function Dt(e){return e===9||e===32||e===10||e===13}p(Dt,"is_WS_OR_EOL");function Fe(e){return e===44||e===91||e===93||e===123||e===125}p(Fe,"is_FLOW_INDICATOR");function eh(e){var t;return 48<=e&&e<=57?e-48:(t=e|32,97<=t&&t<=102?t-97+10:-1)}p(eh,"fromHexCode");function rh(e){return e===120?2:e===117?4:e===85?8:0}p(rh,"escapedHexLen");function ih(e){return 48<=e&&e<=57?e-48:-1}p(ih,"fromDecimalCode");function cn(e){return e===48?"\0":e===97?"\x07":e===98?"\b":e===116||e===9?" ":e===110?`
|
|
88
|
+
`:e===118?"\v":e===102?"\f":e===114?"\r":e===101?"\x1B":e===32?" ":e===34?'"':e===47?"/":e===92?"\\":e===78?"
":e===95?" ":e===76?"\u2028":e===80?"\u2029":""}p(cn,"simpleEscapeSequence");function ah(e){return e<=65535?String.fromCharCode(e):String.fromCharCode((e-65536>>10)+55296,(e-65536&1023)+56320)}p(ah,"charFromCodepoint");function ls(e,t,r){t==="__proto__"?Object.defineProperty(e,t,{configurable:!0,enumerable:!0,writable:!0,value:r}):e[t]=r}p(ls,"setProperty");var nh=new Array(256),sh=new Array(256);for(Be=0;Be<256;Be++)nh[Be]=cn(Be)?1:0,sh[Be]=cn(Be);var Be;function oh(e,t){this.input=e,this.filename=t.filename||null,this.schema=t.schema||Zc,this.onWarning=t.onWarning||null,this.legacy=t.legacy||!1,this.json=t.json||!1,this.listener=t.listener||null,this.implicitTypes=this.schema.compiledImplicit,this.typeMap=this.schema.compiledTypeMap,this.length=e.length,this.position=0,this.line=0,this.lineStart=0,this.lineIndent=0,this.firstTabInLine=-1,this.documents=[]}p(oh,"State$1");function cs(e,t){var r={name:e.filename,buffer:e.input.slice(0,-1),position:e.position,line:e.line,column:e.position-e.lineStart};return r.snippet=I0(r),new Pt(t,r)}p(cs,"generateError");function G(e,t){throw cs(e,t)}p(G,"throwError");function Yr(e,t){e.onWarning&&e.onWarning.call(null,cs(e,t))}p(Yr,"throwWarning");var no={YAML:p(function(t,r,i){var a,n,o;t.version!==null&&G(t,"duplication of %YAML directive"),i.length!==1&&G(t,"YAML directive accepts exactly one argument"),a=/^([0-9]+)\.([0-9]+)$/.exec(i[0]),a===null&&G(t,"ill-formed argument of the YAML directive"),n=parseInt(a[1],10),o=parseInt(a[2],10),n!==1&&G(t,"unacceptable YAML version of the document"),t.version=i[0],t.checkLineBreaks=o<2,o!==1&&o!==2&&Yr(t,"unsupported YAML version of the document")},"handleYamlDirective"),TAG:p(function(t,r,i){var a,n;i.length!==2&&G(t,"TAG directive accepts exactly two arguments"),a=i[0],n=i[1],Jc.test(a)||G(t,"ill-formed tag handle (first argument) of the TAG directive"),ke.call(t.tagMap,a)&&G(t,'there is a previously declared suffix for "'+a+'" tag handle'),th.test(n)||G(t,"ill-formed tag prefix (second argument) of the TAG directive");try{n=decodeURIComponent(n)}catch{G(t,"tag prefix is malformed: "+n)}t.tagMap[a]=n},"handleTagDirective")};function he(e,t,r,i){var a,n,o,s;if(t<r){if(s=e.input.slice(t,r),i)for(a=0,n=s.length;a<n;a+=1)o=s.charCodeAt(a),o===9||32<=o&&o<=1114111||G(e,"expected valid JSON character");else lx.test(s)&&G(e,"the stream contains non-printable characters");e.result+=s}}p(he,"captureSegment");function hn(e,t,r,i){var a,n,o,s;for(wt.isObject(r)||G(e,"cannot merge mappings; the provided source object is unacceptable"),a=Object.keys(r),o=0,s=a.length;o<s;o+=1)n=a[o],ke.call(t,n)||(ls(t,n,r[n]),i[n]=!0)}p(hn,"mergeMappings");function Ee(e,t,r,i,a,n,o,s,c){var l,h;if(Array.isArray(a))for(a=Array.prototype.slice.call(a),l=0,h=a.length;l<h;l+=1)Array.isArray(a[l])&&G(e,"nested arrays are not supported inside keys"),typeof a=="object"&&ln(a[l])==="[object Object]"&&(a[l]="[object Object]");if(typeof a=="object"&&ln(a)==="[object Object]"&&(a="[object Object]"),a=String(a),t===null&&(t={}),i==="tag:yaml.org,2002:merge")if(Array.isArray(n))for(l=0,h=n.length;l<h;l+=1)hn(e,t,n[l],r);else hn(e,t,n,r);else!e.json&&!ke.call(r,a)&&ke.call(t,a)&&(e.line=o||e.line,e.lineStart=s||e.lineStart,e.position=c||e.position,G(e,"duplicated mapping key")),ls(t,a,n),delete r[a];return t}p(Ee,"storeMappingPair");function ba(e){var t;t=e.input.charCodeAt(e.position),t===10?e.position++:t===13?(e.position++,e.input.charCodeAt(e.position)===10&&e.position++):G(e,"a line break is expected"),e.line+=1,e.lineStart=e.position,e.firstTabInLine=-1}p(ba,"readLineBreak");function yt(e,t,r){for(var i=0,a=e.input.charCodeAt(e.position);a!==0;){for(;Ce(a);)a===9&&e.firstTabInLine===-1&&(e.firstTabInLine=e.position),a=e.input.charCodeAt(++e.position);if(t&&a===35)do a=e.input.charCodeAt(++e.position);while(a!==10&&a!==13&&a!==0);if(Ut(a))for(ba(e),a=e.input.charCodeAt(e.position),i++,e.lineIndent=0;a===32;)e.lineIndent++,a=e.input.charCodeAt(++e.position);else break}return r!==-1&&i!==0&&e.lineIndent<r&&Yr(e,"deficient indentation"),i}p(yt,"skipSeparationSpace");function ai(e){var t=e.position,r;return r=e.input.charCodeAt(t),!!((r===45||r===46)&&r===e.input.charCodeAt(t+1)&&r===e.input.charCodeAt(t+2)&&(t+=3,r=e.input.charCodeAt(t),r===0||Dt(r)))}p(ai,"testDocumentSeparator");function Ca(e,t){t===1?e.result+=" ":t>1&&(e.result+=wt.repeat(`
|
|
89
|
+
`,t-1))}p(Ca,"writeFoldedLines");function lh(e,t,r){var i,a,n,o,s,c,l,h,u=e.kind,f=e.result,d;if(d=e.input.charCodeAt(e.position),Dt(d)||Fe(d)||d===35||d===38||d===42||d===33||d===124||d===62||d===39||d===34||d===37||d===64||d===96||(d===63||d===45)&&(a=e.input.charCodeAt(e.position+1),Dt(a)||r&&Fe(a)))return!1;for(e.kind="scalar",e.result="",n=o=e.position,s=!1;d!==0;){if(d===58){if(a=e.input.charCodeAt(e.position+1),Dt(a)||r&&Fe(a))break}else if(d===35){if(i=e.input.charCodeAt(e.position-1),Dt(i))break}else{if(e.position===e.lineStart&&ai(e)||r&&Fe(d))break;if(Ut(d))if(c=e.line,l=e.lineStart,h=e.lineIndent,yt(e,!1,-1),e.lineIndent>=t){s=!0,d=e.input.charCodeAt(e.position);continue}else{e.position=o,e.line=c,e.lineStart=l,e.lineIndent=h;break}}s&&(he(e,n,o,!1),Ca(e,e.line-c),n=o=e.position,s=!1),Ce(d)||(o=e.position+1),d=e.input.charCodeAt(++e.position)}return he(e,n,o,!1),e.result?!0:(e.kind=u,e.result=f,!1)}p(lh,"readPlainScalar");function ch(e,t){var r,i,a;if(r=e.input.charCodeAt(e.position),r!==39)return!1;for(e.kind="scalar",e.result="",e.position++,i=a=e.position;(r=e.input.charCodeAt(e.position))!==0;)if(r===39)if(he(e,i,e.position,!0),r=e.input.charCodeAt(++e.position),r===39)i=e.position,e.position++,a=e.position;else return!0;else Ut(r)?(he(e,i,a,!0),Ca(e,yt(e,!1,t)),i=a=e.position):e.position===e.lineStart&&ai(e)?G(e,"unexpected end of the document within a single quoted scalar"):(e.position++,a=e.position);G(e,"unexpected end of the stream within a single quoted scalar")}p(ch,"readSingleQuotedScalar");function hh(e,t){var r,i,a,n,o,s;if(s=e.input.charCodeAt(e.position),s!==34)return!1;for(e.kind="scalar",e.result="",e.position++,r=i=e.position;(s=e.input.charCodeAt(e.position))!==0;){if(s===34)return he(e,r,e.position,!0),e.position++,!0;if(s===92){if(he(e,r,e.position,!0),s=e.input.charCodeAt(++e.position),Ut(s))yt(e,!1,t);else if(s<256&&nh[s])e.result+=sh[s],e.position++;else if((o=rh(s))>0){for(a=o,n=0;a>0;a--)s=e.input.charCodeAt(++e.position),(o=eh(s))>=0?n=(n<<4)+o:G(e,"expected hexadecimal character");e.result+=ah(n),e.position++}else G(e,"unknown escape sequence");r=i=e.position}else Ut(s)?(he(e,r,i,!0),Ca(e,yt(e,!1,t)),r=i=e.position):e.position===e.lineStart&&ai(e)?G(e,"unexpected end of the document within a double quoted scalar"):(e.position++,i=e.position)}G(e,"unexpected end of the stream within a double quoted scalar")}p(hh,"readDoubleQuotedScalar");function uh(e,t){var r=!0,i,a,n,o=e.tag,s,c=e.anchor,l,h,u,f,d,g=Object.create(null),m,y,x,b;if(b=e.input.charCodeAt(e.position),b===91)h=93,d=!1,s=[];else if(b===123)h=125,d=!0,s={};else return!1;for(e.anchor!==null&&(e.anchorMap[e.anchor]=s),b=e.input.charCodeAt(++e.position);b!==0;){if(yt(e,!0,t),b=e.input.charCodeAt(e.position),b===h)return e.position++,e.tag=o,e.anchor=c,e.kind=d?"mapping":"sequence",e.result=s,!0;r?b===44&&G(e,"expected the node content, but found ','"):G(e,"missed comma between flow collection entries"),y=m=x=null,u=f=!1,b===63&&(l=e.input.charCodeAt(e.position+1),Dt(l)&&(u=f=!0,e.position++,yt(e,!0,t))),i=e.line,a=e.lineStart,n=e.position,Pe(e,t,Vi,!1,!0),y=e.tag,m=e.result,yt(e,!0,t),b=e.input.charCodeAt(e.position),(f||e.line===i)&&b===58&&(u=!0,b=e.input.charCodeAt(++e.position),yt(e,!0,t),Pe(e,t,Vi,!1,!0),x=e.result),d?Ee(e,s,g,y,m,x,i,a,n):u?s.push(Ee(e,null,g,y,m,x,i,a,n)):s.push(m),yt(e,!0,t),b=e.input.charCodeAt(e.position),b===44?(r=!0,b=e.input.charCodeAt(++e.position)):r=!1}G(e,"unexpected end of the stream within a flow collection")}p(uh,"readFlowCollection");function dh(e,t){var r,i,a=Ra,n=!1,o=!1,s=t,c=0,l=!1,h,u;if(u=e.input.charCodeAt(e.position),u===124)i=!1;else if(u===62)i=!0;else return!1;for(e.kind="scalar",e.result="";u!==0;)if(u=e.input.charCodeAt(++e.position),u===43||u===45)Ra===a?a=u===43?ao:ox:G(e,"repeat of a chomping mode identifier");else if((h=ih(u))>=0)h===0?G(e,"bad explicit indentation width of a block scalar; it cannot be less than one"):o?G(e,"repeat of an indentation width identifier"):(s=t+h-1,o=!0);else break;if(Ce(u)){do u=e.input.charCodeAt(++e.position);while(Ce(u));if(u===35)do u=e.input.charCodeAt(++e.position);while(!Ut(u)&&u!==0)}for(;u!==0;){for(ba(e),e.lineIndent=0,u=e.input.charCodeAt(e.position);(!o||e.lineIndent<s)&&u===32;)e.lineIndent++,u=e.input.charCodeAt(++e.position);if(!o&&e.lineIndent>s&&(s=e.lineIndent),Ut(u)){c++;continue}if(e.lineIndent<s){a===ao?e.result+=wt.repeat(`
|
|
90
|
+
`,n?1+c:c):a===Ra&&n&&(e.result+=`
|
|
91
|
+
`);break}for(i?Ce(u)?(l=!0,e.result+=wt.repeat(`
|
|
92
|
+
`,n?1+c:c)):l?(l=!1,e.result+=wt.repeat(`
|
|
93
|
+
`,c+1)):c===0?n&&(e.result+=" "):e.result+=wt.repeat(`
|
|
94
|
+
`,c):e.result+=wt.repeat(`
|
|
95
|
+
`,n?1+c:c),n=!0,o=!0,c=0,r=e.position;!Ut(u)&&u!==0;)u=e.input.charCodeAt(++e.position);he(e,r,e.position,!1)}return!0}p(dh,"readBlockScalar");function un(e,t){var r,i=e.tag,a=e.anchor,n=[],o,s=!1,c;if(e.firstTabInLine!==-1)return!1;for(e.anchor!==null&&(e.anchorMap[e.anchor]=n),c=e.input.charCodeAt(e.position);c!==0&&(e.firstTabInLine!==-1&&(e.position=e.firstTabInLine,G(e,"tab characters must not be used in indentation")),!(c!==45||(o=e.input.charCodeAt(e.position+1),!Dt(o))));){if(s=!0,e.position++,yt(e,!0,-1)&&e.lineIndent<=t){n.push(null),c=e.input.charCodeAt(e.position);continue}if(r=e.line,Pe(e,t,Qc,!1,!0),n.push(e.result),yt(e,!0,-1),c=e.input.charCodeAt(e.position),(e.line===r||e.lineIndent>t)&&c!==0)G(e,"bad indentation of a sequence entry");else if(e.lineIndent<t)break}return s?(e.tag=i,e.anchor=a,e.kind="sequence",e.result=n,!0):!1}p(un,"readBlockSequence");function fh(e,t,r){var i,a,n,o,s,c,l=e.tag,h=e.anchor,u={},f=Object.create(null),d=null,g=null,m=null,y=!1,x=!1,b;if(e.firstTabInLine!==-1)return!1;for(e.anchor!==null&&(e.anchorMap[e.anchor]=u),b=e.input.charCodeAt(e.position);b!==0;){if(!y&&e.firstTabInLine!==-1&&(e.position=e.firstTabInLine,G(e,"tab characters must not be used in indentation")),i=e.input.charCodeAt(e.position+1),n=e.line,(b===63||b===58)&&Dt(i))b===63?(y&&(Ee(e,u,f,d,g,null,o,s,c),d=g=m=null),x=!0,y=!0,a=!0):y?(y=!1,a=!0):G(e,"incomplete explicit mapping pair; a key node is missed; or followed by a non-tabulated empty line"),e.position+=1,b=i;else{if(o=e.line,s=e.lineStart,c=e.position,!Pe(e,r,Kc,!1,!0))break;if(e.line===n){for(b=e.input.charCodeAt(e.position);Ce(b);)b=e.input.charCodeAt(++e.position);if(b===58)b=e.input.charCodeAt(++e.position),Dt(b)||G(e,"a whitespace character is expected after the key-value separator within a block mapping"),y&&(Ee(e,u,f,d,g,null,o,s,c),d=g=m=null),x=!0,y=!1,a=!1,d=e.tag,g=e.result;else if(x)G(e,"can not read an implicit mapping pair; a colon is missed");else return e.tag=l,e.anchor=h,!0}else if(x)G(e,"can not read a block mapping entry; a multiline key may not be an implicit key");else return e.tag=l,e.anchor=h,!0}if((e.line===n||e.lineIndent>t)&&(y&&(o=e.line,s=e.lineStart,c=e.position),Pe(e,t,Gi,!0,a)&&(y?g=e.result:m=e.result),y||(Ee(e,u,f,d,g,m,o,s,c),d=g=m=null),yt(e,!0,-1),b=e.input.charCodeAt(e.position)),(e.line===n||e.lineIndent>t)&&b!==0)G(e,"bad indentation of a mapping entry");else if(e.lineIndent<t)break}return y&&Ee(e,u,f,d,g,null,o,s,c),x&&(e.tag=l,e.anchor=h,e.kind="mapping",e.result=u),x}p(fh,"readBlockMapping");function ph(e){var t,r=!1,i=!1,a,n,o;if(o=e.input.charCodeAt(e.position),o!==33)return!1;if(e.tag!==null&&G(e,"duplication of a tag property"),o=e.input.charCodeAt(++e.position),o===60?(r=!0,o=e.input.charCodeAt(++e.position)):o===33?(i=!0,a="!!",o=e.input.charCodeAt(++e.position)):a="!",t=e.position,r){do o=e.input.charCodeAt(++e.position);while(o!==0&&o!==62);e.position<e.length?(n=e.input.slice(t,e.position),o=e.input.charCodeAt(++e.position)):G(e,"unexpected end of the stream within a verbatim tag")}else{for(;o!==0&&!Dt(o);)o===33&&(i?G(e,"tag suffix cannot contain exclamation marks"):(a=e.input.slice(t-1,e.position+1),Jc.test(a)||G(e,"named tag handle cannot contain such characters"),i=!0,t=e.position+1)),o=e.input.charCodeAt(++e.position);n=e.input.slice(t,e.position),hx.test(n)&&G(e,"tag suffix cannot contain flow indicator characters")}n&&!th.test(n)&&G(e,"tag name cannot contain such characters: "+n);try{n=decodeURIComponent(n)}catch{G(e,"tag name is malformed: "+n)}return r?e.tag=n:ke.call(e.tagMap,a)?e.tag=e.tagMap[a]+n:a==="!"?e.tag="!"+n:a==="!!"?e.tag="tag:yaml.org,2002:"+n:G(e,'undeclared tag handle "'+a+'"'),!0}p(ph,"readTagProperty");function gh(e){var t,r;if(r=e.input.charCodeAt(e.position),r!==38)return!1;for(e.anchor!==null&&G(e,"duplication of an anchor property"),r=e.input.charCodeAt(++e.position),t=e.position;r!==0&&!Dt(r)&&!Fe(r);)r=e.input.charCodeAt(++e.position);return e.position===t&&G(e,"name of an anchor node must contain at least one character"),e.anchor=e.input.slice(t,e.position),!0}p(gh,"readAnchorProperty");function mh(e){var t,r,i;if(i=e.input.charCodeAt(e.position),i!==42)return!1;for(i=e.input.charCodeAt(++e.position),t=e.position;i!==0&&!Dt(i)&&!Fe(i);)i=e.input.charCodeAt(++e.position);return e.position===t&&G(e,"name of an alias node must contain at least one character"),r=e.input.slice(t,e.position),ke.call(e.anchorMap,r)||G(e,'unidentified alias "'+r+'"'),e.result=e.anchorMap[r],yt(e,!0,-1),!0}p(mh,"readAlias");function Pe(e,t,r,i,a){var n,o,s,c=1,l=!1,h=!1,u,f,d,g,m,y;if(e.listener!==null&&e.listener("open",e),e.tag=null,e.anchor=null,e.kind=null,e.result=null,n=o=s=Gi===r||Qc===r,i&&yt(e,!0,-1)&&(l=!0,e.lineIndent>t?c=1:e.lineIndent===t?c=0:e.lineIndent<t&&(c=-1)),c===1)for(;ph(e)||gh(e);)yt(e,!0,-1)?(l=!0,s=n,e.lineIndent>t?c=1:e.lineIndent===t?c=0:e.lineIndent<t&&(c=-1)):s=!1;if(s&&(s=l||a),(c===1||Gi===r)&&(Vi===r||Kc===r?m=t:m=t+1,y=e.position-e.lineStart,c===1?s&&(un(e,y)||fh(e,y,m))||uh(e,m)?h=!0:(o&&dh(e,m)||ch(e,m)||hh(e,m)?h=!0:mh(e)?(h=!0,(e.tag!==null||e.anchor!==null)&&G(e,"alias node should not have any properties")):lh(e,m,Vi===r)&&(h=!0,e.tag===null&&(e.tag="?")),e.anchor!==null&&(e.anchorMap[e.anchor]=e.result)):c===0&&(h=s&&un(e,y))),e.tag===null)e.anchor!==null&&(e.anchorMap[e.anchor]=e.result);else if(e.tag==="?"){for(e.result!==null&&e.kind!=="scalar"&&G(e,'unacceptable node kind for !<?> tag; it should be "scalar", not "'+e.kind+'"'),u=0,f=e.implicitTypes.length;u<f;u+=1)if(g=e.implicitTypes[u],g.resolve(e.result)){e.result=g.construct(e.result),e.tag=g.tag,e.anchor!==null&&(e.anchorMap[e.anchor]=e.result);break}}else if(e.tag!=="!"){if(ke.call(e.typeMap[e.kind||"fallback"],e.tag))g=e.typeMap[e.kind||"fallback"][e.tag];else for(g=null,d=e.typeMap.multi[e.kind||"fallback"],u=0,f=d.length;u<f;u+=1)if(e.tag.slice(0,d[u].tag.length)===d[u].tag){g=d[u];break}g||G(e,"unknown tag !<"+e.tag+">"),e.result!==null&&g.kind!==e.kind&&G(e,"unacceptable node kind for !<"+e.tag+'> tag; it should be "'+g.kind+'", not "'+e.kind+'"'),g.resolve(e.result,e.tag)?(e.result=g.construct(e.result,e.tag),e.anchor!==null&&(e.anchorMap[e.anchor]=e.result)):G(e,"cannot resolve a node with !<"+e.tag+"> explicit tag")}return e.listener!==null&&e.listener("close",e),e.tag!==null||e.anchor!==null||h}p(Pe,"composeNode");function yh(e){var t=e.position,r,i,a,n=!1,o;for(e.version=null,e.checkLineBreaks=e.legacy,e.tagMap=Object.create(null),e.anchorMap=Object.create(null);(o=e.input.charCodeAt(e.position))!==0&&(yt(e,!0,-1),o=e.input.charCodeAt(e.position),!(e.lineIndent>0||o!==37));){for(n=!0,o=e.input.charCodeAt(++e.position),r=e.position;o!==0&&!Dt(o);)o=e.input.charCodeAt(++e.position);for(i=e.input.slice(r,e.position),a=[],i.length<1&&G(e,"directive name must not be less than one character in length");o!==0;){for(;Ce(o);)o=e.input.charCodeAt(++e.position);if(o===35){do o=e.input.charCodeAt(++e.position);while(o!==0&&!Ut(o));break}if(Ut(o))break;for(r=e.position;o!==0&&!Dt(o);)o=e.input.charCodeAt(++e.position);a.push(e.input.slice(r,e.position))}o!==0&&ba(e),ke.call(no,i)?no[i](e,i,a):Yr(e,'unknown document directive "'+i+'"')}if(yt(e,!0,-1),e.lineIndent===0&&e.input.charCodeAt(e.position)===45&&e.input.charCodeAt(e.position+1)===45&&e.input.charCodeAt(e.position+2)===45?(e.position+=3,yt(e,!0,-1)):n&&G(e,"directives end mark is expected"),Pe(e,e.lineIndent-1,Gi,!1,!0),yt(e,!0,-1),e.checkLineBreaks&&cx.test(e.input.slice(t,e.position))&&Yr(e,"non-ASCII line breaks are interpreted as content"),e.documents.push(e.result),e.position===e.lineStart&&ai(e)){e.input.charCodeAt(e.position)===46&&(e.position+=3,yt(e,!0,-1));return}if(e.position<e.length-1)G(e,"end of the stream or a document separator is expected");else return}p(yh,"readDocument");function hs(e,t){e=String(e),t=t||{},e.length!==0&&(e.charCodeAt(e.length-1)!==10&&e.charCodeAt(e.length-1)!==13&&(e+=`
|
|
96
|
+
`),e.charCodeAt(0)===65279&&(e=e.slice(1)));var r=new oh(e,t),i=e.indexOf("\0");for(i!==-1&&(r.position=i,G(r,"null byte is not allowed in input")),r.input+="\0";r.input.charCodeAt(r.position)===32;)r.lineIndent+=1,r.position+=1;for(;r.position<r.length-1;)yh(r);return r.documents}p(hs,"loadDocuments");function ux(e,t,r){t!==null&&typeof t=="object"&&typeof r>"u"&&(r=t,t=null);var i=hs(e,r);if(typeof t!="function")return i;for(var a=0,n=i.length;a<n;a+=1)t(i[a])}p(ux,"loadAll$1");function xh(e,t){var r=hs(e,t);if(r.length!==0){if(r.length===1)return r[0];throw new Pt("expected a single document in the stream, but found more")}}p(xh,"load$1");var dx=xh,fx={load:dx},bh=Object.prototype.toString,Ch=Object.prototype.hasOwnProperty,us=65279,px=9,Vr=10,gx=13,mx=32,yx=33,xx=34,dn=35,bx=37,Cx=38,kx=39,wx=42,kh=44,vx=45,Ui=58,_x=61,Sx=62,Tx=63,Bx=64,wh=91,vh=93,Lx=96,_h=123,Mx=124,Sh=125,Ft={};Ft[0]="\\0";Ft[7]="\\a";Ft[8]="\\b";Ft[9]="\\t";Ft[10]="\\n";Ft[11]="\\v";Ft[12]="\\f";Ft[13]="\\r";Ft[27]="\\e";Ft[34]='\\"';Ft[92]="\\\\";Ft[133]="\\N";Ft[160]="\\_";Ft[8232]="\\L";Ft[8233]="\\P";var $x=["y","Y","yes","Yes","YES","on","On","ON","n","N","no","No","NO","off","Off","OFF"],Ax=/^[-+]?[0-9_]+(?::[0-9_]+)+(?:\.[0-9_]*)?$/;function Th(e,t){var r,i,a,n,o,s,c;if(t===null)return{};for(r={},i=Object.keys(t),a=0,n=i.length;a<n;a+=1)o=i[a],s=String(t[o]),o.slice(0,2)==="!!"&&(o="tag:yaml.org,2002:"+o.slice(2)),c=e.compiledTypeMap.fallback[o],c&&Ch.call(c.styleAliases,s)&&(s=c.styleAliases[s]),r[o]=s;return r}p(Th,"compileStyleMap");function Bh(e){var t,r,i;if(t=e.toString(16).toUpperCase(),e<=255)r="x",i=2;else if(e<=65535)r="u",i=4;else if(e<=4294967295)r="U",i=8;else throw new Pt("code point within a string may not be greater than 0xFFFFFFFF");return"\\"+r+wt.repeat("0",i-t.length)+t}p(Bh,"encodeHex");var Fx=1,Gr=2;function Lh(e){this.schema=e.schema||Zc,this.indent=Math.max(1,e.indent||2),this.noArrayIndent=e.noArrayIndent||!1,this.skipInvalid=e.skipInvalid||!1,this.flowLevel=wt.isNothing(e.flowLevel)?-1:e.flowLevel,this.styleMap=Th(this.schema,e.styles||null),this.sortKeys=e.sortKeys||!1,this.lineWidth=e.lineWidth||80,this.noRefs=e.noRefs||!1,this.noCompatMode=e.noCompatMode||!1,this.condenseFlow=e.condenseFlow||!1,this.quotingType=e.quotingType==='"'?Gr:Fx,this.forceQuotes=e.forceQuotes||!1,this.replacer=typeof e.replacer=="function"?e.replacer:null,this.implicitTypes=this.schema.compiledImplicit,this.explicitTypes=this.schema.compiledExplicit,this.tag=null,this.result="",this.duplicates=[],this.usedDuplicates=null}p(Lh,"State");function fn(e,t){for(var r=wt.repeat(" ",t),i=0,a=-1,n="",o,s=e.length;i<s;)a=e.indexOf(`
|
|
97
|
+
`,i),a===-1?(o=e.slice(i),i=s):(o=e.slice(i,a+1),i=a+1),o.length&&o!==`
|
|
98
|
+
`&&(n+=r),n+=o;return n}p(fn,"indentString");function Xi(e,t){return`
|
|
99
|
+
`+wt.repeat(" ",e.indent*t)}p(Xi,"generateNextLine");function Mh(e,t){var r,i,a;for(r=0,i=e.implicitTypes.length;r<i;r+=1)if(a=e.implicitTypes[r],a.resolve(t))return!0;return!1}p(Mh,"testImplicitResolving");function Ur(e){return e===mx||e===px}p(Ur,"isWhitespace");function ur(e){return 32<=e&&e<=126||161<=e&&e<=55295&&e!==8232&&e!==8233||57344<=e&&e<=65533&&e!==us||65536<=e&&e<=1114111}p(ur,"isPrintable");function pn(e){return ur(e)&&e!==us&&e!==gx&&e!==Vr}p(pn,"isNsCharOrWhitespace");function gn(e,t,r){var i=pn(e),a=i&&!Ur(e);return(r?i:i&&e!==kh&&e!==wh&&e!==vh&&e!==_h&&e!==Sh)&&e!==dn&&!(t===Ui&&!a)||pn(t)&&!Ur(t)&&e===dn||t===Ui&&a}p(gn,"isPlainSafe");function $h(e){return ur(e)&&e!==us&&!Ur(e)&&e!==vx&&e!==Tx&&e!==Ui&&e!==kh&&e!==wh&&e!==vh&&e!==_h&&e!==Sh&&e!==dn&&e!==Cx&&e!==wx&&e!==yx&&e!==Mx&&e!==_x&&e!==Sx&&e!==kx&&e!==xx&&e!==bx&&e!==Bx&&e!==Lx}p($h,"isPlainSafeFirst");function Ah(e){return!Ur(e)&&e!==Ui}p(Ah,"isPlainSafeLast");function Xe(e,t){var r=e.charCodeAt(t),i;return r>=55296&&r<=56319&&t+1<e.length&&(i=e.charCodeAt(t+1),i>=56320&&i<=57343)?(r-55296)*1024+i-56320+65536:r}p(Xe,"codePointAt");function ds(e){var t=/^\n* /;return t.test(e)}p(ds,"needIndentIndicator");var Fh=1,mn=2,Eh=3,Dh=4,Ge=5;function Oh(e,t,r,i,a,n,o,s){var c,l=0,h=null,u=!1,f=!1,d=i!==-1,g=-1,m=$h(Xe(e,0))&&Ah(Xe(e,e.length-1));if(t||o)for(c=0;c<e.length;l>=65536?c+=2:c++){if(l=Xe(e,c),!ur(l))return Ge;m=m&&gn(l,h,s),h=l}else{for(c=0;c<e.length;l>=65536?c+=2:c++){if(l=Xe(e,c),l===Vr)u=!0,d&&(f=f||c-g-1>i&&e[g+1]!==" ",g=c);else if(!ur(l))return Ge;m=m&&gn(l,h,s),h=l}f=f||d&&c-g-1>i&&e[g+1]!==" "}return!u&&!f?m&&!o&&!a(e)?Fh:n===Gr?Ge:mn:r>9&&ds(e)?Ge:o?n===Gr?Ge:mn:f?Dh:Eh}p(Oh,"chooseScalarStyle");function Ih(e,t,r,i,a){e.dump=(function(){if(t.length===0)return e.quotingType===Gr?'""':"''";if(!e.noCompatMode&&($x.indexOf(t)!==-1||Ax.test(t)))return e.quotingType===Gr?'"'+t+'"':"'"+t+"'";var n=e.indent*Math.max(1,r),o=e.lineWidth===-1?-1:Math.max(Math.min(e.lineWidth,40),e.lineWidth-n),s=i||e.flowLevel>-1&&r>=e.flowLevel;function c(l){return Mh(e,l)}switch(p(c,"testAmbiguity"),Oh(t,s,e.indent,o,c,e.quotingType,e.forceQuotes&&!i,a)){case Fh:return t;case mn:return"'"+t.replace(/'/g,"''")+"'";case Eh:return"|"+yn(t,e.indent)+xn(fn(t,n));case Dh:return">"+yn(t,e.indent)+xn(fn(Rh(t,o),n));case Ge:return'"'+Ph(t)+'"';default:throw new Pt("impossible error: invalid scalar style")}})()}p(Ih,"writeScalar");function yn(e,t){var r=ds(e)?String(t):"",i=e[e.length-1]===`
|
|
100
|
+
`,a=i&&(e[e.length-2]===`
|
|
101
|
+
`||e===`
|
|
102
|
+
`),n=a?"+":i?"":"-";return r+n+`
|
|
103
|
+
`}p(yn,"blockHeader");function xn(e){return e[e.length-1]===`
|
|
104
|
+
`?e.slice(0,-1):e}p(xn,"dropEndingNewline");function Rh(e,t){for(var r=/(\n+)([^\n]*)/g,i=(function(){var l=e.indexOf(`
|
|
105
|
+
`);return l=l!==-1?l:e.length,r.lastIndex=l,bn(e.slice(0,l),t)})(),a=e[0]===`
|
|
106
|
+
`||e[0]===" ",n,o;o=r.exec(e);){var s=o[1],c=o[2];n=c[0]===" ",i+=s+(!a&&!n&&c!==""?`
|
|
107
|
+
`:"")+bn(c,t),a=n}return i}p(Rh,"foldString");function bn(e,t){if(e===""||e[0]===" ")return e;for(var r=/ [^ ]/g,i,a=0,n,o=0,s=0,c="";i=r.exec(e);)s=i.index,s-a>t&&(n=o>a?o:s,c+=`
|
|
108
|
+
`+e.slice(a,n),a=n+1),o=s;return c+=`
|
|
109
|
+
`,e.length-a>t&&o>a?c+=e.slice(a,o)+`
|
|
110
|
+
`+e.slice(o+1):c+=e.slice(a),c.slice(1)}p(bn,"foldLine");function Ph(e){for(var t="",r=0,i,a=0;a<e.length;r>=65536?a+=2:a++)r=Xe(e,a),i=Ft[r],!i&&ur(r)?(t+=e[a],r>=65536&&(t+=e[a+1])):t+=i||Bh(r);return t}p(Ph,"escapeString");function Nh(e,t,r){var i="",a=e.tag,n,o,s;for(n=0,o=r.length;n<o;n+=1)s=r[n],e.replacer&&(s=e.replacer.call(r,String(n),s)),(re(e,t,s,!1,!1)||typeof s>"u"&&re(e,t,null,!1,!1))&&(i!==""&&(i+=","+(e.condenseFlow?"":" ")),i+=e.dump);e.tag=a,e.dump="["+i+"]"}p(Nh,"writeFlowSequence");function Cn(e,t,r,i){var a="",n=e.tag,o,s,c;for(o=0,s=r.length;o<s;o+=1)c=r[o],e.replacer&&(c=e.replacer.call(r,String(o),c)),(re(e,t+1,c,!0,!0,!1,!0)||typeof c>"u"&&re(e,t+1,null,!0,!0,!1,!0))&&((!i||a!=="")&&(a+=Xi(e,t)),e.dump&&Vr===e.dump.charCodeAt(0)?a+="-":a+="- ",a+=e.dump);e.tag=n,e.dump=a||"[]"}p(Cn,"writeBlockSequence");function zh(e,t,r){var i="",a=e.tag,n=Object.keys(r),o,s,c,l,h;for(o=0,s=n.length;o<s;o+=1)h="",i!==""&&(h+=", "),e.condenseFlow&&(h+='"'),c=n[o],l=r[c],e.replacer&&(l=e.replacer.call(r,c,l)),re(e,t,c,!1,!1)&&(e.dump.length>1024&&(h+="? "),h+=e.dump+(e.condenseFlow?'"':"")+":"+(e.condenseFlow?"":" "),re(e,t,l,!1,!1)&&(h+=e.dump,i+=h));e.tag=a,e.dump="{"+i+"}"}p(zh,"writeFlowMapping");function qh(e,t,r,i){var a="",n=e.tag,o=Object.keys(r),s,c,l,h,u,f;if(e.sortKeys===!0)o.sort();else if(typeof e.sortKeys=="function")o.sort(e.sortKeys);else if(e.sortKeys)throw new Pt("sortKeys must be a boolean or a function");for(s=0,c=o.length;s<c;s+=1)f="",(!i||a!=="")&&(f+=Xi(e,t)),l=o[s],h=r[l],e.replacer&&(h=e.replacer.call(r,l,h)),re(e,t+1,l,!0,!0,!0)&&(u=e.tag!==null&&e.tag!=="?"||e.dump&&e.dump.length>1024,u&&(e.dump&&Vr===e.dump.charCodeAt(0)?f+="?":f+="? "),f+=e.dump,u&&(f+=Xi(e,t)),re(e,t+1,h,!0,u)&&(e.dump&&Vr===e.dump.charCodeAt(0)?f+=":":f+=": ",f+=e.dump,a+=f));e.tag=n,e.dump=a||"{}"}p(qh,"writeBlockMapping");function kn(e,t,r){var i,a,n,o,s,c;for(a=r?e.explicitTypes:e.implicitTypes,n=0,o=a.length;n<o;n+=1)if(s=a[n],(s.instanceOf||s.predicate)&&(!s.instanceOf||typeof t=="object"&&t instanceof s.instanceOf)&&(!s.predicate||s.predicate(t))){if(r?s.multi&&s.representName?e.tag=s.representName(t):e.tag=s.tag:e.tag="?",s.represent){if(c=e.styleMap[s.tag]||s.defaultStyle,bh.call(s.represent)==="[object Function]")i=s.represent(t,c);else if(Ch.call(s.represent,c))i=s.represent[c](t,c);else throw new Pt("!<"+s.tag+'> tag resolver accepts not "'+c+'" style');e.dump=i}return!0}return!1}p(kn,"detectType");function re(e,t,r,i,a,n,o){e.tag=null,e.dump=r,kn(e,r,!1)||kn(e,r,!0);var s=bh.call(e.dump),c=i,l;i&&(i=e.flowLevel<0||e.flowLevel>t);var h=s==="[object Object]"||s==="[object Array]",u,f;if(h&&(u=e.duplicates.indexOf(r),f=u!==-1),(e.tag!==null&&e.tag!=="?"||f||e.indent!==2&&t>0)&&(a=!1),f&&e.usedDuplicates[u])e.dump="*ref_"+u;else{if(h&&f&&!e.usedDuplicates[u]&&(e.usedDuplicates[u]=!0),s==="[object Object]")i&&Object.keys(e.dump).length!==0?(qh(e,t,e.dump,a),f&&(e.dump="&ref_"+u+e.dump)):(zh(e,t,e.dump),f&&(e.dump="&ref_"+u+" "+e.dump));else if(s==="[object Array]")i&&e.dump.length!==0?(e.noArrayIndent&&!o&&t>0?Cn(e,t-1,e.dump,a):Cn(e,t,e.dump,a),f&&(e.dump="&ref_"+u+e.dump)):(Nh(e,t,e.dump),f&&(e.dump="&ref_"+u+" "+e.dump));else if(s==="[object String]")e.tag!=="?"&&Ih(e,e.dump,t,n,c);else{if(s==="[object Undefined]")return!1;if(e.skipInvalid)return!1;throw new Pt("unacceptable kind of an object to dump "+s)}e.tag!==null&&e.tag!=="?"&&(l=encodeURI(e.tag[0]==="!"?e.tag.slice(1):e.tag).replace(/!/g,"%21"),e.tag[0]==="!"?l="!"+l:l.slice(0,18)==="tag:yaml.org,2002:"?l="!!"+l.slice(18):l="!<"+l+">",e.dump=l+" "+e.dump)}return!0}p(re,"writeNode");function Wh(e,t){var r=[],i=[],a,n;for(Zi(e,r,i),a=0,n=i.length;a<n;a+=1)t.duplicates.push(r[i[a]]);t.usedDuplicates=new Array(n)}p(Wh,"getDuplicateReferences");function Zi(e,t,r){var i,a,n;if(e!==null&&typeof e=="object")if(a=t.indexOf(e),a!==-1)r.indexOf(a)===-1&&r.push(a);else if(t.push(e),Array.isArray(e))for(a=0,n=e.length;a<n;a+=1)Zi(e[a],t,r);else for(i=Object.keys(e),a=0,n=i.length;a<n;a+=1)Zi(e[i[a]],t,r)}p(Zi,"inspectNode");function Ex(e,t){t=t||{};var r=new Lh(t);r.noRefs||Wh(e,r);var i=e;return r.replacer&&(i=r.replacer.call({"":i},"",i)),re(r,0,i,!0,!0)?r.dump+`
|
|
111
|
+
`:""}p(Ex,"dump$1");function Dx(e,t){return function(){throw new Error("Function yaml."+e+" is removed in js-yaml 4. Use yaml."+t+" instead, which is now safe by default.")}}p(Dx,"renamed");var Ox=Ec,Ix=fx.load;/*! Bundled license information:
|
|
112
|
+
|
|
113
|
+
js-yaml/dist/js-yaml.mjs:
|
|
114
|
+
(*! js-yaml 4.1.1 https://github.com/nodeca/js-yaml @license MIT *)
|
|
115
|
+
*/var wr=p((e,t)=>{if(t)return"translate("+-e.width/2+", "+-e.height/2+")";const r=e.x??0,i=e.y??0;return"translate("+-(r+e.width/2)+", "+-(i+e.height/2)+")"},"computeLabelTransform"),Bt={aggregation:17.25,extension:17.25,composition:17.25,dependency:6,lollipop:13.5,arrow_point:4},so={arrow_point:9,arrow_cross:12.5,arrow_circle:12.5};function Er(e,t){if(e===void 0||t===void 0)return{angle:0,deltaX:0,deltaY:0};e=ft(e),t=ft(t);const[r,i]=[e.x,e.y],[a,n]=[t.x,t.y],o=a-r,s=n-i;return{angle:Math.atan(s/o),deltaX:o,deltaY:s}}p(Er,"calculateDeltaAndAngle");var ft=p(e=>Array.isArray(e)?{x:e[0],y:e[1]}:e,"pointTransformer"),Rx=p(e=>({x:p(function(t,r,i){let a=0;const n=ft(i[0]).x<ft(i[i.length-1]).x?"left":"right";if(r===0&&Object.hasOwn(Bt,e.arrowTypeStart)){const{angle:d,deltaX:g}=Er(i[0],i[1]);a=Bt[e.arrowTypeStart]*Math.cos(d)*(g>=0?1:-1)}else if(r===i.length-1&&Object.hasOwn(Bt,e.arrowTypeEnd)){const{angle:d,deltaX:g}=Er(i[i.length-1],i[i.length-2]);a=Bt[e.arrowTypeEnd]*Math.cos(d)*(g>=0?1:-1)}const o=Math.abs(ft(t).x-ft(i[i.length-1]).x),s=Math.abs(ft(t).y-ft(i[i.length-1]).y),c=Math.abs(ft(t).x-ft(i[0]).x),l=Math.abs(ft(t).y-ft(i[0]).y),h=Bt[e.arrowTypeStart],u=Bt[e.arrowTypeEnd],f=1;if(o<u&&o>0&&s<u){let d=u+f-o;d*=n==="right"?-1:1,a-=d}if(c<h&&c>0&&l<h){let d=h+f-c;d*=n==="right"?-1:1,a+=d}return ft(t).x+a},"x"),y:p(function(t,r,i){let a=0;const n=ft(i[0]).y<ft(i[i.length-1]).y?"down":"up";if(r===0&&Object.hasOwn(Bt,e.arrowTypeStart)){const{angle:d,deltaY:g}=Er(i[0],i[1]);a=Bt[e.arrowTypeStart]*Math.abs(Math.sin(d))*(g>=0?1:-1)}else if(r===i.length-1&&Object.hasOwn(Bt,e.arrowTypeEnd)){const{angle:d,deltaY:g}=Er(i[i.length-1],i[i.length-2]);a=Bt[e.arrowTypeEnd]*Math.abs(Math.sin(d))*(g>=0?1:-1)}const o=Math.abs(ft(t).y-ft(i[i.length-1]).y),s=Math.abs(ft(t).x-ft(i[i.length-1]).x),c=Math.abs(ft(t).y-ft(i[0]).y),l=Math.abs(ft(t).x-ft(i[0]).x),h=Bt[e.arrowTypeStart],u=Bt[e.arrowTypeEnd],f=1;if(o<u&&o>0&&s<u){let d=u+f-o;d*=n==="up"?-1:1,a-=d}if(c<h&&c>0&&l<h){let d=h+f-c;d*=n==="up"?-1:1,a+=d}return ft(t).y+a},"y")}),"getLineFunctionsWithOffset"),di={},Ct={},oo;function Px(){return oo||(oo=1,Object.defineProperty(Ct,"__esModule",{value:!0}),Ct.BLANK_URL=Ct.relativeFirstCharacters=Ct.whitespaceEscapeCharsRegex=Ct.urlSchemeRegex=Ct.ctrlCharactersRegex=Ct.htmlCtrlEntityRegex=Ct.htmlEntitiesRegex=Ct.invalidProtocolRegex=void 0,Ct.invalidProtocolRegex=/^([^\w]*)(javascript|data|vbscript)/im,Ct.htmlEntitiesRegex=/&#(\w+)(^\w|;)?/g,Ct.htmlCtrlEntityRegex=/&(newline|tab);/gi,Ct.ctrlCharactersRegex=/[\u0000-\u001F\u007F-\u009F\u2000-\u200D\uFEFF]/gim,Ct.urlSchemeRegex=/^.+(:|:)/gim,Ct.whitespaceEscapeCharsRegex=/(\\|%5[cC])((%(6[eE]|72|74))|[nrt])/g,Ct.relativeFirstCharacters=[".","/"],Ct.BLANK_URL="about:blank"),Ct}var lo;function Nx(){if(lo)return di;lo=1,Object.defineProperty(di,"__esModule",{value:!0}),di.sanitizeUrl=n;var e=Px();function t(o){return e.relativeFirstCharacters.indexOf(o[0])>-1}function r(o){var s=o.replace(e.ctrlCharactersRegex,"");return s.replace(e.htmlEntitiesRegex,function(c,l){return String.fromCharCode(l)})}function i(o){return URL.canParse(o)}function a(o){try{return decodeURIComponent(o)}catch{return o}}function n(o){if(!o)return e.BLANK_URL;var s,c=a(o.trim());do c=r(c).replace(e.htmlCtrlEntityRegex,"").replace(e.ctrlCharactersRegex,"").replace(e.whitespaceEscapeCharsRegex,"").trim(),c=a(c),s=c.match(e.ctrlCharactersRegex)||c.match(e.htmlEntitiesRegex)||c.match(e.htmlCtrlEntityRegex)||c.match(e.whitespaceEscapeCharsRegex);while(s&&s.length>0);var l=c;if(!l)return e.BLANK_URL;if(t(l))return l;var h=l.trimStart(),u=h.match(e.urlSchemeRegex);if(!u)return l;var f=u[0].toLowerCase().trim();if(e.invalidProtocolRegex.test(f))return e.BLANK_URL;var d=h.replace(/\\/g,"/");if(f==="mailto:"||f.includes("://"))return d;if(f==="http:"||f==="https:"){if(!i(d))return e.BLANK_URL;var g=new URL(d);return g.protocol=g.protocol.toLowerCase(),g.hostname=g.hostname.toLowerCase(),g.toString()}return d}return di}var zx=Nx(),Hh=typeof global=="object"&&global&&global.Object===Object&&global,qx=typeof self=="object"&&self&&self.Object===Object&&self,ae=Hh||qx||Function("return this")(),Ki=ae.Symbol,jh=Object.prototype,Wx=jh.hasOwnProperty,Hx=jh.toString,vr=Ki?Ki.toStringTag:void 0;function jx(e){var t=Wx.call(e,vr),r=e[vr];try{e[vr]=void 0;var i=!0}catch{}var a=Hx.call(e);return i&&(t?e[vr]=r:delete e[vr]),a}var Yx=Object.prototype,Vx=Yx.toString;function Gx(e){return Vx.call(e)}var Ux="[object Null]",Xx="[object Undefined]",co=Ki?Ki.toStringTag:void 0;function pr(e){return e==null?e===void 0?Xx:Ux:co&&co in Object(e)?jx(e):Gx(e)}function We(e){var t=typeof e;return e!=null&&(t=="object"||t=="function")}var Zx="[object AsyncFunction]",Kx="[object Function]",Qx="[object GeneratorFunction]",Jx="[object Proxy]";function fs(e){if(!We(e))return!1;var t=pr(e);return t==Kx||t==Qx||t==Zx||t==Jx}var Pa=ae["__core-js_shared__"],ho=(function(){var e=/[^.]+$/.exec(Pa&&Pa.keys&&Pa.keys.IE_PROTO||"");return e?"Symbol(src)_1."+e:""})();function tb(e){return!!ho&&ho in e}var eb=Function.prototype,rb=eb.toString;function He(e){if(e!=null){try{return rb.call(e)}catch{}try{return e+""}catch{}}return""}var ib=/[\\^$.*+?()[\]{}|]/g,ab=/^\[object .+?Constructor\]$/,nb=Function.prototype,sb=Object.prototype,ob=nb.toString,lb=sb.hasOwnProperty,cb=RegExp("^"+ob.call(lb).replace(ib,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");function hb(e){if(!We(e)||tb(e))return!1;var t=fs(e)?cb:ab;return t.test(He(e))}function ub(e,t){return e==null?void 0:e[t]}function je(e,t){var r=ub(e,t);return hb(r)?r:void 0}var Xr=je(Object,"create");function db(){this.__data__=Xr?Xr(null):{},this.size=0}function fb(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t}var pb="__lodash_hash_undefined__",gb=Object.prototype,mb=gb.hasOwnProperty;function yb(e){var t=this.__data__;if(Xr){var r=t[e];return r===pb?void 0:r}return mb.call(t,e)?t[e]:void 0}var xb=Object.prototype,bb=xb.hasOwnProperty;function Cb(e){var t=this.__data__;return Xr?t[e]!==void 0:bb.call(t,e)}var kb="__lodash_hash_undefined__";function wb(e,t){var r=this.__data__;return this.size+=this.has(e)?0:1,r[e]=Xr&&t===void 0?kb:t,this}function Ne(e){var t=-1,r=e==null?0:e.length;for(this.clear();++t<r;){var i=e[t];this.set(i[0],i[1])}}Ne.prototype.clear=db;Ne.prototype.delete=fb;Ne.prototype.get=yb;Ne.prototype.has=Cb;Ne.prototype.set=wb;function vb(){this.__data__=[],this.size=0}function ka(e,t){return e===t||e!==e&&t!==t}function wa(e,t){for(var r=e.length;r--;)if(ka(e[r][0],t))return r;return-1}var _b=Array.prototype,Sb=_b.splice;function Tb(e){var t=this.__data__,r=wa(t,e);if(r<0)return!1;var i=t.length-1;return r==i?t.pop():Sb.call(t,r,1),--this.size,!0}function Bb(e){var t=this.__data__,r=wa(t,e);return r<0?void 0:t[r][1]}function Lb(e){return wa(this.__data__,e)>-1}function Mb(e,t){var r=this.__data__,i=wa(r,e);return i<0?(++this.size,r.push([e,t])):r[i][1]=t,this}function fe(e){var t=-1,r=e==null?0:e.length;for(this.clear();++t<r;){var i=e[t];this.set(i[0],i[1])}}fe.prototype.clear=vb;fe.prototype.delete=Tb;fe.prototype.get=Bb;fe.prototype.has=Lb;fe.prototype.set=Mb;var Zr=je(ae,"Map");function $b(){this.size=0,this.__data__={hash:new Ne,map:new(Zr||fe),string:new Ne}}function Ab(e){var t=typeof e;return t=="string"||t=="number"||t=="symbol"||t=="boolean"?e!=="__proto__":e===null}function va(e,t){var r=e.__data__;return Ab(t)?r[typeof t=="string"?"string":"hash"]:r.map}function Fb(e){var t=va(this,e).delete(e);return this.size-=t?1:0,t}function Eb(e){return va(this,e).get(e)}function Db(e){return va(this,e).has(e)}function Ob(e,t){var r=va(this,e),i=r.size;return r.set(e,t),this.size+=r.size==i?0:1,this}function Se(e){var t=-1,r=e==null?0:e.length;for(this.clear();++t<r;){var i=e[t];this.set(i[0],i[1])}}Se.prototype.clear=$b;Se.prototype.delete=Fb;Se.prototype.get=Eb;Se.prototype.has=Db;Se.prototype.set=Ob;var Ib="Expected a function";function ni(e,t){if(typeof e!="function"||t!=null&&typeof t!="function")throw new TypeError(Ib);var r=function(){var i=arguments,a=t?t.apply(this,i):i[0],n=r.cache;if(n.has(a))return n.get(a);var o=e.apply(this,i);return r.cache=n.set(a,o)||n,o};return r.cache=new(ni.Cache||Se),r}ni.Cache=Se;function Rb(){this.__data__=new fe,this.size=0}function Pb(e){var t=this.__data__,r=t.delete(e);return this.size=t.size,r}function Nb(e){return this.__data__.get(e)}function zb(e){return this.__data__.has(e)}var qb=200;function Wb(e,t){var r=this.__data__;if(r instanceof fe){var i=r.__data__;if(!Zr||i.length<qb-1)return i.push([e,t]),this.size=++r.size,this;r=this.__data__=new Se(i)}return r.set(e,t),this.size=r.size,this}function gr(e){var t=this.__data__=new fe(e);this.size=t.size}gr.prototype.clear=Rb;gr.prototype.delete=Pb;gr.prototype.get=Nb;gr.prototype.has=zb;gr.prototype.set=Wb;var Qi=(function(){try{var e=je(Object,"defineProperty");return e({},"",{}),e}catch{}})();function ps(e,t,r){t=="__proto__"&&Qi?Qi(e,t,{configurable:!0,enumerable:!0,value:r,writable:!0}):e[t]=r}function wn(e,t,r){(r!==void 0&&!ka(e[t],r)||r===void 0&&!(t in e))&&ps(e,t,r)}function Hb(e){return function(t,r,i){for(var a=-1,n=Object(t),o=i(t),s=o.length;s--;){var c=o[++a];if(r(n[c],c,n)===!1)break}return t}}var jb=Hb(),Yh=typeof exports=="object"&&exports&&!exports.nodeType&&exports,uo=Yh&&typeof module=="object"&&module&&!module.nodeType&&module,Yb=uo&&uo.exports===Yh,fo=Yb?ae.Buffer:void 0,po=fo?fo.allocUnsafe:void 0;function Vb(e,t){if(t)return e.slice();var r=e.length,i=po?po(r):new e.constructor(r);return e.copy(i),i}var go=ae.Uint8Array;function Gb(e){var t=new e.constructor(e.byteLength);return new go(t).set(new go(e)),t}function Ub(e,t){var r=t?Gb(e.buffer):e.buffer;return new e.constructor(r,e.byteOffset,e.length)}function Xb(e,t){var r=-1,i=e.length;for(t||(t=Array(i));++r<i;)t[r]=e[r];return t}var mo=Object.create,Zb=(function(){function e(){}return function(t){if(!We(t))return{};if(mo)return mo(t);e.prototype=t;var r=new e;return e.prototype=void 0,r}})();function Vh(e,t){return function(r){return e(t(r))}}var Gh=Vh(Object.getPrototypeOf,Object),Kb=Object.prototype;function _a(e){var t=e&&e.constructor,r=typeof t=="function"&&t.prototype||Kb;return e===r}function Qb(e){return typeof e.constructor=="function"&&!_a(e)?Zb(Gh(e)):{}}function si(e){return e!=null&&typeof e=="object"}var Jb="[object Arguments]";function yo(e){return si(e)&&pr(e)==Jb}var Uh=Object.prototype,t1=Uh.hasOwnProperty,e1=Uh.propertyIsEnumerable,Ji=yo((function(){return arguments})())?yo:function(e){return si(e)&&t1.call(e,"callee")&&!e1.call(e,"callee")},ta=Array.isArray,r1=9007199254740991;function Xh(e){return typeof e=="number"&&e>-1&&e%1==0&&e<=r1}function Sa(e){return e!=null&&Xh(e.length)&&!fs(e)}function i1(e){return si(e)&&Sa(e)}function a1(){return!1}var Zh=typeof exports=="object"&&exports&&!exports.nodeType&&exports,xo=Zh&&typeof module=="object"&&module&&!module.nodeType&&module,n1=xo&&xo.exports===Zh,bo=n1?ae.Buffer:void 0,s1=bo?bo.isBuffer:void 0,gs=s1||a1,o1="[object Object]",l1=Function.prototype,c1=Object.prototype,Kh=l1.toString,h1=c1.hasOwnProperty,u1=Kh.call(Object);function d1(e){if(!si(e)||pr(e)!=o1)return!1;var t=Gh(e);if(t===null)return!0;var r=h1.call(t,"constructor")&&t.constructor;return typeof r=="function"&&r instanceof r&&Kh.call(r)==u1}var f1="[object Arguments]",p1="[object Array]",g1="[object Boolean]",m1="[object Date]",y1="[object Error]",x1="[object Function]",b1="[object Map]",C1="[object Number]",k1="[object Object]",w1="[object RegExp]",v1="[object Set]",_1="[object String]",S1="[object WeakMap]",T1="[object ArrayBuffer]",B1="[object DataView]",L1="[object Float32Array]",M1="[object Float64Array]",$1="[object Int8Array]",A1="[object Int16Array]",F1="[object Int32Array]",E1="[object Uint8Array]",D1="[object Uint8ClampedArray]",O1="[object Uint16Array]",I1="[object Uint32Array]",ut={};ut[L1]=ut[M1]=ut[$1]=ut[A1]=ut[F1]=ut[E1]=ut[D1]=ut[O1]=ut[I1]=!0;ut[f1]=ut[p1]=ut[T1]=ut[g1]=ut[B1]=ut[m1]=ut[y1]=ut[x1]=ut[b1]=ut[C1]=ut[k1]=ut[w1]=ut[v1]=ut[_1]=ut[S1]=!1;function R1(e){return si(e)&&Xh(e.length)&&!!ut[pr(e)]}function P1(e){return function(t){return e(t)}}var Qh=typeof exports=="object"&&exports&&!exports.nodeType&&exports,qr=Qh&&typeof module=="object"&&module&&!module.nodeType&&module,N1=qr&&qr.exports===Qh,Na=N1&&Hh.process,Co=(function(){try{var e=qr&&qr.require&&qr.require("util").types;return e||Na&&Na.binding&&Na.binding("util")}catch{}})(),ko=Co&&Co.isTypedArray,ms=ko?P1(ko):R1;function vn(e,t){if(!(t==="constructor"&&typeof e[t]=="function")&&t!="__proto__")return e[t]}var z1=Object.prototype,q1=z1.hasOwnProperty;function W1(e,t,r){var i=e[t];(!(q1.call(e,t)&&ka(i,r))||r===void 0&&!(t in e))&&ps(e,t,r)}function H1(e,t,r,i){var a=!r;r||(r={});for(var n=-1,o=t.length;++n<o;){var s=t[n],c=void 0;c===void 0&&(c=e[s]),a?ps(r,s,c):W1(r,s,c)}return r}function j1(e,t){for(var r=-1,i=Array(e);++r<e;)i[r]=t(r);return i}var Y1=9007199254740991,V1=/^(?:0|[1-9]\d*)$/;function Jh(e,t){var r=typeof e;return t=t??Y1,!!t&&(r=="number"||r!="symbol"&&V1.test(e))&&e>-1&&e%1==0&&e<t}var G1=Object.prototype,U1=G1.hasOwnProperty;function X1(e,t){var r=ta(e),i=!r&&Ji(e),a=!r&&!i&&gs(e),n=!r&&!i&&!a&&ms(e),o=r||i||a||n,s=o?j1(e.length,String):[],c=s.length;for(var l in e)(t||U1.call(e,l))&&!(o&&(l=="length"||a&&(l=="offset"||l=="parent")||n&&(l=="buffer"||l=="byteLength"||l=="byteOffset")||Jh(l,c)))&&s.push(l);return s}function Z1(e){var t=[];if(e!=null)for(var r in Object(e))t.push(r);return t}var K1=Object.prototype,Q1=K1.hasOwnProperty;function J1(e){if(!We(e))return Z1(e);var t=_a(e),r=[];for(var i in e)i=="constructor"&&(t||!Q1.call(e,i))||r.push(i);return r}function tu(e){return Sa(e)?X1(e,!0):J1(e)}function t2(e){return H1(e,tu(e))}function e2(e,t,r,i,a,n,o){var s=vn(e,r),c=vn(t,r),l=o.get(c);if(l){wn(e,r,l);return}var h=n?n(s,c,r+"",e,t,o):void 0,u=h===void 0;if(u){var f=ta(c),d=!f&&gs(c),g=!f&&!d&&ms(c);h=c,f||d||g?ta(s)?h=s:i1(s)?h=Xb(s):d?(u=!1,h=Vb(c,!0)):g?(u=!1,h=Ub(c,!0)):h=[]:d1(c)||Ji(c)?(h=s,Ji(s)?h=t2(s):(!We(s)||fs(s))&&(h=Qb(c))):u=!1}u&&(o.set(c,h),a(h,c,i,n,o),o.delete(c)),wn(e,r,h)}function eu(e,t,r,i,a){e!==t&&jb(t,function(n,o){if(a||(a=new gr),We(n))e2(e,t,o,r,eu,i,a);else{var s=i?i(vn(e,o),n,o+"",e,t,a):void 0;s===void 0&&(s=n),wn(e,o,s)}},tu)}function ru(e){return e}function r2(e,t,r){switch(r.length){case 0:return e.call(t);case 1:return e.call(t,r[0]);case 2:return e.call(t,r[0],r[1]);case 3:return e.call(t,r[0],r[1],r[2])}return e.apply(t,r)}var wo=Math.max;function i2(e,t,r){return t=wo(t===void 0?e.length-1:t,0),function(){for(var i=arguments,a=-1,n=wo(i.length-t,0),o=Array(n);++a<n;)o[a]=i[t+a];a=-1;for(var s=Array(t+1);++a<t;)s[a]=i[a];return s[t]=r(o),r2(e,this,s)}}function a2(e){return function(){return e}}var n2=Qi?function(e,t){return Qi(e,"toString",{configurable:!0,enumerable:!1,value:a2(t),writable:!0})}:ru,s2=800,o2=16,l2=Date.now;function c2(e){var t=0,r=0;return function(){var i=l2(),a=o2-(i-r);if(r=i,a>0){if(++t>=s2)return arguments[0]}else t=0;return e.apply(void 0,arguments)}}var h2=c2(n2);function u2(e,t){return h2(i2(e,t,ru),e+"")}function d2(e,t,r){if(!We(r))return!1;var i=typeof t;return(i=="number"?Sa(r)&&Jh(t,r.length):i=="string"&&t in r)?ka(r[t],e):!1}function f2(e){return u2(function(t,r){var i=-1,a=r.length,n=a>1?r[a-1]:void 0,o=a>2?r[2]:void 0;for(n=e.length>3&&typeof n=="function"?(a--,n):void 0,o&&d2(r[0],r[1],o)&&(n=a<3?void 0:n,a=1),t=Object(t);++i<a;){var s=r[i];s&&e(t,s,i,n)}return t})}var p2=f2(function(e,t,r){eu(e,t,r)}),g2="",m2={curveBasis:Xa,curveBasisClosed:bp,curveBasisOpen:xp,curveBumpX:fl,curveBumpY:dl,curveBundle:_0,curveCardinalClosed:S0,curveCardinalOpen:T0,curveCardinal:ic,curveCatmullRomClosed:B0,curveCatmullRomOpen:L0,curveCatmullRom:nc,curveLinear:Ci,curveLinearClosed:yp,curveMonotoneX:ul,curveMonotoneY:hl,curveNatural:cl,curveStep:ll,curveStepAfter:ol,curveStepBefore:sl},y2=/\s*(?:(\w+)(?=:):|(\w+))\s*(?:(\w+)|((?:(?!}%{2}).|\r?\n)*))?\s*(?:}%{2})?/gi,x2=p(function(e,t){const r=iu(e,/(?:init\b)|(?:initialize\b)/);let i={};if(Array.isArray(r)){const o=r.map(s=>s.args);Oi(o),i=kt(i,[...o])}else i=r.args;if(!i)return;let a=jn(e,t);const n="config";return i[n]!==void 0&&(a==="flowchart-v2"&&(a="flowchart"),i[a]=i[n],delete i[n]),i},"detectInit"),iu=p(function(e,t=null){var r,i;try{const a=new RegExp(`[%]{2}(?![{]${y2.source})(?=[}][%]{2}).*
|
|
116
|
+
`,"ig");e=e.trim().replace(a,"").replace(/'/gm,'"'),E.debug(`Detecting diagram directive${t!==null?" type:"+t:""} based on the text:${e}`);let n;const o=[];for(;(n=Nr.exec(e))!==null;)if(n.index===Nr.lastIndex&&Nr.lastIndex++,n&&!t||t&&((r=n[1])!=null&&r.match(t))||t&&((i=n[2])!=null&&i.match(t))){const s=n[1]?n[1]:n[2],c=n[3]?n[3].trim():n[4]?JSON.parse(n[4].trim()):null;o.push({type:s,args:c})}return o.length===0?{type:e,args:null}:o.length===1?o[0]:o}catch(a){return E.error(`ERROR: ${a.message} - Unable to parse directive type: '${t}' based on the text: '${e}'`),{type:void 0,args:null}}},"detectDirective"),b2=p(function(e){return e.replace(Nr,"")},"removeDirectives"),C2=p(function(e,t){for(const[r,i]of t.entries())if(i.match(e))return r;return-1},"isSubstringInArray");function ys(e,t){if(!e)return t;const r=`curve${e.charAt(0).toUpperCase()+e.slice(1)}`;return m2[r]??t}p(ys,"interpolateToCurve");function au(e,t){const r=e.trim();if(r)return t.securityLevel!=="loose"?zx.sanitizeUrl(r):r}p(au,"formatUrl");var k2=p((e,...t)=>{const r=e.split("."),i=r.length-1,a=r[i];let n=window;for(let o=0;o<i;o++)if(n=n[r[o]],!n){E.error(`Function name: ${e} not found in window`);return}n[a](...t)},"runFunc");function xs(e,t){return!e||!t?0:Math.sqrt(Math.pow(t.x-e.x,2)+Math.pow(t.y-e.y,2))}p(xs,"distance");function nu(e){let t,r=0;e.forEach(a=>{r+=xs(a,t),t=a});const i=r/2;return bs(e,i)}p(nu,"traverseEdge");function su(e){return e.length===1?e[0]:nu(e)}p(su,"calcLabelPosition");var vo=p((e,t=2)=>{const r=Math.pow(10,t);return Math.round(e*r)/r},"roundNumber"),bs=p((e,t)=>{let r,i=t;for(const a of e){if(r){const n=xs(a,r);if(n===0)return r;if(n<i)i-=n;else{const o=i/n;if(o<=0)return r;if(o>=1)return{x:a.x,y:a.y};if(o>0&&o<1)return{x:vo((1-o)*r.x+o*a.x,5),y:vo((1-o)*r.y+o*a.y,5)}}}r=a}throw new Error("Could not find a suitable point for the given distance")},"calculatePoint"),w2=p((e,t,r)=>{E.info(`our points ${JSON.stringify(t)}`),t[0]!==r&&(t=t.reverse());const a=bs(t,25),n=e?10:5,o=Math.atan2(t[0].y-a.y,t[0].x-a.x),s={x:0,y:0};return s.x=Math.sin(o)*n+(t[0].x+a.x)/2,s.y=-Math.cos(o)*n+(t[0].y+a.y)/2,s},"calcCardinalityPosition");function ou(e,t,r){const i=structuredClone(r);E.info("our points",i),t!=="start_left"&&t!=="start_right"&&i.reverse();const a=25+e,n=bs(i,a),o=10+e*.5,s=Math.atan2(i[0].y-n.y,i[0].x-n.x),c={x:0,y:0};return t==="start_left"?(c.x=Math.sin(s+Math.PI)*o+(i[0].x+n.x)/2,c.y=-Math.cos(s+Math.PI)*o+(i[0].y+n.y)/2):t==="end_right"?(c.x=Math.sin(s-Math.PI)*o+(i[0].x+n.x)/2-5,c.y=-Math.cos(s-Math.PI)*o+(i[0].y+n.y)/2-5):t==="end_left"?(c.x=Math.sin(s)*o+(i[0].x+n.x)/2-5,c.y=-Math.cos(s)*o+(i[0].y+n.y)/2-5):(c.x=Math.sin(s)*o+(i[0].x+n.x)/2,c.y=-Math.cos(s)*o+(i[0].y+n.y)/2),c}p(ou,"calcTerminalLabelPosition");function lu(e){let t="",r="";for(const i of e)i!==void 0&&(i.startsWith("color:")||i.startsWith("text-align:")?r=r+i+";":t=t+i+";");return{style:t,labelStyle:r}}p(lu,"getStylesFromArray");var _o=0,v2=p(()=>(_o++,"id-"+Math.random().toString(36).substr(2,12)+"-"+_o),"generateId");function cu(e){let t="";const r="0123456789abcdef",i=r.length;for(let a=0;a<e;a++)t+=r.charAt(Math.floor(Math.random()*i));return t}p(cu,"makeRandomHex");var _2=p(e=>cu(e.length),"random"),S2=p(function(){return{x:0,y:0,fill:void 0,anchor:"start",style:"#666",width:100,height:100,textMargin:0,rx:0,ry:0,valign:void 0,text:""}},"getTextObj"),T2=p(function(e,t){const r=t.text.replace(ri.lineBreakRegex," "),[,i]=Ta(t.fontSize),a=e.append("text");a.attr("x",t.x),a.attr("y",t.y),a.style("text-anchor",t.anchor),a.style("font-family",t.fontFamily),a.style("font-size",i),a.style("font-weight",t.fontWeight),a.attr("fill",t.fill),t.class!==void 0&&a.attr("class",t.class);const n=a.append("tspan");return n.attr("x",t.x+t.textMargin*2),n.attr("fill",t.fill),n.text(r),a},"drawSimpleText"),B2=ni((e,t,r)=>{if(!e||(r=Object.assign({fontSize:12,fontWeight:400,fontFamily:"Arial",joinWith:"<br/>"},r),ri.lineBreakRegex.test(e)))return e;const i=e.split(" ").filter(Boolean),a=[];let n="";return i.forEach((o,s)=>{const c=de(`${o} `,r),l=de(n,r);if(c>t){const{hyphenatedStrings:f,remainingWord:d}=L2(o,t,"-",r);a.push(n,...f),n=d}else l+c>=t?(a.push(n),n=o):n=[n,o].filter(Boolean).join(" ");s+1===i.length&&a.push(n)}),a.filter(o=>o!=="").join(r.joinWith)},(e,t,r)=>`${e}${t}${r.fontSize}${r.fontWeight}${r.fontFamily}${r.joinWith}`),L2=ni((e,t,r="-",i)=>{i=Object.assign({fontSize:12,fontWeight:400,fontFamily:"Arial",margin:0},i);const a=[...e],n=[];let o="";return a.forEach((s,c)=>{const l=`${o}${s}`;if(de(l,i)>=t){const u=c+1,f=a.length===u,d=`${l}${r}`;n.push(f?l:d),o=""}else o=l}),{hyphenatedStrings:n,remainingWord:o}},(e,t,r="-",i)=>`${e}${t}${r}${i.fontSize}${i.fontWeight}${i.fontFamily}`);function hu(e,t){return Cs(e,t).height}p(hu,"calculateTextHeight");function de(e,t){return Cs(e,t).width}p(de,"calculateTextWidth");var Cs=ni((e,t)=>{const{fontSize:r=12,fontFamily:i="Arial",fontWeight:a=400}=t;if(!e)return{width:0,height:0};const[,n]=Ta(r),o=["sans-serif",i],s=e.split(ri.lineBreakRegex),c=[],l=tt("body");if(!l.remove)return{width:0,height:0,lineHeight:0};const h=l.append("svg");for(const f of o){let d=0;const g={width:0,height:0,lineHeight:0};for(const m of s){const y=S2();y.text=m||g2;const x=T2(h,y).style("font-size",n).style("font-weight",a).style("font-family",f),b=(x._groups||x)[0][0].getBBox();if(b.width===0&&b.height===0)throw new Error("svg element not in render tree");g.width=Math.round(Math.max(g.width,b.width)),d=Math.round(b.height),g.height+=d,g.lineHeight=Math.round(Math.max(g.lineHeight,d))}c.push(g)}h.remove();const u=isNaN(c[1].height)||isNaN(c[1].width)||isNaN(c[1].lineHeight)||c[0].height>c[1].height&&c[0].width>c[1].width&&c[0].lineHeight>c[1].lineHeight?0:1;return c[u]},(e,t)=>`${e}${t.fontSize}${t.fontWeight}${t.fontFamily}`),nr,M2=(nr=class{constructor(t=!1,r){this.count=0,this.count=r?r.length:0,this.next=t?()=>this.count++:()=>Date.now()}},p(nr,"InitIDGenerator"),nr),fi,$2=p(function(e){return fi=fi||document.createElement("div"),e=escape(e).replace(/%26/g,"&").replace(/%23/g,"#").replace(/%3B/g,";"),fi.innerHTML=e,unescape(fi.textContent)},"entityDecode");function ks(e){return"str"in e}p(ks,"isDetailedError");var A2=p((e,t,r,i)=>{var n;if(!i)return;const a=(n=e.node())==null?void 0:n.getBBox();a&&e.append("text").text(i).attr("text-anchor","middle").attr("x",a.x+a.width/2).attr("y",-r).attr("class",t)},"insertTitle"),Ta=p(e=>{if(typeof e=="number")return[e,e+"px"];const t=parseInt(e??"",10);return Number.isNaN(t)?[void 0,void 0]:e===String(t)?[t,e+"px"]:[t,e]},"parseFontSize");function ws(e,t){return p2({},e,t)}p(ws,"cleanAndMerge");var Gt={assignWithDepth:kt,wrapLabel:B2,calculateTextHeight:hu,calculateTextWidth:de,calculateTextDimensions:Cs,cleanAndMerge:ws,detectInit:x2,detectDirective:iu,isSubstringInArray:C2,interpolateToCurve:ys,calcLabelPosition:su,calcCardinalityPosition:w2,calcTerminalLabelPosition:ou,formatUrl:au,getStylesFromArray:lu,generateId:v2,random:_2,runFunc:k2,entityDecode:$2,insertTitle:A2,isLabelCoordinateInPath:uu,parseFontSize:Ta,InitIDGenerator:M2},F2=p(function(e){let t=e;return t=t.replace(/style.*:\S*#.*;/g,function(r){return r.substring(0,r.length-1)}),t=t.replace(/classDef.*:\S*#.*;/g,function(r){return r.substring(0,r.length-1)}),t=t.replace(/#\w+;/g,function(r){const i=r.substring(1,r.length-1);return/^\+?\d+$/.test(i)?"fl°°"+i+"¶ß":"fl°"+i+"¶ß"}),t},"encodeEntities"),mr=p(function(e){return e.replace(/fl°°/g,"&#").replace(/fl°/g,"&").replace(/¶ß/g,";")},"decodeEntities"),DS=p((e,t,{counter:r=0,prefix:i,suffix:a},n)=>n||`${i?`${i}_`:""}${e}_${t}_${r}${a?`_${a}`:""}`,"getEdgeId");function $t(e){return e??null}p($t,"handleUndefinedAttr");function uu(e,t){const r=Math.round(e.x),i=Math.round(e.y),a=t.replace(/(\d+\.\d+)/g,n=>Math.round(parseFloat(n)).toString());return a.includes(r.toString())||a.includes(i.toString())}p(uu,"isLabelCoordinateInPath");var vs=p(({flowchart:e})=>{var a,n;const t=((a=e==null?void 0:e.subGraphTitleMargin)==null?void 0:a.top)??0,r=((n=e==null?void 0:e.subGraphTitleMargin)==null?void 0:n.bottom)??0,i=t+r;return{subGraphTitleTopMargin:t,subGraphTitleBottomMargin:r,subGraphTitleTotalMargin:i}},"getSubGraphTitleMargins");async function du(e,t){const r=e.getElementsByTagName("img");if(!r||r.length===0)return;const i=t.replace(/<img[^>]*>/g,"").trim()==="";await Promise.all([...r].map(a=>new Promise(n=>{function o(){if(a.style.display="flex",a.style.flexDirection="column",i){const s=st().fontSize?st().fontSize:window.getComputedStyle(document.body).fontSize,c=5,[l=wl.fontSize]=Ta(s),h=l*c+"px";a.style.minWidth=h,a.style.maxWidth=h}else a.style.width="100%";n(a)}p(o,"setupImage"),setTimeout(()=>{a.complete&&o()}),a.addEventListener("error",o),a.addEventListener("load",o)})))}p(du,"configureLabelImages");var E2=p(e=>{const{handDrawnSeed:t}=st();return{fill:e,hachureAngle:120,hachureGap:4,fillWeight:2,roughness:.7,stroke:e,seed:t}},"solidStateFill"),yr=p(e=>{const t=D2([...e.cssCompiledStyles||[],...e.cssStyles||[],...e.labelStyle||[]]);return{stylesMap:t,stylesArray:[...t]}},"compileStyles"),D2=p(e=>{const t=new Map;return e.forEach(r=>{const[i,a]=r.split(":");t.set(i.trim(),a==null?void 0:a.trim())}),t},"styles2Map"),fu=p(e=>e==="color"||e==="font-size"||e==="font-family"||e==="font-weight"||e==="font-style"||e==="text-decoration"||e==="text-align"||e==="text-transform"||e==="line-height"||e==="letter-spacing"||e==="word-spacing"||e==="text-shadow"||e==="text-overflow"||e==="white-space"||e==="word-wrap"||e==="word-break"||e==="overflow-wrap"||e==="hyphens","isLabelStyle"),j=p(e=>{const{stylesArray:t}=yr(e),r=[],i=[],a=[],n=[];return t.forEach(o=>{const s=o[0];fu(s)?r.push(o.join(":")+" !important"):(i.push(o.join(":")+" !important"),s.includes("stroke")&&a.push(o.join(":")+" !important"),s==="fill"&&n.push(o.join(":")+" !important"))}),{labelStyles:r.join(";"),nodeStyles:i.join(";"),stylesArray:t,borderStyles:a,backgroundStyles:n}},"styles2String"),H=p((e,t)=>{var c;const{themeVariables:r,handDrawnSeed:i}=st(),{nodeBorder:a,mainBkg:n}=r,{stylesMap:o}=yr(e);return Object.assign({roughness:.7,fill:o.get("fill")||n,fillStyle:"hachure",fillWeight:4,hachureGap:5.2,stroke:o.get("stroke")||a,seed:i,strokeWidth:((c=o.get("stroke-width"))==null?void 0:c.replace("px",""))||1.3,fillLineDash:[0,0],strokeLineDash:O2(o.get("stroke-dasharray"))},t)},"userNodeOverrides"),O2=p(e=>{if(!e)return[0,0];const t=e.trim().split(/\s+/).map(Number);if(t.length===1){const a=isNaN(t[0])?0:t[0];return[a,a]}const r=isNaN(t[0])?0:t[0],i=isNaN(t[1])?0:t[1];return[r,i]},"getStrokeDashArray");const I2=Object.freeze({left:0,top:0,width:16,height:16}),ea=Object.freeze({rotate:0,vFlip:!1,hFlip:!1}),pu=Object.freeze({...I2,...ea}),R2=Object.freeze({...pu,body:"",hidden:!1}),P2=Object.freeze({width:null,height:null}),N2=Object.freeze({...P2,...ea}),z2=(e,t,r,i="")=>{const a=e.split(":");if(e.slice(0,1)==="@"){if(a.length<2||a.length>3)return null;i=a.shift().slice(1)}if(a.length>3||!a.length)return null;if(a.length>1){const s=a.pop(),c=a.pop(),l={provider:a.length>0?a[0]:i,prefix:c,name:s};return za(l)?l:null}const n=a[0],o=n.split("-");if(o.length>1){const s={provider:i,prefix:o.shift(),name:o.join("-")};return za(s)?s:null}if(r&&i===""){const s={provider:i,prefix:"",name:n};return za(s,r)?s:null}return null},za=(e,t)=>e?!!((t&&e.prefix===""||e.prefix)&&e.name):!1;function q2(e,t){const r={};!e.hFlip!=!t.hFlip&&(r.hFlip=!0),!e.vFlip!=!t.vFlip&&(r.vFlip=!0);const i=((e.rotate||0)+(t.rotate||0))%4;return i&&(r.rotate=i),r}function So(e,t){const r=q2(e,t);for(const i in R2)i in ea?i in e&&!(i in r)&&(r[i]=ea[i]):i in t?r[i]=t[i]:i in e&&(r[i]=e[i]);return r}function W2(e,t){const r=e.icons,i=e.aliases||Object.create(null),a=Object.create(null);function n(o){if(r[o])return a[o]=[];if(!(o in a)){a[o]=null;const s=i[o]&&i[o].parent,c=s&&n(s);c&&(a[o]=[s].concat(c))}return a[o]}return(t||Object.keys(r).concat(Object.keys(i))).forEach(n),a}function To(e,t,r){const i=e.icons,a=e.aliases||Object.create(null);let n={};function o(s){n=So(i[s]||a[s],n)}return o(t),r.forEach(o),So(e,n)}function H2(e,t){if(e.icons[t])return To(e,t,[]);const r=W2(e,[t])[t];return r?To(e,t,r):null}const j2=/(-?[0-9.]*[0-9]+[0-9.]*)/g,Y2=/^-?[0-9.]*[0-9]+[0-9.]*$/g;function Bo(e,t,r){if(t===1)return e;if(r=r||100,typeof e=="number")return Math.ceil(e*t*r)/r;if(typeof e!="string")return e;const i=e.split(j2);if(i===null||!i.length)return e;const a=[];let n=i.shift(),o=Y2.test(n);for(;;){if(o){const s=parseFloat(n);isNaN(s)?a.push(n):a.push(Math.ceil(s*t*r)/r)}else a.push(n);if(n=i.shift(),n===void 0)return a.join("");o=!o}}function V2(e,t="defs"){let r="";const i=e.indexOf("<"+t);for(;i>=0;){const a=e.indexOf(">",i),n=e.indexOf("</"+t);if(a===-1||n===-1)break;const o=e.indexOf(">",n);if(o===-1)break;r+=e.slice(a+1,n).trim(),e=e.slice(0,i).trim()+e.slice(o+1)}return{defs:r,content:e}}function G2(e,t){return e?"<defs>"+e+"</defs>"+t:t}function U2(e,t,r){const i=V2(e);return G2(i.defs,t+i.content+r)}const X2=e=>e==="unset"||e==="undefined"||e==="none";function Z2(e,t){const r={...pu,...e},i={...N2,...t},a={left:r.left,top:r.top,width:r.width,height:r.height};let n=r.body;[r,i].forEach(m=>{const y=[],x=m.hFlip,b=m.vFlip;let k=m.rotate;x?b?k+=2:(y.push("translate("+(a.width+a.left).toString()+" "+(0-a.top).toString()+")"),y.push("scale(-1 1)"),a.top=a.left=0):b&&(y.push("translate("+(0-a.left).toString()+" "+(a.height+a.top).toString()+")"),y.push("scale(1 -1)"),a.top=a.left=0);let S;switch(k<0&&(k-=Math.floor(k/4)*4),k=k%4,k){case 1:S=a.height/2+a.top,y.unshift("rotate(90 "+S.toString()+" "+S.toString()+")");break;case 2:y.unshift("rotate(180 "+(a.width/2+a.left).toString()+" "+(a.height/2+a.top).toString()+")");break;case 3:S=a.width/2+a.left,y.unshift("rotate(-90 "+S.toString()+" "+S.toString()+")");break}k%2===1&&(a.left!==a.top&&(S=a.left,a.left=a.top,a.top=S),a.width!==a.height&&(S=a.width,a.width=a.height,a.height=S)),y.length&&(n=U2(n,'<g transform="'+y.join(" ")+'">',"</g>"))});const o=i.width,s=i.height,c=a.width,l=a.height;let h,u;o===null?(u=s===null?"1em":s==="auto"?l:s,h=Bo(u,c/l)):(h=o==="auto"?c:o,u=s===null?Bo(h,l/c):s==="auto"?l:s);const f={},d=(m,y)=>{X2(y)||(f[m]=y.toString())};d("width",h),d("height",u);const g=[a.left,a.top,c,l];return f.viewBox=g.join(" "),{attributes:f,viewBox:g,body:n}}const K2=/\sid="(\S+)"/g,Lo=new Map;function Q2(e){e=e.replace(/[0-9]+$/,"")||"a";const t=Lo.get(e)||0;return Lo.set(e,t+1),t?`${e}${t}`:e}function J2(e){const t=[];let r;for(;r=K2.exec(e);)t.push(r[1]);if(!t.length)return e;const i="suffix"+(Math.random()*16777216|Date.now()).toString(16);return t.forEach(a=>{const n=Q2(a),o=a.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");e=e.replace(new RegExp('([#;"])('+o+')([")]|\\.[a-z])',"g"),"$1"+n+i+"$3")}),e=e.replace(new RegExp(i,"g"),""),e}function tC(e,t){let r=e.indexOf("xlink:")===-1?"":' xmlns:xlink="http://www.w3.org/1999/xlink"';for(const i in t)r+=" "+i+'="'+t[i]+'"';return'<svg xmlns="http://www.w3.org/2000/svg"'+r+">"+e+"</svg>"}function _s(){return{async:!1,breaks:!1,extensions:null,gfm:!0,hooks:null,pedantic:!1,renderer:null,silent:!1,tokenizer:null,walkTokens:null}}var Ye=_s();function gu(e){Ye=e}var Wr={exec:()=>null};function at(e,t=""){let r=typeof e=="string"?e:e.source,i={replace:(a,n)=>{let o=typeof n=="string"?n:n.source;return o=o.replace(Ot.caret,"$1"),r=r.replace(a,o),i},getRegex:()=>new RegExp(r,t)};return i}var eC=(()=>{try{return!!new RegExp("(?<=1)(?<!1)")}catch{return!1}})(),Ot={codeRemoveIndent:/^(?: {1,4}| {0,3}\t)/gm,outputLinkReplace:/\\([\[\]])/g,indentCodeCompensation:/^(\s+)(?:```)/,beginningSpace:/^\s+/,endingHash:/#$/,startingSpaceChar:/^ /,endingSpaceChar:/ $/,nonSpaceChar:/[^ ]/,newLineCharGlobal:/\n/g,tabCharGlobal:/\t/g,multipleSpaceGlobal:/\s+/g,blankLine:/^[ \t]*$/,doubleBlankLine:/\n[ \t]*\n[ \t]*$/,blockquoteStart:/^ {0,3}>/,blockquoteSetextReplace:/\n {0,3}((?:=+|-+) *)(?=\n|$)/g,blockquoteSetextReplace2:/^ {0,3}>[ \t]?/gm,listReplaceTabs:/^\t+/,listReplaceNesting:/^ {1,4}(?=( {4})*[^ ])/g,listIsTask:/^\[[ xX]\] /,listReplaceTask:/^\[[ xX]\] +/,anyLine:/\n.*\n/,hrefBrackets:/^<(.*)>$/,tableDelimiter:/[:|]/,tableAlignChars:/^\||\| *$/g,tableRowBlankLine:/\n[ \t]*$/,tableAlignRight:/^ *-+: *$/,tableAlignCenter:/^ *:-+: *$/,tableAlignLeft:/^ *:-+ *$/,startATag:/^<a /i,endATag:/^<\/a>/i,startPreScriptTag:/^<(pre|code|kbd|script)(\s|>)/i,endPreScriptTag:/^<\/(pre|code|kbd|script)(\s|>)/i,startAngleBracket:/^</,endAngleBracket:/>$/,pedanticHrefTitle:/^([^'"]*[^\s])\s+(['"])(.*)\2/,unicodeAlphaNumeric:/[\p{L}\p{N}]/u,escapeTest:/[&<>"']/,escapeReplace:/[&<>"']/g,escapeTestNoEncode:/[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/,escapeReplaceNoEncode:/[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/g,unescapeTest:/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/ig,caret:/(^|[^\[])\^/g,percentDecode:/%25/g,findPipe:/\|/g,splitPipe:/ \|/,slashPipe:/\\\|/g,carriageReturn:/\r\n|\r/g,spaceLine:/^ +$/gm,notSpaceStart:/^\S*/,endingNewline:/\n$/,listItemRegex:e=>new RegExp(`^( {0,3}${e})((?:[ ][^\\n]*)?(?:\\n|$))`),nextBulletRegex:e=>new RegExp(`^ {0,${Math.min(3,e-1)}}(?:[*+-]|\\d{1,9}[.)])((?:[ ][^\\n]*)?(?:\\n|$))`),hrRegex:e=>new RegExp(`^ {0,${Math.min(3,e-1)}}((?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$)`),fencesBeginRegex:e=>new RegExp(`^ {0,${Math.min(3,e-1)}}(?:\`\`\`|~~~)`),headingBeginRegex:e=>new RegExp(`^ {0,${Math.min(3,e-1)}}#`),htmlBeginRegex:e=>new RegExp(`^ {0,${Math.min(3,e-1)}}<(?:[a-z].*>|!--)`,"i")},rC=/^(?:[ \t]*(?:\n|$))+/,iC=/^((?: {4}| {0,3}\t)[^\n]+(?:\n(?:[ \t]*(?:\n|$))*)?)+/,aC=/^ {0,3}(`{3,}(?=[^`\n]*(?:\n|$))|~{3,})([^\n]*)(?:\n|$)(?:|([\s\S]*?)(?:\n|$))(?: {0,3}\1[~`]* *(?=\n|$)|$)/,oi=/^ {0,3}((?:-[\t ]*){3,}|(?:_[ \t]*){3,}|(?:\*[ \t]*){3,})(?:\n+|$)/,nC=/^ {0,3}(#{1,6})(?=\s|$)(.*)(?:\n+|$)/,Ss=/(?:[*+-]|\d{1,9}[.)])/,mu=/^(?!bull |blockCode|fences|blockquote|heading|html|table)((?:.|\n(?!\s*?\n|bull |blockCode|fences|blockquote|heading|html|table))+?)\n {0,3}(=+|-+) *(?:\n+|$)/,yu=at(mu).replace(/bull/g,Ss).replace(/blockCode/g,/(?: {4}| {0,3}\t)/).replace(/fences/g,/ {0,3}(?:`{3,}|~{3,})/).replace(/blockquote/g,/ {0,3}>/).replace(/heading/g,/ {0,3}#{1,6}/).replace(/html/g,/ {0,3}<[^\n>]+>\n/).replace(/\|table/g,"").getRegex(),sC=at(mu).replace(/bull/g,Ss).replace(/blockCode/g,/(?: {4}| {0,3}\t)/).replace(/fences/g,/ {0,3}(?:`{3,}|~{3,})/).replace(/blockquote/g,/ {0,3}>/).replace(/heading/g,/ {0,3}#{1,6}/).replace(/html/g,/ {0,3}<[^\n>]+>\n/).replace(/table/g,/ {0,3}\|?(?:[:\- ]*\|)+[\:\- ]*\n/).getRegex(),Ts=/^([^\n]+(?:\n(?!hr|heading|lheading|blockquote|fences|list|html|table| +\n)[^\n]+)*)/,oC=/^[^\n]+/,Bs=/(?!\s*\])(?:\\[\s\S]|[^\[\]\\])+/,lC=at(/^ {0,3}\[(label)\]: *(?:\n[ \t]*)?([^<\s][^\s]*|<.*?>)(?:(?: +(?:\n[ \t]*)?| *\n[ \t]*)(title))? *(?:\n+|$)/).replace("label",Bs).replace("title",/(?:"(?:\\"?|[^"\\])*"|'[^'\n]*(?:\n[^'\n]+)*\n?'|\([^()]*\))/).getRegex(),cC=at(/^( {0,3}bull)([ \t][^\n]+?)?(?:\n|$)/).replace(/bull/g,Ss).getRegex(),Ba="address|article|aside|base|basefont|blockquote|body|caption|center|col|colgroup|dd|details|dialog|dir|div|dl|dt|fieldset|figcaption|figure|footer|form|frame|frameset|h[1-6]|head|header|hr|html|iframe|legend|li|link|main|menu|menuitem|meta|nav|noframes|ol|optgroup|option|p|param|search|section|summary|table|tbody|td|tfoot|th|thead|title|tr|track|ul",Ls=/<!--(?:-?>|[\s\S]*?(?:-->|$))/,hC=at("^ {0,3}(?:<(script|pre|style|textarea)[\\s>][\\s\\S]*?(?:</\\1>[^\\n]*\\n+|$)|comment[^\\n]*(\\n+|$)|<\\?[\\s\\S]*?(?:\\?>\\n*|$)|<![A-Z][\\s\\S]*?(?:>\\n*|$)|<!\\[CDATA\\[[\\s\\S]*?(?:\\]\\]>\\n*|$)|</?(tag)(?: +|\\n|/?>)[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$)|<(?!script|pre|style|textarea)([a-z][\\w-]*)(?:attribute)*? */?>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$)|</(?!script|pre|style|textarea)[a-z][\\w-]*\\s*>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$))","i").replace("comment",Ls).replace("tag",Ba).replace("attribute",/ +[a-zA-Z:_][\w.:-]*(?: *= *"[^"\n]*"| *= *'[^'\n]*'| *= *[^\s"'=<>`]+)?/).getRegex(),xu=at(Ts).replace("hr",oi).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("|lheading","").replace("|table","").replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag",Ba).getRegex(),uC=at(/^( {0,3}> ?(paragraph|[^\n]*)(?:\n|$))+/).replace("paragraph",xu).getRegex(),Ms={blockquote:uC,code:iC,def:lC,fences:aC,heading:nC,hr:oi,html:hC,lheading:yu,list:cC,newline:rC,paragraph:xu,table:Wr,text:oC},Mo=at("^ *([^\\n ].*)\\n {0,3}((?:\\| *)?:?-+:? *(?:\\| *:?-+:? *)*(?:\\| *)?)(?:\\n((?:(?! *\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\n|$))*)\\n*|$)").replace("hr",oi).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("blockquote"," {0,3}>").replace("code","(?: {4}| {0,3} )[^\\n]").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag",Ba).getRegex(),dC={...Ms,lheading:sC,table:Mo,paragraph:at(Ts).replace("hr",oi).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("|lheading","").replace("table",Mo).replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag",Ba).getRegex()},fC={...Ms,html:at(`^ *(?:comment *(?:\\n|\\s*$)|<(tag)[\\s\\S]+?</\\1> *(?:\\n{2,}|\\s*$)|<tag(?:"[^"]*"|'[^']*'|\\s[^'"/>\\s]*)*?/?> *(?:\\n{2,}|\\s*$))`).replace("comment",Ls).replace(/tag/g,"(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\b)\\w+(?!:|[^\\w\\s@]*@)\\b").getRegex(),def:/^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +(["(][^\n]+[")]))? *(?:\n+|$)/,heading:/^(#{1,6})(.*)(?:\n+|$)/,fences:Wr,lheading:/^(.+?)\n {0,3}(=+|-+) *(?:\n+|$)/,paragraph:at(Ts).replace("hr",oi).replace("heading",` *#{1,6} *[^
|
|
117
|
+
]`).replace("lheading",yu).replace("|table","").replace("blockquote"," {0,3}>").replace("|fences","").replace("|list","").replace("|html","").replace("|tag","").getRegex()},pC=/^\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/,gC=/^(`+)([^`]|[^`][\s\S]*?[^`])\1(?!`)/,bu=/^( {2,}|\\)\n(?!\s*$)/,mC=/^(`+|[^`])(?:(?= {2,}\n)|[\s\S]*?(?:(?=[\\<!\[`*_]|\b_|$)|[^ ](?= {2,}\n)))/,La=/[\p{P}\p{S}]/u,$s=/[\s\p{P}\p{S}]/u,Cu=/[^\s\p{P}\p{S}]/u,yC=at(/^((?![*_])punctSpace)/,"u").replace(/punctSpace/g,$s).getRegex(),ku=/(?!~)[\p{P}\p{S}]/u,xC=/(?!~)[\s\p{P}\p{S}]/u,bC=/(?:[^\s\p{P}\p{S}]|~)/u,CC=at(/link|precode-code|html/,"g").replace("link",/\[(?:[^\[\]`]|(?<a>`+)[^`]+\k<a>(?!`))*?\]\((?:\\[\s\S]|[^\\\(\)]|\((?:\\[\s\S]|[^\\\(\)])*\))*\)/).replace("precode-",eC?"(?<!`)()":"(^^|[^`])").replace("code",/(?<b>`+)[^`]+\k<b>(?!`)/).replace("html",/<(?! )[^<>]*?>/).getRegex(),wu=/^(?:\*+(?:((?!\*)punct)|[^\s*]))|^_+(?:((?!_)punct)|([^\s_]))/,kC=at(wu,"u").replace(/punct/g,La).getRegex(),wC=at(wu,"u").replace(/punct/g,ku).getRegex(),vu="^[^_*]*?__[^_*]*?\\*[^_*]*?(?=__)|[^*]+(?=[^*])|(?!\\*)punct(\\*+)(?=[\\s]|$)|notPunctSpace(\\*+)(?!\\*)(?=punctSpace|$)|(?!\\*)punctSpace(\\*+)(?=notPunctSpace)|[\\s](\\*+)(?!\\*)(?=punct)|(?!\\*)punct(\\*+)(?!\\*)(?=punct)|notPunctSpace(\\*+)(?=notPunctSpace)",vC=at(vu,"gu").replace(/notPunctSpace/g,Cu).replace(/punctSpace/g,$s).replace(/punct/g,La).getRegex(),_C=at(vu,"gu").replace(/notPunctSpace/g,bC).replace(/punctSpace/g,xC).replace(/punct/g,ku).getRegex(),SC=at("^[^_*]*?\\*\\*[^_*]*?_[^_*]*?(?=\\*\\*)|[^_]+(?=[^_])|(?!_)punct(_+)(?=[\\s]|$)|notPunctSpace(_+)(?!_)(?=punctSpace|$)|(?!_)punctSpace(_+)(?=notPunctSpace)|[\\s](_+)(?!_)(?=punct)|(?!_)punct(_+)(?!_)(?=punct)","gu").replace(/notPunctSpace/g,Cu).replace(/punctSpace/g,$s).replace(/punct/g,La).getRegex(),TC=at(/\\(punct)/,"gu").replace(/punct/g,La).getRegex(),BC=at(/^<(scheme:[^\s\x00-\x1f<>]*|email)>/).replace("scheme",/[a-zA-Z][a-zA-Z0-9+.-]{1,31}/).replace("email",/[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+(@)[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)+(?![-_])/).getRegex(),LC=at(Ls).replace("(?:-->|$)","-->").getRegex(),MC=at("^comment|^</[a-zA-Z][\\w:-]*\\s*>|^<[a-zA-Z][\\w-]*(?:attribute)*?\\s*/?>|^<\\?[\\s\\S]*?\\?>|^<![a-zA-Z]+\\s[\\s\\S]*?>|^<!\\[CDATA\\[[\\s\\S]*?\\]\\]>").replace("comment",LC).replace("attribute",/\s+[a-zA-Z:_][\w.:-]*(?:\s*=\s*"[^"]*"|\s*=\s*'[^']*'|\s*=\s*[^\s"'=<>`]+)?/).getRegex(),ra=/(?:\[(?:\\[\s\S]|[^\[\]\\])*\]|\\[\s\S]|`+[^`]*?`+(?!`)|[^\[\]\\`])*?/,$C=at(/^!?\[(label)\]\(\s*(href)(?:(?:[ \t]*(?:\n[ \t]*)?)(title))?\s*\)/).replace("label",ra).replace("href",/<(?:\\.|[^\n<>\\])+>|[^ \t\n\x00-\x1f]*/).replace("title",/"(?:\\"?|[^"\\])*"|'(?:\\'?|[^'\\])*'|\((?:\\\)?|[^)\\])*\)/).getRegex(),_u=at(/^!?\[(label)\]\[(ref)\]/).replace("label",ra).replace("ref",Bs).getRegex(),Su=at(/^!?\[(ref)\](?:\[\])?/).replace("ref",Bs).getRegex(),AC=at("reflink|nolink(?!\\()","g").replace("reflink",_u).replace("nolink",Su).getRegex(),$o=/[hH][tT][tT][pP][sS]?|[fF][tT][pP]/,As={_backpedal:Wr,anyPunctuation:TC,autolink:BC,blockSkip:CC,br:bu,code:gC,del:Wr,emStrongLDelim:kC,emStrongRDelimAst:vC,emStrongRDelimUnd:SC,escape:pC,link:$C,nolink:Su,punctuation:yC,reflink:_u,reflinkSearch:AC,tag:MC,text:mC,url:Wr},FC={...As,link:at(/^!?\[(label)\]\((.*?)\)/).replace("label",ra).getRegex(),reflink:at(/^!?\[(label)\]\s*\[([^\]]*)\]/).replace("label",ra).getRegex()},_n={...As,emStrongRDelimAst:_C,emStrongLDelim:wC,url:at(/^((?:protocol):\/\/|www\.)(?:[a-zA-Z0-9\-]+\.?)+[^\s<]*|^email/).replace("protocol",$o).replace("email",/[A-Za-z0-9._+-]+(@)[a-zA-Z0-9-_]+(?:\.[a-zA-Z0-9-_]*[a-zA-Z0-9])+(?![-_])/).getRegex(),_backpedal:/(?:[^?!.,:;*_'"~()&]+|\([^)]*\)|&(?![a-zA-Z0-9]+;$)|[?!.,:;*_'"~)]+(?!$))+/,del:/^(~~?)(?=[^\s~])((?:\\[\s\S]|[^\\])*?(?:\\[\s\S]|[^\s~\\]))\1(?=[^~]|$)/,text:at(/^([`~]+|[^`~])(?:(?= {2,}\n)|(?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)|[\s\S]*?(?:(?=[\\<!\[`*~_]|\b_|protocol:\/\/|www\.|$)|[^ ](?= {2,}\n)|[^a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-](?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)))/).replace("protocol",$o).getRegex()},EC={..._n,br:at(bu).replace("{2,}","*").getRegex(),text:at(_n.text).replace("\\b_","\\b_| {2,}\\n").replace(/\{2,\}/g,"*").getRegex()},pi={normal:Ms,gfm:dC,pedantic:fC},_r={normal:As,gfm:_n,breaks:EC,pedantic:FC},DC={"&":"&","<":"<",">":">",'"':""","'":"'"},Ao=e=>DC[e];function Qt(e,t){if(t){if(Ot.escapeTest.test(e))return e.replace(Ot.escapeReplace,Ao)}else if(Ot.escapeTestNoEncode.test(e))return e.replace(Ot.escapeReplaceNoEncode,Ao);return e}function Fo(e){try{e=encodeURI(e).replace(Ot.percentDecode,"%")}catch{return null}return e}function Eo(e,t){var n;let r=e.replace(Ot.findPipe,(o,s,c)=>{let l=!1,h=s;for(;--h>=0&&c[h]==="\\";)l=!l;return l?"|":" |"}),i=r.split(Ot.splitPipe),a=0;if(i[0].trim()||i.shift(),i.length>0&&!((n=i.at(-1))!=null&&n.trim())&&i.pop(),t)if(i.length>t)i.splice(t);else for(;i.length<t;)i.push("");for(;a<i.length;a++)i[a]=i[a].trim().replace(Ot.slashPipe,"|");return i}function Sr(e,t,r){let i=e.length;if(i===0)return"";let a=0;for(;a<i&&e.charAt(i-a-1)===t;)a++;return e.slice(0,i-a)}function OC(e,t){if(e.indexOf(t[1])===-1)return-1;let r=0;for(let i=0;i<e.length;i++)if(e[i]==="\\")i++;else if(e[i]===t[0])r++;else if(e[i]===t[1]&&(r--,r<0))return i;return r>0?-2:-1}function Do(e,t,r,i,a){let n=t.href,o=t.title||null,s=e[1].replace(a.other.outputLinkReplace,"$1");i.state.inLink=!0;let c={type:e[0].charAt(0)==="!"?"image":"link",raw:r,href:n,title:o,text:s,tokens:i.inlineTokens(s)};return i.state.inLink=!1,c}function IC(e,t,r){let i=e.match(r.other.indentCodeCompensation);if(i===null)return t;let a=i[1];return t.split(`
|
|
118
|
+
`).map(n=>{let o=n.match(r.other.beginningSpace);if(o===null)return n;let[s]=o;return s.length>=a.length?n.slice(a.length):n}).join(`
|
|
119
|
+
`)}var ia=class{constructor(t){ct(this,"options");ct(this,"rules");ct(this,"lexer");this.options=t||Ye}space(t){let r=this.rules.block.newline.exec(t);if(r&&r[0].length>0)return{type:"space",raw:r[0]}}code(t){let r=this.rules.block.code.exec(t);if(r){let i=r[0].replace(this.rules.other.codeRemoveIndent,"");return{type:"code",raw:r[0],codeBlockStyle:"indented",text:this.options.pedantic?i:Sr(i,`
|
|
120
|
+
`)}}}fences(t){let r=this.rules.block.fences.exec(t);if(r){let i=r[0],a=IC(i,r[3]||"",this.rules);return{type:"code",raw:i,lang:r[2]?r[2].trim().replace(this.rules.inline.anyPunctuation,"$1"):r[2],text:a}}}heading(t){let r=this.rules.block.heading.exec(t);if(r){let i=r[2].trim();if(this.rules.other.endingHash.test(i)){let a=Sr(i,"#");(this.options.pedantic||!a||this.rules.other.endingSpaceChar.test(a))&&(i=a.trim())}return{type:"heading",raw:r[0],depth:r[1].length,text:i,tokens:this.lexer.inline(i)}}}hr(t){let r=this.rules.block.hr.exec(t);if(r)return{type:"hr",raw:Sr(r[0],`
|
|
121
|
+
`)}}blockquote(t){let r=this.rules.block.blockquote.exec(t);if(r){let i=Sr(r[0],`
|
|
122
|
+
`).split(`
|
|
123
|
+
`),a="",n="",o=[];for(;i.length>0;){let s=!1,c=[],l;for(l=0;l<i.length;l++)if(this.rules.other.blockquoteStart.test(i[l]))c.push(i[l]),s=!0;else if(!s)c.push(i[l]);else break;i=i.slice(l);let h=c.join(`
|
|
124
|
+
`),u=h.replace(this.rules.other.blockquoteSetextReplace,`
|
|
125
|
+
$1`).replace(this.rules.other.blockquoteSetextReplace2,"");a=a?`${a}
|
|
126
|
+
${h}`:h,n=n?`${n}
|
|
127
|
+
${u}`:u;let f=this.lexer.state.top;if(this.lexer.state.top=!0,this.lexer.blockTokens(u,o,!0),this.lexer.state.top=f,i.length===0)break;let d=o.at(-1);if((d==null?void 0:d.type)==="code")break;if((d==null?void 0:d.type)==="blockquote"){let g=d,m=g.raw+`
|
|
128
|
+
`+i.join(`
|
|
129
|
+
`),y=this.blockquote(m);o[o.length-1]=y,a=a.substring(0,a.length-g.raw.length)+y.raw,n=n.substring(0,n.length-g.text.length)+y.text;break}else if((d==null?void 0:d.type)==="list"){let g=d,m=g.raw+`
|
|
130
|
+
`+i.join(`
|
|
131
|
+
`),y=this.list(m);o[o.length-1]=y,a=a.substring(0,a.length-d.raw.length)+y.raw,n=n.substring(0,n.length-g.raw.length)+y.raw,i=m.substring(o.at(-1).raw.length).split(`
|
|
132
|
+
`);continue}}return{type:"blockquote",raw:a,tokens:o,text:n}}}list(t){let r=this.rules.block.list.exec(t);if(r){let i=r[1].trim(),a=i.length>1,n={type:"list",raw:"",ordered:a,start:a?+i.slice(0,-1):"",loose:!1,items:[]};i=a?`\\d{1,9}\\${i.slice(-1)}`:`\\${i}`,this.options.pedantic&&(i=a?i:"[*+-]");let o=this.rules.other.listItemRegex(i),s=!1;for(;t;){let l=!1,h="",u="";if(!(r=o.exec(t))||this.rules.block.hr.test(t))break;h=r[0],t=t.substring(h.length);let f=r[2].split(`
|
|
133
|
+
`,1)[0].replace(this.rules.other.listReplaceTabs,b=>" ".repeat(3*b.length)),d=t.split(`
|
|
134
|
+
`,1)[0],g=!f.trim(),m=0;if(this.options.pedantic?(m=2,u=f.trimStart()):g?m=r[1].length+1:(m=r[2].search(this.rules.other.nonSpaceChar),m=m>4?1:m,u=f.slice(m),m+=r[1].length),g&&this.rules.other.blankLine.test(d)&&(h+=d+`
|
|
135
|
+
`,t=t.substring(d.length+1),l=!0),!l){let b=this.rules.other.nextBulletRegex(m),k=this.rules.other.hrRegex(m),S=this.rules.other.fencesBeginRegex(m),v=this.rules.other.headingBeginRegex(m),C=this.rules.other.htmlBeginRegex(m);for(;t;){let _=t.split(`
|
|
136
|
+
`,1)[0],A;if(d=_,this.options.pedantic?(d=d.replace(this.rules.other.listReplaceNesting," "),A=d):A=d.replace(this.rules.other.tabCharGlobal," "),S.test(d)||v.test(d)||C.test(d)||b.test(d)||k.test(d))break;if(A.search(this.rules.other.nonSpaceChar)>=m||!d.trim())u+=`
|
|
137
|
+
`+A.slice(m);else{if(g||f.replace(this.rules.other.tabCharGlobal," ").search(this.rules.other.nonSpaceChar)>=4||S.test(f)||v.test(f)||k.test(f))break;u+=`
|
|
138
|
+
`+d}!g&&!d.trim()&&(g=!0),h+=_+`
|
|
139
|
+
`,t=t.substring(_.length+1),f=A.slice(m)}}n.loose||(s?n.loose=!0:this.rules.other.doubleBlankLine.test(h)&&(s=!0));let y=null,x;this.options.gfm&&(y=this.rules.other.listIsTask.exec(u),y&&(x=y[0]!=="[ ] ",u=u.replace(this.rules.other.listReplaceTask,""))),n.items.push({type:"list_item",raw:h,task:!!y,checked:x,loose:!1,text:u,tokens:[]}),n.raw+=h}let c=n.items.at(-1);if(c)c.raw=c.raw.trimEnd(),c.text=c.text.trimEnd();else return;n.raw=n.raw.trimEnd();for(let l=0;l<n.items.length;l++)if(this.lexer.state.top=!1,n.items[l].tokens=this.lexer.blockTokens(n.items[l].text,[]),!n.loose){let h=n.items[l].tokens.filter(f=>f.type==="space"),u=h.length>0&&h.some(f=>this.rules.other.anyLine.test(f.raw));n.loose=u}if(n.loose)for(let l=0;l<n.items.length;l++)n.items[l].loose=!0;return n}}html(t){let r=this.rules.block.html.exec(t);if(r)return{type:"html",block:!0,raw:r[0],pre:r[1]==="pre"||r[1]==="script"||r[1]==="style",text:r[0]}}def(t){let r=this.rules.block.def.exec(t);if(r){let i=r[1].toLowerCase().replace(this.rules.other.multipleSpaceGlobal," "),a=r[2]?r[2].replace(this.rules.other.hrefBrackets,"$1").replace(this.rules.inline.anyPunctuation,"$1"):"",n=r[3]?r[3].substring(1,r[3].length-1).replace(this.rules.inline.anyPunctuation,"$1"):r[3];return{type:"def",tag:i,raw:r[0],href:a,title:n}}}table(t){var s;let r=this.rules.block.table.exec(t);if(!r||!this.rules.other.tableDelimiter.test(r[2]))return;let i=Eo(r[1]),a=r[2].replace(this.rules.other.tableAlignChars,"").split("|"),n=(s=r[3])!=null&&s.trim()?r[3].replace(this.rules.other.tableRowBlankLine,"").split(`
|
|
140
|
+
`):[],o={type:"table",raw:r[0],header:[],align:[],rows:[]};if(i.length===a.length){for(let c of a)this.rules.other.tableAlignRight.test(c)?o.align.push("right"):this.rules.other.tableAlignCenter.test(c)?o.align.push("center"):this.rules.other.tableAlignLeft.test(c)?o.align.push("left"):o.align.push(null);for(let c=0;c<i.length;c++)o.header.push({text:i[c],tokens:this.lexer.inline(i[c]),header:!0,align:o.align[c]});for(let c of n)o.rows.push(Eo(c,o.header.length).map((l,h)=>({text:l,tokens:this.lexer.inline(l),header:!1,align:o.align[h]})));return o}}lheading(t){let r=this.rules.block.lheading.exec(t);if(r)return{type:"heading",raw:r[0],depth:r[2].charAt(0)==="="?1:2,text:r[1],tokens:this.lexer.inline(r[1])}}paragraph(t){let r=this.rules.block.paragraph.exec(t);if(r){let i=r[1].charAt(r[1].length-1)===`
|
|
141
|
+
`?r[1].slice(0,-1):r[1];return{type:"paragraph",raw:r[0],text:i,tokens:this.lexer.inline(i)}}}text(t){let r=this.rules.block.text.exec(t);if(r)return{type:"text",raw:r[0],text:r[0],tokens:this.lexer.inline(r[0])}}escape(t){let r=this.rules.inline.escape.exec(t);if(r)return{type:"escape",raw:r[0],text:r[1]}}tag(t){let r=this.rules.inline.tag.exec(t);if(r)return!this.lexer.state.inLink&&this.rules.other.startATag.test(r[0])?this.lexer.state.inLink=!0:this.lexer.state.inLink&&this.rules.other.endATag.test(r[0])&&(this.lexer.state.inLink=!1),!this.lexer.state.inRawBlock&&this.rules.other.startPreScriptTag.test(r[0])?this.lexer.state.inRawBlock=!0:this.lexer.state.inRawBlock&&this.rules.other.endPreScriptTag.test(r[0])&&(this.lexer.state.inRawBlock=!1),{type:"html",raw:r[0],inLink:this.lexer.state.inLink,inRawBlock:this.lexer.state.inRawBlock,block:!1,text:r[0]}}link(t){let r=this.rules.inline.link.exec(t);if(r){let i=r[2].trim();if(!this.options.pedantic&&this.rules.other.startAngleBracket.test(i)){if(!this.rules.other.endAngleBracket.test(i))return;let o=Sr(i.slice(0,-1),"\\");if((i.length-o.length)%2===0)return}else{let o=OC(r[2],"()");if(o===-2)return;if(o>-1){let s=(r[0].indexOf("!")===0?5:4)+r[1].length+o;r[2]=r[2].substring(0,o),r[0]=r[0].substring(0,s).trim(),r[3]=""}}let a=r[2],n="";if(this.options.pedantic){let o=this.rules.other.pedanticHrefTitle.exec(a);o&&(a=o[1],n=o[3])}else n=r[3]?r[3].slice(1,-1):"";return a=a.trim(),this.rules.other.startAngleBracket.test(a)&&(this.options.pedantic&&!this.rules.other.endAngleBracket.test(i)?a=a.slice(1):a=a.slice(1,-1)),Do(r,{href:a&&a.replace(this.rules.inline.anyPunctuation,"$1"),title:n&&n.replace(this.rules.inline.anyPunctuation,"$1")},r[0],this.lexer,this.rules)}}reflink(t,r){let i;if((i=this.rules.inline.reflink.exec(t))||(i=this.rules.inline.nolink.exec(t))){let a=(i[2]||i[1]).replace(this.rules.other.multipleSpaceGlobal," "),n=r[a.toLowerCase()];if(!n){let o=i[0].charAt(0);return{type:"text",raw:o,text:o}}return Do(i,n,i[0],this.lexer,this.rules)}}emStrong(t,r,i=""){let a=this.rules.inline.emStrongLDelim.exec(t);if(!(!a||a[3]&&i.match(this.rules.other.unicodeAlphaNumeric))&&(!(a[1]||a[2])||!i||this.rules.inline.punctuation.exec(i))){let n=[...a[0]].length-1,o,s,c=n,l=0,h=a[0][0]==="*"?this.rules.inline.emStrongRDelimAst:this.rules.inline.emStrongRDelimUnd;for(h.lastIndex=0,r=r.slice(-1*t.length+n);(a=h.exec(r))!=null;){if(o=a[1]||a[2]||a[3]||a[4]||a[5]||a[6],!o)continue;if(s=[...o].length,a[3]||a[4]){c+=s;continue}else if((a[5]||a[6])&&n%3&&!((n+s)%3)){l+=s;continue}if(c-=s,c>0)continue;s=Math.min(s,s+c+l);let u=[...a[0]][0].length,f=t.slice(0,n+a.index+u+s);if(Math.min(n,s)%2){let g=f.slice(1,-1);return{type:"em",raw:f,text:g,tokens:this.lexer.inlineTokens(g)}}let d=f.slice(2,-2);return{type:"strong",raw:f,text:d,tokens:this.lexer.inlineTokens(d)}}}}codespan(t){let r=this.rules.inline.code.exec(t);if(r){let i=r[2].replace(this.rules.other.newLineCharGlobal," "),a=this.rules.other.nonSpaceChar.test(i),n=this.rules.other.startingSpaceChar.test(i)&&this.rules.other.endingSpaceChar.test(i);return a&&n&&(i=i.substring(1,i.length-1)),{type:"codespan",raw:r[0],text:i}}}br(t){let r=this.rules.inline.br.exec(t);if(r)return{type:"br",raw:r[0]}}del(t){let r=this.rules.inline.del.exec(t);if(r)return{type:"del",raw:r[0],text:r[2],tokens:this.lexer.inlineTokens(r[2])}}autolink(t){let r=this.rules.inline.autolink.exec(t);if(r){let i,a;return r[2]==="@"?(i=r[1],a="mailto:"+i):(i=r[1],a=i),{type:"link",raw:r[0],text:i,href:a,tokens:[{type:"text",raw:i,text:i}]}}}url(t){var i;let r;if(r=this.rules.inline.url.exec(t)){let a,n;if(r[2]==="@")a=r[0],n="mailto:"+a;else{let o;do o=r[0],r[0]=((i=this.rules.inline._backpedal.exec(r[0]))==null?void 0:i[0])??"";while(o!==r[0]);a=r[0],r[1]==="www."?n="http://"+r[0]:n=r[0]}return{type:"link",raw:r[0],text:a,href:n,tokens:[{type:"text",raw:a,text:a}]}}}inlineText(t){let r=this.rules.inline.text.exec(t);if(r){let i=this.lexer.state.inRawBlock;return{type:"text",raw:r[0],text:r[0],escaped:i}}}},Yt=class Sn{constructor(t){ct(this,"tokens");ct(this,"options");ct(this,"state");ct(this,"tokenizer");ct(this,"inlineQueue");this.tokens=[],this.tokens.links=Object.create(null),this.options=t||Ye,this.options.tokenizer=this.options.tokenizer||new ia,this.tokenizer=this.options.tokenizer,this.tokenizer.options=this.options,this.tokenizer.lexer=this,this.inlineQueue=[],this.state={inLink:!1,inRawBlock:!1,top:!0};let r={other:Ot,block:pi.normal,inline:_r.normal};this.options.pedantic?(r.block=pi.pedantic,r.inline=_r.pedantic):this.options.gfm&&(r.block=pi.gfm,this.options.breaks?r.inline=_r.breaks:r.inline=_r.gfm),this.tokenizer.rules=r}static get rules(){return{block:pi,inline:_r}}static lex(t,r){return new Sn(r).lex(t)}static lexInline(t,r){return new Sn(r).inlineTokens(t)}lex(t){t=t.replace(Ot.carriageReturn,`
|
|
142
|
+
`),this.blockTokens(t,this.tokens);for(let r=0;r<this.inlineQueue.length;r++){let i=this.inlineQueue[r];this.inlineTokens(i.src,i.tokens)}return this.inlineQueue=[],this.tokens}blockTokens(t,r=[],i=!1){var a,n,o;for(this.options.pedantic&&(t=t.replace(Ot.tabCharGlobal," ").replace(Ot.spaceLine,""));t;){let s;if((n=(a=this.options.extensions)==null?void 0:a.block)!=null&&n.some(l=>(s=l.call({lexer:this},t,r))?(t=t.substring(s.raw.length),r.push(s),!0):!1))continue;if(s=this.tokenizer.space(t)){t=t.substring(s.raw.length);let l=r.at(-1);s.raw.length===1&&l!==void 0?l.raw+=`
|
|
143
|
+
`:r.push(s);continue}if(s=this.tokenizer.code(t)){t=t.substring(s.raw.length);let l=r.at(-1);(l==null?void 0:l.type)==="paragraph"||(l==null?void 0:l.type)==="text"?(l.raw+=(l.raw.endsWith(`
|
|
144
|
+
`)?"":`
|
|
145
|
+
`)+s.raw,l.text+=`
|
|
146
|
+
`+s.text,this.inlineQueue.at(-1).src=l.text):r.push(s);continue}if(s=this.tokenizer.fences(t)){t=t.substring(s.raw.length),r.push(s);continue}if(s=this.tokenizer.heading(t)){t=t.substring(s.raw.length),r.push(s);continue}if(s=this.tokenizer.hr(t)){t=t.substring(s.raw.length),r.push(s);continue}if(s=this.tokenizer.blockquote(t)){t=t.substring(s.raw.length),r.push(s);continue}if(s=this.tokenizer.list(t)){t=t.substring(s.raw.length),r.push(s);continue}if(s=this.tokenizer.html(t)){t=t.substring(s.raw.length),r.push(s);continue}if(s=this.tokenizer.def(t)){t=t.substring(s.raw.length);let l=r.at(-1);(l==null?void 0:l.type)==="paragraph"||(l==null?void 0:l.type)==="text"?(l.raw+=(l.raw.endsWith(`
|
|
147
|
+
`)?"":`
|
|
148
|
+
`)+s.raw,l.text+=`
|
|
149
|
+
`+s.raw,this.inlineQueue.at(-1).src=l.text):this.tokens.links[s.tag]||(this.tokens.links[s.tag]={href:s.href,title:s.title},r.push(s));continue}if(s=this.tokenizer.table(t)){t=t.substring(s.raw.length),r.push(s);continue}if(s=this.tokenizer.lheading(t)){t=t.substring(s.raw.length),r.push(s);continue}let c=t;if((o=this.options.extensions)!=null&&o.startBlock){let l=1/0,h=t.slice(1),u;this.options.extensions.startBlock.forEach(f=>{u=f.call({lexer:this},h),typeof u=="number"&&u>=0&&(l=Math.min(l,u))}),l<1/0&&l>=0&&(c=t.substring(0,l+1))}if(this.state.top&&(s=this.tokenizer.paragraph(c))){let l=r.at(-1);i&&(l==null?void 0:l.type)==="paragraph"?(l.raw+=(l.raw.endsWith(`
|
|
150
|
+
`)?"":`
|
|
151
|
+
`)+s.raw,l.text+=`
|
|
152
|
+
`+s.text,this.inlineQueue.pop(),this.inlineQueue.at(-1).src=l.text):r.push(s),i=c.length!==t.length,t=t.substring(s.raw.length);continue}if(s=this.tokenizer.text(t)){t=t.substring(s.raw.length);let l=r.at(-1);(l==null?void 0:l.type)==="text"?(l.raw+=(l.raw.endsWith(`
|
|
153
|
+
`)?"":`
|
|
154
|
+
`)+s.raw,l.text+=`
|
|
155
|
+
`+s.text,this.inlineQueue.pop(),this.inlineQueue.at(-1).src=l.text):r.push(s);continue}if(t){let l="Infinite loop on byte: "+t.charCodeAt(0);if(this.options.silent){console.error(l);break}else throw new Error(l)}}return this.state.top=!0,r}inline(t,r=[]){return this.inlineQueue.push({src:t,tokens:r}),r}inlineTokens(t,r=[]){var c,l,h,u,f;let i=t,a=null;if(this.tokens.links){let d=Object.keys(this.tokens.links);if(d.length>0)for(;(a=this.tokenizer.rules.inline.reflinkSearch.exec(i))!=null;)d.includes(a[0].slice(a[0].lastIndexOf("[")+1,-1))&&(i=i.slice(0,a.index)+"["+"a".repeat(a[0].length-2)+"]"+i.slice(this.tokenizer.rules.inline.reflinkSearch.lastIndex))}for(;(a=this.tokenizer.rules.inline.anyPunctuation.exec(i))!=null;)i=i.slice(0,a.index)+"++"+i.slice(this.tokenizer.rules.inline.anyPunctuation.lastIndex);let n;for(;(a=this.tokenizer.rules.inline.blockSkip.exec(i))!=null;)n=a[2]?a[2].length:0,i=i.slice(0,a.index+n)+"["+"a".repeat(a[0].length-n-2)+"]"+i.slice(this.tokenizer.rules.inline.blockSkip.lastIndex);i=((l=(c=this.options.hooks)==null?void 0:c.emStrongMask)==null?void 0:l.call({lexer:this},i))??i;let o=!1,s="";for(;t;){o||(s=""),o=!1;let d;if((u=(h=this.options.extensions)==null?void 0:h.inline)!=null&&u.some(m=>(d=m.call({lexer:this},t,r))?(t=t.substring(d.raw.length),r.push(d),!0):!1))continue;if(d=this.tokenizer.escape(t)){t=t.substring(d.raw.length),r.push(d);continue}if(d=this.tokenizer.tag(t)){t=t.substring(d.raw.length),r.push(d);continue}if(d=this.tokenizer.link(t)){t=t.substring(d.raw.length),r.push(d);continue}if(d=this.tokenizer.reflink(t,this.tokens.links)){t=t.substring(d.raw.length);let m=r.at(-1);d.type==="text"&&(m==null?void 0:m.type)==="text"?(m.raw+=d.raw,m.text+=d.text):r.push(d);continue}if(d=this.tokenizer.emStrong(t,i,s)){t=t.substring(d.raw.length),r.push(d);continue}if(d=this.tokenizer.codespan(t)){t=t.substring(d.raw.length),r.push(d);continue}if(d=this.tokenizer.br(t)){t=t.substring(d.raw.length),r.push(d);continue}if(d=this.tokenizer.del(t)){t=t.substring(d.raw.length),r.push(d);continue}if(d=this.tokenizer.autolink(t)){t=t.substring(d.raw.length),r.push(d);continue}if(!this.state.inLink&&(d=this.tokenizer.url(t))){t=t.substring(d.raw.length),r.push(d);continue}let g=t;if((f=this.options.extensions)!=null&&f.startInline){let m=1/0,y=t.slice(1),x;this.options.extensions.startInline.forEach(b=>{x=b.call({lexer:this},y),typeof x=="number"&&x>=0&&(m=Math.min(m,x))}),m<1/0&&m>=0&&(g=t.substring(0,m+1))}if(d=this.tokenizer.inlineText(g)){t=t.substring(d.raw.length),d.raw.slice(-1)!=="_"&&(s=d.raw.slice(-1)),o=!0;let m=r.at(-1);(m==null?void 0:m.type)==="text"?(m.raw+=d.raw,m.text+=d.text):r.push(d);continue}if(t){let m="Infinite loop on byte: "+t.charCodeAt(0);if(this.options.silent){console.error(m);break}else throw new Error(m)}}return r}},aa=class{constructor(t){ct(this,"options");ct(this,"parser");this.options=t||Ye}space(t){return""}code({text:t,lang:r,escaped:i}){var o;let a=(o=(r||"").match(Ot.notSpaceStart))==null?void 0:o[0],n=t.replace(Ot.endingNewline,"")+`
|
|
156
|
+
`;return a?'<pre><code class="language-'+Qt(a)+'">'+(i?n:Qt(n,!0))+`</code></pre>
|
|
157
|
+
`:"<pre><code>"+(i?n:Qt(n,!0))+`</code></pre>
|
|
158
|
+
`}blockquote({tokens:t}){return`<blockquote>
|
|
159
|
+
${this.parser.parse(t)}</blockquote>
|
|
160
|
+
`}html({text:t}){return t}def(t){return""}heading({tokens:t,depth:r}){return`<h${r}>${this.parser.parseInline(t)}</h${r}>
|
|
161
|
+
`}hr(t){return`<hr>
|
|
162
|
+
`}list(t){let r=t.ordered,i=t.start,a="";for(let s=0;s<t.items.length;s++){let c=t.items[s];a+=this.listitem(c)}let n=r?"ol":"ul",o=r&&i!==1?' start="'+i+'"':"";return"<"+n+o+`>
|
|
163
|
+
`+a+"</"+n+`>
|
|
164
|
+
`}listitem(t){var i;let r="";if(t.task){let a=this.checkbox({checked:!!t.checked});t.loose?((i=t.tokens[0])==null?void 0:i.type)==="paragraph"?(t.tokens[0].text=a+" "+t.tokens[0].text,t.tokens[0].tokens&&t.tokens[0].tokens.length>0&&t.tokens[0].tokens[0].type==="text"&&(t.tokens[0].tokens[0].text=a+" "+Qt(t.tokens[0].tokens[0].text),t.tokens[0].tokens[0].escaped=!0)):t.tokens.unshift({type:"text",raw:a+" ",text:a+" ",escaped:!0}):r+=a+" "}return r+=this.parser.parse(t.tokens,!!t.loose),`<li>${r}</li>
|
|
165
|
+
`}checkbox({checked:t}){return"<input "+(t?'checked="" ':"")+'disabled="" type="checkbox">'}paragraph({tokens:t}){return`<p>${this.parser.parseInline(t)}</p>
|
|
166
|
+
`}table(t){let r="",i="";for(let n=0;n<t.header.length;n++)i+=this.tablecell(t.header[n]);r+=this.tablerow({text:i});let a="";for(let n=0;n<t.rows.length;n++){let o=t.rows[n];i="";for(let s=0;s<o.length;s++)i+=this.tablecell(o[s]);a+=this.tablerow({text:i})}return a&&(a=`<tbody>${a}</tbody>`),`<table>
|
|
167
|
+
<thead>
|
|
168
|
+
`+r+`</thead>
|
|
169
|
+
`+a+`</table>
|
|
170
|
+
`}tablerow({text:t}){return`<tr>
|
|
171
|
+
${t}</tr>
|
|
172
|
+
`}tablecell(t){let r=this.parser.parseInline(t.tokens),i=t.header?"th":"td";return(t.align?`<${i} align="${t.align}">`:`<${i}>`)+r+`</${i}>
|
|
173
|
+
`}strong({tokens:t}){return`<strong>${this.parser.parseInline(t)}</strong>`}em({tokens:t}){return`<em>${this.parser.parseInline(t)}</em>`}codespan({text:t}){return`<code>${Qt(t,!0)}</code>`}br(t){return"<br>"}del({tokens:t}){return`<del>${this.parser.parseInline(t)}</del>`}link({href:t,title:r,tokens:i}){let a=this.parser.parseInline(i),n=Fo(t);if(n===null)return a;t=n;let o='<a href="'+t+'"';return r&&(o+=' title="'+Qt(r)+'"'),o+=">"+a+"</a>",o}image({href:t,title:r,text:i,tokens:a}){a&&(i=this.parser.parseInline(a,this.parser.textRenderer));let n=Fo(t);if(n===null)return Qt(i);t=n;let o=`<img src="${t}" alt="${i}"`;return r&&(o+=` title="${Qt(r)}"`),o+=">",o}text(t){return"tokens"in t&&t.tokens?this.parser.parseInline(t.tokens):"escaped"in t&&t.escaped?t.text:Qt(t.text)}},Fs=class{strong({text:t}){return t}em({text:t}){return t}codespan({text:t}){return t}del({text:t}){return t}html({text:t}){return t}text({text:t}){return t}link({text:t}){return""+t}image({text:t}){return""+t}br(){return""}},Vt=class Tn{constructor(t){ct(this,"options");ct(this,"renderer");ct(this,"textRenderer");this.options=t||Ye,this.options.renderer=this.options.renderer||new aa,this.renderer=this.options.renderer,this.renderer.options=this.options,this.renderer.parser=this,this.textRenderer=new Fs}static parse(t,r){return new Tn(r).parse(t)}static parseInline(t,r){return new Tn(r).parseInline(t)}parse(t,r=!0){var a,n;let i="";for(let o=0;o<t.length;o++){let s=t[o];if((n=(a=this.options.extensions)==null?void 0:a.renderers)!=null&&n[s.type]){let l=s,h=this.options.extensions.renderers[l.type].call({parser:this},l);if(h!==!1||!["space","hr","heading","code","table","blockquote","list","html","def","paragraph","text"].includes(l.type)){i+=h||"";continue}}let c=s;switch(c.type){case"space":{i+=this.renderer.space(c);continue}case"hr":{i+=this.renderer.hr(c);continue}case"heading":{i+=this.renderer.heading(c);continue}case"code":{i+=this.renderer.code(c);continue}case"table":{i+=this.renderer.table(c);continue}case"blockquote":{i+=this.renderer.blockquote(c);continue}case"list":{i+=this.renderer.list(c);continue}case"html":{i+=this.renderer.html(c);continue}case"def":{i+=this.renderer.def(c);continue}case"paragraph":{i+=this.renderer.paragraph(c);continue}case"text":{let l=c,h=this.renderer.text(l);for(;o+1<t.length&&t[o+1].type==="text";)l=t[++o],h+=`
|
|
174
|
+
`+this.renderer.text(l);r?i+=this.renderer.paragraph({type:"paragraph",raw:h,text:h,tokens:[{type:"text",raw:h,text:h,escaped:!0}]}):i+=h;continue}default:{let l='Token with "'+c.type+'" type was not found.';if(this.options.silent)return console.error(l),"";throw new Error(l)}}}return i}parseInline(t,r=this.renderer){var a,n;let i="";for(let o=0;o<t.length;o++){let s=t[o];if((n=(a=this.options.extensions)==null?void 0:a.renderers)!=null&&n[s.type]){let l=this.options.extensions.renderers[s.type].call({parser:this},s);if(l!==!1||!["escape","html","link","image","strong","em","codespan","br","del","text"].includes(s.type)){i+=l||"";continue}}let c=s;switch(c.type){case"escape":{i+=r.text(c);break}case"html":{i+=r.html(c);break}case"link":{i+=r.link(c);break}case"image":{i+=r.image(c);break}case"strong":{i+=r.strong(c);break}case"em":{i+=r.em(c);break}case"codespan":{i+=r.codespan(c);break}case"br":{i+=r.br(c);break}case"del":{i+=r.del(c);break}case"text":{i+=r.text(c);break}default:{let l='Token with "'+c.type+'" type was not found.';if(this.options.silent)return console.error(l),"";throw new Error(l)}}}return i}},bi,Dr=(bi=class{constructor(t){ct(this,"options");ct(this,"block");this.options=t||Ye}preprocess(t){return t}postprocess(t){return t}processAllTokens(t){return t}emStrongMask(t){return t}provideLexer(){return this.block?Yt.lex:Yt.lexInline}provideParser(){return this.block?Vt.parse:Vt.parseInline}},ct(bi,"passThroughHooks",new Set(["preprocess","postprocess","processAllTokens","emStrongMask"])),ct(bi,"passThroughHooksRespectAsync",new Set(["preprocess","postprocess","processAllTokens"])),bi),RC=class{constructor(...t){ct(this,"defaults",_s());ct(this,"options",this.setOptions);ct(this,"parse",this.parseMarkdown(!0));ct(this,"parseInline",this.parseMarkdown(!1));ct(this,"Parser",Vt);ct(this,"Renderer",aa);ct(this,"TextRenderer",Fs);ct(this,"Lexer",Yt);ct(this,"Tokenizer",ia);ct(this,"Hooks",Dr);this.use(...t)}walkTokens(t,r){var a,n;let i=[];for(let o of t)switch(i=i.concat(r.call(this,o)),o.type){case"table":{let s=o;for(let c of s.header)i=i.concat(this.walkTokens(c.tokens,r));for(let c of s.rows)for(let l of c)i=i.concat(this.walkTokens(l.tokens,r));break}case"list":{let s=o;i=i.concat(this.walkTokens(s.items,r));break}default:{let s=o;(n=(a=this.defaults.extensions)==null?void 0:a.childTokens)!=null&&n[s.type]?this.defaults.extensions.childTokens[s.type].forEach(c=>{let l=s[c].flat(1/0);i=i.concat(this.walkTokens(l,r))}):s.tokens&&(i=i.concat(this.walkTokens(s.tokens,r)))}}return i}use(...t){let r=this.defaults.extensions||{renderers:{},childTokens:{}};return t.forEach(i=>{let a={...i};if(a.async=this.defaults.async||a.async||!1,i.extensions&&(i.extensions.forEach(n=>{if(!n.name)throw new Error("extension name required");if("renderer"in n){let o=r.renderers[n.name];o?r.renderers[n.name]=function(...s){let c=n.renderer.apply(this,s);return c===!1&&(c=o.apply(this,s)),c}:r.renderers[n.name]=n.renderer}if("tokenizer"in n){if(!n.level||n.level!=="block"&&n.level!=="inline")throw new Error("extension level must be 'block' or 'inline'");let o=r[n.level];o?o.unshift(n.tokenizer):r[n.level]=[n.tokenizer],n.start&&(n.level==="block"?r.startBlock?r.startBlock.push(n.start):r.startBlock=[n.start]:n.level==="inline"&&(r.startInline?r.startInline.push(n.start):r.startInline=[n.start]))}"childTokens"in n&&n.childTokens&&(r.childTokens[n.name]=n.childTokens)}),a.extensions=r),i.renderer){let n=this.defaults.renderer||new aa(this.defaults);for(let o in i.renderer){if(!(o in n))throw new Error(`renderer '${o}' does not exist`);if(["options","parser"].includes(o))continue;let s=o,c=i.renderer[s],l=n[s];n[s]=(...h)=>{let u=c.apply(n,h);return u===!1&&(u=l.apply(n,h)),u||""}}a.renderer=n}if(i.tokenizer){let n=this.defaults.tokenizer||new ia(this.defaults);for(let o in i.tokenizer){if(!(o in n))throw new Error(`tokenizer '${o}' does not exist`);if(["options","rules","lexer"].includes(o))continue;let s=o,c=i.tokenizer[s],l=n[s];n[s]=(...h)=>{let u=c.apply(n,h);return u===!1&&(u=l.apply(n,h)),u}}a.tokenizer=n}if(i.hooks){let n=this.defaults.hooks||new Dr;for(let o in i.hooks){if(!(o in n))throw new Error(`hook '${o}' does not exist`);if(["options","block"].includes(o))continue;let s=o,c=i.hooks[s],l=n[s];Dr.passThroughHooks.has(o)?n[s]=h=>{if(this.defaults.async&&Dr.passThroughHooksRespectAsync.has(o))return(async()=>{let f=await c.call(n,h);return l.call(n,f)})();let u=c.call(n,h);return l.call(n,u)}:n[s]=(...h)=>{if(this.defaults.async)return(async()=>{let f=await c.apply(n,h);return f===!1&&(f=await l.apply(n,h)),f})();let u=c.apply(n,h);return u===!1&&(u=l.apply(n,h)),u}}a.hooks=n}if(i.walkTokens){let n=this.defaults.walkTokens,o=i.walkTokens;a.walkTokens=function(s){let c=[];return c.push(o.call(this,s)),n&&(c=c.concat(n.call(this,s))),c}}this.defaults={...this.defaults,...a}}),this}setOptions(t){return this.defaults={...this.defaults,...t},this}lexer(t,r){return Yt.lex(t,r??this.defaults)}parser(t,r){return Vt.parse(t,r??this.defaults)}parseMarkdown(t){return(r,i)=>{let a={...i},n={...this.defaults,...a},o=this.onError(!!n.silent,!!n.async);if(this.defaults.async===!0&&a.async===!1)return o(new Error("marked(): The async option was set to true by an extension. Remove async: false from the parse options object to return a Promise."));if(typeof r>"u"||r===null)return o(new Error("marked(): input parameter is undefined or null"));if(typeof r!="string")return o(new Error("marked(): input parameter is of type "+Object.prototype.toString.call(r)+", string expected"));if(n.hooks&&(n.hooks.options=n,n.hooks.block=t),n.async)return(async()=>{let s=n.hooks?await n.hooks.preprocess(r):r,c=await(n.hooks?await n.hooks.provideLexer():t?Yt.lex:Yt.lexInline)(s,n),l=n.hooks?await n.hooks.processAllTokens(c):c;n.walkTokens&&await Promise.all(this.walkTokens(l,n.walkTokens));let h=await(n.hooks?await n.hooks.provideParser():t?Vt.parse:Vt.parseInline)(l,n);return n.hooks?await n.hooks.postprocess(h):h})().catch(o);try{n.hooks&&(r=n.hooks.preprocess(r));let s=(n.hooks?n.hooks.provideLexer():t?Yt.lex:Yt.lexInline)(r,n);n.hooks&&(s=n.hooks.processAllTokens(s)),n.walkTokens&&this.walkTokens(s,n.walkTokens);let c=(n.hooks?n.hooks.provideParser():t?Vt.parse:Vt.parseInline)(s,n);return n.hooks&&(c=n.hooks.postprocess(c)),c}catch(s){return o(s)}}}onError(t,r){return i=>{if(i.message+=`
|
|
175
|
+
Please report this to https://github.com/markedjs/marked.`,t){let a="<p>An error occurred:</p><pre>"+Qt(i.message+"",!0)+"</pre>";return r?Promise.resolve(a):a}if(r)return Promise.reject(i);throw i}}},ze=new RC;function lt(e,t){return ze.parse(e,t)}lt.options=lt.setOptions=function(e){return ze.setOptions(e),lt.defaults=ze.defaults,gu(lt.defaults),lt};lt.getDefaults=_s;lt.defaults=Ye;lt.use=function(...e){return ze.use(...e),lt.defaults=ze.defaults,gu(lt.defaults),lt};lt.walkTokens=function(e,t){return ze.walkTokens(e,t)};lt.parseInline=ze.parseInline;lt.Parser=Vt;lt.parser=Vt.parse;lt.Renderer=aa;lt.TextRenderer=Fs;lt.Lexer=Yt;lt.lexer=Yt.lex;lt.Tokenizer=ia;lt.Hooks=Dr;lt.parse=lt;lt.options;lt.setOptions;lt.use;lt.walkTokens;lt.parseInline;Vt.parse;Yt.lex;function Tu(e){for(var t=[],r=1;r<arguments.length;r++)t[r-1]=arguments[r];var i=Array.from(typeof e=="string"?[e]:e);i[i.length-1]=i[i.length-1].replace(/\r?\n([\t ]*)$/,"");var a=i.reduce(function(s,c){var l=c.match(/\n([\t ]+|(?!\s).)/g);return l?s.concat(l.map(function(h){var u,f;return(f=(u=h.match(/[\t ]/g))===null||u===void 0?void 0:u.length)!==null&&f!==void 0?f:0})):s},[]);if(a.length){var n=new RegExp(`
|
|
176
|
+
[ ]{`+Math.min.apply(Math,a)+"}","g");i=i.map(function(s){return s.replace(n,`
|
|
177
|
+
`)})}i[0]=i[0].replace(/^\r?\n/,"");var o=i[0];return t.forEach(function(s,c){var l=o.match(/(?:^|\n)( *)$/),h=l?l[1]:"",u=s;typeof s=="string"&&s.includes(`
|
|
178
|
+
`)&&(u=String(s).split(`
|
|
179
|
+
`).map(function(f,d){return d===0?f:""+h+f}).join(`
|
|
180
|
+
`)),o+=u+i[c+1]}),o}var PC={body:'<g><rect width="80" height="80" style="fill: #087ebf; stroke-width: 0px;"/><text transform="translate(21.16 64.67)" style="fill: #fff; font-family: ArialMT, Arial; font-size: 67.75px;"><tspan x="0" y="0">?</tspan></text></g>',height:80,width:80},Bn=new Map,Bu=new Map,NC=p(e=>{for(const t of e){if(!t.name)throw new Error('Invalid icon loader. Must have a "name" property with non-empty string value.');if(E.debug("Registering icon pack:",t.name),"loader"in t)Bu.set(t.name,t.loader);else if("icons"in t)Bn.set(t.name,t.icons);else throw E.error("Invalid icon loader:",t),new Error('Invalid icon loader. Must have either "icons" or "loader" property.')}},"registerIconPacks"),Lu=p(async(e,t)=>{const r=z2(e,!0,t!==void 0);if(!r)throw new Error(`Invalid icon name: ${e}`);const i=r.prefix||t;if(!i)throw new Error(`Icon name must contain a prefix: ${e}`);let a=Bn.get(i);if(!a){const o=Bu.get(i);if(!o)throw new Error(`Icon set not found: ${r.prefix}`);try{a={...await o(),prefix:i},Bn.set(i,a)}catch(s){throw E.error(s),new Error(`Failed to load icon set: ${r.prefix}`)}}const n=H2(a,r.name);if(!n)throw new Error(`Icon not found: ${e}`);return n},"getRegisteredIconData"),zC=p(async e=>{try{return await Lu(e),!0}catch{return!1}},"isIconAvailable"),li=p(async(e,t,r)=>{let i;try{i=await Lu(e,t==null?void 0:t.fallbackPrefix)}catch(o){E.error(o),i=PC}const a=Z2(i,t),n=tC(J2(a.body),{...a.attributes,...r});return Zt(n,Lt())},"getIconSVG");function Mu(e,{markdownAutoWrap:t}){const i=e.replace(/<br\/>/g,`
|
|
181
|
+
`).replace(/\n{2,}/g,`
|
|
182
|
+
`);return Tu(i)}p(Mu,"preprocessMarkdown");function $u(e){return e.split(/\\n|\n|<br\s*\/?>/gi).map(t=>{var r;return((r=t.trim().match(/<[^>]+>|[^\s<>]+/g))==null?void 0:r.map(i=>({content:i,type:"normal"})))??[]})}p($u,"nonMarkdownToLines");function Au(e,t={}){const r=Mu(e,t),i=lt.lexer(r),a=[[]];let n=0;function o(s,c="normal"){s.type==="text"?s.text.split(`
|
|
183
|
+
`).forEach((h,u)=>{u!==0&&(n++,a.push([])),h.split(" ").forEach(f=>{f=f.replace(/'/g,"'"),f&&a[n].push({content:f,type:c})})}):s.type==="strong"||s.type==="em"?s.tokens.forEach(l=>{o(l,s.type)}):s.type==="html"&&a[n].push({content:s.text,type:"normal"})}return p(o,"processNode"),i.forEach(s=>{var c;s.type==="paragraph"?(c=s.tokens)==null||c.forEach(l=>{o(l)}):s.type==="html"?a[n].push({content:s.text,type:"normal"}):a[n].push({content:s.raw,type:"normal"})}),a}p(Au,"markdownToLines");function Fu(e){return e?`<p>${e.replace(/\\n|\n/g,"<br />")}</p>`:""}p(Fu,"nonMarkdownToHTML");function Eu(e,{markdownAutoWrap:t}={}){const r=lt.lexer(e);function i(a){var n,o,s;return a.type==="text"?t===!1?a.text.replace(/\n */g,"<br/>").replace(/ /g," "):a.text.replace(/\n */g,"<br/>"):a.type==="strong"?`<strong>${(n=a.tokens)==null?void 0:n.map(i).join("")}</strong>`:a.type==="em"?`<em>${(o=a.tokens)==null?void 0:o.map(i).join("")}</em>`:a.type==="paragraph"?`<p>${(s=a.tokens)==null?void 0:s.map(i).join("")}</p>`:a.type==="space"?"":a.type==="html"?`${a.text}`:a.type==="escape"?a.text:(E.warn(`Unsupported markdown: ${a.type}`),a.raw)}return p(i,"output"),r.map(i).join("")}p(Eu,"markdownToHTML");function Du(e){return Intl.Segmenter?[...new Intl.Segmenter().segment(e)].map(t=>t.segment):[...e]}p(Du,"splitTextToChars");function Ou(e,t){const r=Du(t.content);return Es(e,[],r,t.type)}p(Ou,"splitWordToFitWidth");function Es(e,t,r,i){if(r.length===0)return[{content:t.join(""),type:i},{content:"",type:i}];const[a,...n]=r,o=[...t,a];return e([{content:o.join(""),type:i}])?Es(e,o,n,i):(t.length===0&&a&&(t.push(a),r.shift()),[{content:t.join(""),type:i},{content:r.join(""),type:i}])}p(Es,"splitWordToFitWidthRecursion");function Iu(e,t){if(e.some(({content:r})=>r.includes(`
|
|
184
|
+
`)))throw new Error("splitLineToFitWidth does not support newlines in the line");return na(e,t)}p(Iu,"splitLineToFitWidth");function na(e,t,r=[],i=[]){if(e.length===0)return i.length>0&&r.push(i),r.length>0?r:[];let a="";e[0].content===" "&&(a=" ",e.shift());const n=e.shift()??{content:" ",type:"normal"},o=[...i];if(a!==""&&o.push({content:a,type:"normal"}),o.push(n),t(o))return na(e,t,r,o);if(i.length>0)r.push(i),e.unshift(n);else if(n.content){const[s,c]=Ou(t,n);r.push([s]),c.content&&e.unshift(c)}return na(e,t,r)}p(na,"splitLineToFitWidthRecursion");function Ln(e,t){t&&e.attr("style",t)}p(Ln,"applyStyle");var Oo=16384;async function Ru(e,t,r,i,a=!1,n=Lt()){const o=e.append("foreignObject");o.attr("width",`${Math.min(10*r,Oo)}px`),o.attr("height",`${Math.min(10*r,Oo)}px`);const s=o.append("xhtml:div"),c=Hr(t.label)?await Al(t.label.replace(ri.lineBreakRegex,`
|
|
185
|
+
`),n):Zt(t.label,n),l=t.isNode?"nodeLabel":"edgeLabel",h=s.append("span");h.html(c),Ln(h,t.labelStyle),h.attr("class",`${l} ${i}`),Ln(s,t.labelStyle),s.style("display","table-cell"),s.style("white-space","nowrap"),s.style("line-height","1.5"),r!==Number.POSITIVE_INFINITY&&(s.style("max-width",r+"px"),s.style("text-align","center")),s.attr("xmlns","http://www.w3.org/1999/xhtml"),a&&s.attr("class","labelBkg");let u=s.node().getBoundingClientRect();return u.width===r&&(s.style("display","table"),s.style("white-space","break-spaces"),s.style("width",r+"px"),u=s.node().getBoundingClientRect()),o.node()}p(Ru,"addHtmlSpan");function Ma(e,t,r,i=!1){const a=e.append("tspan").attr("class","text-outer-tspan").attr("x",0).attr("y",t*r-.1+"em").attr("dy",r+"em");return i&&a.attr("text-anchor","middle"),a}p(Ma,"createTspan");function Pu(e,t,r){const i=e.append("text"),a=Ma(i,1,t);$a(a,r);const n=a.node().getComputedTextLength();return i.remove(),n}p(Pu,"computeWidthOfText");function qC(e,t,r){var o;const i=e.append("text"),a=Ma(i,1,t);$a(a,[{content:r,type:"normal"}]);const n=(o=a.node())==null?void 0:o.getBoundingClientRect();return n&&i.remove(),n}p(qC,"computeDimensionOfText");function Nu(e,t,r,i=!1,a=!1){const o=t.append("g"),s=o.insert("rect").attr("class","background").attr("style","stroke: none"),c=o.append("text").attr("y","-10.1");a&&c.attr("text-anchor","middle");let l=0;for(const h of r){const u=p(d=>Pu(o,1.1,d)<=e,"checkWidth"),f=u(h)?[h]:Iu(h,u);for(const d of f){const g=Ma(c,l,1.1,a);$a(g,d),l++}}if(i){const h=c.node().getBBox(),u=2;return s.attr("x",h.x-u).attr("y",h.y-u).attr("width",h.width+2*u).attr("height",h.height+2*u),o.node()}else return c.node()}p(Nu,"createFormattedText");function $a(e,t){e.text(""),t.forEach((r,i)=>{const a=e.append("tspan").attr("font-style",r.type==="em"?"italic":"normal").attr("class","text-inner-tspan").attr("font-weight",r.type==="strong"?"bold":"normal");i===0?a.text(r.content):a.text(" "+r.content)})}p($a,"updateTextContentAndStyles");async function zu(e,t={}){const r=[];e.replace(/(fa[bklrs]?):fa-([\w-]+)/g,(a,n,o)=>(r.push((async()=>{const s=`${n}:${o}`;return await zC(s)?await li(s,void 0,{class:"label-icon"}):`<i class='${Zt(a,t).replace(":"," ")}'></i>`})()),a));const i=await Promise.all(r);return e.replace(/(fa[bklrs]?):fa-([\w-]+)/g,()=>i.shift()??"")}p(zu,"replaceIconSubstring");var pe=p(async(e,t="",{style:r="",isTitle:i=!1,classes:a="",useHtmlLabels:n=!0,markdown:o=!0,isNode:s=!0,width:c=200,addSvgBackground:l=!1}={},h)=>{if(E.debug("XYZ createText",t,r,i,a,n,s,"addSvgBackground: ",l),n){const u=o?Eu(t,h):Fu(t),f=await zu(mr(u),h),d=t.replace(/\\\\/g,"\\"),g={isNode:s,label:Hr(t)?d:f,labelStyle:r.replace("fill:","color:")};return await Ru(e,g,c,a,l,h)}else{const u=t.replace(/<br\s*\/?>/g,"<br/>"),f=o?Au(u.replace("<br>","<br/>"),h):$u(u),d=Nu(c,e,f,t?l:!1,!s);if(s){/stroke:/.exec(r)&&(r=r.replace("stroke:","lineColor:"));const g=r.replace(/stroke:[^;]+;?/g,"").replace(/stroke-width:[^;]+;?/g,"").replace(/fill:[^;]+;?/g,"").replace(/color:/g,"fill:");tt(d).attr("style",g)}else{const g=r.replace(/stroke:[^;]+;?/g,"").replace(/stroke-width:[^;]+;?/g,"").replace(/fill:[^;]+;?/g,"").replace(/background:/g,"fill:");tt(d).select("rect").attr("style",g.replace(/background:/g,"fill:"));const m=r.replace(/stroke:[^;]+;?/g,"").replace(/stroke-width:[^;]+;?/g,"").replace(/fill:[^;]+;?/g,"").replace(/color:/g,"fill:");tt(d).select("text").attr("style",m)}return i?tt(d).selectAll("tspan.text-outer-tspan").classed("title-row",!0):tt(d).selectAll("tspan.text-outer-tspan").classed("row",!0),d}},"createText");function qa(e,t,r){if(e&&e.length){const[i,a]=t,n=Math.PI/180*r,o=Math.cos(n),s=Math.sin(n);for(const c of e){const[l,h]=c;c[0]=(l-i)*o-(h-a)*s+i,c[1]=(l-i)*s+(h-a)*o+a}}}function WC(e,t){return e[0]===t[0]&&e[1]===t[1]}function HC(e,t,r,i=1){const a=r,n=Math.max(t,.1),o=e[0]&&e[0][0]&&typeof e[0][0]=="number"?[e]:e,s=[0,0];if(a)for(const l of o)qa(l,s,a);const c=(function(l,h,u){const f=[];for(const b of l){const k=[...b];WC(k[0],k[k.length-1])||k.push([k[0][0],k[0][1]]),k.length>2&&f.push(k)}const d=[];h=Math.max(h,.1);const g=[];for(const b of f)for(let k=0;k<b.length-1;k++){const S=b[k],v=b[k+1];if(S[1]!==v[1]){const C=Math.min(S[1],v[1]);g.push({ymin:C,ymax:Math.max(S[1],v[1]),x:C===S[1]?S[0]:v[0],islope:(v[0]-S[0])/(v[1]-S[1])})}}if(g.sort(((b,k)=>b.ymin<k.ymin?-1:b.ymin>k.ymin?1:b.x<k.x?-1:b.x>k.x?1:b.ymax===k.ymax?0:(b.ymax-k.ymax)/Math.abs(b.ymax-k.ymax))),!g.length)return d;let m=[],y=g[0].ymin,x=0;for(;m.length||g.length;){if(g.length){let b=-1;for(let k=0;k<g.length&&!(g[k].ymin>y);k++)b=k;g.splice(0,b+1).forEach((k=>{m.push({s:y,edge:k})}))}if(m=m.filter((b=>!(b.edge.ymax<=y))),m.sort(((b,k)=>b.edge.x===k.edge.x?0:(b.edge.x-k.edge.x)/Math.abs(b.edge.x-k.edge.x))),(u!==1||x%h==0)&&m.length>1)for(let b=0;b<m.length;b+=2){const k=b+1;if(k>=m.length)break;const S=m[b].edge,v=m[k].edge;d.push([[Math.round(S.x),y],[Math.round(v.x),y]])}y+=u,m.forEach((b=>{b.edge.x=b.edge.x+u*b.edge.islope})),x++}return d})(o,n,i);if(a){for(const l of o)qa(l,s,-a);(function(l,h,u){const f=[];l.forEach((d=>f.push(...d))),qa(f,h,u)})(c,s,-a)}return c}function ci(e,t){var r;const i=t.hachureAngle+90;let a=t.hachureGap;a<0&&(a=4*t.strokeWidth),a=Math.round(Math.max(a,.1));let n=1;return t.roughness>=1&&(((r=t.randomizer)===null||r===void 0?void 0:r.next())||Math.random())>.7&&(n=a),HC(e,a,i,n||1)}class Ds{constructor(t){this.helper=t}fillPolygons(t,r){return this._fillPolygons(t,r)}_fillPolygons(t,r){const i=ci(t,r);return{type:"fillSketch",ops:this.renderLines(i,r)}}renderLines(t,r){const i=[];for(const a of t)i.push(...this.helper.doubleLineOps(a[0][0],a[0][1],a[1][0],a[1][1],r));return i}}function Aa(e){const t=e[0],r=e[1];return Math.sqrt(Math.pow(t[0]-r[0],2)+Math.pow(t[1]-r[1],2))}class jC extends Ds{fillPolygons(t,r){let i=r.hachureGap;i<0&&(i=4*r.strokeWidth),i=Math.max(i,.1);const a=ci(t,Object.assign({},r,{hachureGap:i})),n=Math.PI/180*r.hachureAngle,o=[],s=.5*i*Math.cos(n),c=.5*i*Math.sin(n);for(const[l,h]of a)Aa([l,h])&&o.push([[l[0]-s,l[1]+c],[...h]],[[l[0]+s,l[1]-c],[...h]]);return{type:"fillSketch",ops:this.renderLines(o,r)}}}class YC extends Ds{fillPolygons(t,r){const i=this._fillPolygons(t,r),a=Object.assign({},r,{hachureAngle:r.hachureAngle+90}),n=this._fillPolygons(t,a);return i.ops=i.ops.concat(n.ops),i}}class VC{constructor(t){this.helper=t}fillPolygons(t,r){const i=ci(t,r=Object.assign({},r,{hachureAngle:0}));return this.dotsOnLines(i,r)}dotsOnLines(t,r){const i=[];let a=r.hachureGap;a<0&&(a=4*r.strokeWidth),a=Math.max(a,.1);let n=r.fillWeight;n<0&&(n=r.strokeWidth/2);const o=a/4;for(const s of t){const c=Aa(s),l=c/a,h=Math.ceil(l)-1,u=c-h*a,f=(s[0][0]+s[1][0])/2-a/4,d=Math.min(s[0][1],s[1][1]);for(let g=0;g<h;g++){const m=d+u+g*a,y=f-o+2*Math.random()*o,x=m-o+2*Math.random()*o,b=this.helper.ellipse(y,x,n,n,r);i.push(...b.ops)}}return{type:"fillSketch",ops:i}}}class GC{constructor(t){this.helper=t}fillPolygons(t,r){const i=ci(t,r);return{type:"fillSketch",ops:this.dashedLine(i,r)}}dashedLine(t,r){const i=r.dashOffset<0?r.hachureGap<0?4*r.strokeWidth:r.hachureGap:r.dashOffset,a=r.dashGap<0?r.hachureGap<0?4*r.strokeWidth:r.hachureGap:r.dashGap,n=[];return t.forEach((o=>{const s=Aa(o),c=Math.floor(s/(i+a)),l=(s+a-c*(i+a))/2;let h=o[0],u=o[1];h[0]>u[0]&&(h=o[1],u=o[0]);const f=Math.atan((u[1]-h[1])/(u[0]-h[0]));for(let d=0;d<c;d++){const g=d*(i+a),m=g+i,y=[h[0]+g*Math.cos(f)+l*Math.cos(f),h[1]+g*Math.sin(f)+l*Math.sin(f)],x=[h[0]+m*Math.cos(f)+l*Math.cos(f),h[1]+m*Math.sin(f)+l*Math.sin(f)];n.push(...this.helper.doubleLineOps(y[0],y[1],x[0],x[1],r))}})),n}}class UC{constructor(t){this.helper=t}fillPolygons(t,r){const i=r.hachureGap<0?4*r.strokeWidth:r.hachureGap,a=r.zigzagOffset<0?i:r.zigzagOffset,n=ci(t,r=Object.assign({},r,{hachureGap:i+a}));return{type:"fillSketch",ops:this.zigzagLines(n,a,r)}}zigzagLines(t,r,i){const a=[];return t.forEach((n=>{const o=Aa(n),s=Math.round(o/(2*r));let c=n[0],l=n[1];c[0]>l[0]&&(c=n[1],l=n[0]);const h=Math.atan((l[1]-c[1])/(l[0]-c[0]));for(let u=0;u<s;u++){const f=2*u*r,d=2*(u+1)*r,g=Math.sqrt(2*Math.pow(r,2)),m=[c[0]+f*Math.cos(h),c[1]+f*Math.sin(h)],y=[c[0]+d*Math.cos(h),c[1]+d*Math.sin(h)],x=[m[0]+g*Math.cos(h+Math.PI/4),m[1]+g*Math.sin(h+Math.PI/4)];a.push(...this.helper.doubleLineOps(m[0],m[1],x[0],x[1],i),...this.helper.doubleLineOps(x[0],x[1],y[0],y[1],i))}})),a}}const It={};class XC{constructor(t){this.seed=t}next(){return this.seed?(2**31-1&(this.seed=Math.imul(48271,this.seed)))/2**31:Math.random()}}const ZC=0,Wa=1,Io=2,gi={A:7,a:7,C:6,c:6,H:1,h:1,L:2,l:2,M:2,m:2,Q:4,q:4,S:4,s:4,T:2,t:2,V:1,v:1,Z:0,z:0};function Ha(e,t){return e.type===t}function Os(e){const t=[],r=(function(o){const s=new Array;for(;o!=="";)if(o.match(/^([ \t\r\n,]+)/))o=o.substr(RegExp.$1.length);else if(o.match(/^([aAcChHlLmMqQsStTvVzZ])/))s[s.length]={type:ZC,text:RegExp.$1},o=o.substr(RegExp.$1.length);else{if(!o.match(/^(([-+]?[0-9]+(\.[0-9]*)?|[-+]?\.[0-9]+)([eE][-+]?[0-9]+)?)/))return[];s[s.length]={type:Wa,text:`${parseFloat(RegExp.$1)}`},o=o.substr(RegExp.$1.length)}return s[s.length]={type:Io,text:""},s})(e);let i="BOD",a=0,n=r[a];for(;!Ha(n,Io);){let o=0;const s=[];if(i==="BOD"){if(n.text!=="M"&&n.text!=="m")return Os("M0,0"+e);a++,o=gi[n.text],i=n.text}else Ha(n,Wa)?o=gi[i]:(a++,o=gi[n.text],i=n.text);if(!(a+o<r.length))throw new Error("Path data ended short");for(let c=a;c<a+o;c++){const l=r[c];if(!Ha(l,Wa))throw new Error("Param not a number: "+i+","+l.text);s[s.length]=+l.text}if(typeof gi[i]!="number")throw new Error("Bad segment: "+i);{const c={key:i,data:s};t.push(c),a+=o,n=r[a],i==="M"&&(i="L"),i==="m"&&(i="l")}}return t}function qu(e){let t=0,r=0,i=0,a=0;const n=[];for(const{key:o,data:s}of e)switch(o){case"M":n.push({key:"M",data:[...s]}),[t,r]=s,[i,a]=s;break;case"m":t+=s[0],r+=s[1],n.push({key:"M",data:[t,r]}),i=t,a=r;break;case"L":n.push({key:"L",data:[...s]}),[t,r]=s;break;case"l":t+=s[0],r+=s[1],n.push({key:"L",data:[t,r]});break;case"C":n.push({key:"C",data:[...s]}),t=s[4],r=s[5];break;case"c":{const c=s.map(((l,h)=>h%2?l+r:l+t));n.push({key:"C",data:c}),t=c[4],r=c[5];break}case"Q":n.push({key:"Q",data:[...s]}),t=s[2],r=s[3];break;case"q":{const c=s.map(((l,h)=>h%2?l+r:l+t));n.push({key:"Q",data:c}),t=c[2],r=c[3];break}case"A":n.push({key:"A",data:[...s]}),t=s[5],r=s[6];break;case"a":t+=s[5],r+=s[6],n.push({key:"A",data:[s[0],s[1],s[2],s[3],s[4],t,r]});break;case"H":n.push({key:"H",data:[...s]}),t=s[0];break;case"h":t+=s[0],n.push({key:"H",data:[t]});break;case"V":n.push({key:"V",data:[...s]}),r=s[0];break;case"v":r+=s[0],n.push({key:"V",data:[r]});break;case"S":n.push({key:"S",data:[...s]}),t=s[2],r=s[3];break;case"s":{const c=s.map(((l,h)=>h%2?l+r:l+t));n.push({key:"S",data:c}),t=c[2],r=c[3];break}case"T":n.push({key:"T",data:[...s]}),t=s[0],r=s[1];break;case"t":t+=s[0],r+=s[1],n.push({key:"T",data:[t,r]});break;case"Z":case"z":n.push({key:"Z",data:[]}),t=i,r=a}return n}function Wu(e){const t=[];let r="",i=0,a=0,n=0,o=0,s=0,c=0;for(const{key:l,data:h}of e){switch(l){case"M":t.push({key:"M",data:[...h]}),[i,a]=h,[n,o]=h;break;case"C":t.push({key:"C",data:[...h]}),i=h[4],a=h[5],s=h[2],c=h[3];break;case"L":t.push({key:"L",data:[...h]}),[i,a]=h;break;case"H":i=h[0],t.push({key:"L",data:[i,a]});break;case"V":a=h[0],t.push({key:"L",data:[i,a]});break;case"S":{let u=0,f=0;r==="C"||r==="S"?(u=i+(i-s),f=a+(a-c)):(u=i,f=a),t.push({key:"C",data:[u,f,...h]}),s=h[0],c=h[1],i=h[2],a=h[3];break}case"T":{const[u,f]=h;let d=0,g=0;r==="Q"||r==="T"?(d=i+(i-s),g=a+(a-c)):(d=i,g=a);const m=i+2*(d-i)/3,y=a+2*(g-a)/3,x=u+2*(d-u)/3,b=f+2*(g-f)/3;t.push({key:"C",data:[m,y,x,b,u,f]}),s=d,c=g,i=u,a=f;break}case"Q":{const[u,f,d,g]=h,m=i+2*(u-i)/3,y=a+2*(f-a)/3,x=d+2*(u-d)/3,b=g+2*(f-g)/3;t.push({key:"C",data:[m,y,x,b,d,g]}),s=u,c=f,i=d,a=g;break}case"A":{const u=Math.abs(h[0]),f=Math.abs(h[1]),d=h[2],g=h[3],m=h[4],y=h[5],x=h[6];u===0||f===0?(t.push({key:"C",data:[i,a,y,x,y,x]}),i=y,a=x):(i!==y||a!==x)&&(Hu(i,a,y,x,u,f,d,g,m).forEach((function(b){t.push({key:"C",data:b})})),i=y,a=x);break}case"Z":t.push({key:"Z",data:[]}),i=n,a=o}r=l}return t}function Tr(e,t,r){return[e*Math.cos(r)-t*Math.sin(r),e*Math.sin(r)+t*Math.cos(r)]}function Hu(e,t,r,i,a,n,o,s,c,l){const h=(u=o,Math.PI*u/180);var u;let f=[],d=0,g=0,m=0,y=0;if(l)[d,g,m,y]=l;else{[e,t]=Tr(e,t,-h),[r,i]=Tr(r,i,-h);const D=(e-r)/2,M=(t-i)/2;let L=D*D/(a*a)+M*M/(n*n);L>1&&(L=Math.sqrt(L),a*=L,n*=L);const T=a*a,$=n*n,B=T*$-T*M*M-$*D*D,P=T*M*M+$*D*D,Y=(s===c?-1:1)*Math.sqrt(Math.abs(B/P));m=Y*a*M/n+(e+r)/2,y=Y*-n*D/a+(t+i)/2,d=Math.asin(parseFloat(((t-y)/n).toFixed(9))),g=Math.asin(parseFloat(((i-y)/n).toFixed(9))),e<m&&(d=Math.PI-d),r<m&&(g=Math.PI-g),d<0&&(d=2*Math.PI+d),g<0&&(g=2*Math.PI+g),c&&d>g&&(d-=2*Math.PI),!c&&g>d&&(g-=2*Math.PI)}let x=g-d;if(Math.abs(x)>120*Math.PI/180){const D=g,M=r,L=i;g=c&&g>d?d+120*Math.PI/180*1:d+120*Math.PI/180*-1,f=Hu(r=m+a*Math.cos(g),i=y+n*Math.sin(g),M,L,a,n,o,0,c,[g,D,m,y])}x=g-d;const b=Math.cos(d),k=Math.sin(d),S=Math.cos(g),v=Math.sin(g),C=Math.tan(x/4),_=4/3*a*C,A=4/3*n*C,I=[e,t],O=[e+_*k,t-A*b],F=[r+_*v,i-A*S],z=[r,i];if(O[0]=2*I[0]-O[0],O[1]=2*I[1]-O[1],l)return[O,F,z].concat(f);{f=[O,F,z].concat(f);const D=[];for(let M=0;M<f.length;M+=3){const L=Tr(f[M][0],f[M][1],h),T=Tr(f[M+1][0],f[M+1][1],h),$=Tr(f[M+2][0],f[M+2][1],h);D.push([L[0],L[1],T[0],T[1],$[0],$[1]])}return D}}const KC={randOffset:function(e,t){return K(e,t)},randOffsetWithRange:function(e,t,r){return sa(e,t,r)},ellipse:function(e,t,r,i,a){const n=Yu(r,i,a);return Mn(e,t,a,n).opset},doubleLineOps:function(e,t,r,i,a){return we(e,t,r,i,a,!0)}};function ju(e,t,r,i,a){return{type:"path",ops:we(e,t,r,i,a)}}function Mi(e,t,r){const i=(e||[]).length;if(i>2){const a=[];for(let n=0;n<i-1;n++)a.push(...we(e[n][0],e[n][1],e[n+1][0],e[n+1][1],r));return t&&a.push(...we(e[i-1][0],e[i-1][1],e[0][0],e[0][1],r)),{type:"path",ops:a}}return i===2?ju(e[0][0],e[0][1],e[1][0],e[1][1],r):{type:"path",ops:[]}}function QC(e,t,r,i,a){return(function(n,o){return Mi(n,!0,o)})([[e,t],[e+r,t],[e+r,t+i],[e,t+i]],a)}function Ro(e,t){if(e.length){const r=typeof e[0][0]=="number"?[e]:e,i=mi(r[0],1*(1+.2*t.roughness),t),a=t.disableMultiStroke?[]:mi(r[0],1.5*(1+.22*t.roughness),zo(t));for(let n=1;n<r.length;n++){const o=r[n];if(o.length){const s=mi(o,1*(1+.2*t.roughness),t),c=t.disableMultiStroke?[]:mi(o,1.5*(1+.22*t.roughness),zo(t));for(const l of s)l.op!=="move"&&i.push(l);for(const l of c)l.op!=="move"&&a.push(l)}}return{type:"path",ops:i.concat(a)}}return{type:"path",ops:[]}}function Yu(e,t,r){const i=Math.sqrt(2*Math.PI*Math.sqrt((Math.pow(e/2,2)+Math.pow(t/2,2))/2)),a=Math.ceil(Math.max(r.curveStepCount,r.curveStepCount/Math.sqrt(200)*i)),n=2*Math.PI/a;let o=Math.abs(e/2),s=Math.abs(t/2);const c=1-r.curveFitting;return o+=K(o*c,r),s+=K(s*c,r),{increment:n,rx:o,ry:s}}function Mn(e,t,r,i){const[a,n]=qo(i.increment,e,t,i.rx,i.ry,1,i.increment*sa(.1,sa(.4,1,r),r),r);let o=oa(a,null,r);if(!r.disableMultiStroke&&r.roughness!==0){const[s]=qo(i.increment,e,t,i.rx,i.ry,1.5,0,r),c=oa(s,null,r);o=o.concat(c)}return{estimatedPoints:n,opset:{type:"path",ops:o}}}function Po(e,t,r,i,a,n,o,s,c){const l=e,h=t;let u=Math.abs(r/2),f=Math.abs(i/2);u+=K(.01*u,c),f+=K(.01*f,c);let d=a,g=n;for(;d<0;)d+=2*Math.PI,g+=2*Math.PI;g-d>2*Math.PI&&(d=0,g=2*Math.PI);const m=2*Math.PI/c.curveStepCount,y=Math.min(m/2,(g-d)/2),x=Wo(y,l,h,u,f,d,g,1,c);if(!c.disableMultiStroke){const b=Wo(y,l,h,u,f,d,g,1.5,c);x.push(...b)}return o&&(s?x.push(...we(l,h,l+u*Math.cos(d),h+f*Math.sin(d),c),...we(l,h,l+u*Math.cos(g),h+f*Math.sin(g),c)):x.push({op:"lineTo",data:[l,h]},{op:"lineTo",data:[l+u*Math.cos(d),h+f*Math.sin(d)]})),{type:"path",ops:x}}function No(e,t){const r=Wu(qu(Os(e))),i=[];let a=[0,0],n=[0,0];for(const{key:o,data:s}of r)switch(o){case"M":n=[s[0],s[1]],a=[s[0],s[1]];break;case"L":i.push(...we(n[0],n[1],s[0],s[1],t)),n=[s[0],s[1]];break;case"C":{const[c,l,h,u,f,d]=s;i.push(...JC(c,l,h,u,f,d,n,t)),n=[f,d];break}case"Z":i.push(...we(n[0],n[1],a[0],a[1],t)),n=[a[0],a[1]]}return{type:"path",ops:i}}function ja(e,t){const r=[];for(const i of e)if(i.length){const a=t.maxRandomnessOffset||0,n=i.length;if(n>2){r.push({op:"move",data:[i[0][0]+K(a,t),i[0][1]+K(a,t)]});for(let o=1;o<n;o++)r.push({op:"lineTo",data:[i[o][0]+K(a,t),i[o][1]+K(a,t)]})}}return{type:"fillPath",ops:r}}function Ve(e,t){return(function(r,i){let a=r.fillStyle||"hachure";if(!It[a])switch(a){case"zigzag":It[a]||(It[a]=new jC(i));break;case"cross-hatch":It[a]||(It[a]=new YC(i));break;case"dots":It[a]||(It[a]=new VC(i));break;case"dashed":It[a]||(It[a]=new GC(i));break;case"zigzag-line":It[a]||(It[a]=new UC(i));break;default:a="hachure",It[a]||(It[a]=new Ds(i))}return It[a]})(t,KC).fillPolygons(e,t)}function zo(e){const t=Object.assign({},e);return t.randomizer=void 0,e.seed&&(t.seed=e.seed+1),t}function Vu(e){return e.randomizer||(e.randomizer=new XC(e.seed||0)),e.randomizer.next()}function sa(e,t,r,i=1){return r.roughness*i*(Vu(r)*(t-e)+e)}function K(e,t,r=1){return sa(-e,e,t,r)}function we(e,t,r,i,a,n=!1){const o=n?a.disableMultiStrokeFill:a.disableMultiStroke,s=$n(e,t,r,i,a,!0,!1);if(o)return s;const c=$n(e,t,r,i,a,!0,!0);return s.concat(c)}function $n(e,t,r,i,a,n,o){const s=Math.pow(e-r,2)+Math.pow(t-i,2),c=Math.sqrt(s);let l=1;l=c<200?1:c>500?.4:-.0016668*c+1.233334;let h=a.maxRandomnessOffset||0;h*h*100>s&&(h=c/10);const u=h/2,f=.2+.2*Vu(a);let d=a.bowing*a.maxRandomnessOffset*(i-t)/200,g=a.bowing*a.maxRandomnessOffset*(e-r)/200;d=K(d,a,l),g=K(g,a,l);const m=[],y=()=>K(u,a,l),x=()=>K(h,a,l),b=a.preserveVertices;return o?m.push({op:"move",data:[e+(b?0:y()),t+(b?0:y())]}):m.push({op:"move",data:[e+(b?0:K(h,a,l)),t+(b?0:K(h,a,l))]}),o?m.push({op:"bcurveTo",data:[d+e+(r-e)*f+y(),g+t+(i-t)*f+y(),d+e+2*(r-e)*f+y(),g+t+2*(i-t)*f+y(),r+(b?0:y()),i+(b?0:y())]}):m.push({op:"bcurveTo",data:[d+e+(r-e)*f+x(),g+t+(i-t)*f+x(),d+e+2*(r-e)*f+x(),g+t+2*(i-t)*f+x(),r+(b?0:x()),i+(b?0:x())]}),m}function mi(e,t,r){if(!e.length)return[];const i=[];i.push([e[0][0]+K(t,r),e[0][1]+K(t,r)]),i.push([e[0][0]+K(t,r),e[0][1]+K(t,r)]);for(let a=1;a<e.length;a++)i.push([e[a][0]+K(t,r),e[a][1]+K(t,r)]),a===e.length-1&&i.push([e[a][0]+K(t,r),e[a][1]+K(t,r)]);return oa(i,null,r)}function oa(e,t,r){const i=e.length,a=[];if(i>3){const n=[],o=1-r.curveTightness;a.push({op:"move",data:[e[1][0],e[1][1]]});for(let s=1;s+2<i;s++){const c=e[s];n[0]=[c[0],c[1]],n[1]=[c[0]+(o*e[s+1][0]-o*e[s-1][0])/6,c[1]+(o*e[s+1][1]-o*e[s-1][1])/6],n[2]=[e[s+1][0]+(o*e[s][0]-o*e[s+2][0])/6,e[s+1][1]+(o*e[s][1]-o*e[s+2][1])/6],n[3]=[e[s+1][0],e[s+1][1]],a.push({op:"bcurveTo",data:[n[1][0],n[1][1],n[2][0],n[2][1],n[3][0],n[3][1]]})}}else i===3?(a.push({op:"move",data:[e[1][0],e[1][1]]}),a.push({op:"bcurveTo",data:[e[1][0],e[1][1],e[2][0],e[2][1],e[2][0],e[2][1]]})):i===2&&a.push(...$n(e[0][0],e[0][1],e[1][0],e[1][1],r,!0,!0));return a}function qo(e,t,r,i,a,n,o,s){const c=[],l=[];if(s.roughness===0){e/=4,l.push([t+i*Math.cos(-e),r+a*Math.sin(-e)]);for(let h=0;h<=2*Math.PI;h+=e){const u=[t+i*Math.cos(h),r+a*Math.sin(h)];c.push(u),l.push(u)}l.push([t+i*Math.cos(0),r+a*Math.sin(0)]),l.push([t+i*Math.cos(e),r+a*Math.sin(e)])}else{const h=K(.5,s)-Math.PI/2;l.push([K(n,s)+t+.9*i*Math.cos(h-e),K(n,s)+r+.9*a*Math.sin(h-e)]);const u=2*Math.PI+h-.01;for(let f=h;f<u;f+=e){const d=[K(n,s)+t+i*Math.cos(f),K(n,s)+r+a*Math.sin(f)];c.push(d),l.push(d)}l.push([K(n,s)+t+i*Math.cos(h+2*Math.PI+.5*o),K(n,s)+r+a*Math.sin(h+2*Math.PI+.5*o)]),l.push([K(n,s)+t+.98*i*Math.cos(h+o),K(n,s)+r+.98*a*Math.sin(h+o)]),l.push([K(n,s)+t+.9*i*Math.cos(h+.5*o),K(n,s)+r+.9*a*Math.sin(h+.5*o)])}return[l,c]}function Wo(e,t,r,i,a,n,o,s,c){const l=n+K(.1,c),h=[];h.push([K(s,c)+t+.9*i*Math.cos(l-e),K(s,c)+r+.9*a*Math.sin(l-e)]);for(let u=l;u<=o;u+=e)h.push([K(s,c)+t+i*Math.cos(u),K(s,c)+r+a*Math.sin(u)]);return h.push([t+i*Math.cos(o),r+a*Math.sin(o)]),h.push([t+i*Math.cos(o),r+a*Math.sin(o)]),oa(h,null,c)}function JC(e,t,r,i,a,n,o,s){const c=[],l=[s.maxRandomnessOffset||1,(s.maxRandomnessOffset||1)+.3];let h=[0,0];const u=s.disableMultiStroke?1:2,f=s.preserveVertices;for(let d=0;d<u;d++)d===0?c.push({op:"move",data:[o[0],o[1]]}):c.push({op:"move",data:[o[0]+(f?0:K(l[0],s)),o[1]+(f?0:K(l[0],s))]}),h=f?[a,n]:[a+K(l[d],s),n+K(l[d],s)],c.push({op:"bcurveTo",data:[e+K(l[d],s),t+K(l[d],s),r+K(l[d],s),i+K(l[d],s),h[0],h[1]]});return c}function Br(e){return[...e]}function Ho(e,t=0){const r=e.length;if(r<3)throw new Error("A curve must have at least three points.");const i=[];if(r===3)i.push(Br(e[0]),Br(e[1]),Br(e[2]),Br(e[2]));else{const a=[];a.push(e[0],e[0]);for(let s=1;s<e.length;s++)a.push(e[s]),s===e.length-1&&a.push(e[s]);const n=[],o=1-t;i.push(Br(a[0]));for(let s=1;s+2<a.length;s++){const c=a[s];n[0]=[c[0],c[1]],n[1]=[c[0]+(o*a[s+1][0]-o*a[s-1][0])/6,c[1]+(o*a[s+1][1]-o*a[s-1][1])/6],n[2]=[a[s+1][0]+(o*a[s][0]-o*a[s+2][0])/6,a[s+1][1]+(o*a[s][1]-o*a[s+2][1])/6],n[3]=[a[s+1][0],a[s+1][1]],i.push(n[1],n[2],n[3])}}return i}function $i(e,t){return Math.pow(e[0]-t[0],2)+Math.pow(e[1]-t[1],2)}function tk(e,t,r){const i=$i(t,r);if(i===0)return $i(e,t);let a=((e[0]-t[0])*(r[0]-t[0])+(e[1]-t[1])*(r[1]-t[1]))/i;return a=Math.max(0,Math.min(1,a)),$i(e,Me(t,r,a))}function Me(e,t,r){return[e[0]+(t[0]-e[0])*r,e[1]+(t[1]-e[1])*r]}function An(e,t,r,i){const a=i||[];if((function(s,c){const l=s[c+0],h=s[c+1],u=s[c+2],f=s[c+3];let d=3*h[0]-2*l[0]-f[0];d*=d;let g=3*h[1]-2*l[1]-f[1];g*=g;let m=3*u[0]-2*f[0]-l[0];m*=m;let y=3*u[1]-2*f[1]-l[1];return y*=y,d<m&&(d=m),g<y&&(g=y),d+g})(e,t)<r){const s=e[t+0];a.length?(n=a[a.length-1],o=s,Math.sqrt($i(n,o))>1&&a.push(s)):a.push(s),a.push(e[t+3])}else{const c=e[t+0],l=e[t+1],h=e[t+2],u=e[t+3],f=Me(c,l,.5),d=Me(l,h,.5),g=Me(h,u,.5),m=Me(f,d,.5),y=Me(d,g,.5),x=Me(m,y,.5);An([c,f,m,x],0,r,a),An([x,y,g,u],0,r,a)}var n,o;return a}function ek(e,t){return la(e,0,e.length,t)}function la(e,t,r,i,a){const n=a||[],o=e[t],s=e[r-1];let c=0,l=1;for(let h=t+1;h<r-1;++h){const u=tk(e[h],o,s);u>c&&(c=u,l=h)}return Math.sqrt(c)>i?(la(e,t,l+1,i,n),la(e,l,r,i,n)):(n.length||n.push(o),n.push(s)),n}function Ya(e,t=.15,r){const i=[],a=(e.length-1)/3;for(let n=0;n<a;n++)An(e,3*n,t,i);return r&&r>0?la(i,0,i.length,r):i}const Nt="none";class ca{constructor(t){this.defaultOptions={maxRandomnessOffset:2,roughness:1,bowing:1,stroke:"#000",strokeWidth:1,curveTightness:0,curveFitting:.95,curveStepCount:9,fillStyle:"hachure",fillWeight:-1,hachureAngle:-41,hachureGap:-1,dashOffset:-1,dashGap:-1,zigzagOffset:-1,seed:0,disableMultiStroke:!1,disableMultiStrokeFill:!1,preserveVertices:!1,fillShapeRoughnessGain:.8},this.config=t||{},this.config.options&&(this.defaultOptions=this._o(this.config.options))}static newSeed(){return Math.floor(Math.random()*2**31)}_o(t){return t?Object.assign({},this.defaultOptions,t):this.defaultOptions}_d(t,r,i){return{shape:t,sets:r||[],options:i||this.defaultOptions}}line(t,r,i,a,n){const o=this._o(n);return this._d("line",[ju(t,r,i,a,o)],o)}rectangle(t,r,i,a,n){const o=this._o(n),s=[],c=QC(t,r,i,a,o);if(o.fill){const l=[[t,r],[t+i,r],[t+i,r+a],[t,r+a]];o.fillStyle==="solid"?s.push(ja([l],o)):s.push(Ve([l],o))}return o.stroke!==Nt&&s.push(c),this._d("rectangle",s,o)}ellipse(t,r,i,a,n){const o=this._o(n),s=[],c=Yu(i,a,o),l=Mn(t,r,o,c);if(o.fill)if(o.fillStyle==="solid"){const h=Mn(t,r,o,c).opset;h.type="fillPath",s.push(h)}else s.push(Ve([l.estimatedPoints],o));return o.stroke!==Nt&&s.push(l.opset),this._d("ellipse",s,o)}circle(t,r,i,a){const n=this.ellipse(t,r,i,i,a);return n.shape="circle",n}linearPath(t,r){const i=this._o(r);return this._d("linearPath",[Mi(t,!1,i)],i)}arc(t,r,i,a,n,o,s=!1,c){const l=this._o(c),h=[],u=Po(t,r,i,a,n,o,s,!0,l);if(s&&l.fill)if(l.fillStyle==="solid"){const f=Object.assign({},l);f.disableMultiStroke=!0;const d=Po(t,r,i,a,n,o,!0,!1,f);d.type="fillPath",h.push(d)}else h.push((function(f,d,g,m,y,x,b){const k=f,S=d;let v=Math.abs(g/2),C=Math.abs(m/2);v+=K(.01*v,b),C+=K(.01*C,b);let _=y,A=x;for(;_<0;)_+=2*Math.PI,A+=2*Math.PI;A-_>2*Math.PI&&(_=0,A=2*Math.PI);const I=(A-_)/b.curveStepCount,O=[];for(let F=_;F<=A;F+=I)O.push([k+v*Math.cos(F),S+C*Math.sin(F)]);return O.push([k+v*Math.cos(A),S+C*Math.sin(A)]),O.push([k,S]),Ve([O],b)})(t,r,i,a,n,o,l));return l.stroke!==Nt&&h.push(u),this._d("arc",h,l)}curve(t,r){const i=this._o(r),a=[],n=Ro(t,i);if(i.fill&&i.fill!==Nt)if(i.fillStyle==="solid"){const o=Ro(t,Object.assign(Object.assign({},i),{disableMultiStroke:!0,roughness:i.roughness?i.roughness+i.fillShapeRoughnessGain:0}));a.push({type:"fillPath",ops:this._mergedShape(o.ops)})}else{const o=[],s=t;if(s.length){const c=typeof s[0][0]=="number"?[s]:s;for(const l of c)l.length<3?o.push(...l):l.length===3?o.push(...Ya(Ho([l[0],l[0],l[1],l[2]]),10,(1+i.roughness)/2)):o.push(...Ya(Ho(l),10,(1+i.roughness)/2))}o.length&&a.push(Ve([o],i))}return i.stroke!==Nt&&a.push(n),this._d("curve",a,i)}polygon(t,r){const i=this._o(r),a=[],n=Mi(t,!0,i);return i.fill&&(i.fillStyle==="solid"?a.push(ja([t],i)):a.push(Ve([t],i))),i.stroke!==Nt&&a.push(n),this._d("polygon",a,i)}path(t,r){const i=this._o(r),a=[];if(!t)return this._d("path",a,i);t=(t||"").replace(/\n/g," ").replace(/(-\s)/g,"-").replace("/(ss)/g"," ");const n=i.fill&&i.fill!=="transparent"&&i.fill!==Nt,o=i.stroke!==Nt,s=!!(i.simplification&&i.simplification<1),c=(function(h,u,f){const d=Wu(qu(Os(h))),g=[];let m=[],y=[0,0],x=[];const b=()=>{x.length>=4&&m.push(...Ya(x,u)),x=[]},k=()=>{b(),m.length&&(g.push(m),m=[])};for(const{key:v,data:C}of d)switch(v){case"M":k(),y=[C[0],C[1]],m.push(y);break;case"L":b(),m.push([C[0],C[1]]);break;case"C":if(!x.length){const _=m.length?m[m.length-1]:y;x.push([_[0],_[1]])}x.push([C[0],C[1]]),x.push([C[2],C[3]]),x.push([C[4],C[5]]);break;case"Z":b(),m.push([y[0],y[1]])}if(k(),!f)return g;const S=[];for(const v of g){const C=ek(v,f);C.length&&S.push(C)}return S})(t,1,s?4-4*(i.simplification||1):(1+i.roughness)/2),l=No(t,i);if(n)if(i.fillStyle==="solid")if(c.length===1){const h=No(t,Object.assign(Object.assign({},i),{disableMultiStroke:!0,roughness:i.roughness?i.roughness+i.fillShapeRoughnessGain:0}));a.push({type:"fillPath",ops:this._mergedShape(h.ops)})}else a.push(ja(c,i));else a.push(Ve(c,i));return o&&(s?c.forEach((h=>{a.push(Mi(h,!1,i))})):a.push(l)),this._d("path",a,i)}opsToPath(t,r){let i="";for(const a of t.ops){const n=typeof r=="number"&&r>=0?a.data.map((o=>+o.toFixed(r))):a.data;switch(a.op){case"move":i+=`M${n[0]} ${n[1]} `;break;case"bcurveTo":i+=`C${n[0]} ${n[1]}, ${n[2]} ${n[3]}, ${n[4]} ${n[5]} `;break;case"lineTo":i+=`L${n[0]} ${n[1]} `}}return i.trim()}toPaths(t){const r=t.sets||[],i=t.options||this.defaultOptions,a=[];for(const n of r){let o=null;switch(n.type){case"path":o={d:this.opsToPath(n),stroke:i.stroke,strokeWidth:i.strokeWidth,fill:Nt};break;case"fillPath":o={d:this.opsToPath(n),stroke:Nt,strokeWidth:0,fill:i.fill||Nt};break;case"fillSketch":o=this.fillSketch(n,i)}o&&a.push(o)}return a}fillSketch(t,r){let i=r.fillWeight;return i<0&&(i=r.strokeWidth/2),{d:this.opsToPath(t),stroke:r.fill||Nt,strokeWidth:i,fill:Nt}}_mergedShape(t){return t.filter(((r,i)=>i===0||r.op!=="move"))}}class rk{constructor(t,r){this.canvas=t,this.ctx=this.canvas.getContext("2d"),this.gen=new ca(r)}draw(t){const r=t.sets||[],i=t.options||this.getDefaultOptions(),a=this.ctx,n=t.options.fixedDecimalPlaceDigits;for(const o of r)switch(o.type){case"path":a.save(),a.strokeStyle=i.stroke==="none"?"transparent":i.stroke,a.lineWidth=i.strokeWidth,i.strokeLineDash&&a.setLineDash(i.strokeLineDash),i.strokeLineDashOffset&&(a.lineDashOffset=i.strokeLineDashOffset),this._drawToContext(a,o,n),a.restore();break;case"fillPath":{a.save(),a.fillStyle=i.fill||"";const s=t.shape==="curve"||t.shape==="polygon"||t.shape==="path"?"evenodd":"nonzero";this._drawToContext(a,o,n,s),a.restore();break}case"fillSketch":this.fillSketch(a,o,i)}}fillSketch(t,r,i){let a=i.fillWeight;a<0&&(a=i.strokeWidth/2),t.save(),i.fillLineDash&&t.setLineDash(i.fillLineDash),i.fillLineDashOffset&&(t.lineDashOffset=i.fillLineDashOffset),t.strokeStyle=i.fill||"",t.lineWidth=a,this._drawToContext(t,r,i.fixedDecimalPlaceDigits),t.restore()}_drawToContext(t,r,i,a="nonzero"){t.beginPath();for(const n of r.ops){const o=typeof i=="number"&&i>=0?n.data.map((s=>+s.toFixed(i))):n.data;switch(n.op){case"move":t.moveTo(o[0],o[1]);break;case"bcurveTo":t.bezierCurveTo(o[0],o[1],o[2],o[3],o[4],o[5]);break;case"lineTo":t.lineTo(o[0],o[1])}}r.type==="fillPath"?t.fill(a):t.stroke()}get generator(){return this.gen}getDefaultOptions(){return this.gen.defaultOptions}line(t,r,i,a,n){const o=this.gen.line(t,r,i,a,n);return this.draw(o),o}rectangle(t,r,i,a,n){const o=this.gen.rectangle(t,r,i,a,n);return this.draw(o),o}ellipse(t,r,i,a,n){const o=this.gen.ellipse(t,r,i,a,n);return this.draw(o),o}circle(t,r,i,a){const n=this.gen.circle(t,r,i,a);return this.draw(n),n}linearPath(t,r){const i=this.gen.linearPath(t,r);return this.draw(i),i}polygon(t,r){const i=this.gen.polygon(t,r);return this.draw(i),i}arc(t,r,i,a,n,o,s=!1,c){const l=this.gen.arc(t,r,i,a,n,o,s,c);return this.draw(l),l}curve(t,r){const i=this.gen.curve(t,r);return this.draw(i),i}path(t,r){const i=this.gen.path(t,r);return this.draw(i),i}}const yi="http://www.w3.org/2000/svg";class ik{constructor(t,r){this.svg=t,this.gen=new ca(r)}draw(t){const r=t.sets||[],i=t.options||this.getDefaultOptions(),a=this.svg.ownerDocument||window.document,n=a.createElementNS(yi,"g"),o=t.options.fixedDecimalPlaceDigits;for(const s of r){let c=null;switch(s.type){case"path":c=a.createElementNS(yi,"path"),c.setAttribute("d",this.opsToPath(s,o)),c.setAttribute("stroke",i.stroke),c.setAttribute("stroke-width",i.strokeWidth+""),c.setAttribute("fill","none"),i.strokeLineDash&&c.setAttribute("stroke-dasharray",i.strokeLineDash.join(" ").trim()),i.strokeLineDashOffset&&c.setAttribute("stroke-dashoffset",`${i.strokeLineDashOffset}`);break;case"fillPath":c=a.createElementNS(yi,"path"),c.setAttribute("d",this.opsToPath(s,o)),c.setAttribute("stroke","none"),c.setAttribute("stroke-width","0"),c.setAttribute("fill",i.fill||""),t.shape!=="curve"&&t.shape!=="polygon"||c.setAttribute("fill-rule","evenodd");break;case"fillSketch":c=this.fillSketch(a,s,i)}c&&n.appendChild(c)}return n}fillSketch(t,r,i){let a=i.fillWeight;a<0&&(a=i.strokeWidth/2);const n=t.createElementNS(yi,"path");return n.setAttribute("d",this.opsToPath(r,i.fixedDecimalPlaceDigits)),n.setAttribute("stroke",i.fill||""),n.setAttribute("stroke-width",a+""),n.setAttribute("fill","none"),i.fillLineDash&&n.setAttribute("stroke-dasharray",i.fillLineDash.join(" ").trim()),i.fillLineDashOffset&&n.setAttribute("stroke-dashoffset",`${i.fillLineDashOffset}`),n}get generator(){return this.gen}getDefaultOptions(){return this.gen.defaultOptions}opsToPath(t,r){return this.gen.opsToPath(t,r)}line(t,r,i,a,n){const o=this.gen.line(t,r,i,a,n);return this.draw(o)}rectangle(t,r,i,a,n){const o=this.gen.rectangle(t,r,i,a,n);return this.draw(o)}ellipse(t,r,i,a,n){const o=this.gen.ellipse(t,r,i,a,n);return this.draw(o)}circle(t,r,i,a){const n=this.gen.circle(t,r,i,a);return this.draw(n)}linearPath(t,r){const i=this.gen.linearPath(t,r);return this.draw(i)}polygon(t,r){const i=this.gen.polygon(t,r);return this.draw(i)}arc(t,r,i,a,n,o,s=!1,c){const l=this.gen.arc(t,r,i,a,n,o,s,c);return this.draw(l)}curve(t,r){const i=this.gen.curve(t,r);return this.draw(i)}path(t,r){const i=this.gen.path(t,r);return this.draw(i)}}var W={canvas:(e,t)=>new rk(e,t),svg:(e,t)=>new ik(e,t),generator:e=>new ca(e),newSeed:()=>ca.newSeed()},Z=p(async(e,t,r)=>{var d,g;let i;const a=t.useHtmlLabels||_e((d=st())==null?void 0:d.htmlLabels);r?i=r:i="node default";const n=e.insert("g").attr("class",i).attr("id",t.domId||t.id),o=n.insert("g").attr("class","label").attr("style",$t(t.labelStyle));let s;t.label===void 0?s="":s=typeof t.label=="string"?t.label:t.label[0];const c=!!t.icon||!!t.img,l=t.labelType==="markdown",h=await pe(o,Zt(mr(s),st()),{useHtmlLabels:a,width:t.width||((g=st().flowchart)==null?void 0:g.wrappingWidth),cssClasses:l?"markdown-node-label":void 0,style:t.labelStyle,addSvgBackground:c,markdown:l},st());let u=h.getBBox();const f=((t==null?void 0:t.padding)??0)/2;if(a){const m=h.children[0],y=tt(h);await du(m,s),u=m.getBoundingClientRect(),y.attr("width",u.width),y.attr("height",u.height)}return a?o.attr("transform","translate("+-u.width/2+", "+-u.height/2+")"):o.attr("transform","translate(0, "+-u.height/2+")"),t.centerLabel&&o.attr("transform","translate("+-u.width/2+", "+-u.height/2+")"),o.insert("rect",":first-child"),{shapeSvg:n,bbox:u,halfPadding:f,label:o}},"labelHelper"),Va=p(async(e,t,r)=>{var c,l;const i=r.useHtmlLabels??At(st()),a=e.insert("g").attr("class","label").attr("style",r.labelStyle||""),n=await pe(a,Zt(mr(t),st()),{useHtmlLabels:i,width:r.width||((l=(c=st())==null?void 0:c.flowchart)==null?void 0:l.wrappingWidth),style:r.labelStyle,addSvgBackground:!!r.icon||!!r.img});let o=n.getBBox();const s=r.padding/2;if(At(st())){const h=n.children[0],u=tt(n);o=h.getBoundingClientRect(),u.attr("width",o.width),u.attr("height",o.height)}return i?a.attr("transform","translate("+-o.width/2+", "+-o.height/2+")"):a.attr("transform","translate(0, "+-o.height/2+")"),r.centerLabel&&a.attr("transform","translate("+-o.width/2+", "+-o.height/2+")"),a.insert("rect",":first-child"),{shapeSvg:e,bbox:o,halfPadding:s,label:a}},"insertLabel"),V=p((e,t)=>{const r=t.node().getBBox();e.width=r.width,e.height=r.height},"updateNodeBounds"),X=p((e,t)=>(e.look==="handDrawn"?"rough-node":"node")+" "+e.cssClasses+" "+(t||""),"getNodeClasses");function rt(e){const t=e.map((r,i)=>`${i===0?"M":"L"}${r.x},${r.y}`);return t.push("Z"),t.join(" ")}p(rt,"createPathFromPoints");function ve(e,t,r,i,a,n){const o=[],c=r-e,l=i-t,h=c/n,u=2*Math.PI/h,f=t+l/2;for(let d=0;d<=50;d++){const g=d/50,m=e+g*c,y=f+a*Math.sin(u*(m-e));o.push({x:m,y})}return o}p(ve,"generateFullSineWavePoints");function Kr(e,t,r,i,a,n){const o=[],s=a*Math.PI/180,h=(n*Math.PI/180-s)/(i-1);for(let u=0;u<i;u++){const f=s+u*h,d=e+r*Math.cos(f),g=t+r*Math.sin(f);o.push({x:-d,y:-g})}return o}p(Kr,"generateCirclePoints");var ak=p((e,t)=>{var r=e.x,i=e.y,a=t.x-r,n=t.y-i,o=e.width/2,s=e.height/2,c,l;return Math.abs(n)*o>Math.abs(a)*s?(n<0&&(s=-s),c=n===0?0:s*a/n,l=s):(a<0&&(o=-o),c=o,l=a===0?0:o*n/a),{x:r+c,y:i+l}},"intersectRect"),xr=ak,nk=p(async(e,t,r,i=!1,a=!1)=>{let n=t||"";typeof n=="object"&&(n=n[0]);const o=st(),s=At(o);return await pe(e,n,{style:r,isTitle:i,useHtmlLabels:s,markdown:!1,isNode:a,width:Number.POSITIVE_INFINITY},o)},"createLabel"),xe=nk,Te=p((e,t,r,i,a)=>["M",e+a,t,"H",e+r-a,"A",a,a,0,0,1,e+r,t+a,"V",t+i-a,"A",a,a,0,0,1,e+r-a,t+i,"H",e+a,"A",a,a,0,0,1,e,t+i-a,"V",t+a,"A",a,a,0,0,1,e+a,t,"Z"].join(" "),"createRoundedRectPathD"),Gu=p(async(e,t)=>{E.info("Creating subgraph rect for ",t.id,t);const r=st(),{themeVariables:i,handDrawnSeed:a}=r,{clusterBkg:n,clusterBorder:o}=i,{labelStyles:s,nodeStyles:c,borderStyles:l,backgroundStyles:h}=j(t),u=e.insert("g").attr("class","cluster "+t.cssClasses).attr("id",t.id).attr("data-look",t.look),f=At(r),d=u.insert("g").attr("class","cluster-label ");let g;t.labelType==="markdown"?g=await pe(d,t.label,{style:t.labelStyle,useHtmlLabels:f,isNode:!0,width:t.width}):g=await xe(d,t.label,t.labelStyle||"",!1,!0);let m=g.getBBox();if(At(r)){const _=g.children[0],A=tt(g);m=_.getBoundingClientRect(),A.attr("width",m.width),A.attr("height",m.height)}const y=t.width<=m.width+t.padding?m.width+t.padding:t.width;t.width<=m.width+t.padding?t.diff=(y-t.width)/2-t.padding:t.diff=-t.padding;const x=t.height,b=t.x-y/2,k=t.y-x/2;E.trace("Data ",t,JSON.stringify(t));let S;if(t.look==="handDrawn"){const _=W.svg(u),A=H(t,{roughness:.7,fill:n,stroke:o,fillWeight:3,seed:a}),I=_.path(Te(b,k,y,x,0),A);S=u.insert(()=>(E.debug("Rough node insert CXC",I),I),":first-child"),S.select("path:nth-child(2)").attr("style",l.join(";")),S.select("path").attr("style",h.join(";").replace("fill","stroke"))}else S=u.insert("rect",":first-child"),S.attr("style",c).attr("rx",t.rx).attr("ry",t.ry).attr("x",b).attr("y",k).attr("width",y).attr("height",x);const{subGraphTitleTopMargin:v}=vs(r);if(d.attr("transform",`translate(${t.x-m.width/2}, ${t.y-t.height/2+v})`),s){const _=d.select("span");_&&_.attr("style",s)}const C=S.node().getBBox();return t.offsetX=0,t.width=C.width,t.height=C.height,t.offsetY=m.height-t.padding/2,t.intersect=function(_){return xr(t,_)},{cluster:u,labelBBox:m}},"rect"),sk=p((e,t)=>{const r=e.insert("g").attr("class","note-cluster").attr("id",t.id),i=r.insert("rect",":first-child"),a=0*t.padding,n=a/2;i.attr("rx",t.rx).attr("ry",t.ry).attr("x",t.x-t.width/2-n).attr("y",t.y-t.height/2-n).attr("width",t.width+a).attr("height",t.height+a).attr("fill","none");const o=i.node().getBBox();return t.width=o.width,t.height=o.height,t.intersect=function(s){return xr(t,s)},{cluster:r,labelBBox:{width:0,height:0}}},"noteGroup"),ok=p(async(e,t)=>{const r=st(),{themeVariables:i,handDrawnSeed:a}=r,{altBackground:n,compositeBackground:o,compositeTitleBackground:s,nodeBorder:c}=i,l=e.insert("g").attr("class",t.cssClasses).attr("id",t.id).attr("data-id",t.id).attr("data-look",t.look),h=l.insert("g",":first-child"),u=l.insert("g").attr("class","cluster-label");let f=l.append("rect");const d=await xe(u,t.label,t.labelStyle,void 0,!0);let g=d.getBBox();if(At(r)){const I=d.children[0],O=tt(d);g=I.getBoundingClientRect(),O.attr("width",g.width),O.attr("height",g.height)}const m=0*t.padding,y=m/2,x=(t.width<=g.width+t.padding?g.width+t.padding:t.width)+m;t.width<=g.width+t.padding?t.diff=(x-t.width)/2-t.padding:t.diff=-t.padding;const b=t.height+m,k=t.height+m-g.height-6,S=t.x-x/2,v=t.y-b/2;t.width=x;const C=t.y-t.height/2-y+g.height+2;let _;if(t.look==="handDrawn"){const I=t.cssClasses.includes("statediagram-cluster-alt"),O=W.svg(l),F=t.rx||t.ry?O.path(Te(S,v,x,b,10),{roughness:.7,fill:s,fillStyle:"solid",stroke:c,seed:a}):O.rectangle(S,v,x,b,{seed:a});_=l.insert(()=>F,":first-child");const z=O.rectangle(S,C,x,k,{fill:I?n:o,fillStyle:I?"hachure":"solid",stroke:c,seed:a});_=l.insert(()=>F,":first-child"),f=l.insert(()=>z)}else _=h.insert("rect",":first-child"),_.attr("class","outer").attr("x",S).attr("y",v).attr("width",x).attr("height",b).attr("data-look",t.look),f.attr("class","inner").attr("x",S).attr("y",C).attr("width",x).attr("height",k);u.attr("transform",`translate(${t.x-g.width/2}, ${v+1-(At(r)?0:3)})`);const A=_.node().getBBox();return t.height=A.height,t.offsetX=0,t.offsetY=g.height-t.padding/2,t.labelBBox=g,t.intersect=function(I){return xr(t,I)},{cluster:l,labelBBox:g}},"roundedWithTitle"),lk=p(async(e,t)=>{E.info("Creating subgraph rect for ",t.id,t);const r=st(),{themeVariables:i,handDrawnSeed:a}=r,{clusterBkg:n,clusterBorder:o}=i,{labelStyles:s,nodeStyles:c,borderStyles:l,backgroundStyles:h}=j(t),u=e.insert("g").attr("class","cluster "+t.cssClasses).attr("id",t.id).attr("data-look",t.look),f=At(r),d=u.insert("g").attr("class","cluster-label "),g=await pe(d,t.label,{style:t.labelStyle,useHtmlLabels:f,isNode:!0,width:t.width});let m=g.getBBox();if(At(r)){const _=g.children[0],A=tt(g);m=_.getBoundingClientRect(),A.attr("width",m.width),A.attr("height",m.height)}const y=t.width<=m.width+t.padding?m.width+t.padding:t.width;t.width<=m.width+t.padding?t.diff=(y-t.width)/2-t.padding:t.diff=-t.padding;const x=t.height,b=t.x-y/2,k=t.y-x/2;E.trace("Data ",t,JSON.stringify(t));let S;if(t.look==="handDrawn"){const _=W.svg(u),A=H(t,{roughness:.7,fill:n,stroke:o,fillWeight:4,seed:a}),I=_.path(Te(b,k,y,x,t.rx),A);S=u.insert(()=>(E.debug("Rough node insert CXC",I),I),":first-child"),S.select("path:nth-child(2)").attr("style",l.join(";")),S.select("path").attr("style",h.join(";").replace("fill","stroke"))}else S=u.insert("rect",":first-child"),S.attr("style",c).attr("rx",t.rx).attr("ry",t.ry).attr("x",b).attr("y",k).attr("width",y).attr("height",x);const{subGraphTitleTopMargin:v}=vs(r);if(d.attr("transform",`translate(${t.x-m.width/2}, ${t.y-t.height/2+v})`),s){const _=d.select("span");_&&_.attr("style",s)}const C=S.node().getBBox();return t.offsetX=0,t.width=C.width,t.height=C.height,t.offsetY=m.height-t.padding/2,t.intersect=function(_){return xr(t,_)},{cluster:u,labelBBox:m}},"kanbanSection"),ck=p((e,t)=>{const r=st(),{themeVariables:i,handDrawnSeed:a}=r,{nodeBorder:n}=i,o=e.insert("g").attr("class",t.cssClasses).attr("id",t.id).attr("data-look",t.look),s=o.insert("g",":first-child"),c=0*t.padding,l=t.width+c;t.diff=-t.padding;const h=t.height+c,u=t.x-l/2,f=t.y-h/2;t.width=l;let d;if(t.look==="handDrawn"){const y=W.svg(o).rectangle(u,f,l,h,{fill:"lightgrey",roughness:.5,strokeLineDash:[5],stroke:n,seed:a});d=o.insert(()=>y,":first-child")}else d=s.insert("rect",":first-child"),d.attr("class","divider").attr("x",u).attr("y",f).attr("width",l).attr("height",h).attr("data-look",t.look);const g=d.node().getBBox();return t.height=g.height,t.offsetX=0,t.offsetY=0,t.intersect=function(m){return xr(t,m)},{cluster:o,labelBBox:{}}},"divider"),hk=Gu,uk={rect:Gu,squareRect:hk,roundedWithTitle:ok,noteGroup:sk,divider:ck,kanbanSection:lk},Uu=new Map,dk=p(async(e,t)=>{const r=t.shape||"rect",i=await uk[r](e,t);return Uu.set(t.id,i),i},"insertCluster"),zS=p(()=>{Uu=new Map},"clear");function Xu(e,t){return e.intersect(t)}p(Xu,"intersectNode");var fk=Xu;function Zu(e,t,r,i){var a=e.x,n=e.y,o=a-i.x,s=n-i.y,c=Math.sqrt(t*t*s*s+r*r*o*o),l=Math.abs(t*r*o/c);i.x<a&&(l=-l);var h=Math.abs(t*r*s/c);return i.y<n&&(h=-h),{x:a+l,y:n+h}}p(Zu,"intersectEllipse");var Ku=Zu;function Qu(e,t,r){return Ku(e,t,t,r)}p(Qu,"intersectCircle");var pk=Qu;function Ju(e,t,r,i){{const a=t.y-e.y,n=e.x-t.x,o=t.x*e.y-e.x*t.y,s=a*r.x+n*r.y+o,c=a*i.x+n*i.y+o,l=1e-6;if(s!==0&&c!==0&&Fn(s,c))return;const h=i.y-r.y,u=r.x-i.x,f=i.x*r.y-r.x*i.y,d=h*e.x+u*e.y+f,g=h*t.x+u*t.y+f;if(Math.abs(d)<l&&Math.abs(g)<l&&Fn(d,g))return;const m=a*u-h*n;if(m===0)return;const y=Math.abs(m/2);let x=n*f-u*o;const b=x<0?(x-y)/m:(x+y)/m;x=h*o-a*f;const k=x<0?(x-y)/m:(x+y)/m;return{x:b,y:k}}}p(Ju,"intersectLine");function Fn(e,t){return e*t>0}p(Fn,"sameSign");var gk=Ju;function td(e,t,r){let i=e.x,a=e.y,n=[],o=Number.POSITIVE_INFINITY,s=Number.POSITIVE_INFINITY;typeof t.forEach=="function"?t.forEach(function(h){o=Math.min(o,h.x),s=Math.min(s,h.y)}):(o=Math.min(o,t.x),s=Math.min(s,t.y));let c=i-e.width/2-o,l=a-e.height/2-s;for(let h=0;h<t.length;h++){let u=t[h],f=t[h<t.length-1?h+1:0],d=gk(e,r,{x:c+u.x,y:l+u.y},{x:c+f.x,y:l+f.y});d&&n.push(d)}return n.length?(n.length>1&&n.sort(function(h,u){let f=h.x-r.x,d=h.y-r.y,g=Math.sqrt(f*f+d*d),m=u.x-r.x,y=u.y-r.y,x=Math.sqrt(m*m+y*y);return g<x?-1:g===x?0:1}),n[0]):e}p(td,"intersectPolygon");var mk=td,N={node:fk,circle:pk,ellipse:Ku,polygon:mk,rect:xr};function ed(e,t){const{labelStyles:r}=j(t);t.labelStyle=r;const i=X(t);let a=i;i||(a="anchor");const n=e.insert("g").attr("class",a).attr("id",t.domId||t.id),o=1,{cssStyles:s}=t,c=W.svg(n),l=H(t,{fill:"black",stroke:"none",fillStyle:"solid"});t.look!=="handDrawn"&&(l.roughness=0);const h=c.circle(0,0,o*2,l),u=n.insert(()=>h,":first-child");return u.attr("class","anchor").attr("style",$t(s)),V(t,u),t.intersect=function(f){return E.info("Circle intersect",t,o,f),N.circle(t,o,f)},n}p(ed,"anchor");function En(e,t,r,i,a,n,o){const c=(e+r)/2,l=(t+i)/2,h=Math.atan2(i-t,r-e),u=(r-e)/2,f=(i-t)/2,d=u/a,g=f/n,m=Math.sqrt(d**2+g**2);if(m>1)throw new Error("The given radii are too small to create an arc between the points.");const y=Math.sqrt(1-m**2),x=c+y*n*Math.sin(h)*(o?-1:1),b=l-y*a*Math.cos(h)*(o?-1:1),k=Math.atan2((t-b)/n,(e-x)/a);let v=Math.atan2((i-b)/n,(r-x)/a)-k;o&&v<0&&(v+=2*Math.PI),!o&&v>0&&(v-=2*Math.PI);const C=[];for(let _=0;_<20;_++){const A=_/19,I=k+A*v,O=x+a*Math.cos(I),F=b+n*Math.sin(I);C.push({x:O,y:F})}return C}p(En,"generateArcPoints");async function rd(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n}=await Z(e,t,X(t)),o=n.width+t.padding+20,s=n.height+t.padding,c=s/2,l=c/(2.5+s/50),{cssStyles:h}=t,u=[{x:o/2,y:-s/2},{x:-o/2,y:-s/2},...En(-o/2,-s/2,-o/2,s/2,l,c,!1),{x:o/2,y:s/2},...En(o/2,s/2,o/2,-s/2,l,c,!0)],f=W.svg(a),d=H(t,{});t.look!=="handDrawn"&&(d.roughness=0,d.fillStyle="solid");const g=rt(u),m=f.path(g,d),y=a.insert(()=>m,":first-child");return y.attr("class","basic label-container"),h&&t.look!=="handDrawn"&&y.selectAll("path").attr("style",h),i&&t.look!=="handDrawn"&&y.selectAll("path").attr("style",i),y.attr("transform",`translate(${l/2}, 0)`),V(t,y),t.intersect=function(x){return N.polygon(t,u,x)},a}p(rd,"bowTieRect");function ge(e,t,r,i){return e.insert("polygon",":first-child").attr("points",i.map(function(a){return a.x+","+a.y}).join(" ")).attr("class","label-container").attr("transform","translate("+-t/2+","+r/2+")")}p(ge,"insertPolygonShape");async function id(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n}=await Z(e,t,X(t)),o=n.height+t.padding,s=12,c=n.width+t.padding+s,l=0,h=c,u=-o,f=0,d=[{x:l+s,y:u},{x:h,y:u},{x:h,y:f},{x:l,y:f},{x:l,y:u+s},{x:l+s,y:u}];let g;const{cssStyles:m}=t;if(t.look==="handDrawn"){const y=W.svg(a),x=H(t,{}),b=rt(d),k=y.path(b,x);g=a.insert(()=>k,":first-child").attr("transform",`translate(${-c/2}, ${o/2})`),m&&g.attr("style",m)}else g=ge(a,c,o,d);return i&&g.attr("style",i),V(t,g),t.intersect=function(y){return N.polygon(t,d,y)},a}p(id,"card");function ad(e,t){const{nodeStyles:r}=j(t);t.label="";const i=e.insert("g").attr("class",X(t)).attr("id",t.domId??t.id),{cssStyles:a}=t,n=Math.max(28,t.width??0),o=[{x:0,y:n/2},{x:n/2,y:0},{x:0,y:-n/2},{x:-n/2,y:0}],s=W.svg(i),c=H(t,{});t.look!=="handDrawn"&&(c.roughness=0,c.fillStyle="solid");const l=rt(o),h=s.path(l,c),u=i.insert(()=>h,":first-child");return a&&t.look!=="handDrawn"&&u.selectAll("path").attr("style",a),r&&t.look!=="handDrawn"&&u.selectAll("path").attr("style",r),t.width=28,t.height=28,t.intersect=function(f){return N.polygon(t,o,f)},i}p(ad,"choice");async function Is(e,t,r){const{labelStyles:i,nodeStyles:a}=j(t);t.labelStyle=i;const{shapeSvg:n,bbox:o,halfPadding:s}=await Z(e,t,X(t)),c=(r==null?void 0:r.padding)??s,l=o.width/2+c;let h;const{cssStyles:u}=t;if(t.look==="handDrawn"){const f=W.svg(n),d=H(t,{}),g=f.circle(0,0,l*2,d);h=n.insert(()=>g,":first-child"),h.attr("class","basic label-container").attr("style",$t(u))}else h=n.insert("circle",":first-child").attr("class","basic label-container").attr("style",a).attr("r",l).attr("cx",0).attr("cy",0);return V(t,h),t.calcIntersect=function(f,d){const g=f.width/2;return N.circle(f,g,d)},t.intersect=function(f){return E.info("Circle intersect",t,l,f),N.circle(t,l,f)},n}p(Is,"circle");function nd(e){const t=Math.cos(Math.PI/4),r=Math.sin(Math.PI/4),i=e*2,a={x:i/2*t,y:i/2*r},n={x:-(i/2)*t,y:i/2*r},o={x:-(i/2)*t,y:-(i/2)*r},s={x:i/2*t,y:-(i/2)*r};return`M ${n.x},${n.y} L ${s.x},${s.y}
|
|
186
|
+
M ${a.x},${a.y} L ${o.x},${o.y}`}p(nd,"createLine");function sd(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r,t.label="";const a=e.insert("g").attr("class",X(t)).attr("id",t.domId??t.id),n=Math.max(30,(t==null?void 0:t.width)??0),{cssStyles:o}=t,s=W.svg(a),c=H(t,{});t.look!=="handDrawn"&&(c.roughness=0,c.fillStyle="solid");const l=s.circle(0,0,n*2,c),h=nd(n),u=s.path(h,c),f=a.insert(()=>l,":first-child");return f.insert(()=>u),o&&t.look!=="handDrawn"&&f.selectAll("path").attr("style",o),i&&t.look!=="handDrawn"&&f.selectAll("path").attr("style",i),V(t,f),t.intersect=function(d){return E.info("crossedCircle intersect",t,{radius:n,point:d}),N.circle(t,n,d)},a}p(sd,"crossedCircle");function oe(e,t,r,i=100,a=0,n=180){const o=[],s=a*Math.PI/180,h=(n*Math.PI/180-s)/(i-1);for(let u=0;u<i;u++){const f=s+u*h,d=e+r*Math.cos(f),g=t+r*Math.sin(f);o.push({x:-d,y:-g})}return o}p(oe,"generateCirclePoints");async function od(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n,label:o}=await Z(e,t,X(t)),s=n.width+(t.padding??0),c=n.height+(t.padding??0),l=Math.max(5,c*.1),{cssStyles:h}=t,u=[...oe(s/2,-c/2,l,30,-90,0),{x:-s/2-l,y:l},...oe(s/2+l*2,-l,l,20,-180,-270),...oe(s/2+l*2,l,l,20,-90,-180),{x:-s/2-l,y:-c/2},...oe(s/2,c/2,l,20,0,90)],f=[{x:s/2,y:-c/2-l},{x:-s/2,y:-c/2-l},...oe(s/2,-c/2,l,20,-90,0),{x:-s/2-l,y:-l},...oe(s/2+s*.1,-l,l,20,-180,-270),...oe(s/2+s*.1,l,l,20,-90,-180),{x:-s/2-l,y:c/2},...oe(s/2,c/2,l,20,0,90),{x:-s/2,y:c/2+l},{x:s/2,y:c/2+l}],d=W.svg(a),g=H(t,{fill:"none"});t.look!=="handDrawn"&&(g.roughness=0,g.fillStyle="solid");const y=rt(u).replace("Z",""),x=d.path(y,g),b=rt(f),k=d.path(b,{...g}),S=a.insert("g",":first-child");return S.insert(()=>k,":first-child").attr("stroke-opacity",0),S.insert(()=>x,":first-child"),S.attr("class","text"),h&&t.look!=="handDrawn"&&S.selectAll("path").attr("style",h),i&&t.look!=="handDrawn"&&S.selectAll("path").attr("style",i),S.attr("transform",`translate(${l}, 0)`),o.attr("transform",`translate(${-s/2+l-(n.x-(n.left??0))},${-c/2+(t.padding??0)/2-(n.y-(n.top??0))})`),V(t,S),t.intersect=function(v){return N.polygon(t,f,v)},a}p(od,"curlyBraceLeft");function le(e,t,r,i=100,a=0,n=180){const o=[],s=a*Math.PI/180,h=(n*Math.PI/180-s)/(i-1);for(let u=0;u<i;u++){const f=s+u*h,d=e+r*Math.cos(f),g=t+r*Math.sin(f);o.push({x:d,y:g})}return o}p(le,"generateCirclePoints");async function ld(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n,label:o}=await Z(e,t,X(t)),s=n.width+(t.padding??0),c=n.height+(t.padding??0),l=Math.max(5,c*.1),{cssStyles:h}=t,u=[...le(s/2,-c/2,l,20,-90,0),{x:s/2+l,y:-l},...le(s/2+l*2,-l,l,20,-180,-270),...le(s/2+l*2,l,l,20,-90,-180),{x:s/2+l,y:c/2},...le(s/2,c/2,l,20,0,90)],f=[{x:-s/2,y:-c/2-l},{x:s/2,y:-c/2-l},...le(s/2,-c/2,l,20,-90,0),{x:s/2+l,y:-l},...le(s/2+l*2,-l,l,20,-180,-270),...le(s/2+l*2,l,l,20,-90,-180),{x:s/2+l,y:c/2},...le(s/2,c/2,l,20,0,90),{x:s/2,y:c/2+l},{x:-s/2,y:c/2+l}],d=W.svg(a),g=H(t,{fill:"none"});t.look!=="handDrawn"&&(g.roughness=0,g.fillStyle="solid");const y=rt(u).replace("Z",""),x=d.path(y,g),b=rt(f),k=d.path(b,{...g}),S=a.insert("g",":first-child");return S.insert(()=>k,":first-child").attr("stroke-opacity",0),S.insert(()=>x,":first-child"),S.attr("class","text"),h&&t.look!=="handDrawn"&&S.selectAll("path").attr("style",h),i&&t.look!=="handDrawn"&&S.selectAll("path").attr("style",i),S.attr("transform",`translate(${-l}, 0)`),o.attr("transform",`translate(${-s/2+(t.padding??0)/2-(n.x-(n.left??0))},${-c/2+(t.padding??0)/2-(n.y-(n.top??0))})`),V(t,S),t.intersect=function(v){return N.polygon(t,f,v)},a}p(ld,"curlyBraceRight");function _t(e,t,r,i=100,a=0,n=180){const o=[],s=a*Math.PI/180,h=(n*Math.PI/180-s)/(i-1);for(let u=0;u<i;u++){const f=s+u*h,d=e+r*Math.cos(f),g=t+r*Math.sin(f);o.push({x:-d,y:-g})}return o}p(_t,"generateCirclePoints");async function cd(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n,label:o}=await Z(e,t,X(t)),s=n.width+(t.padding??0),c=n.height+(t.padding??0),l=Math.max(5,c*.1),{cssStyles:h}=t,u=[..._t(s/2,-c/2,l,30,-90,0),{x:-s/2-l,y:l},..._t(s/2+l*2,-l,l,20,-180,-270),..._t(s/2+l*2,l,l,20,-90,-180),{x:-s/2-l,y:-c/2},..._t(s/2,c/2,l,20,0,90)],f=[..._t(-s/2+l+l/2,-c/2,l,20,-90,-180),{x:s/2-l/2,y:l},..._t(-s/2-l/2,-l,l,20,0,90),..._t(-s/2-l/2,l,l,20,-90,0),{x:s/2-l/2,y:-l},..._t(-s/2+l+l/2,c/2,l,30,-180,-270)],d=[{x:s/2,y:-c/2-l},{x:-s/2,y:-c/2-l},..._t(s/2,-c/2,l,20,-90,0),{x:-s/2-l,y:-l},..._t(s/2+l*2,-l,l,20,-180,-270),..._t(s/2+l*2,l,l,20,-90,-180),{x:-s/2-l,y:c/2},..._t(s/2,c/2,l,20,0,90),{x:-s/2,y:c/2+l},{x:s/2-l-l/2,y:c/2+l},..._t(-s/2+l+l/2,-c/2,l,20,-90,-180),{x:s/2-l/2,y:l},..._t(-s/2-l/2,-l,l,20,0,90),..._t(-s/2-l/2,l,l,20,-90,0),{x:s/2-l/2,y:-l},..._t(-s/2+l+l/2,c/2,l,30,-180,-270)],g=W.svg(a),m=H(t,{fill:"none"});t.look!=="handDrawn"&&(m.roughness=0,m.fillStyle="solid");const x=rt(u).replace("Z",""),b=g.path(x,m),S=rt(f).replace("Z",""),v=g.path(S,m),C=rt(d),_=g.path(C,{...m}),A=a.insert("g",":first-child");return A.insert(()=>_,":first-child").attr("stroke-opacity",0),A.insert(()=>b,":first-child"),A.insert(()=>v,":first-child"),A.attr("class","text"),h&&t.look!=="handDrawn"&&A.selectAll("path").attr("style",h),i&&t.look!=="handDrawn"&&A.selectAll("path").attr("style",i),A.attr("transform",`translate(${l-l/4}, 0)`),o.attr("transform",`translate(${-s/2+(t.padding??0)/2-(n.x-(n.left??0))},${-c/2+(t.padding??0)/2-(n.y-(n.top??0))})`),V(t,A),t.intersect=function(I){return N.polygon(t,d,I)},a}p(cd,"curlyBraces");async function hd(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n}=await Z(e,t,X(t)),o=80,s=20,c=Math.max(o,(n.width+(t.padding??0)*2)*1.25,(t==null?void 0:t.width)??0),l=Math.max(s,n.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),h=l/2,{cssStyles:u}=t,f=W.svg(a),d=H(t,{});t.look!=="handDrawn"&&(d.roughness=0,d.fillStyle="solid");const g=c,m=l,y=g-h,x=m/4,b=[{x:y,y:0},{x,y:0},{x:0,y:m/2},{x,y:m},{x:y,y:m},...Kr(-y,-m/2,h,50,270,90)],k=rt(b),S=f.path(k,d),v=a.insert(()=>S,":first-child");return v.attr("class","basic label-container"),u&&t.look!=="handDrawn"&&v.selectChildren("path").attr("style",u),i&&t.look!=="handDrawn"&&v.selectChildren("path").attr("style",i),v.attr("transform",`translate(${-c/2}, ${-l/2})`),V(t,v),t.intersect=function(C){return N.polygon(t,b,C)},a}p(hd,"curvedTrapezoid");var yk=p((e,t,r,i,a,n)=>[`M${e},${t+n}`,`a${a},${n} 0,0,0 ${r},0`,`a${a},${n} 0,0,0 ${-r},0`,`l0,${i}`,`a${a},${n} 0,0,0 ${r},0`,`l0,${-i}`].join(" "),"createCylinderPathD"),xk=p((e,t,r,i,a,n)=>[`M${e},${t+n}`,`M${e+r},${t+n}`,`a${a},${n} 0,0,0 ${-r},0`,`l0,${i}`,`a${a},${n} 0,0,0 ${r},0`,`l0,${-i}`].join(" "),"createOuterCylinderPathD"),bk=p((e,t,r,i,a,n)=>[`M${e-r/2},${-i/2}`,`a${a},${n} 0,0,0 ${r},0`].join(" "),"createInnerCylinderPathD");async function ud(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n,label:o}=await Z(e,t,X(t)),s=Math.max(n.width+t.padding,t.width??0),c=s/2,l=c/(2.5+s/50),h=Math.max(n.height+l+t.padding,t.height??0);let u;const{cssStyles:f}=t;if(t.look==="handDrawn"){const d=W.svg(a),g=xk(0,0,s,h,c,l),m=bk(0,l,s,h,c,l),y=d.path(g,H(t,{})),x=d.path(m,H(t,{fill:"none"}));u=a.insert(()=>x,":first-child"),u=a.insert(()=>y,":first-child"),u.attr("class","basic label-container"),f&&u.attr("style",f)}else{const d=yk(0,0,s,h,c,l);u=a.insert("path",":first-child").attr("d",d).attr("class","basic label-container").attr("style",$t(f)).attr("style",i)}return u.attr("label-offset-y",l),u.attr("transform",`translate(${-s/2}, ${-(h/2+l)})`),V(t,u),o.attr("transform",`translate(${-(n.width/2)-(n.x-(n.left??0))}, ${-(n.height/2)+(t.padding??0)/1.5-(n.y-(n.top??0))})`),t.intersect=function(d){const g=N.rect(t,d),m=g.x-(t.x??0);if(c!=0&&(Math.abs(m)<(t.width??0)/2||Math.abs(m)==(t.width??0)/2&&Math.abs(g.y-(t.y??0))>(t.height??0)/2-l)){let y=l*l*(1-m*m/(c*c));y>0&&(y=Math.sqrt(y)),y=l-y,d.y-(t.y??0)>0&&(y=-y),g.y+=y}return g},a}p(ud,"cylinder");async function dd(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n,label:o}=await Z(e,t,X(t)),s=n.width+t.padding,c=n.height+t.padding,l=c*.2,h=-s/2,u=-c/2-l/2,{cssStyles:f}=t,d=W.svg(a),g=H(t,{});t.look!=="handDrawn"&&(g.roughness=0,g.fillStyle="solid");const m=[{x:h,y:u+l},{x:-h,y:u+l},{x:-h,y:-u},{x:h,y:-u},{x:h,y:u},{x:-h,y:u},{x:-h,y:u+l}],y=d.polygon(m.map(b=>[b.x,b.y]),g),x=a.insert(()=>y,":first-child");return x.attr("class","basic label-container"),f&&t.look!=="handDrawn"&&x.selectAll("path").attr("style",f),i&&t.look!=="handDrawn"&&x.selectAll("path").attr("style",i),o.attr("transform",`translate(${h+(t.padding??0)/2-(n.x-(n.left??0))}, ${u+l+(t.padding??0)/2-(n.y-(n.top??0))})`),V(t,x),t.intersect=function(b){return N.rect(t,b)},a}p(dd,"dividedRectangle");async function fd(e,t){var f,d;const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n,halfPadding:o}=await Z(e,t,X(t)),c=n.width/2+o+5,l=n.width/2+o;let h;const{cssStyles:u}=t;if(t.look==="handDrawn"){const g=W.svg(a),m=H(t,{roughness:.2,strokeWidth:2.5}),y=H(t,{roughness:.2,strokeWidth:1.5}),x=g.circle(0,0,c*2,m),b=g.circle(0,0,l*2,y);h=a.insert("g",":first-child"),h.attr("class",$t(t.cssClasses)).attr("style",$t(u)),(f=h.node())==null||f.appendChild(x),(d=h.node())==null||d.appendChild(b)}else{h=a.insert("g",":first-child");const g=h.insert("circle",":first-child"),m=h.insert("circle");h.attr("class","basic label-container").attr("style",i),g.attr("class","outer-circle").attr("style",i).attr("r",c).attr("cx",0).attr("cy",0),m.attr("class","inner-circle").attr("style",i).attr("r",l).attr("cx",0).attr("cy",0)}return V(t,h),t.intersect=function(g){return E.info("DoubleCircle intersect",t,c,g),N.circle(t,c,g)},a}p(fd,"doublecircle");function pd(e,t,{config:{themeVariables:r}}){const{labelStyles:i,nodeStyles:a}=j(t);t.label="",t.labelStyle=i;const n=e.insert("g").attr("class",X(t)).attr("id",t.domId??t.id),o=7,{cssStyles:s}=t,c=W.svg(n),{nodeBorder:l}=r,h=H(t,{fillStyle:"solid"});t.look!=="handDrawn"&&(h.roughness=0);const u=c.circle(0,0,o*2,h),f=n.insert(()=>u,":first-child");return f.selectAll("path").attr("style",`fill: ${l} !important;`),s&&s.length>0&&t.look!=="handDrawn"&&f.selectAll("path").attr("style",s),a&&t.look!=="handDrawn"&&f.selectAll("path").attr("style",a),V(t,f),t.intersect=function(d){return E.info("filledCircle intersect",t,{radius:o,point:d}),N.circle(t,o,d)},n}p(pd,"filledCircle");async function gd(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n,label:o}=await Z(e,t,X(t)),s=n.width+(t.padding??0),c=s+n.height,l=s+n.height,h=[{x:0,y:-c},{x:l,y:-c},{x:l/2,y:0}],{cssStyles:u}=t,f=W.svg(a),d=H(t,{});t.look!=="handDrawn"&&(d.roughness=0,d.fillStyle="solid");const g=rt(h),m=f.path(g,d),y=a.insert(()=>m,":first-child").attr("transform",`translate(${-c/2}, ${c/2})`);return u&&t.look!=="handDrawn"&&y.selectChildren("path").attr("style",u),i&&t.look!=="handDrawn"&&y.selectChildren("path").attr("style",i),t.width=s,t.height=c,V(t,y),o.attr("transform",`translate(${-n.width/2-(n.x-(n.left??0))}, ${-c/2+(t.padding??0)/2+(n.y-(n.top??0))})`),t.intersect=function(x){return E.info("Triangle intersect",t,h,x),N.polygon(t,h,x)},a}p(gd,"flippedTriangle");function md(e,t,{dir:r,config:{state:i,themeVariables:a}}){const{nodeStyles:n}=j(t);t.label="";const o=e.insert("g").attr("class",X(t)).attr("id",t.domId??t.id),{cssStyles:s}=t;let c=Math.max(70,(t==null?void 0:t.width)??0),l=Math.max(10,(t==null?void 0:t.height)??0);r==="LR"&&(c=Math.max(10,(t==null?void 0:t.width)??0),l=Math.max(70,(t==null?void 0:t.height)??0));const h=-1*c/2,u=-1*l/2,f=W.svg(o),d=H(t,{stroke:a.lineColor,fill:a.lineColor});t.look!=="handDrawn"&&(d.roughness=0,d.fillStyle="solid");const g=f.rectangle(h,u,c,l,d),m=o.insert(()=>g,":first-child");s&&t.look!=="handDrawn"&&m.selectAll("path").attr("style",s),n&&t.look!=="handDrawn"&&m.selectAll("path").attr("style",n),V(t,m);const y=(i==null?void 0:i.padding)??0;return t.width&&t.height&&(t.width+=y/2||0,t.height+=y/2||0),t.intersect=function(x){return N.rect(t,x)},o}p(md,"forkJoin");async function yd(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const a=80,n=50,{shapeSvg:o,bbox:s}=await Z(e,t,X(t)),c=Math.max(a,s.width+(t.padding??0)*2,(t==null?void 0:t.width)??0),l=Math.max(n,s.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),h=l/2,{cssStyles:u}=t,f=W.svg(o),d=H(t,{});t.look!=="handDrawn"&&(d.roughness=0,d.fillStyle="solid");const g=[{x:-c/2,y:-l/2},{x:c/2-h,y:-l/2},...Kr(-c/2+h,0,h,50,90,270),{x:c/2-h,y:l/2},{x:-c/2,y:l/2}],m=rt(g),y=f.path(m,d),x=o.insert(()=>y,":first-child");return x.attr("class","basic label-container"),u&&t.look!=="handDrawn"&&x.selectChildren("path").attr("style",u),i&&t.look!=="handDrawn"&&x.selectChildren("path").attr("style",i),V(t,x),t.intersect=function(b){return E.info("Pill intersect",t,{radius:h,point:b}),N.polygon(t,g,b)},o}p(yd,"halfRoundedRectangle");var Ck=p((e,t,r,i,a)=>[`M${e+a},${t}`,`L${e+r-a},${t}`,`L${e+r},${t-i/2}`,`L${e+r-a},${t-i}`,`L${e+a},${t-i}`,`L${e},${t-i/2}`,"Z"].join(" "),"createHexagonPathD");async function xd(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n}=await Z(e,t,X(t)),o=4,s=n.height+t.padding,c=s/o,l=n.width+2*c+t.padding,h=[{x:c,y:0},{x:l-c,y:0},{x:l,y:-s/2},{x:l-c,y:-s},{x:c,y:-s},{x:0,y:-s/2}];let u;const{cssStyles:f}=t;if(t.look==="handDrawn"){const d=W.svg(a),g=H(t,{}),m=Ck(0,0,l,s,c),y=d.path(m,g);u=a.insert(()=>y,":first-child").attr("transform",`translate(${-l/2}, ${s/2})`),f&&u.attr("style",f)}else u=ge(a,l,s,h);return i&&u.attr("style",i),t.width=l,t.height=s,V(t,u),t.intersect=function(d){return N.polygon(t,h,d)},a}p(xd,"hexagon");async function bd(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.label="",t.labelStyle=r;const{shapeSvg:a}=await Z(e,t,X(t)),n=Math.max(30,(t==null?void 0:t.width)??0),o=Math.max(30,(t==null?void 0:t.height)??0),{cssStyles:s}=t,c=W.svg(a),l=H(t,{});t.look!=="handDrawn"&&(l.roughness=0,l.fillStyle="solid");const h=[{x:0,y:0},{x:n,y:0},{x:0,y:o},{x:n,y:o}],u=rt(h),f=c.path(u,l),d=a.insert(()=>f,":first-child");return d.attr("class","basic label-container"),s&&t.look!=="handDrawn"&&d.selectChildren("path").attr("style",s),i&&t.look!=="handDrawn"&&d.selectChildren("path").attr("style",i),d.attr("transform",`translate(${-n/2}, ${-o/2})`),V(t,d),t.intersect=function(g){return E.info("Pill intersect",t,{points:h}),N.polygon(t,h,g)},a}p(bd,"hourglass");async function Cd(e,t,{config:{themeVariables:r,flowchart:i}}){const{labelStyles:a}=j(t);t.labelStyle=a;const n=t.assetHeight??48,o=t.assetWidth??48,s=Math.max(n,o),c=i==null?void 0:i.wrappingWidth;t.width=Math.max(s,c??0);const{shapeSvg:l,bbox:h,label:u}=await Z(e,t,"icon-shape default"),f=t.pos==="t",d=s,g=s,{nodeBorder:m}=r,{stylesMap:y}=yr(t),x=-g/2,b=-d/2,k=t.label?8:0,S=W.svg(l),v=H(t,{stroke:"none",fill:"none"});t.look!=="handDrawn"&&(v.roughness=0,v.fillStyle="solid");const C=S.rectangle(x,b,g,d,v),_=Math.max(g,h.width),A=d+h.height+k,I=S.rectangle(-_/2,-A/2,_,A,{...v,fill:"transparent",stroke:"none"}),O=l.insert(()=>C,":first-child"),F=l.insert(()=>I);if(t.icon){const z=l.append("g");z.html(`<g>${await li(t.icon,{height:s,width:s,fallbackPrefix:""})}</g>`);const D=z.node().getBBox(),M=D.width,L=D.height,T=D.x,$=D.y;z.attr("transform",`translate(${-M/2-T},${f?h.height/2+k/2-L/2-$:-h.height/2-k/2-L/2-$})`),z.attr("style",`color: ${y.get("stroke")??m};`)}return u.attr("transform",`translate(${-h.width/2-(h.x-(h.left??0))},${f?-A/2:A/2-h.height})`),O.attr("transform",`translate(0,${f?h.height/2+k/2:-h.height/2-k/2})`),V(t,F),t.intersect=function(z){if(E.info("iconSquare intersect",t,z),!t.label)return N.rect(t,z);const D=t.x??0,M=t.y??0,L=t.height??0;let T=[];return f?T=[{x:D-h.width/2,y:M-L/2},{x:D+h.width/2,y:M-L/2},{x:D+h.width/2,y:M-L/2+h.height+k},{x:D+g/2,y:M-L/2+h.height+k},{x:D+g/2,y:M+L/2},{x:D-g/2,y:M+L/2},{x:D-g/2,y:M-L/2+h.height+k},{x:D-h.width/2,y:M-L/2+h.height+k}]:T=[{x:D-g/2,y:M-L/2},{x:D+g/2,y:M-L/2},{x:D+g/2,y:M-L/2+d},{x:D+h.width/2,y:M-L/2+d},{x:D+h.width/2/2,y:M+L/2},{x:D-h.width/2,y:M+L/2},{x:D-h.width/2,y:M-L/2+d},{x:D-g/2,y:M-L/2+d}],N.polygon(t,T,z)},l}p(Cd,"icon");async function kd(e,t,{config:{themeVariables:r,flowchart:i}}){const{labelStyles:a}=j(t);t.labelStyle=a;const n=t.assetHeight??48,o=t.assetWidth??48,s=Math.max(n,o),c=i==null?void 0:i.wrappingWidth;t.width=Math.max(s,c??0);const{shapeSvg:l,bbox:h,label:u}=await Z(e,t,"icon-shape default"),f=20,d=t.label?8:0,g=t.pos==="t",{nodeBorder:m,mainBkg:y}=r,{stylesMap:x}=yr(t),b=W.svg(l),k=H(t,{});t.look!=="handDrawn"&&(k.roughness=0,k.fillStyle="solid");const S=x.get("fill");k.stroke=S??y;const v=l.append("g");t.icon&&v.html(`<g>${await li(t.icon,{height:s,width:s,fallbackPrefix:""})}</g>`);const C=v.node().getBBox(),_=C.width,A=C.height,I=C.x,O=C.y,F=Math.max(_,A)*Math.SQRT2+f*2,z=b.circle(0,0,F,k),D=Math.max(F,h.width),M=F+h.height+d,L=b.rectangle(-D/2,-M/2,D,M,{...k,fill:"transparent",stroke:"none"}),T=l.insert(()=>z,":first-child"),$=l.insert(()=>L);return v.attr("transform",`translate(${-_/2-I},${g?h.height/2+d/2-A/2-O:-h.height/2-d/2-A/2-O})`),v.attr("style",`color: ${x.get("stroke")??m};`),u.attr("transform",`translate(${-h.width/2-(h.x-(h.left??0))},${g?-M/2:M/2-h.height})`),T.attr("transform",`translate(0,${g?h.height/2+d/2:-h.height/2-d/2})`),V(t,$),t.intersect=function(B){return E.info("iconSquare intersect",t,B),N.rect(t,B)},l}p(kd,"iconCircle");async function wd(e,t,{config:{themeVariables:r,flowchart:i}}){const{labelStyles:a}=j(t);t.labelStyle=a;const n=t.assetHeight??48,o=t.assetWidth??48,s=Math.max(n,o),c=i==null?void 0:i.wrappingWidth;t.width=Math.max(s,c??0);const{shapeSvg:l,bbox:h,halfPadding:u,label:f}=await Z(e,t,"icon-shape default"),d=t.pos==="t",g=s+u*2,m=s+u*2,{nodeBorder:y,mainBkg:x}=r,{stylesMap:b}=yr(t),k=-m/2,S=-g/2,v=t.label?8:0,C=W.svg(l),_=H(t,{});t.look!=="handDrawn"&&(_.roughness=0,_.fillStyle="solid");const A=b.get("fill");_.stroke=A??x;const I=C.path(Te(k,S,m,g,5),_),O=Math.max(m,h.width),F=g+h.height+v,z=C.rectangle(-O/2,-F/2,O,F,{..._,fill:"transparent",stroke:"none"}),D=l.insert(()=>I,":first-child").attr("class","icon-shape2"),M=l.insert(()=>z);if(t.icon){const L=l.append("g");L.html(`<g>${await li(t.icon,{height:s,width:s,fallbackPrefix:""})}</g>`);const T=L.node().getBBox(),$=T.width,B=T.height,P=T.x,Y=T.y;L.attr("transform",`translate(${-$/2-P},${d?h.height/2+v/2-B/2-Y:-h.height/2-v/2-B/2-Y})`),L.attr("style",`color: ${b.get("stroke")??y};`)}return f.attr("transform",`translate(${-h.width/2-(h.x-(h.left??0))},${d?-F/2:F/2-h.height})`),D.attr("transform",`translate(0,${d?h.height/2+v/2:-h.height/2-v/2})`),V(t,M),t.intersect=function(L){if(E.info("iconSquare intersect",t,L),!t.label)return N.rect(t,L);const T=t.x??0,$=t.y??0,B=t.height??0;let P=[];return d?P=[{x:T-h.width/2,y:$-B/2},{x:T+h.width/2,y:$-B/2},{x:T+h.width/2,y:$-B/2+h.height+v},{x:T+m/2,y:$-B/2+h.height+v},{x:T+m/2,y:$+B/2},{x:T-m/2,y:$+B/2},{x:T-m/2,y:$-B/2+h.height+v},{x:T-h.width/2,y:$-B/2+h.height+v}]:P=[{x:T-m/2,y:$-B/2},{x:T+m/2,y:$-B/2},{x:T+m/2,y:$-B/2+g},{x:T+h.width/2,y:$-B/2+g},{x:T+h.width/2/2,y:$+B/2},{x:T-h.width/2,y:$+B/2},{x:T-h.width/2,y:$-B/2+g},{x:T-m/2,y:$-B/2+g}],N.polygon(t,P,L)},l}p(wd,"iconRounded");async function vd(e,t,{config:{themeVariables:r,flowchart:i}}){const{labelStyles:a}=j(t);t.labelStyle=a;const n=t.assetHeight??48,o=t.assetWidth??48,s=Math.max(n,o),c=i==null?void 0:i.wrappingWidth;t.width=Math.max(s,c??0);const{shapeSvg:l,bbox:h,halfPadding:u,label:f}=await Z(e,t,"icon-shape default"),d=t.pos==="t",g=s+u*2,m=s+u*2,{nodeBorder:y,mainBkg:x}=r,{stylesMap:b}=yr(t),k=-m/2,S=-g/2,v=t.label?8:0,C=W.svg(l),_=H(t,{});t.look!=="handDrawn"&&(_.roughness=0,_.fillStyle="solid");const A=b.get("fill");_.stroke=A??x;const I=C.path(Te(k,S,m,g,.1),_),O=Math.max(m,h.width),F=g+h.height+v,z=C.rectangle(-O/2,-F/2,O,F,{..._,fill:"transparent",stroke:"none"}),D=l.insert(()=>I,":first-child"),M=l.insert(()=>z);if(t.icon){const L=l.append("g");L.html(`<g>${await li(t.icon,{height:s,width:s,fallbackPrefix:""})}</g>`);const T=L.node().getBBox(),$=T.width,B=T.height,P=T.x,Y=T.y;L.attr("transform",`translate(${-$/2-P},${d?h.height/2+v/2-B/2-Y:-h.height/2-v/2-B/2-Y})`),L.attr("style",`color: ${b.get("stroke")??y};`)}return f.attr("transform",`translate(${-h.width/2-(h.x-(h.left??0))},${d?-F/2:F/2-h.height})`),D.attr("transform",`translate(0,${d?h.height/2+v/2:-h.height/2-v/2})`),V(t,M),t.intersect=function(L){if(E.info("iconSquare intersect",t,L),!t.label)return N.rect(t,L);const T=t.x??0,$=t.y??0,B=t.height??0;let P=[];return d?P=[{x:T-h.width/2,y:$-B/2},{x:T+h.width/2,y:$-B/2},{x:T+h.width/2,y:$-B/2+h.height+v},{x:T+m/2,y:$-B/2+h.height+v},{x:T+m/2,y:$+B/2},{x:T-m/2,y:$+B/2},{x:T-m/2,y:$-B/2+h.height+v},{x:T-h.width/2,y:$-B/2+h.height+v}]:P=[{x:T-m/2,y:$-B/2},{x:T+m/2,y:$-B/2},{x:T+m/2,y:$-B/2+g},{x:T+h.width/2,y:$-B/2+g},{x:T+h.width/2/2,y:$+B/2},{x:T-h.width/2,y:$+B/2},{x:T-h.width/2,y:$-B/2+g},{x:T-m/2,y:$-B/2+g}],N.polygon(t,P,L)},l}p(vd,"iconSquare");async function _d(e,t,{config:{flowchart:r}}){const i=new Image;i.src=(t==null?void 0:t.img)??"",await i.decode();const a=Number(i.naturalWidth.toString().replace("px","")),n=Number(i.naturalHeight.toString().replace("px",""));t.imageAspectRatio=a/n;const{labelStyles:o}=j(t);t.labelStyle=o;const s=r==null?void 0:r.wrappingWidth;t.defaultWidth=r==null?void 0:r.wrappingWidth;const c=Math.max(t.label?s??0:0,(t==null?void 0:t.assetWidth)??a),l=t.constraint==="on"&&t!=null&&t.assetHeight?t.assetHeight*t.imageAspectRatio:c,h=t.constraint==="on"?l/t.imageAspectRatio:(t==null?void 0:t.assetHeight)??n;t.width=Math.max(l,s??0);const{shapeSvg:u,bbox:f,label:d}=await Z(e,t,"image-shape default"),g=t.pos==="t",m=-l/2,y=-h/2,x=t.label?8:0,b=W.svg(u),k=H(t,{});t.look!=="handDrawn"&&(k.roughness=0,k.fillStyle="solid");const S=b.rectangle(m,y,l,h,k),v=Math.max(l,f.width),C=h+f.height+x,_=b.rectangle(-v/2,-C/2,v,C,{...k,fill:"none",stroke:"none"}),A=u.insert(()=>S,":first-child"),I=u.insert(()=>_);if(t.img){const O=u.append("image");O.attr("href",t.img),O.attr("width",l),O.attr("height",h),O.attr("preserveAspectRatio","none"),O.attr("transform",`translate(${-l/2},${g?C/2-h:-C/2})`)}return d.attr("transform",`translate(${-f.width/2-(f.x-(f.left??0))},${g?-h/2-f.height/2-x/2:h/2-f.height/2+x/2})`),A.attr("transform",`translate(0,${g?f.height/2+x/2:-f.height/2-x/2})`),V(t,I),t.intersect=function(O){if(E.info("iconSquare intersect",t,O),!t.label)return N.rect(t,O);const F=t.x??0,z=t.y??0,D=t.height??0;let M=[];return g?M=[{x:F-f.width/2,y:z-D/2},{x:F+f.width/2,y:z-D/2},{x:F+f.width/2,y:z-D/2+f.height+x},{x:F+l/2,y:z-D/2+f.height+x},{x:F+l/2,y:z+D/2},{x:F-l/2,y:z+D/2},{x:F-l/2,y:z-D/2+f.height+x},{x:F-f.width/2,y:z-D/2+f.height+x}]:M=[{x:F-l/2,y:z-D/2},{x:F+l/2,y:z-D/2},{x:F+l/2,y:z-D/2+h},{x:F+f.width/2,y:z-D/2+h},{x:F+f.width/2/2,y:z+D/2},{x:F-f.width/2,y:z+D/2},{x:F-f.width/2,y:z-D/2+h},{x:F-l/2,y:z-D/2+h}],N.polygon(t,M,O)},u}p(_d,"imageSquare");async function Sd(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n}=await Z(e,t,X(t)),o=Math.max(n.width+(t.padding??0)*2,(t==null?void 0:t.width)??0),s=Math.max(n.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),c=[{x:0,y:0},{x:o,y:0},{x:o+3*s/6,y:-s},{x:-3*s/6,y:-s}];let l;const{cssStyles:h}=t;if(t.look==="handDrawn"){const u=W.svg(a),f=H(t,{}),d=rt(c),g=u.path(d,f);l=a.insert(()=>g,":first-child").attr("transform",`translate(${-o/2}, ${s/2})`),h&&l.attr("style",h)}else l=ge(a,o,s,c);return i&&l.attr("style",i),t.width=o,t.height=s,V(t,l),t.intersect=function(u){return N.polygon(t,c,u)},a}p(Sd,"inv_trapezoid");async function hi(e,t,r){const{labelStyles:i,nodeStyles:a}=j(t);t.labelStyle=i;const{shapeSvg:n,bbox:o}=await Z(e,t,X(t)),s=Math.max(o.width+r.labelPaddingX*2,(t==null?void 0:t.width)||0),c=Math.max(o.height+r.labelPaddingY*2,(t==null?void 0:t.height)||0),l=-s/2,h=-c/2;let u,{rx:f,ry:d}=t;const{cssStyles:g}=t;if(r!=null&&r.rx&&r.ry&&(f=r.rx,d=r.ry),t.look==="handDrawn"){const m=W.svg(n),y=H(t,{}),x=f||d?m.path(Te(l,h,s,c,f||0),y):m.rectangle(l,h,s,c,y);u=n.insert(()=>x,":first-child"),u.attr("class","basic label-container").attr("style",$t(g))}else u=n.insert("rect",":first-child"),u.attr("class","basic label-container").attr("style",a).attr("rx",$t(f)).attr("ry",$t(d)).attr("x",l).attr("y",h).attr("width",s).attr("height",c);return V(t,u),t.calcIntersect=function(m,y){return N.rect(m,y)},t.intersect=function(m){return N.rect(t,m)},n}p(hi,"drawRect");async function Td(e,t){const{shapeSvg:r,bbox:i,label:a}=await Z(e,t,"label"),n=r.insert("rect",":first-child");return n.attr("width",.1).attr("height",.1),r.attr("class","label edgeLabel"),a.attr("transform",`translate(${-(i.width/2)-(i.x-(i.left??0))}, ${-(i.height/2)-(i.y-(i.top??0))})`),V(t,n),t.intersect=function(c){return N.rect(t,c)},r}p(Td,"labelRect");async function Bd(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n}=await Z(e,t,X(t)),o=Math.max(n.width+(t.padding??0),(t==null?void 0:t.width)??0),s=Math.max(n.height+(t.padding??0),(t==null?void 0:t.height)??0),c=[{x:0,y:0},{x:o+3*s/6,y:0},{x:o,y:-s},{x:-(3*s)/6,y:-s}];let l;const{cssStyles:h}=t;if(t.look==="handDrawn"){const u=W.svg(a),f=H(t,{}),d=rt(c),g=u.path(d,f);l=a.insert(()=>g,":first-child").attr("transform",`translate(${-o/2}, ${s/2})`),h&&l.attr("style",h)}else l=ge(a,o,s,c);return i&&l.attr("style",i),t.width=o,t.height=s,V(t,l),t.intersect=function(u){return N.polygon(t,c,u)},a}p(Bd,"lean_left");async function Ld(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n}=await Z(e,t,X(t)),o=Math.max(n.width+(t.padding??0),(t==null?void 0:t.width)??0),s=Math.max(n.height+(t.padding??0),(t==null?void 0:t.height)??0),c=[{x:-3*s/6,y:0},{x:o,y:0},{x:o+3*s/6,y:-s},{x:0,y:-s}];let l;const{cssStyles:h}=t;if(t.look==="handDrawn"){const u=W.svg(a),f=H(t,{}),d=rt(c),g=u.path(d,f);l=a.insert(()=>g,":first-child").attr("transform",`translate(${-o/2}, ${s/2})`),h&&l.attr("style",h)}else l=ge(a,o,s,c);return i&&l.attr("style",i),t.width=o,t.height=s,V(t,l),t.intersect=function(u){return N.polygon(t,c,u)},a}p(Ld,"lean_right");function Md(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.label="",t.labelStyle=r;const a=e.insert("g").attr("class",X(t)).attr("id",t.domId??t.id),{cssStyles:n}=t,o=Math.max(35,(t==null?void 0:t.width)??0),s=Math.max(35,(t==null?void 0:t.height)??0),c=7,l=[{x:o,y:0},{x:0,y:s+c/2},{x:o-2*c,y:s+c/2},{x:0,y:2*s},{x:o,y:s-c/2},{x:2*c,y:s-c/2}],h=W.svg(a),u=H(t,{});t.look!=="handDrawn"&&(u.roughness=0,u.fillStyle="solid");const f=rt(l),d=h.path(f,u),g=a.insert(()=>d,":first-child");return n&&t.look!=="handDrawn"&&g.selectAll("path").attr("style",n),i&&t.look!=="handDrawn"&&g.selectAll("path").attr("style",i),g.attr("transform",`translate(-${o/2},${-s})`),V(t,g),t.intersect=function(m){return E.info("lightningBolt intersect",t,m),N.polygon(t,l,m)},a}p(Md,"lightningBolt");var kk=p((e,t,r,i,a,n,o)=>[`M${e},${t+n}`,`a${a},${n} 0,0,0 ${r},0`,`a${a},${n} 0,0,0 ${-r},0`,`l0,${i}`,`a${a},${n} 0,0,0 ${r},0`,`l0,${-i}`,`M${e},${t+n+o}`,`a${a},${n} 0,0,0 ${r},0`].join(" "),"createCylinderPathD"),wk=p((e,t,r,i,a,n,o)=>[`M${e},${t+n}`,`M${e+r},${t+n}`,`a${a},${n} 0,0,0 ${-r},0`,`l0,${i}`,`a${a},${n} 0,0,0 ${r},0`,`l0,${-i}`,`M${e},${t+n+o}`,`a${a},${n} 0,0,0 ${r},0`].join(" "),"createOuterCylinderPathD"),vk=p((e,t,r,i,a,n)=>[`M${e-r/2},${-i/2}`,`a${a},${n} 0,0,0 ${r},0`].join(" "),"createInnerCylinderPathD");async function $d(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n,label:o}=await Z(e,t,X(t)),s=Math.max(n.width+(t.padding??0),t.width??0),c=s/2,l=c/(2.5+s/50),h=Math.max(n.height+l+(t.padding??0),t.height??0),u=h*.1;let f;const{cssStyles:d}=t;if(t.look==="handDrawn"){const g=W.svg(a),m=wk(0,0,s,h,c,l,u),y=vk(0,l,s,h,c,l),x=H(t,{}),b=g.path(m,x),k=g.path(y,x);a.insert(()=>k,":first-child").attr("class","line"),f=a.insert(()=>b,":first-child"),f.attr("class","basic label-container"),d&&f.attr("style",d)}else{const g=kk(0,0,s,h,c,l,u);f=a.insert("path",":first-child").attr("d",g).attr("class","basic label-container").attr("style",$t(d)).attr("style",i)}return f.attr("label-offset-y",l),f.attr("transform",`translate(${-s/2}, ${-(h/2+l)})`),V(t,f),o.attr("transform",`translate(${-(n.width/2)-(n.x-(n.left??0))}, ${-(n.height/2)+l-(n.y-(n.top??0))})`),t.intersect=function(g){const m=N.rect(t,g),y=m.x-(t.x??0);if(c!=0&&(Math.abs(y)<(t.width??0)/2||Math.abs(y)==(t.width??0)/2&&Math.abs(m.y-(t.y??0))>(t.height??0)/2-l)){let x=l*l*(1-y*y/(c*c));x>0&&(x=Math.sqrt(x)),x=l-x,g.y-(t.y??0)>0&&(x=-x),m.y+=x}return m},a}p($d,"linedCylinder");async function Ad(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n,label:o}=await Z(e,t,X(t)),s=Math.max(n.width+(t.padding??0)*2,(t==null?void 0:t.width)??0),c=Math.max(n.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),l=c/4,h=c+l,{cssStyles:u}=t,f=W.svg(a),d=H(t,{});t.look!=="handDrawn"&&(d.roughness=0,d.fillStyle="solid");const g=[{x:-s/2-s/2*.1,y:-h/2},{x:-s/2-s/2*.1,y:h/2},...ve(-s/2-s/2*.1,h/2,s/2+s/2*.1,h/2,l,.8),{x:s/2+s/2*.1,y:-h/2},{x:-s/2-s/2*.1,y:-h/2},{x:-s/2,y:-h/2},{x:-s/2,y:h/2*1.1},{x:-s/2,y:-h/2}],m=f.polygon(g.map(x=>[x.x,x.y]),d),y=a.insert(()=>m,":first-child");return y.attr("class","basic label-container"),u&&t.look!=="handDrawn"&&y.selectAll("path").attr("style",u),i&&t.look!=="handDrawn"&&y.selectAll("path").attr("style",i),y.attr("transform",`translate(0,${-l/2})`),o.attr("transform",`translate(${-s/2+(t.padding??0)+s/2*.1/2-(n.x-(n.left??0))},${-c/2+(t.padding??0)-l/2-(n.y-(n.top??0))})`),V(t,y),t.intersect=function(x){return N.polygon(t,g,x)},a}p(Ad,"linedWaveEdgedRect");async function Fd(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n,label:o}=await Z(e,t,X(t)),s=Math.max(n.width+(t.padding??0)*2,(t==null?void 0:t.width)??0),c=Math.max(n.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),l=5,h=-s/2,u=-c/2,{cssStyles:f}=t,d=W.svg(a),g=H(t,{}),m=[{x:h-l,y:u+l},{x:h-l,y:u+c+l},{x:h+s-l,y:u+c+l},{x:h+s-l,y:u+c},{x:h+s,y:u+c},{x:h+s,y:u+c-l},{x:h+s+l,y:u+c-l},{x:h+s+l,y:u-l},{x:h+l,y:u-l},{x:h+l,y:u},{x:h,y:u},{x:h,y:u+l}],y=[{x:h,y:u+l},{x:h+s-l,y:u+l},{x:h+s-l,y:u+c},{x:h+s,y:u+c},{x:h+s,y:u},{x:h,y:u}];t.look!=="handDrawn"&&(g.roughness=0,g.fillStyle="solid");const x=rt(m),b=d.path(x,g),k=rt(y),S=d.path(k,{...g,fill:"none"}),v=a.insert(()=>S,":first-child");return v.insert(()=>b,":first-child"),v.attr("class","basic label-container"),f&&t.look!=="handDrawn"&&v.selectAll("path").attr("style",f),i&&t.look!=="handDrawn"&&v.selectAll("path").attr("style",i),o.attr("transform",`translate(${-(n.width/2)-l-(n.x-(n.left??0))}, ${-(n.height/2)+l-(n.y-(n.top??0))})`),V(t,v),t.intersect=function(C){return N.polygon(t,m,C)},a}p(Fd,"multiRect");async function Ed(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n,label:o}=await Z(e,t,X(t)),s=Math.max(n.width+(t.padding??0)*2,(t==null?void 0:t.width)??0),c=Math.max(n.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),l=c/4,h=c+l,u=-s/2,f=-h/2,d=5,{cssStyles:g}=t,m=ve(u-d,f+h+d,u+s-d,f+h+d,l,.8),y=m==null?void 0:m[m.length-1],x=[{x:u-d,y:f+d},{x:u-d,y:f+h+d},...m,{x:u+s-d,y:y.y-d},{x:u+s,y:y.y-d},{x:u+s,y:y.y-2*d},{x:u+s+d,y:y.y-2*d},{x:u+s+d,y:f-d},{x:u+d,y:f-d},{x:u+d,y:f},{x:u,y:f},{x:u,y:f+d}],b=[{x:u,y:f+d},{x:u+s-d,y:f+d},{x:u+s-d,y:y.y-d},{x:u+s,y:y.y-d},{x:u+s,y:f},{x:u,y:f}],k=W.svg(a),S=H(t,{});t.look!=="handDrawn"&&(S.roughness=0,S.fillStyle="solid");const v=rt(x),C=k.path(v,S),_=rt(b),A=k.path(_,S),I=a.insert(()=>C,":first-child");return I.insert(()=>A),I.attr("class","basic label-container"),g&&t.look!=="handDrawn"&&I.selectAll("path").attr("style",g),i&&t.look!=="handDrawn"&&I.selectAll("path").attr("style",i),I.attr("transform",`translate(0,${-l/2})`),o.attr("transform",`translate(${-(n.width/2)-d-(n.x-(n.left??0))}, ${-(n.height/2)+d-l/2-(n.y-(n.top??0))})`),V(t,I),t.intersect=function(O){return N.polygon(t,x,O)},a}p(Ed,"multiWaveEdgedRectangle");async function Dd(e,t,{config:{themeVariables:r}}){const{labelStyles:i,nodeStyles:a}=j(t);t.labelStyle=i,t.useHtmlLabels||At(Lt())||(t.centerLabel=!0);const{shapeSvg:o,bbox:s,label:c}=await Z(e,t,X(t)),l=Math.max(s.width+(t.padding??0)*2,(t==null?void 0:t.width)??0),h=Math.max(s.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),u=-l/2,f=-h/2,{cssStyles:d}=t,g=W.svg(o),m=H(t,{fill:r.noteBkgColor,stroke:r.noteBorderColor});t.look!=="handDrawn"&&(m.roughness=0,m.fillStyle="solid");const y=g.rectangle(u,f,l,h,m),x=o.insert(()=>y,":first-child");return x.attr("class","basic label-container"),d&&t.look!=="handDrawn"&&x.selectAll("path").attr("style",d),a&&t.look!=="handDrawn"&&x.selectAll("path").attr("style",a),c.attr("transform",`translate(${-s.width/2-(s.x-(s.left??0))}, ${-(s.height/2)-(s.y-(s.top??0))})`),V(t,x),t.intersect=function(b){return N.rect(t,b)},o}p(Dd,"note");var _k=p((e,t,r)=>[`M${e+r/2},${t}`,`L${e+r},${t-r/2}`,`L${e+r/2},${t-r}`,`L${e},${t-r/2}`,"Z"].join(" "),"createDecisionBoxPathD");async function Od(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n}=await Z(e,t,X(t)),o=n.width+t.padding,s=n.height+t.padding,c=o+s,l=.5,h=[{x:c/2,y:0},{x:c,y:-c/2},{x:c/2,y:-c},{x:0,y:-c/2}];let u;const{cssStyles:f}=t;if(t.look==="handDrawn"){const d=W.svg(a),g=H(t,{}),m=_k(0,0,c),y=d.path(m,g);u=a.insert(()=>y,":first-child").attr("transform",`translate(${-c/2+l}, ${c/2})`),f&&u.attr("style",f)}else u=ge(a,c,c,h),u.attr("transform",`translate(${-c/2+l}, ${c/2})`);return i&&u.attr("style",i),V(t,u),t.calcIntersect=function(d,g){const m=d.width,y=[{x:m/2,y:0},{x:m,y:-m/2},{x:m/2,y:-m},{x:0,y:-m/2}],x=N.polygon(d,y,g);return{x:x.x-.5,y:x.y-.5}},t.intersect=function(d){return this.calcIntersect(t,d)},a}p(Od,"question");async function Id(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n,label:o}=await Z(e,t,X(t)),s=Math.max(n.width+(t.padding??0),(t==null?void 0:t.width)??0),c=Math.max(n.height+(t.padding??0),(t==null?void 0:t.height)??0),l=-s/2,h=-c/2,u=h/2,f=[{x:l+u,y:h},{x:l,y:0},{x:l+u,y:-h},{x:-l,y:-h},{x:-l,y:h}],{cssStyles:d}=t,g=W.svg(a),m=H(t,{});t.look!=="handDrawn"&&(m.roughness=0,m.fillStyle="solid");const y=rt(f),x=g.path(y,m),b=a.insert(()=>x,":first-child");return b.attr("class","basic label-container"),d&&t.look!=="handDrawn"&&b.selectAll("path").attr("style",d),i&&t.look!=="handDrawn"&&b.selectAll("path").attr("style",i),b.attr("transform",`translate(${-u/2},0)`),o.attr("transform",`translate(${-u/2-n.width/2-(n.x-(n.left??0))}, ${-(n.height/2)-(n.y-(n.top??0))})`),V(t,b),t.intersect=function(k){return N.polygon(t,f,k)},a}p(Id,"rect_left_inv_arrow");async function Rd(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;let a;t.cssClasses?a="node "+t.cssClasses:a="node default";const n=e.insert("g").attr("class",a).attr("id",t.domId||t.id),o=n.insert("g"),s=n.insert("g").attr("class","label").attr("style",i),c=t.description,l=t.label,h=await xe(s,l,t.labelStyle,!0,!0);let u={width:0,height:0};if(At(st())){const A=h.children[0],I=tt(h);u=A.getBoundingClientRect(),I.attr("width",u.width),I.attr("height",u.height)}E.info("Text 2",c);const f=c||[],d=h.getBBox(),g=await xe(s,Array.isArray(f)?f.join("<br/>"):f,t.labelStyle,!0,!0),m=g.children[0],y=tt(g);u=m.getBoundingClientRect(),y.attr("width",u.width),y.attr("height",u.height);const x=(t.padding||0)/2;tt(g).attr("transform","translate( "+(u.width>d.width?0:(d.width-u.width)/2)+", "+(d.height+x+5)+")"),tt(h).attr("transform","translate( "+(u.width<d.width?0:-(d.width-u.width)/2)+", 0)"),u=s.node().getBBox(),s.attr("transform","translate("+-u.width/2+", "+(-u.height/2-x+3)+")");const b=u.width+(t.padding||0),k=u.height+(t.padding||0),S=-u.width/2-x,v=-u.height/2-x;let C,_;if(t.look==="handDrawn"){const A=W.svg(n),I=H(t,{}),O=A.path(Te(S,v,b,k,t.rx||0),I),F=A.line(-u.width/2-x,-u.height/2-x+d.height+x,u.width/2+x,-u.height/2-x+d.height+x,I);_=n.insert(()=>(E.debug("Rough node insert CXC",O),F),":first-child"),C=n.insert(()=>(E.debug("Rough node insert CXC",O),O),":first-child")}else C=o.insert("rect",":first-child"),_=o.insert("line"),C.attr("class","outer title-state").attr("style",i).attr("x",-u.width/2-x).attr("y",-u.height/2-x).attr("width",u.width+(t.padding||0)).attr("height",u.height+(t.padding||0)),_.attr("class","divider").attr("x1",-u.width/2-x).attr("x2",u.width/2+x).attr("y1",-u.height/2-x+d.height+x).attr("y2",-u.height/2-x+d.height+x);return V(t,C),t.intersect=function(A){return N.rect(t,A)},n}p(Rd,"rectWithTitle");async function Pd(e,t){const r={rx:5,ry:5,labelPaddingX:((t==null?void 0:t.padding)||0)*1,labelPaddingY:((t==null?void 0:t.padding)||0)*1};return hi(e,t,r)}p(Pd,"roundedRect");async function Nd(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n,label:o}=await Z(e,t,X(t)),s=(t==null?void 0:t.padding)??0,c=Math.max(n.width+(t.padding??0)*2,(t==null?void 0:t.width)??0),l=Math.max(n.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),h=-n.width/2-s,u=-n.height/2-s,{cssStyles:f}=t,d=W.svg(a),g=H(t,{});t.look!=="handDrawn"&&(g.roughness=0,g.fillStyle="solid");const m=[{x:h,y:u},{x:h+c+8,y:u},{x:h+c+8,y:u+l},{x:h-8,y:u+l},{x:h-8,y:u},{x:h,y:u},{x:h,y:u+l}],y=d.polygon(m.map(b=>[b.x,b.y]),g),x=a.insert(()=>y,":first-child");return x.attr("class","basic label-container").attr("style",$t(f)),i&&t.look!=="handDrawn"&&x.selectAll("path").attr("style",i),f&&t.look!=="handDrawn"&&x.selectAll("path").attr("style",i),o.attr("transform",`translate(${-c/2+4+(t.padding??0)-(n.x-(n.left??0))},${-l/2+(t.padding??0)-(n.y-(n.top??0))})`),V(t,x),t.intersect=function(b){return N.rect(t,b)},a}p(Nd,"shadedProcess");async function zd(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n,label:o}=await Z(e,t,X(t)),s=Math.max(n.width+(t.padding??0)*2,(t==null?void 0:t.width)??0),c=Math.max(n.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),l=-s/2,h=-c/2,{cssStyles:u}=t,f=W.svg(a),d=H(t,{});t.look!=="handDrawn"&&(d.roughness=0,d.fillStyle="solid");const g=[{x:l,y:h},{x:l,y:h+c},{x:l+s,y:h+c},{x:l+s,y:h-c/2}],m=rt(g),y=f.path(m,d),x=a.insert(()=>y,":first-child");return x.attr("class","basic label-container"),u&&t.look!=="handDrawn"&&x.selectChildren("path").attr("style",u),i&&t.look!=="handDrawn"&&x.selectChildren("path").attr("style",i),x.attr("transform",`translate(0, ${c/4})`),o.attr("transform",`translate(${-s/2+(t.padding??0)-(n.x-(n.left??0))}, ${-c/4+(t.padding??0)-(n.y-(n.top??0))})`),V(t,x),t.intersect=function(b){return N.polygon(t,g,b)},a}p(zd,"slopedRect");async function qd(e,t){const r={rx:0,ry:0,labelPaddingX:t.labelPaddingX??((t==null?void 0:t.padding)||0)*2,labelPaddingY:((t==null?void 0:t.padding)||0)*1};return hi(e,t,r)}p(qd,"squareRect");async function Wd(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n}=await Z(e,t,X(t)),o=n.height+t.padding,s=n.width+o/4+t.padding,c=o/2,{cssStyles:l}=t,h=W.svg(a),u=H(t,{});t.look!=="handDrawn"&&(u.roughness=0,u.fillStyle="solid");const f=[{x:-s/2+c,y:-o/2},{x:s/2-c,y:-o/2},...Kr(-s/2+c,0,c,50,90,270),{x:s/2-c,y:o/2},...Kr(s/2-c,0,c,50,270,450)],d=rt(f),g=h.path(d,u),m=a.insert(()=>g,":first-child");return m.attr("class","basic label-container outer-path"),l&&t.look!=="handDrawn"&&m.selectChildren("path").attr("style",l),i&&t.look!=="handDrawn"&&m.selectChildren("path").attr("style",i),V(t,m),t.intersect=function(y){return N.polygon(t,f,y)},a}p(Wd,"stadium");async function Hd(e,t){return hi(e,t,{rx:5,ry:5})}p(Hd,"state");function jd(e,t,{config:{themeVariables:r}}){const{labelStyles:i,nodeStyles:a}=j(t);t.labelStyle=i;const{cssStyles:n}=t,{lineColor:o,stateBorder:s,nodeBorder:c}=r,l=e.insert("g").attr("class","node default").attr("id",t.domId||t.id),h=W.svg(l),u=H(t,{});t.look!=="handDrawn"&&(u.roughness=0,u.fillStyle="solid");const f=h.circle(0,0,14,{...u,stroke:o,strokeWidth:2}),d=s??c,g=h.circle(0,0,5,{...u,fill:d,stroke:d,strokeWidth:2,fillStyle:"solid"}),m=l.insert(()=>f,":first-child");return m.insert(()=>g),n&&m.selectAll("path").attr("style",n),a&&m.selectAll("path").attr("style",a),V(t,m),t.intersect=function(y){return N.circle(t,7,y)},l}p(jd,"stateEnd");function Yd(e,t,{config:{themeVariables:r}}){const{lineColor:i}=r,a=e.insert("g").attr("class","node default").attr("id",t.domId||t.id);let n;if(t.look==="handDrawn"){const s=W.svg(a).circle(0,0,14,E2(i));n=a.insert(()=>s),n.attr("class","state-start").attr("r",7).attr("width",14).attr("height",14)}else n=a.insert("circle",":first-child"),n.attr("class","state-start").attr("r",7).attr("width",14).attr("height",14);return V(t,n),t.intersect=function(o){return N.circle(t,7,o)},a}p(Yd,"stateStart");async function Vd(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n}=await Z(e,t,X(t)),o=((t==null?void 0:t.padding)||0)/2,s=n.width+t.padding,c=n.height+t.padding,l=-n.width/2-o,h=-n.height/2-o,u=[{x:0,y:0},{x:s,y:0},{x:s,y:-c},{x:0,y:-c},{x:0,y:0},{x:-8,y:0},{x:s+8,y:0},{x:s+8,y:-c},{x:-8,y:-c},{x:-8,y:0}];if(t.look==="handDrawn"){const f=W.svg(a),d=H(t,{}),g=f.rectangle(l-8,h,s+16,c,d),m=f.line(l,h,l,h+c,d),y=f.line(l+s,h,l+s,h+c,d);a.insert(()=>m,":first-child"),a.insert(()=>y,":first-child");const x=a.insert(()=>g,":first-child"),{cssStyles:b}=t;x.attr("class","basic label-container").attr("style",$t(b)),V(t,x)}else{const f=ge(a,s,c,u);i&&f.attr("style",i),V(t,f)}return t.intersect=function(f){return N.polygon(t,u,f)},a}p(Vd,"subroutine");async function Gd(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n}=await Z(e,t,X(t)),o=Math.max(n.width+(t.padding??0)*2,(t==null?void 0:t.width)??0),s=Math.max(n.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),c=-o/2,l=-s/2,h=.2*s,u=.2*s,{cssStyles:f}=t,d=W.svg(a),g=H(t,{}),m=[{x:c-h/2,y:l},{x:c+o+h/2,y:l},{x:c+o+h/2,y:l+s},{x:c-h/2,y:l+s}],y=[{x:c+o-h/2,y:l+s},{x:c+o+h/2,y:l+s},{x:c+o+h/2,y:l+s-u}];t.look!=="handDrawn"&&(g.roughness=0,g.fillStyle="solid");const x=rt(m),b=d.path(x,g),k=rt(y),S=d.path(k,{...g,fillStyle:"solid"}),v=a.insert(()=>S,":first-child");return v.insert(()=>b,":first-child"),v.attr("class","basic label-container"),f&&t.look!=="handDrawn"&&v.selectAll("path").attr("style",f),i&&t.look!=="handDrawn"&&v.selectAll("path").attr("style",i),V(t,v),t.intersect=function(C){return N.polygon(t,m,C)},a}p(Gd,"taggedRect");async function Ud(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n,label:o}=await Z(e,t,X(t)),s=Math.max(n.width+(t.padding??0)*2,(t==null?void 0:t.width)??0),c=Math.max(n.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),l=c/4,h=.2*s,u=.2*c,f=c+l,{cssStyles:d}=t,g=W.svg(a),m=H(t,{});t.look!=="handDrawn"&&(m.roughness=0,m.fillStyle="solid");const y=[{x:-s/2-s/2*.1,y:f/2},...ve(-s/2-s/2*.1,f/2,s/2+s/2*.1,f/2,l,.8),{x:s/2+s/2*.1,y:-f/2},{x:-s/2-s/2*.1,y:-f/2}],x=-s/2+s/2*.1,b=-f/2-u*.4,k=[{x:x+s-h,y:(b+c)*1.4},{x:x+s,y:b+c-u},{x:x+s,y:(b+c)*.9},...ve(x+s,(b+c)*1.3,x+s-h,(b+c)*1.5,-c*.03,.5)],S=rt(y),v=g.path(S,m),C=rt(k),_=g.path(C,{...m,fillStyle:"solid"}),A=a.insert(()=>_,":first-child");return A.insert(()=>v,":first-child"),A.attr("class","basic label-container"),d&&t.look!=="handDrawn"&&A.selectAll("path").attr("style",d),i&&t.look!=="handDrawn"&&A.selectAll("path").attr("style",i),A.attr("transform",`translate(0,${-l/2})`),o.attr("transform",`translate(${-s/2+(t.padding??0)-(n.x-(n.left??0))},${-c/2+(t.padding??0)-l/2-(n.y-(n.top??0))})`),V(t,A),t.intersect=function(I){return N.polygon(t,y,I)},a}p(Ud,"taggedWaveEdgedRectangle");async function Xd(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n}=await Z(e,t,X(t)),o=Math.max(n.width+t.padding,(t==null?void 0:t.width)||0),s=Math.max(n.height+t.padding,(t==null?void 0:t.height)||0),c=-o/2,l=-s/2,h=a.insert("rect",":first-child");return h.attr("class","text").attr("style",i).attr("rx",0).attr("ry",0).attr("x",c).attr("y",l).attr("width",o).attr("height",s),V(t,h),t.intersect=function(u){return N.rect(t,u)},a}p(Xd,"text");var Sk=p((e,t,r,i,a,n)=>`M${e},${t}
|
|
187
|
+
a${a},${n} 0,0,1 0,${-i}
|
|
188
|
+
l${r},0
|
|
189
|
+
a${a},${n} 0,0,1 0,${i}
|
|
190
|
+
M${r},${-i}
|
|
191
|
+
a${a},${n} 0,0,0 0,${i}
|
|
192
|
+
l${-r},0`,"createCylinderPathD"),Tk=p((e,t,r,i,a,n)=>[`M${e},${t}`,`M${e+r},${t}`,`a${a},${n} 0,0,0 0,${-i}`,`l${-r},0`,`a${a},${n} 0,0,0 0,${i}`,`l${r},0`].join(" "),"createOuterCylinderPathD"),Bk=p((e,t,r,i,a,n)=>[`M${e+r/2},${-i/2}`,`a${a},${n} 0,0,0 0,${i}`].join(" "),"createInnerCylinderPathD");async function Zd(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n,label:o,halfPadding:s}=await Z(e,t,X(t)),c=t.look==="neo"?s*2:s,l=n.height+c,h=l/2,u=h/(2.5+l/50),f=n.width+u+c,{cssStyles:d}=t;let g;if(t.look==="handDrawn"){const m=W.svg(a),y=Tk(0,0,f,l,u,h),x=Bk(0,0,f,l,u,h),b=m.path(y,H(t,{})),k=m.path(x,H(t,{fill:"none"}));g=a.insert(()=>k,":first-child"),g=a.insert(()=>b,":first-child"),g.attr("class","basic label-container"),d&&g.attr("style",d)}else{const m=Sk(0,0,f,l,u,h);g=a.insert("path",":first-child").attr("d",m).attr("class","basic label-container").attr("style",$t(d)).attr("style",i),g.attr("class","basic label-container"),d&&g.selectAll("path").attr("style",d),i&&g.selectAll("path").attr("style",i)}return g.attr("label-offset-x",u),g.attr("transform",`translate(${-f/2}, ${l/2} )`),o.attr("transform",`translate(${-(n.width/2)-u-(n.x-(n.left??0))}, ${-(n.height/2)-(n.y-(n.top??0))})`),V(t,g),t.intersect=function(m){const y=N.rect(t,m),x=y.y-(t.y??0);if(h!=0&&(Math.abs(x)<(t.height??0)/2||Math.abs(x)==(t.height??0)/2&&Math.abs(y.x-(t.x??0))>(t.width??0)/2-u)){let b=u*u*(1-x*x/(h*h));b!=0&&(b=Math.sqrt(Math.abs(b))),b=u-b,m.x-(t.x??0)>0&&(b=-b),y.x+=b}return y},a}p(Zd,"tiltedCylinder");async function Kd(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n}=await Z(e,t,X(t)),o=n.width+t.padding,s=n.height+t.padding,c=[{x:-3*s/6,y:0},{x:o+3*s/6,y:0},{x:o,y:-s},{x:0,y:-s}];let l;const{cssStyles:h}=t;if(t.look==="handDrawn"){const u=W.svg(a),f=H(t,{}),d=rt(c),g=u.path(d,f);l=a.insert(()=>g,":first-child").attr("transform",`translate(${-o/2}, ${s/2})`),h&&l.attr("style",h)}else l=ge(a,o,s,c);return i&&l.attr("style",i),t.width=o,t.height=s,V(t,l),t.intersect=function(u){return N.polygon(t,c,u)},a}p(Kd,"trapezoid");async function Qd(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n}=await Z(e,t,X(t)),o=60,s=20,c=Math.max(o,n.width+(t.padding??0)*2,(t==null?void 0:t.width)??0),l=Math.max(s,n.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),{cssStyles:h}=t,u=W.svg(a),f=H(t,{});t.look!=="handDrawn"&&(f.roughness=0,f.fillStyle="solid");const d=[{x:-c/2*.8,y:-l/2},{x:c/2*.8,y:-l/2},{x:c/2,y:-l/2*.6},{x:c/2,y:l/2},{x:-c/2,y:l/2},{x:-c/2,y:-l/2*.6}],g=rt(d),m=u.path(g,f),y=a.insert(()=>m,":first-child");return y.attr("class","basic label-container"),h&&t.look!=="handDrawn"&&y.selectChildren("path").attr("style",h),i&&t.look!=="handDrawn"&&y.selectChildren("path").attr("style",i),V(t,y),t.intersect=function(x){return N.polygon(t,d,x)},a}p(Qd,"trapezoidalPentagon");async function Jd(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n,label:o}=await Z(e,t,X(t)),s=t.useHtmlLabels||At(st()),c=n.width+(t.padding??0),l=c+n.height,h=c+n.height,u=[{x:0,y:0},{x:h,y:0},{x:h/2,y:-l}],{cssStyles:f}=t,d=W.svg(a),g=H(t,{});t.look!=="handDrawn"&&(g.roughness=0,g.fillStyle="solid");const m=rt(u),y=d.path(m,g),x=a.insert(()=>y,":first-child").attr("transform",`translate(${-l/2}, ${l/2})`);return f&&t.look!=="handDrawn"&&x.selectChildren("path").attr("style",f),i&&t.look!=="handDrawn"&&x.selectChildren("path").attr("style",i),t.width=c,t.height=l,V(t,x),o.attr("transform",`translate(${-n.width/2-(n.x-(n.left??0))}, ${l/2-(n.height+(t.padding??0)/(s?2:1)-(n.y-(n.top??0)))})`),t.intersect=function(b){return E.info("Triangle intersect",t,u,b),N.polygon(t,u,b)},a}p(Jd,"triangle");async function tf(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n,label:o}=await Z(e,t,X(t)),s=Math.max(n.width+(t.padding??0)*2,(t==null?void 0:t.width)??0),c=Math.max(n.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),l=c/8,h=c+l,{cssStyles:u}=t,d=70-s,g=d>0?d/2:0,m=W.svg(a),y=H(t,{});t.look!=="handDrawn"&&(y.roughness=0,y.fillStyle="solid");const x=[{x:-s/2-g,y:h/2},...ve(-s/2-g,h/2,s/2+g,h/2,l,.8),{x:s/2+g,y:-h/2},{x:-s/2-g,y:-h/2}],b=rt(x),k=m.path(b,y),S=a.insert(()=>k,":first-child");return S.attr("class","basic label-container"),u&&t.look!=="handDrawn"&&S.selectAll("path").attr("style",u),i&&t.look!=="handDrawn"&&S.selectAll("path").attr("style",i),S.attr("transform",`translate(0,${-l/2})`),o.attr("transform",`translate(${-s/2+(t.padding??0)-(n.x-(n.left??0))},${-c/2+(t.padding??0)-l-(n.y-(n.top??0))})`),V(t,S),t.intersect=function(v){return N.polygon(t,x,v)},a}p(tf,"waveEdgedRectangle");async function ef(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n}=await Z(e,t,X(t)),o=100,s=50,c=Math.max(n.width+(t.padding??0)*2,(t==null?void 0:t.width)??0),l=Math.max(n.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),h=c/l;let u=c,f=l;u>f*h?f=u/h:u=f*h,u=Math.max(u,o),f=Math.max(f,s);const d=Math.min(f*.2,f/4),g=f+d*2,{cssStyles:m}=t,y=W.svg(a),x=H(t,{});t.look!=="handDrawn"&&(x.roughness=0,x.fillStyle="solid");const b=[{x:-u/2,y:g/2},...ve(-u/2,g/2,u/2,g/2,d,1),{x:u/2,y:-g/2},...ve(u/2,-g/2,-u/2,-g/2,d,-1)],k=rt(b),S=y.path(k,x),v=a.insert(()=>S,":first-child");return v.attr("class","basic label-container"),m&&t.look!=="handDrawn"&&v.selectAll("path").attr("style",m),i&&t.look!=="handDrawn"&&v.selectAll("path").attr("style",i),V(t,v),t.intersect=function(C){return N.polygon(t,b,C)},a}p(ef,"waveRectangle");async function rf(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n,label:o}=await Z(e,t,X(t)),s=Math.max(n.width+(t.padding??0)*2,(t==null?void 0:t.width)??0),c=Math.max(n.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),l=5,h=-s/2,u=-c/2,{cssStyles:f}=t,d=W.svg(a),g=H(t,{}),m=[{x:h-l,y:u-l},{x:h-l,y:u+c},{x:h+s,y:u+c},{x:h+s,y:u-l}],y=`M${h-l},${u-l} L${h+s},${u-l} L${h+s},${u+c} L${h-l},${u+c} L${h-l},${u-l}
|
|
193
|
+
M${h-l},${u} L${h+s},${u}
|
|
194
|
+
M${h},${u-l} L${h},${u+c}`;t.look!=="handDrawn"&&(g.roughness=0,g.fillStyle="solid");const x=d.path(y,g),b=a.insert(()=>x,":first-child");return b.attr("transform",`translate(${l/2}, ${l/2})`),b.attr("class","basic label-container"),f&&t.look!=="handDrawn"&&b.selectAll("path").attr("style",f),i&&t.look!=="handDrawn"&&b.selectAll("path").attr("style",i),o.attr("transform",`translate(${-(n.width/2)+l/2-(n.x-(n.left??0))}, ${-(n.height/2)+l/2-(n.y-(n.top??0))})`),V(t,b),t.intersect=function(k){return N.polygon(t,m,k)},a}p(rf,"windowPane");async function Rs(e,t){var ot,ht,dt,gt;const r=t;if(r.alias&&(t.label=r.alias),t.look==="handDrawn"){const{themeVariables:et}=Lt(),{background:nt}=et,xt={...t,id:t.id+"-background",look:"default",cssStyles:["stroke: none",`fill: ${nt}`]};await Rs(e,xt)}const i=Lt();t.useHtmlLabels=i.htmlLabels;let a=((ot=i.er)==null?void 0:ot.diagramPadding)??10,n=((ht=i.er)==null?void 0:ht.entityPadding)??6;const{cssStyles:o}=t,{labelStyles:s,nodeStyles:c}=j(t);if(r.attributes.length===0&&t.label){const et={rx:0,ry:0,labelPaddingX:a,labelPaddingY:a*1.5};de(t.label,i)+et.labelPaddingX*2<i.er.minEntityWidth&&(t.width=i.er.minEntityWidth);const nt=await hi(e,t,et);if(!_e(i.htmlLabels)){const xt=nt.select("text"),mt=(dt=xt.node())==null?void 0:dt.getBBox();xt.attr("transform",`translate(${-mt.width/2}, 0)`)}return nt}i.htmlLabels||(a*=1.25,n*=1.25);let l=X(t);l||(l="node default");const h=e.insert("g").attr("class",l).attr("id",t.domId||t.id),u=await Ue(h,t.label??"",i,0,0,["name"],s);u.height+=n;let f=0;const d=[],g=[];let m=0,y=0,x=0,b=0,k=!0,S=!0;for(const et of r.attributes){const nt=await Ue(h,et.type,i,0,f,["attribute-type"],s);m=Math.max(m,nt.width+a);const xt=await Ue(h,et.name,i,0,f,["attribute-name"],s);y=Math.max(y,xt.width+a);const mt=await Ue(h,et.keys.join(),i,0,f,["attribute-keys"],s);x=Math.max(x,mt.width+a);const pt=await Ue(h,et.comment,i,0,f,["attribute-comment"],s);b=Math.max(b,pt.width+a);const vt=Math.max(nt.height,xt.height,mt.height,pt.height)+n;g.push({yOffset:f,rowHeight:vt}),f+=vt}let v=4;x<=a&&(k=!1,x=0,v--),b<=a&&(S=!1,b=0,v--);const C=h.node().getBBox();if(u.width+a*2-(m+y+x+b)>0){const et=u.width+a*2-(m+y+x+b);m+=et/v,y+=et/v,x>0&&(x+=et/v),b>0&&(b+=et/v)}const _=m+y+x+b,A=W.svg(h),I=H(t,{});t.look!=="handDrawn"&&(I.roughness=0,I.fillStyle="solid");let O=0;g.length>0&&(O=g.reduce((et,nt)=>et+((nt==null?void 0:nt.rowHeight)??0),0));const F=Math.max(C.width+a*2,(t==null?void 0:t.width)||0,_),z=Math.max((O??0)+u.height,(t==null?void 0:t.height)||0),D=-F/2,M=-z/2;h.selectAll("g:not(:first-child)").each((et,nt,xt)=>{const mt=tt(xt[nt]),pt=mt.attr("transform");let vt=0,me=0;if(pt){const Ia=RegExp(/translate\(([^,]+),([^)]+)\)/).exec(pt);Ia&&(vt=parseFloat(Ia[1]),me=parseFloat(Ia[2]),mt.attr("class").includes("attribute-name")?vt+=m:mt.attr("class").includes("attribute-keys")?vt+=m+y:mt.attr("class").includes("attribute-comment")&&(vt+=m+y+x))}mt.attr("transform",`translate(${D+a/2+vt}, ${me+M+u.height+n/2})`)}),h.select(".name").attr("transform","translate("+-u.width/2+", "+(M+n/2)+")");const L=A.rectangle(D,M,F,z,I),T=h.insert(()=>L,":first-child").attr("style",o.join("")),{themeVariables:$}=Lt(),{rowEven:B,rowOdd:P,nodeBorder:Y}=$;d.push(0);for(const[et,nt]of g.entries()){const mt=(et+1)%2===0&&nt.yOffset!==0,pt=A.rectangle(D,u.height+M+(nt==null?void 0:nt.yOffset),F,nt==null?void 0:nt.rowHeight,{...I,fill:mt?B:P,stroke:Y});h.insert(()=>pt,"g.label").attr("style",o.join("")).attr("class",`row-rect-${mt?"even":"odd"}`)}let J=A.line(D,u.height+M,F+D,u.height+M,I);h.insert(()=>J).attr("class","divider"),J=A.line(m+D,u.height+M,m+D,z+M,I),h.insert(()=>J).attr("class","divider"),k&&(J=A.line(m+y+D,u.height+M,m+y+D,z+M,I),h.insert(()=>J).attr("class","divider")),S&&(J=A.line(m+y+x+D,u.height+M,m+y+x+D,z+M,I),h.insert(()=>J).attr("class","divider"));for(const et of d)J=A.line(D,u.height+M+et,F+D,u.height+M+et,I),h.insert(()=>J).attr("class","divider");if(V(t,T),c&&t.look!=="handDrawn"){const et=c.split(";"),nt=(gt=et==null?void 0:et.filter(xt=>xt.includes("stroke")))==null?void 0:gt.map(xt=>`${xt}`).join("; ");h.selectAll("path").attr("style",nt??""),h.selectAll(".row-rect-even path").attr("style",c)}return t.intersect=function(et){return N.rect(t,et)},h}p(Rs,"erBox");async function Ue(e,t,r,i=0,a=0,n=[],o=""){const s=e.insert("g").attr("class",`label ${n.join(" ")}`).attr("transform",`translate(${i}, ${a})`).attr("style",o);t!==Us(t)&&(t=Us(t),t=t.replaceAll("<","<").replaceAll(">",">"));const c=s.node().appendChild(await pe(s,t,{width:de(t,r)+100,style:o,useHtmlLabels:r.htmlLabels},r));if(t.includes("<")||t.includes(">")){let h=c.children[0];for(h.textContent=h.textContent.replaceAll("<","<").replaceAll(">",">");h.childNodes[0];)h=h.childNodes[0],h.textContent=h.textContent.replaceAll("<","<").replaceAll(">",">")}let l=c.getBBox();if(_e(r.htmlLabels)){const h=c.children[0];h.style.textAlign="start";const u=tt(c);l=h.getBoundingClientRect(),u.attr("width",l.width),u.attr("height",l.height)}return l}p(Ue,"addText");async function af(e,t,r,i,a=r.class.padding??12){const n=i?0:3,o=e.insert("g").attr("class",X(t)).attr("id",t.domId||t.id);let s=null,c=null,l=null,h=null,u=0,f=0,d=0;if(s=o.insert("g").attr("class","annotation-group text"),t.annotations.length>0){const b=t.annotations[0];await Or(s,{text:`«${b}»`},0),u=s.node().getBBox().height}c=o.insert("g").attr("class","label-group text"),await Or(c,t,0,["font-weight: bolder"]);const g=c.node().getBBox();f=g.height,l=o.insert("g").attr("class","members-group text");let m=0;for(const b of t.members){const k=await Or(l,b,m,[b.parseClassifier()]);m+=k+n}d=l.node().getBBox().height,d<=0&&(d=a/2),h=o.insert("g").attr("class","methods-group text");let y=0;for(const b of t.methods){const k=await Or(h,b,y,[b.parseClassifier()]);y+=k+n}let x=o.node().getBBox();if(s!==null){const b=s.node().getBBox();s.attr("transform",`translate(${-b.width/2})`)}return c.attr("transform",`translate(${-g.width/2}, ${u})`),x=o.node().getBBox(),l.attr("transform",`translate(0, ${u+f+a*2})`),x=o.node().getBBox(),h.attr("transform",`translate(0, ${u+f+(d?d+a*4:a*2)})`),x=o.node().getBBox(),{shapeSvg:o,bbox:x}}p(af,"textHelper");async function Or(e,t,r,i=[]){const a=e.insert("g").attr("class","label").attr("style",i.join("; ")),n=Lt();let o="useHtmlLabels"in t?t.useHtmlLabels:_e(n.htmlLabels)??!0,s="";"text"in t?s=t.text:s=t.label,!o&&s.startsWith("\\")&&(s=s.substring(1)),Hr(s)&&(o=!0);const c=await pe(a,Xn(mr(s)),{width:de(s,n)+50,classes:"markdown-node-label",useHtmlLabels:o},n);let l,h=1;if(o){const u=c.children[0],f=tt(c);h=u.innerHTML.split("<br>").length,u.innerHTML.includes("</math>")&&(h+=u.innerHTML.split("<mrow>").length-1);const d=u.getElementsByTagName("img");if(d){const g=s.replace(/<img[^>]*>/g,"").trim()==="";await Promise.all([...d].map(m=>new Promise(y=>{function x(){var b;if(m.style.display="flex",m.style.flexDirection="column",g){const k=((b=n.fontSize)==null?void 0:b.toString())??window.getComputedStyle(document.body).fontSize,v=parseInt(k,10)*5+"px";m.style.minWidth=v,m.style.maxWidth=v}else m.style.width="100%";y(m)}p(x,"setupImage"),setTimeout(()=>{m.complete&&x()}),m.addEventListener("error",x),m.addEventListener("load",x)})))}l=u.getBoundingClientRect(),f.attr("width",l.width),f.attr("height",l.height)}else{i.includes("font-weight: bolder")&&tt(c).selectAll("tspan").attr("font-weight",""),h=c.children.length;const u=c.children[0];(c.textContent===""||c.textContent.includes(">"))&&(u.textContent=s[0]+s.substring(1).replaceAll(">",">").replaceAll("<","<").trim(),s[1]===" "&&(u.textContent=u.textContent[0]+" "+u.textContent.substring(1))),u.textContent==="undefined"&&(u.textContent=""),l=c.getBBox()}return a.attr("transform","translate(0,"+(-l.height/(2*h)+r)+")"),l.height}p(Or,"addText");async function nf(e,t){var I,O;const r=st(),i=r.class.padding??12,a=i,n=t.useHtmlLabels??_e(r.htmlLabels)??!0,o=t;o.annotations=o.annotations??[],o.members=o.members??[],o.methods=o.methods??[];const{shapeSvg:s,bbox:c}=await af(e,t,r,n,a),{labelStyles:l,nodeStyles:h}=j(t);t.labelStyle=l,t.cssStyles=o.styles||"";const u=((I=o.styles)==null?void 0:I.join(";"))||h||"";t.cssStyles||(t.cssStyles=u.replaceAll("!important","").split(";"));const f=o.members.length===0&&o.methods.length===0&&!((O=r.class)!=null&&O.hideEmptyMembersBox),d=W.svg(s),g=H(t,{});t.look!=="handDrawn"&&(g.roughness=0,g.fillStyle="solid");const m=c.width;let y=c.height;o.members.length===0&&o.methods.length===0?y+=a:o.members.length>0&&o.methods.length===0&&(y+=a*2);const x=-m/2,b=-y/2,k=d.rectangle(x-i,b-i-(f?i:o.members.length===0&&o.methods.length===0?-i/2:0),m+2*i,y+2*i+(f?i*2:o.members.length===0&&o.methods.length===0?-i:0),g),S=s.insert(()=>k,":first-child");S.attr("class","basic label-container");const v=S.node().getBBox();s.selectAll(".text").each((F,z,D)=>{var P;const M=tt(D[z]),L=M.attr("transform");let T=0;if(L){const J=RegExp(/translate\(([^,]+),([^)]+)\)/).exec(L);J&&(T=parseFloat(J[2]))}let $=T+b+i-(f?i:o.members.length===0&&o.methods.length===0?-i/2:0);n||($-=4);let B=x;(M.attr("class").includes("label-group")||M.attr("class").includes("annotation-group"))&&(B=-((P=M.node())==null?void 0:P.getBBox().width)/2||0,s.selectAll("text").each(function(Y,J,ot){window.getComputedStyle(ot[J]).textAnchor==="middle"&&(B=0)})),M.attr("transform",`translate(${B}, ${$})`)});const C=s.select(".annotation-group").node().getBBox().height-(f?i/2:0)||0,_=s.select(".label-group").node().getBBox().height-(f?i/2:0)||0,A=s.select(".members-group").node().getBBox().height-(f?i/2:0)||0;if(o.members.length>0||o.methods.length>0||f){const F=d.line(v.x,C+_+b+i,v.x+v.width,C+_+b+i,g);s.insert(()=>F).attr("class","divider").attr("style",u)}if(f||o.members.length>0||o.methods.length>0){const F=d.line(v.x,C+_+A+b+a*2+i,v.x+v.width,C+_+A+b+i+a*2,g);s.insert(()=>F).attr("class","divider").attr("style",u)}if(o.look!=="handDrawn"&&s.selectAll("path").attr("style",u),S.select(":nth-child(2)").attr("style",u),s.selectAll(".divider").select("path").attr("style",u),t.labelStyle?s.selectAll("span").attr("style",t.labelStyle):s.selectAll("span").attr("style",u),!n){const F=RegExp(/color\s*:\s*([^;]*)/),z=F.exec(u);if(z){const D=z[0].replace("color","fill");s.selectAll("tspan").attr("style",D)}else if(l){const D=F.exec(l);if(D){const M=D[0].replace("color","fill");s.selectAll("tspan").attr("style",M)}}}return V(t,S),t.intersect=function(F){return N.rect(t,F)},s}p(nf,"classBox");async function sf(e,t){var C,_;const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const a=t,n=t,o=20,s=20,c="verifyMethod"in t,l=X(t),h=e.insert("g").attr("class",l).attr("id",t.domId??t.id);let u;c?u=await Jt(h,`<<${a.type}>>`,0,t.labelStyle):u=await Jt(h,"<<Element>>",0,t.labelStyle);let f=u;const d=await Jt(h,a.name,f,t.labelStyle+"; font-weight: bold;");if(f+=d+s,c){const A=await Jt(h,`${a.requirementId?`ID: ${a.requirementId}`:""}`,f,t.labelStyle);f+=A;const I=await Jt(h,`${a.text?`Text: ${a.text}`:""}`,f,t.labelStyle);f+=I;const O=await Jt(h,`${a.risk?`Risk: ${a.risk}`:""}`,f,t.labelStyle);f+=O,await Jt(h,`${a.verifyMethod?`Verification: ${a.verifyMethod}`:""}`,f,t.labelStyle)}else{const A=await Jt(h,`${n.type?`Type: ${n.type}`:""}`,f,t.labelStyle);f+=A,await Jt(h,`${n.docRef?`Doc Ref: ${n.docRef}`:""}`,f,t.labelStyle)}const g=(((C=h.node())==null?void 0:C.getBBox().width)??200)+o,m=(((_=h.node())==null?void 0:_.getBBox().height)??200)+o,y=-g/2,x=-m/2,b=W.svg(h),k=H(t,{});t.look!=="handDrawn"&&(k.roughness=0,k.fillStyle="solid");const S=b.rectangle(y,x,g,m,k),v=h.insert(()=>S,":first-child");if(v.attr("class","basic label-container").attr("style",i),h.selectAll(".label").each((A,I,O)=>{const F=tt(O[I]),z=F.attr("transform");let D=0,M=0;if(z){const B=RegExp(/translate\(([^,]+),([^)]+)\)/).exec(z);B&&(D=parseFloat(B[1]),M=parseFloat(B[2]))}const L=M-m/2;let T=y+o/2;(I===0||I===1)&&(T=D),F.attr("transform",`translate(${T}, ${L+o})`)}),f>u+d+s){const A=b.line(y,x+u+d+s,y+g,x+u+d+s,k);h.insert(()=>A).attr("style",i)}return V(t,v),t.intersect=function(A){return N.rect(t,A)},h}p(sf,"requirementBox");async function Jt(e,t,r,i=""){if(t==="")return 0;const a=e.insert("g").attr("class","label").attr("style",i),n=st(),o=n.htmlLabels??!0,s=await pe(a,Xn(mr(t)),{width:de(t,n)+50,classes:"markdown-node-label",useHtmlLabels:o,style:i},n);let c;if(o){const l=s.children[0],h=tt(s);c=l.getBoundingClientRect(),h.attr("width",c.width),h.attr("height",c.height)}else{const l=s.children[0];for(const h of l.children)h.textContent=h.textContent.replaceAll(">",">").replaceAll("<","<"),i&&h.setAttribute("style",i);c=s.getBBox(),c.height+=6}return a.attr("transform",`translate(${-c.width/2},${-c.height/2+r})`),c.height}p(Jt,"addText");var Lk=p(e=>{switch(e){case"Very High":return"red";case"High":return"orange";case"Medium":return null;case"Low":return"blue";case"Very Low":return"lightblue"}},"colorFromPriority");async function of(e,t,{config:r}){var z,D;const{labelStyles:i,nodeStyles:a}=j(t);t.labelStyle=i||"";const n=10,o=t.width;t.width=(t.width??200)-10;const{shapeSvg:s,bbox:c,label:l}=await Z(e,t,X(t)),h=t.padding||10;let u="",f;"ticket"in t&&t.ticket&&((z=r==null?void 0:r.kanban)!=null&&z.ticketBaseUrl)&&(u=(D=r==null?void 0:r.kanban)==null?void 0:D.ticketBaseUrl.replace("#TICKET#",t.ticket),f=s.insert("svg:a",":first-child").attr("class","kanban-ticket-link").attr("xlink:href",u).attr("target","_blank"));const d={useHtmlLabels:t.useHtmlLabels,labelStyle:t.labelStyle||"",width:t.width,img:t.img,padding:t.padding||8,centerLabel:!1};let g,m;f?{label:g,bbox:m}=await Va(f,"ticket"in t&&t.ticket||"",d):{label:g,bbox:m}=await Va(s,"ticket"in t&&t.ticket||"",d);const{label:y,bbox:x}=await Va(s,"assigned"in t&&t.assigned||"",d);t.width=o;const b=10,k=(t==null?void 0:t.width)||0,S=Math.max(m.height,x.height)/2,v=Math.max(c.height+b*2,(t==null?void 0:t.height)||0)+S,C=-k/2,_=-v/2;l.attr("transform","translate("+(h-k/2)+", "+(-S-c.height/2)+")"),g.attr("transform","translate("+(h-k/2)+", "+(-S+c.height/2)+")"),y.attr("transform","translate("+(h+k/2-x.width-2*n)+", "+(-S+c.height/2)+")");let A;const{rx:I,ry:O}=t,{cssStyles:F}=t;if(t.look==="handDrawn"){const M=W.svg(s),L=H(t,{}),T=I||O?M.path(Te(C,_,k,v,I||0),L):M.rectangle(C,_,k,v,L);A=s.insert(()=>T,":first-child"),A.attr("class","basic label-container").attr("style",F||null)}else{A=s.insert("rect",":first-child"),A.attr("class","basic label-container __APA__").attr("style",a).attr("rx",I??5).attr("ry",O??5).attr("x",C).attr("y",_).attr("width",k).attr("height",v);const M="priority"in t&&t.priority;if(M){const L=s.append("line"),T=C+2,$=_+Math.floor((I??0)/2),B=_+v-Math.floor((I??0)/2);L.attr("x1",T).attr("y1",$).attr("x2",T).attr("y2",B).attr("stroke-width","4").attr("stroke",Lk(M))}}return V(t,A),t.height=v,t.intersect=function(M){return N.rect(t,M)},s}p(of,"kanbanItem");async function lf(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n,halfPadding:o,label:s}=await Z(e,t,X(t)),c=n.width+10*o,l=n.height+8*o,h=.15*c,{cssStyles:u}=t,f=n.width+20,d=n.height+20,g=Math.max(c,f),m=Math.max(l,d);s.attr("transform",`translate(${-n.width/2}, ${-n.height/2})`);let y;const x=`M0 0
|
|
195
|
+
a${h},${h} 1 0,0 ${g*.25},${-1*m*.1}
|
|
196
|
+
a${h},${h} 1 0,0 ${g*.25},0
|
|
197
|
+
a${h},${h} 1 0,0 ${g*.25},0
|
|
198
|
+
a${h},${h} 1 0,0 ${g*.25},${m*.1}
|
|
199
|
+
|
|
200
|
+
a${h},${h} 1 0,0 ${g*.15},${m*.33}
|
|
201
|
+
a${h*.8},${h*.8} 1 0,0 0,${m*.34}
|
|
202
|
+
a${h},${h} 1 0,0 ${-1*g*.15},${m*.33}
|
|
203
|
+
|
|
204
|
+
a${h},${h} 1 0,0 ${-1*g*.25},${m*.15}
|
|
205
|
+
a${h},${h} 1 0,0 ${-1*g*.25},0
|
|
206
|
+
a${h},${h} 1 0,0 ${-1*g*.25},0
|
|
207
|
+
a${h},${h} 1 0,0 ${-1*g*.25},${-1*m*.15}
|
|
208
|
+
|
|
209
|
+
a${h},${h} 1 0,0 ${-1*g*.1},${-1*m*.33}
|
|
210
|
+
a${h*.8},${h*.8} 1 0,0 0,${-1*m*.34}
|
|
211
|
+
a${h},${h} 1 0,0 ${g*.1},${-1*m*.33}
|
|
212
|
+
H0 V0 Z`;if(t.look==="handDrawn"){const b=W.svg(a),k=H(t,{}),S=b.path(x,k);y=a.insert(()=>S,":first-child"),y.attr("class","basic label-container").attr("style",$t(u))}else y=a.insert("path",":first-child").attr("class","basic label-container").attr("style",i).attr("d",x);return y.attr("transform",`translate(${-g/2}, ${-m/2})`),V(t,y),t.calcIntersect=function(b,k){return N.rect(b,k)},t.intersect=function(b){return E.info("Bang intersect",t,b),N.rect(t,b)},a}p(lf,"bang");async function cf(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n,halfPadding:o,label:s}=await Z(e,t,X(t)),c=n.width+2*o,l=n.height+2*o,h=.15*c,u=.25*c,f=.35*c,d=.2*c,{cssStyles:g}=t;let m;const y=`M0 0
|
|
213
|
+
a${h},${h} 0 0,1 ${c*.25},${-1*c*.1}
|
|
214
|
+
a${f},${f} 1 0,1 ${c*.4},${-1*c*.1}
|
|
215
|
+
a${u},${u} 1 0,1 ${c*.35},${c*.2}
|
|
216
|
+
|
|
217
|
+
a${h},${h} 1 0,1 ${c*.15},${l*.35}
|
|
218
|
+
a${d},${d} 1 0,1 ${-1*c*.15},${l*.65}
|
|
219
|
+
|
|
220
|
+
a${u},${h} 1 0,1 ${-1*c*.25},${c*.15}
|
|
221
|
+
a${f},${f} 1 0,1 ${-1*c*.5},0
|
|
222
|
+
a${h},${h} 1 0,1 ${-1*c*.25},${-1*c*.15}
|
|
223
|
+
|
|
224
|
+
a${h},${h} 1 0,1 ${-1*c*.1},${-1*l*.35}
|
|
225
|
+
a${d},${d} 1 0,1 ${c*.1},${-1*l*.65}
|
|
226
|
+
H0 V0 Z`;if(t.look==="handDrawn"){const x=W.svg(a),b=H(t,{}),k=x.path(y,b);m=a.insert(()=>k,":first-child"),m.attr("class","basic label-container").attr("style",$t(g))}else m=a.insert("path",":first-child").attr("class","basic label-container").attr("style",i).attr("d",y);return s.attr("transform",`translate(${-n.width/2}, ${-n.height/2})`),m.attr("transform",`translate(${-c/2}, ${-l/2})`),V(t,m),t.calcIntersect=function(x,b){return N.rect(x,b)},t.intersect=function(x){return E.info("Cloud intersect",t,x),N.rect(t,x)},a}p(cf,"cloud");async function hf(e,t){const{labelStyles:r,nodeStyles:i}=j(t);t.labelStyle=r;const{shapeSvg:a,bbox:n,halfPadding:o,label:s}=await Z(e,t,X(t)),c=n.width+8*o,l=n.height+2*o,h=5,u=`
|
|
227
|
+
M${-c/2} ${l/2-h}
|
|
228
|
+
v${-l+2*h}
|
|
229
|
+
q0,-${h} ${h},-${h}
|
|
230
|
+
h${c-2*h}
|
|
231
|
+
q${h},0 ${h},${h}
|
|
232
|
+
v${l-2*h}
|
|
233
|
+
q0,${h} -${h},${h}
|
|
234
|
+
h${-c+2*h}
|
|
235
|
+
q-${h},0 -${h},-${h}
|
|
236
|
+
Z
|
|
237
|
+
`,f=a.append("path").attr("id","node-"+t.id).attr("class","node-bkg node-"+t.type).attr("style",i).attr("d",u);return a.append("line").attr("class","node-line-").attr("x1",-c/2).attr("y1",l/2).attr("x2",c/2).attr("y2",l/2),s.attr("transform",`translate(${-n.width/2}, ${-n.height/2})`),a.append(()=>s.node()),V(t,f),t.calcIntersect=function(d,g){return N.rect(d,g)},t.intersect=function(d){return N.rect(t,d)},a}p(hf,"defaultMindmapNode");async function uf(e,t){const r={padding:t.padding??0};return Is(e,t,r)}p(uf,"mindmapCircle");var Mk=[{semanticName:"Process",name:"Rectangle",shortName:"rect",description:"Standard process shape",aliases:["proc","process","rectangle"],internalAliases:["squareRect"],handler:qd},{semanticName:"Event",name:"Rounded Rectangle",shortName:"rounded",description:"Represents an event",aliases:["event"],internalAliases:["roundedRect"],handler:Pd},{semanticName:"Terminal Point",name:"Stadium",shortName:"stadium",description:"Terminal point",aliases:["terminal","pill"],handler:Wd},{semanticName:"Subprocess",name:"Framed Rectangle",shortName:"fr-rect",description:"Subprocess",aliases:["subprocess","subproc","framed-rectangle","subroutine"],handler:Vd},{semanticName:"Database",name:"Cylinder",shortName:"cyl",description:"Database storage",aliases:["db","database","cylinder"],handler:ud},{semanticName:"Start",name:"Circle",shortName:"circle",description:"Starting point",aliases:["circ"],handler:Is},{semanticName:"Bang",name:"Bang",shortName:"bang",description:"Bang",aliases:["bang"],handler:lf},{semanticName:"Cloud",name:"Cloud",shortName:"cloud",description:"cloud",aliases:["cloud"],handler:cf},{semanticName:"Decision",name:"Diamond",shortName:"diam",description:"Decision-making step",aliases:["decision","diamond","question"],handler:Od},{semanticName:"Prepare Conditional",name:"Hexagon",shortName:"hex",description:"Preparation or condition step",aliases:["hexagon","prepare"],handler:xd},{semanticName:"Data Input/Output",name:"Lean Right",shortName:"lean-r",description:"Represents input or output",aliases:["lean-right","in-out"],internalAliases:["lean_right"],handler:Ld},{semanticName:"Data Input/Output",name:"Lean Left",shortName:"lean-l",description:"Represents output or input",aliases:["lean-left","out-in"],internalAliases:["lean_left"],handler:Bd},{semanticName:"Priority Action",name:"Trapezoid Base Bottom",shortName:"trap-b",description:"Priority action",aliases:["priority","trapezoid-bottom","trapezoid"],handler:Kd},{semanticName:"Manual Operation",name:"Trapezoid Base Top",shortName:"trap-t",description:"Represents a manual task",aliases:["manual","trapezoid-top","inv-trapezoid"],internalAliases:["inv_trapezoid"],handler:Sd},{semanticName:"Stop",name:"Double Circle",shortName:"dbl-circ",description:"Represents a stop point",aliases:["double-circle"],internalAliases:["doublecircle"],handler:fd},{semanticName:"Text Block",name:"Text Block",shortName:"text",description:"Text block",handler:Xd},{semanticName:"Card",name:"Notched Rectangle",shortName:"notch-rect",description:"Represents a card",aliases:["card","notched-rectangle"],handler:id},{semanticName:"Lined/Shaded Process",name:"Lined Rectangle",shortName:"lin-rect",description:"Lined process shape",aliases:["lined-rectangle","lined-process","lin-proc","shaded-process"],handler:Nd},{semanticName:"Start",name:"Small Circle",shortName:"sm-circ",description:"Small starting point",aliases:["start","small-circle"],internalAliases:["stateStart"],handler:Yd},{semanticName:"Stop",name:"Framed Circle",shortName:"fr-circ",description:"Stop point",aliases:["stop","framed-circle"],internalAliases:["stateEnd"],handler:jd},{semanticName:"Fork/Join",name:"Filled Rectangle",shortName:"fork",description:"Fork or join in process flow",aliases:["join"],internalAliases:["forkJoin"],handler:md},{semanticName:"Collate",name:"Hourglass",shortName:"hourglass",description:"Represents a collate operation",aliases:["hourglass","collate"],handler:bd},{semanticName:"Comment",name:"Curly Brace",shortName:"brace",description:"Adds a comment",aliases:["comment","brace-l"],handler:od},{semanticName:"Comment Right",name:"Curly Brace",shortName:"brace-r",description:"Adds a comment",handler:ld},{semanticName:"Comment with braces on both sides",name:"Curly Braces",shortName:"braces",description:"Adds a comment",handler:cd},{semanticName:"Com Link",name:"Lightning Bolt",shortName:"bolt",description:"Communication link",aliases:["com-link","lightning-bolt"],handler:Md},{semanticName:"Document",name:"Document",shortName:"doc",description:"Represents a document",aliases:["doc","document"],handler:tf},{semanticName:"Delay",name:"Half-Rounded Rectangle",shortName:"delay",description:"Represents a delay",aliases:["half-rounded-rectangle"],handler:yd},{semanticName:"Direct Access Storage",name:"Horizontal Cylinder",shortName:"h-cyl",description:"Direct access storage",aliases:["das","horizontal-cylinder"],handler:Zd},{semanticName:"Disk Storage",name:"Lined Cylinder",shortName:"lin-cyl",description:"Disk storage",aliases:["disk","lined-cylinder"],handler:$d},{semanticName:"Display",name:"Curved Trapezoid",shortName:"curv-trap",description:"Represents a display",aliases:["curved-trapezoid","display"],handler:hd},{semanticName:"Divided Process",name:"Divided Rectangle",shortName:"div-rect",description:"Divided process shape",aliases:["div-proc","divided-rectangle","divided-process"],handler:dd},{semanticName:"Extract",name:"Triangle",shortName:"tri",description:"Extraction process",aliases:["extract","triangle"],handler:Jd},{semanticName:"Internal Storage",name:"Window Pane",shortName:"win-pane",description:"Internal storage",aliases:["internal-storage","window-pane"],handler:rf},{semanticName:"Junction",name:"Filled Circle",shortName:"f-circ",description:"Junction point",aliases:["junction","filled-circle"],handler:pd},{semanticName:"Loop Limit",name:"Trapezoidal Pentagon",shortName:"notch-pent",description:"Loop limit step",aliases:["loop-limit","notched-pentagon"],handler:Qd},{semanticName:"Manual File",name:"Flipped Triangle",shortName:"flip-tri",description:"Manual file operation",aliases:["manual-file","flipped-triangle"],handler:gd},{semanticName:"Manual Input",name:"Sloped Rectangle",shortName:"sl-rect",description:"Manual input step",aliases:["manual-input","sloped-rectangle"],handler:zd},{semanticName:"Multi-Document",name:"Stacked Document",shortName:"docs",description:"Multiple documents",aliases:["documents","st-doc","stacked-document"],handler:Ed},{semanticName:"Multi-Process",name:"Stacked Rectangle",shortName:"st-rect",description:"Multiple processes",aliases:["procs","processes","stacked-rectangle"],handler:Fd},{semanticName:"Stored Data",name:"Bow Tie Rectangle",shortName:"bow-rect",description:"Stored data",aliases:["stored-data","bow-tie-rectangle"],handler:rd},{semanticName:"Summary",name:"Crossed Circle",shortName:"cross-circ",description:"Summary",aliases:["summary","crossed-circle"],handler:sd},{semanticName:"Tagged Document",name:"Tagged Document",shortName:"tag-doc",description:"Tagged document",aliases:["tag-doc","tagged-document"],handler:Ud},{semanticName:"Tagged Process",name:"Tagged Rectangle",shortName:"tag-rect",description:"Tagged process",aliases:["tagged-rectangle","tag-proc","tagged-process"],handler:Gd},{semanticName:"Paper Tape",name:"Flag",shortName:"flag",description:"Paper tape",aliases:["paper-tape"],handler:ef},{semanticName:"Odd",name:"Odd",shortName:"odd",description:"Odd shape",internalAliases:["rect_left_inv_arrow"],handler:Id},{semanticName:"Lined Document",name:"Lined Document",shortName:"lin-doc",description:"Lined document",aliases:["lined-document"],handler:Ad}],$k=p(()=>{const t=[...Object.entries({state:Hd,choice:ad,note:Dd,rectWithTitle:Rd,labelRect:Td,iconSquare:vd,iconCircle:kd,icon:Cd,iconRounded:wd,imageSquare:_d,anchor:ed,kanbanItem:of,mindmapCircle:uf,defaultMindmapNode:hf,classBox:nf,erBox:Rs,requirementBox:sf}),...Mk.flatMap(r=>[r.shortName,..."aliases"in r?r.aliases:[],..."internalAliases"in r?r.internalAliases:[]].map(a=>[a,r.handler]))];return Object.fromEntries(t)},"generateShapeMap"),df=$k();function Ak(e){return e in df}p(Ak,"isValidShape");var Fa=new Map;async function ff(e,t,r){let i,a;t.shape==="rect"&&(t.rx&&t.ry?t.shape="roundedRect":t.shape="squareRect");const n=t.shape?df[t.shape]:void 0;if(!n)throw new Error(`No such shape: ${t.shape}. Please check your syntax.`);if(t.link){let o;r.config.securityLevel==="sandbox"?o="_top":t.linkTarget&&(o=t.linkTarget||"_blank"),i=e.insert("svg:a").attr("xlink:href",t.link).attr("target",o??null),a=await n(i,t,r)}else a=await n(e,t,r),i=a;return t.tooltip&&a.attr("title",t.tooltip),Fa.set(t.id,i),t.haveCallback&&i.attr("class",i.attr("class")+" clickable"),i}p(ff,"insertNode");var qS=p((e,t)=>{Fa.set(t.id,e)},"setNodeElem"),WS=p(()=>{Fa.clear()},"clear"),HS=p(e=>{const t=Fa.get(e.id);E.trace("Transforming node",e.diff,e,"translate("+(e.x-e.width/2-5)+", "+e.width/2+")");const r=8,i=e.diff||0;return e.clusterNode?t.attr("transform","translate("+(e.x+i-e.width/2)+", "+(e.y-e.height/2-r)+")"):t.attr("transform","translate("+e.x+", "+e.y+")"),i},"positionNode"),Fk=p((e,t,r,i,a,n)=>{t.arrowTypeStart&&jo(e,"start",t.arrowTypeStart,r,i,a,n),t.arrowTypeEnd&&jo(e,"end",t.arrowTypeEnd,r,i,a,n)},"addEdgeMarkers"),Ek={arrow_cross:{type:"cross",fill:!1},arrow_point:{type:"point",fill:!0},arrow_barb:{type:"barb",fill:!0},arrow_circle:{type:"circle",fill:!1},aggregation:{type:"aggregation",fill:!1},extension:{type:"extension",fill:!1},composition:{type:"composition",fill:!0},dependency:{type:"dependency",fill:!0},lollipop:{type:"lollipop",fill:!1},only_one:{type:"onlyOne",fill:!1},zero_or_one:{type:"zeroOrOne",fill:!1},one_or_more:{type:"oneOrMore",fill:!1},zero_or_more:{type:"zeroOrMore",fill:!1},requirement_arrow:{type:"requirement_arrow",fill:!1},requirement_contains:{type:"requirement_contains",fill:!1}},jo=p((e,t,r,i,a,n,o)=>{var u;const s=Ek[r];if(!s){E.warn(`Unknown arrow type: ${r}`);return}const c=s.type,h=`${a}_${n}-${c}${t==="start"?"Start":"End"}`;if(o&&o.trim()!==""){const f=o.replace(/[^\dA-Za-z]/g,"_"),d=`${h}_${f}`;if(!document.getElementById(d)){const g=document.getElementById(h);if(g){const m=g.cloneNode(!0);m.id=d,m.querySelectorAll("path, circle, line").forEach(x=>{x.setAttribute("stroke",o),s.fill&&x.setAttribute("fill",o)}),(u=g.parentNode)==null||u.appendChild(m)}}e.attr(`marker-${t}`,`url(${i}#${d})`)}else e.attr(`marker-${t}`,`url(${i}#${h})`)},"addEdgeMarker"),Dk=p(e=>{var t,r;return typeof e=="string"?e:(r=(t=st())==null?void 0:t.flowchart)==null?void 0:r.curve},"resolveEdgeCurveType"),ha=new Map,St=new Map,jS=p(()=>{ha.clear(),St.clear()},"clear"),Lr=p(e=>e?typeof e=="string"?e:e.reduce((t,r)=>t+";"+r,""):"","getLabelStyles"),Ok=p(async(e,t)=>{const r=st();let i=At(r);const{labelStyles:a}=j(t);t.labelStyle=a;const n=e.insert("g").attr("class","edgeLabel"),o=n.insert("g").attr("class","label").attr("data-id",t.id),s=t.labelType==="markdown",l=await pe(e,t.label,{style:Lr(t.labelStyle),useHtmlLabels:i,addSvgBackground:!0,isNode:!1,markdown:s,width:s?void 0:void 0},r);o.node().appendChild(l),E.info("abc82",t,t.labelType);let h=l.getBBox(),u=h;if(i){const d=l.children[0],g=tt(l);h=d.getBoundingClientRect(),u=h,g.attr("width",h.width),g.attr("height",h.height)}else{const d=tt(l).select("text").node();d&&typeof d.getBBox=="function"&&(u=d.getBBox())}o.attr("transform",wr(u,i)),ha.set(t.id,n),t.width=h.width,t.height=h.height;let f;if(t.startLabelLeft){const d=e.insert("g").attr("class","edgeTerminals"),g=d.insert("g").attr("class","inner"),m=await xe(g,t.startLabelLeft,Lr(t.labelStyle)||"",!1,!1);f=m;let y=m.getBBox();if(i){const x=m.children[0],b=tt(m);y=x.getBoundingClientRect(),b.attr("width",y.width),b.attr("height",y.height)}g.attr("transform",wr(y,i)),St.get(t.id)||St.set(t.id,{}),St.get(t.id).startLeft=d,Ir(f,t.startLabelLeft)}if(t.startLabelRight){const d=e.insert("g").attr("class","edgeTerminals"),g=d.insert("g").attr("class","inner"),m=await xe(g,t.startLabelRight,Lr(t.labelStyle)||"",!1,!1);f=m,g.node().appendChild(m);let y=m.getBBox();if(i){const x=m.children[0],b=tt(m);y=x.getBoundingClientRect(),b.attr("width",y.width),b.attr("height",y.height)}g.attr("transform",wr(y,i)),St.get(t.id)||St.set(t.id,{}),St.get(t.id).startRight=d,Ir(f,t.startLabelRight)}if(t.endLabelLeft){const d=e.insert("g").attr("class","edgeTerminals"),g=d.insert("g").attr("class","inner"),m=await xe(g,t.endLabelLeft,Lr(t.labelStyle)||"",!1,!1);f=m;let y=m.getBBox();if(i){const x=m.children[0],b=tt(m);y=x.getBoundingClientRect(),b.attr("width",y.width),b.attr("height",y.height)}g.attr("transform",wr(y,i)),d.node().appendChild(m),St.get(t.id)||St.set(t.id,{}),St.get(t.id).endLeft=d,Ir(f,t.endLabelLeft)}if(t.endLabelRight){const d=e.insert("g").attr("class","edgeTerminals"),g=d.insert("g").attr("class","inner"),m=await xe(g,t.endLabelRight,Lr(t.labelStyle)||"",!1,!1);f=m;let y=m.getBBox();if(i){const x=m.children[0],b=tt(m);y=x.getBoundingClientRect(),b.attr("width",y.width),b.attr("height",y.height)}g.attr("transform",wr(y,i)),d.node().appendChild(m),St.get(t.id)||St.set(t.id,{}),St.get(t.id).endRight=d,Ir(f,t.endLabelRight)}return l},"insertEdgeLabel");function Ir(e,t){At(st())&&e&&(e.style.width=t.length*9+"px",e.style.height="12px")}p(Ir,"setTerminalWidth");var Ik=p((e,t)=>{E.debug("Moving label abc88 ",e.id,e.label,ha.get(e.id),t);let r=t.updatedPath?t.updatedPath:t.originalPath;const i=st(),{subGraphTitleTotalMargin:a}=vs(i);if(e.label){const n=ha.get(e.id);let o=e.x,s=e.y;if(r){const c=Gt.calcLabelPosition(r);E.debug("Moving label "+e.label+" from (",o,",",s,") to (",c.x,",",c.y,") abc88"),t.updatedPath&&(o=c.x,s=c.y)}n.attr("transform",`translate(${o}, ${s+a/2})`)}if(e.startLabelLeft){const n=St.get(e.id).startLeft;let o=e.x,s=e.y;if(r){const c=Gt.calcTerminalLabelPosition(e.arrowTypeStart?10:0,"start_left",r);o=c.x,s=c.y}n.attr("transform",`translate(${o}, ${s})`)}if(e.startLabelRight){const n=St.get(e.id).startRight;let o=e.x,s=e.y;if(r){const c=Gt.calcTerminalLabelPosition(e.arrowTypeStart?10:0,"start_right",r);o=c.x,s=c.y}n.attr("transform",`translate(${o}, ${s})`)}if(e.endLabelLeft){const n=St.get(e.id).endLeft;let o=e.x,s=e.y;if(r){const c=Gt.calcTerminalLabelPosition(e.arrowTypeEnd?10:0,"end_left",r);o=c.x,s=c.y}n.attr("transform",`translate(${o}, ${s})`)}if(e.endLabelRight){const n=St.get(e.id).endRight;let o=e.x,s=e.y;if(r){const c=Gt.calcTerminalLabelPosition(e.arrowTypeEnd?10:0,"end_right",r);o=c.x,s=c.y}n.attr("transform",`translate(${o}, ${s})`)}},"positionEdgeLabel"),Rk=p((e,t)=>{const r=e.x,i=e.y,a=Math.abs(t.x-r),n=Math.abs(t.y-i),o=e.width/2,s=e.height/2;return a>=o||n>=s},"outsideNode"),Pk=p((e,t,r)=>{E.debug(`intersection calc abc89:
|
|
238
|
+
outsidePoint: ${JSON.stringify(t)}
|
|
239
|
+
insidePoint : ${JSON.stringify(r)}
|
|
240
|
+
node : x:${e.x} y:${e.y} w:${e.width} h:${e.height}`);const i=e.x,a=e.y,n=Math.abs(i-r.x),o=e.width/2;let s=r.x<t.x?o-n:o+n;const c=e.height/2,l=Math.abs(t.y-r.y),h=Math.abs(t.x-r.x);if(Math.abs(a-t.y)*o>Math.abs(i-t.x)*c){let u=r.y<t.y?t.y-c-a:a-c-t.y;s=h*u/l;const f={x:r.x<t.x?r.x+s:r.x-h+s,y:r.y<t.y?r.y+l-u:r.y-l+u};return s===0&&(f.x=t.x,f.y=t.y),h===0&&(f.x=t.x),l===0&&(f.y=t.y),E.debug(`abc89 top/bottom calc, Q ${l}, q ${u}, R ${h}, r ${s}`,f),f}else{r.x<t.x?s=t.x-o-i:s=i-o-t.x;let u=l*s/h,f=r.x<t.x?r.x+h-s:r.x-h+s,d=r.y<t.y?r.y+u:r.y-u;return E.debug(`sides calc abc89, Q ${l}, q ${u}, R ${h}, r ${s}`,{_x:f,_y:d}),s===0&&(f=t.x,d=t.y),h===0&&(f=t.x),l===0&&(d=t.y),{x:f,y:d}}},"intersection"),Yo=p((e,t)=>{E.warn("abc88 cutPathAtIntersect",e,t);let r=[],i=e[0],a=!1;return e.forEach(n=>{if(E.info("abc88 checking point",n,t),!Rk(t,n)&&!a){const o=Pk(t,i,n);E.debug("abc88 inside",n,i,o),E.debug("abc88 intersection",o,t);let s=!1;r.forEach(c=>{s=s||c.x===o.x&&c.y===o.y}),r.some(c=>c.x===o.x&&c.y===o.y)?E.warn("abc88 no intersect",o,r):r.push(o),a=!0}else E.warn("abc88 outside",n,i),i=n,a||r.push(n)}),E.debug("returning points",r),r},"cutPathAtIntersect");function pf(e){const t=[],r=[];for(let i=1;i<e.length-1;i++){const a=e[i-1],n=e[i],o=e[i+1];(a.x===n.x&&n.y===o.y&&Math.abs(n.x-o.x)>5&&Math.abs(n.y-a.y)>5||a.y===n.y&&n.x===o.x&&Math.abs(n.x-a.x)>5&&Math.abs(n.y-o.y)>5)&&(t.push(n),r.push(i))}return{cornerPoints:t,cornerPointPositions:r}}p(pf,"extractCornerPoints");var Vo=p(function(e,t,r){const i=t.x-e.x,a=t.y-e.y,n=Math.sqrt(i*i+a*a),o=r/n;return{x:t.x-o*i,y:t.y-o*a}},"findAdjacentPoint"),Nk=p(function(e){const{cornerPointPositions:t}=pf(e),r=[];for(let i=0;i<e.length;i++)if(t.includes(i)){const a=e[i-1],n=e[i+1],o=e[i],s=Vo(a,o,5),c=Vo(n,o,5),l=c.x-s.x,h=c.y-s.y;r.push(s);const u=Math.sqrt(2)*2;let f={x:o.x,y:o.y};if(Math.abs(n.x-a.x)>10&&Math.abs(n.y-a.y)>=10){E.debug("Corner point fixing",Math.abs(n.x-a.x),Math.abs(n.y-a.y));const d=5;o.x===s.x?f={x:l<0?s.x-d+u:s.x+d-u,y:h<0?s.y-u:s.y+u}:f={x:l<0?s.x-u:s.x+u,y:h<0?s.y-d+u:s.y+d-u}}else E.debug("Corner point skipping fixing",Math.abs(n.x-a.x),Math.abs(n.y-a.y));r.push(f,c)}else r.push(e[i]);return r},"fixCorners"),zk=p((e,t,r)=>{const i=e-t-r,a=2,n=2,o=a+n,s=Math.floor(i/o),c=Array(s).fill(`${a} ${n}`).join(" ");return`0 ${t} ${c} ${r}`},"generateDashArray"),qk=p(function(e,t,r,i,a,n,o,s=!1){var T;const{handDrawnSeed:c}=st();let l=t.points,h=!1;const u=a;var f=n;const d=[];for(const $ in t.cssCompiledStyles)fu($)||d.push(t.cssCompiledStyles[$]);E.debug("UIO intersect check",t.points,f.x,u.x),f.intersect&&u.intersect&&!s&&(l=l.slice(1,t.points.length-1),l.unshift(u.intersect(l[0])),E.debug("Last point UIO",t.start,"-->",t.end,l[l.length-1],f,f.intersect(l[l.length-1])),l.push(f.intersect(l[l.length-1])));const g=btoa(JSON.stringify(l));t.toCluster&&(E.info("to cluster abc88",r.get(t.toCluster)),l=Yo(t.points,r.get(t.toCluster).node),h=!0),t.fromCluster&&(E.debug("from cluster abc88",r.get(t.fromCluster),JSON.stringify(l,null,2)),l=Yo(l.reverse(),r.get(t.fromCluster).node).reverse(),h=!0);let m=l.filter($=>!Number.isNaN($.y));const y=Dk(t.curve);y!=="rounded"&&(m=Nk(m));let x=Ci;switch(y){case"linear":x=Ci;break;case"basis":x=Xa;break;case"cardinal":x=ic;break;case"bumpX":x=fl;break;case"bumpY":x=dl;break;case"catmullRom":x=nc;break;case"monotoneX":x=ul;break;case"monotoneY":x=hl;break;case"natural":x=cl;break;case"step":x=ll;break;case"stepAfter":x=ol;break;case"stepBefore":x=sl;break;case"rounded":x=Ci;break;default:x=Xa}const{x:b,y:k}=Rx(t),S=Cp().x(b).y(k).curve(x);let v;switch(t.thickness){case"normal":v="edge-thickness-normal";break;case"thick":v="edge-thickness-thick";break;case"invisible":v="edge-thickness-invisible";break;default:v="edge-thickness-normal"}switch(t.pattern){case"solid":v+=" edge-pattern-solid";break;case"dotted":v+=" edge-pattern-dotted";break;case"dashed":v+=" edge-pattern-dashed";break;default:v+=" edge-pattern-solid"}let C,_=y==="rounded"?gf(mf(m,t),5):S(m);const A=Array.isArray(t.style)?t.style:[t.style];let I=A.find($=>$==null?void 0:$.startsWith("stroke:")),O="";t.animate&&(O="edge-animation-fast"),t.animation&&(O="edge-animation-"+t.animation);let F=!1;if(t.look==="handDrawn"){const $=W.svg(e);Object.assign([],m);const B=$.path(_,{roughness:.3,seed:c});v+=" transition",C=tt(B).select("path").attr("id",t.id).attr("class"," "+v+(t.classes?" "+t.classes:"")+(O?" "+O:"")).attr("style",A?A.reduce((Y,J)=>Y+";"+J,""):"");let P=C.attr("d");C.attr("d",P),e.node().appendChild(C.node())}else{const $=d.join(";"),B=A?A.reduce((dt,gt)=>dt+gt+";",""):"",P=($?$+";"+B+";":B)+";"+(A?A.reduce((dt,gt)=>dt+";"+gt,""):"");C=e.append("path").attr("d",_).attr("id",t.id).attr("class"," "+v+(t.classes?" "+t.classes:"")+(O?" "+O:"")).attr("style",P),I=(T=P.match(/stroke:([^;]+)/))==null?void 0:T[1],F=t.animate===!0||!!t.animation||$.includes("animation");const Y=C.node(),J=typeof Y.getTotalLength=="function"?Y.getTotalLength():0,ot=so[t.arrowTypeStart]||0,ht=so[t.arrowTypeEnd]||0;if(t.look==="neo"&&!F){const gt=`stroke-dasharray: ${t.pattern==="dotted"||t.pattern==="dashed"?zk(J,ot,ht):`0 ${ot} ${J-ot-ht} ${ht}`}; stroke-dashoffset: 0;`;C.attr("style",gt+C.attr("style"))}}C.attr("data-edge",!0),C.attr("data-et","edge"),C.attr("data-id",t.id),C.attr("data-points",g),t.showPoints&&m.forEach($=>{e.append("circle").style("stroke","red").style("fill","red").attr("r",1).attr("cx",$.x).attr("cy",$.y)});let z="";(st().flowchart.arrowMarkerAbsolute||st().state.arrowMarkerAbsolute)&&(z=window.location.protocol+"//"+window.location.host+window.location.pathname+window.location.search,z=z.replace(/\(/g,"\\(").replace(/\)/g,"\\)")),E.info("arrowTypeStart",t.arrowTypeStart),E.info("arrowTypeEnd",t.arrowTypeEnd),Fk(C,t,z,o,i,I);const D=Math.floor(l.length/2),M=l[D];Gt.isLabelCoordinateInPath(M,C.attr("d"))||(h=!0);let L={};return h&&(L.updatedPath=l),L.originalPath=t.points,L},"insertEdge");function gf(e,t){if(e.length<2)return"";let r="";const i=e.length,a=1e-5;for(let n=0;n<i;n++){const o=e[n],s=e[n-1],c=e[n+1];if(n===0)r+=`M${o.x},${o.y}`;else if(n===i-1)r+=`L${o.x},${o.y}`;else{const l=o.x-s.x,h=o.y-s.y,u=c.x-o.x,f=c.y-o.y,d=Math.hypot(l,h),g=Math.hypot(u,f);if(d<a||g<a){r+=`L${o.x},${o.y}`;continue}const m=l/d,y=h/d,x=u/g,b=f/g,k=m*x+y*b,S=Math.max(-1,Math.min(1,k)),v=Math.acos(S);if(v<a||Math.abs(Math.PI-v)<a){r+=`L${o.x},${o.y}`;continue}const C=Math.min(t/Math.sin(v/2),d/2,g/2),_=o.x-m*C,A=o.y-y*C,I=o.x+x*C,O=o.y+b*C;r+=`L${_},${A}`,r+=`Q${o.x},${o.y} ${I},${O}`}}return r}p(gf,"generateRoundedPath");function Dn(e,t){if(!e||!t)return{angle:0,deltaX:0,deltaY:0};const r=t.x-e.x,i=t.y-e.y;return{angle:Math.atan2(i,r),deltaX:r,deltaY:i}}p(Dn,"calculateDeltaAndAngle");function mf(e,t){const r=e.map(a=>({...a}));if(e.length>=2&&Bt[t.arrowTypeStart]){const a=Bt[t.arrowTypeStart],n=e[0],o=e[1],{angle:s}=Dn(n,o),c=a*Math.cos(s),l=a*Math.sin(s);r[0].x=n.x+c,r[0].y=n.y+l}const i=e.length;if(i>=2&&Bt[t.arrowTypeEnd]){const a=Bt[t.arrowTypeEnd],n=e[i-1],o=e[i-2],{angle:s}=Dn(o,n),c=a*Math.cos(s),l=a*Math.sin(s);r[i-1].x=n.x-c,r[i-1].y=n.y-l}return r}p(mf,"applyMarkerOffsetsToPoints");var Wk=p((e,t,r,i)=>{t.forEach(a=>{aw[a](e,r,i)})},"insertMarkers"),Hk=p((e,t,r)=>{E.trace("Making markers for ",r),e.append("defs").append("marker").attr("id",r+"_"+t+"-extensionStart").attr("class","marker extension "+t).attr("refX",18).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("path").attr("d","M 1,7 L18,13 V 1 Z"),e.append("defs").append("marker").attr("id",r+"_"+t+"-extensionEnd").attr("class","marker extension "+t).attr("refX",1).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 1,1 V 13 L18,7 Z")},"extension"),jk=p((e,t,r)=>{e.append("defs").append("marker").attr("id",r+"_"+t+"-compositionStart").attr("class","marker composition "+t).attr("refX",18).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L1,7 L9,1 Z"),e.append("defs").append("marker").attr("id",r+"_"+t+"-compositionEnd").attr("class","marker composition "+t).attr("refX",1).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L1,7 L9,1 Z")},"composition"),Yk=p((e,t,r)=>{e.append("defs").append("marker").attr("id",r+"_"+t+"-aggregationStart").attr("class","marker aggregation "+t).attr("refX",18).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L1,7 L9,1 Z"),e.append("defs").append("marker").attr("id",r+"_"+t+"-aggregationEnd").attr("class","marker aggregation "+t).attr("refX",1).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L1,7 L9,1 Z")},"aggregation"),Vk=p((e,t,r)=>{e.append("defs").append("marker").attr("id",r+"_"+t+"-dependencyStart").attr("class","marker dependency "+t).attr("refX",6).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("path").attr("d","M 5,7 L9,13 L1,7 L9,1 Z"),e.append("defs").append("marker").attr("id",r+"_"+t+"-dependencyEnd").attr("class","marker dependency "+t).attr("refX",13).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L14,7 L9,1 Z")},"dependency"),Gk=p((e,t,r)=>{e.append("defs").append("marker").attr("id",r+"_"+t+"-lollipopStart").attr("class","marker lollipop "+t).attr("refX",13).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("circle").attr("fill","transparent").attr("cx",7).attr("cy",7).attr("r",6),e.append("defs").append("marker").attr("id",r+"_"+t+"-lollipopEnd").attr("class","marker lollipop "+t).attr("refX",1).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("circle").attr("fill","transparent").attr("cx",7).attr("cy",7).attr("r",6)},"lollipop"),Uk=p((e,t,r)=>{e.append("marker").attr("id",r+"_"+t+"-pointEnd").attr("class","marker "+t).attr("viewBox","0 0 10 10").attr("refX",5).attr("refY",5).attr("markerUnits","userSpaceOnUse").attr("markerWidth",8).attr("markerHeight",8).attr("orient","auto").append("path").attr("d","M 0 0 L 10 5 L 0 10 z").attr("class","arrowMarkerPath").style("stroke-width",1).style("stroke-dasharray","1,0"),e.append("marker").attr("id",r+"_"+t+"-pointStart").attr("class","marker "+t).attr("viewBox","0 0 10 10").attr("refX",4.5).attr("refY",5).attr("markerUnits","userSpaceOnUse").attr("markerWidth",8).attr("markerHeight",8).attr("orient","auto").append("path").attr("d","M 0 5 L 10 10 L 10 0 z").attr("class","arrowMarkerPath").style("stroke-width",1).style("stroke-dasharray","1,0")},"point"),Xk=p((e,t,r)=>{e.append("marker").attr("id",r+"_"+t+"-circleEnd").attr("class","marker "+t).attr("viewBox","0 0 10 10").attr("refX",11).attr("refY",5).attr("markerUnits","userSpaceOnUse").attr("markerWidth",11).attr("markerHeight",11).attr("orient","auto").append("circle").attr("cx","5").attr("cy","5").attr("r","5").attr("class","arrowMarkerPath").style("stroke-width",1).style("stroke-dasharray","1,0"),e.append("marker").attr("id",r+"_"+t+"-circleStart").attr("class","marker "+t).attr("viewBox","0 0 10 10").attr("refX",-1).attr("refY",5).attr("markerUnits","userSpaceOnUse").attr("markerWidth",11).attr("markerHeight",11).attr("orient","auto").append("circle").attr("cx","5").attr("cy","5").attr("r","5").attr("class","arrowMarkerPath").style("stroke-width",1).style("stroke-dasharray","1,0")},"circle"),Zk=p((e,t,r)=>{e.append("marker").attr("id",r+"_"+t+"-crossEnd").attr("class","marker cross "+t).attr("viewBox","0 0 11 11").attr("refX",12).attr("refY",5.2).attr("markerUnits","userSpaceOnUse").attr("markerWidth",11).attr("markerHeight",11).attr("orient","auto").append("path").attr("d","M 1,1 l 9,9 M 10,1 l -9,9").attr("class","arrowMarkerPath").style("stroke-width",2).style("stroke-dasharray","1,0"),e.append("marker").attr("id",r+"_"+t+"-crossStart").attr("class","marker cross "+t).attr("viewBox","0 0 11 11").attr("refX",-1).attr("refY",5.2).attr("markerUnits","userSpaceOnUse").attr("markerWidth",11).attr("markerHeight",11).attr("orient","auto").append("path").attr("d","M 1,1 l 9,9 M 10,1 l -9,9").attr("class","arrowMarkerPath").style("stroke-width",2).style("stroke-dasharray","1,0")},"cross"),Kk=p((e,t,r)=>{e.append("defs").append("marker").attr("id",r+"_"+t+"-barbEnd").attr("refX",19).attr("refY",7).attr("markerWidth",20).attr("markerHeight",14).attr("markerUnits","userSpaceOnUse").attr("orient","auto").append("path").attr("d","M 19,7 L9,13 L14,7 L9,1 Z")},"barb"),Qk=p((e,t,r)=>{e.append("defs").append("marker").attr("id",r+"_"+t+"-onlyOneStart").attr("class","marker onlyOne "+t).attr("refX",0).attr("refY",9).attr("markerWidth",18).attr("markerHeight",18).attr("orient","auto").append("path").attr("d","M9,0 L9,18 M15,0 L15,18"),e.append("defs").append("marker").attr("id",r+"_"+t+"-onlyOneEnd").attr("class","marker onlyOne "+t).attr("refX",18).attr("refY",9).attr("markerWidth",18).attr("markerHeight",18).attr("orient","auto").append("path").attr("d","M3,0 L3,18 M9,0 L9,18")},"only_one"),Jk=p((e,t,r)=>{const i=e.append("defs").append("marker").attr("id",r+"_"+t+"-zeroOrOneStart").attr("class","marker zeroOrOne "+t).attr("refX",0).attr("refY",9).attr("markerWidth",30).attr("markerHeight",18).attr("orient","auto");i.append("circle").attr("fill","white").attr("cx",21).attr("cy",9).attr("r",6),i.append("path").attr("d","M9,0 L9,18");const a=e.append("defs").append("marker").attr("id",r+"_"+t+"-zeroOrOneEnd").attr("class","marker zeroOrOne "+t).attr("refX",30).attr("refY",9).attr("markerWidth",30).attr("markerHeight",18).attr("orient","auto");a.append("circle").attr("fill","white").attr("cx",9).attr("cy",9).attr("r",6),a.append("path").attr("d","M21,0 L21,18")},"zero_or_one"),tw=p((e,t,r)=>{e.append("defs").append("marker").attr("id",r+"_"+t+"-oneOrMoreStart").attr("class","marker oneOrMore "+t).attr("refX",18).attr("refY",18).attr("markerWidth",45).attr("markerHeight",36).attr("orient","auto").append("path").attr("d","M0,18 Q 18,0 36,18 Q 18,36 0,18 M42,9 L42,27"),e.append("defs").append("marker").attr("id",r+"_"+t+"-oneOrMoreEnd").attr("class","marker oneOrMore "+t).attr("refX",27).attr("refY",18).attr("markerWidth",45).attr("markerHeight",36).attr("orient","auto").append("path").attr("d","M3,9 L3,27 M9,18 Q27,0 45,18 Q27,36 9,18")},"one_or_more"),ew=p((e,t,r)=>{const i=e.append("defs").append("marker").attr("id",r+"_"+t+"-zeroOrMoreStart").attr("class","marker zeroOrMore "+t).attr("refX",18).attr("refY",18).attr("markerWidth",57).attr("markerHeight",36).attr("orient","auto");i.append("circle").attr("fill","white").attr("cx",48).attr("cy",18).attr("r",6),i.append("path").attr("d","M0,18 Q18,0 36,18 Q18,36 0,18");const a=e.append("defs").append("marker").attr("id",r+"_"+t+"-zeroOrMoreEnd").attr("class","marker zeroOrMore "+t).attr("refX",39).attr("refY",18).attr("markerWidth",57).attr("markerHeight",36).attr("orient","auto");a.append("circle").attr("fill","white").attr("cx",9).attr("cy",18).attr("r",6),a.append("path").attr("d","M21,18 Q39,0 57,18 Q39,36 21,18")},"zero_or_more"),rw=p((e,t,r)=>{e.append("defs").append("marker").attr("id",r+"_"+t+"-requirement_arrowEnd").attr("refX",20).attr("refY",10).attr("markerWidth",20).attr("markerHeight",20).attr("orient","auto").append("path").attr("d",`M0,0
|
|
241
|
+
L20,10
|
|
242
|
+
M20,10
|
|
243
|
+
L0,20`)},"requirement_arrow"),iw=p((e,t,r)=>{const i=e.append("defs").append("marker").attr("id",r+"_"+t+"-requirement_containsStart").attr("refX",0).attr("refY",10).attr("markerWidth",20).attr("markerHeight",20).attr("orient","auto").append("g");i.append("circle").attr("cx",10).attr("cy",10).attr("r",9).attr("fill","none"),i.append("line").attr("x1",1).attr("x2",19).attr("y1",10).attr("y2",10),i.append("line").attr("y1",1).attr("y2",19).attr("x1",10).attr("x2",10)},"requirement_contains"),aw={extension:Hk,composition:jk,aggregation:Yk,dependency:Vk,lollipop:Gk,point:Uk,circle:Xk,cross:Zk,barb:Kk,only_one:Qk,zero_or_one:Jk,one_or_more:tw,zero_or_more:ew,requirement_arrow:rw,requirement_contains:iw},nw=Wk,sw={common:ri,getConfig:Lt,insertCluster:dk,insertEdge:qk,insertEdgeLabel:Ok,insertMarkers:nw,insertNode:ff,interpolateToCurve:ys,labelHelper:Z,log:E,positionEdgeLabel:Ik},Qr={},yf=p(e=>{for(const t of e)Qr[t.name]=t},"registerLayoutLoaders"),ow=p(()=>{yf([{name:"dagre",loader:p(async()=>await it(()=>import("./dagre-KLK3FWXG-Ci4Jh9nu.js"),__vite__mapDeps([2,3,4,5,6,7,0,1,8])),"loader")},{name:"cose-bilkent",loader:p(async()=>await it(()=>import("./cose-bilkent-S5V4N54A-CTsv6qQA.js"),__vite__mapDeps([9,10,0,1,8])),"loader")}])},"registerDefaultLayoutLoaders");ow();var YS=p(async(e,t)=>{if(!(e.layoutAlgorithm in Qr))throw new Error(`Unknown layout algorithm: ${e.layoutAlgorithm}`);const r=Qr[e.layoutAlgorithm];return(await r.loader()).render(e,t,sw,{algorithm:r.algorithm})},"render"),VS=p((e="",{fallback:t="dagre"}={})=>{if(e in Qr)return e;if(t in Qr)return E.warn(`Layout algorithm ${e} is not registered. Using ${t} as fallback.`),t;throw new Error(`Both layout algorithms ${e} and ${t} are not registered.`)},"getRegisteredLayoutAlgorithm"),xf="comm",bf="rule",Cf="decl",lw="@import",cw="@namespace",hw="@keyframes",uw="@layer",kf=Math.abs,Ps=String.fromCharCode;function wf(e){return e.trim()}function Ai(e,t,r){return e.replace(t,r)}function dw(e,t,r){return e.indexOf(t,r)}function Ke(e,t){return e.charCodeAt(t)|0}function dr(e,t,r){return e.slice(t,r)}function te(e){return e.length}function fw(e){return e.length}function xi(e,t){return t.push(e),e}var Ea=1,fr=1,vf=0,jt=0,bt=0,br="";function Ns(e,t,r,i,a,n,o,s){return{value:e,root:t,parent:r,type:i,props:a,children:n,line:Ea,column:fr,length:o,return:"",siblings:s}}function pw(){return bt}function gw(){return bt=jt>0?Ke(br,--jt):0,fr--,bt===10&&(fr=1,Ea--),bt}function Xt(){return bt=jt<vf?Ke(br,jt++):0,fr++,bt===10&&(fr=1,Ea++),bt}function be(){return Ke(br,jt)}function Fi(){return jt}function Da(e,t){return dr(br,e,t)}function Jr(e){switch(e){case 0:case 9:case 10:case 13:case 32:return 5;case 33:case 43:case 44:case 47:case 62:case 64:case 126:case 59:case 123:case 125:return 4;case 58:return 3;case 34:case 39:case 40:case 91:return 2;case 41:case 93:return 1}return 0}function mw(e){return Ea=fr=1,vf=te(br=e),jt=0,[]}function yw(e){return br="",e}function Ga(e){return wf(Da(jt-1,On(e===91?e+2:e===40?e+1:e)))}function xw(e){for(;(bt=be())&&bt<33;)Xt();return Jr(e)>2||Jr(bt)>3?"":" "}function bw(e,t){for(;--t&&Xt()&&!(bt<48||bt>102||bt>57&&bt<65||bt>70&&bt<97););return Da(e,Fi()+(t<6&&be()==32&&Xt()==32))}function On(e){for(;Xt();)switch(bt){case e:return jt;case 34:case 39:e!==34&&e!==39&&On(bt);break;case 40:e===41&&On(e);break;case 92:Xt();break}return jt}function Cw(e,t){for(;Xt()&&e+bt!==57;)if(e+bt===84&&be()===47)break;return"/*"+Da(t,jt-1)+"*"+Ps(e===47?e:Xt())}function kw(e){for(;!Jr(be());)Xt();return Da(e,jt)}function ww(e){return yw(Ei("",null,null,null,[""],e=mw(e),0,[0],e))}function Ei(e,t,r,i,a,n,o,s,c){for(var l=0,h=0,u=o,f=0,d=0,g=0,m=1,y=1,x=1,b=0,k="",S=a,v=n,C=i,_=k;y;)switch(g=b,b=Xt()){case 40:if(g!=108&&Ke(_,u-1)==58){dw(_+=Ai(Ga(b),"&","&\f"),"&\f",kf(l?s[l-1]:0))!=-1&&(x=-1);break}case 34:case 39:case 91:_+=Ga(b);break;case 9:case 10:case 13:case 32:_+=xw(g);break;case 92:_+=bw(Fi()-1,7);continue;case 47:switch(be()){case 42:case 47:xi(vw(Cw(Xt(),Fi()),t,r,c),c),(Jr(g||1)==5||Jr(be()||1)==5)&&te(_)&&dr(_,-1,void 0)!==" "&&(_+=" ");break;default:_+="/"}break;case 123*m:s[l++]=te(_)*x;case 125*m:case 59:case 0:switch(b){case 0:case 125:y=0;case 59+h:x==-1&&(_=Ai(_,/\f/g,"")),d>0&&(te(_)-u||m===0&&g===47)&&xi(d>32?Uo(_+";",i,r,u-1,c):Uo(Ai(_," ","")+";",i,r,u-2,c),c);break;case 59:_+=";";default:if(xi(C=Go(_,t,r,l,h,a,s,k,S=[],v=[],u,n),n),b===123)if(h===0)Ei(_,t,C,C,S,n,u,s,v);else{switch(f){case 99:if(Ke(_,3)===110)break;case 108:if(Ke(_,2)===97)break;default:h=0;case 100:case 109:case 115:}h?Ei(e,C,C,i&&xi(Go(e,C,C,0,0,a,s,k,a,S=[],u,v),v),a,v,u,s,i?S:v):Ei(_,C,C,C,[""],v,0,s,v)}}l=h=d=0,m=x=1,k=_="",u=o;break;case 58:u=1+te(_),d=g;default:if(m<1){if(b==123)--m;else if(b==125&&m++==0&&gw()==125)continue}switch(_+=Ps(b),b*m){case 38:x=h>0?1:(_+="\f",-1);break;case 44:s[l++]=(te(_)-1)*x,x=1;break;case 64:be()===45&&(_+=Ga(Xt())),f=be(),h=u=te(k=_+=kw(Fi())),b++;break;case 45:g===45&&te(_)==2&&(m=0)}}return n}function Go(e,t,r,i,a,n,o,s,c,l,h,u){for(var f=a-1,d=a===0?n:[""],g=fw(d),m=0,y=0,x=0;m<i;++m)for(var b=0,k=dr(e,f+1,f=kf(y=o[m])),S=e;b<g;++b)(S=wf(y>0?d[b]+" "+k:Ai(k,/&\f/g,d[b])))&&(c[x++]=S);return Ns(e,t,r,a===0?bf:s,c,l,h,u)}function vw(e,t,r,i){return Ns(e,t,r,xf,Ps(pw()),dr(e,2,-2),0,i)}function Uo(e,t,r,i,a){return Ns(e,t,r,Cf,dr(e,0,i),dr(e,i+1,-1),i,a)}function In(e,t){for(var r="",i=0;i<e.length;i++)r+=t(e[i],i,e,t)||"";return r}function _w(e,t,r,i){switch(e.type){case uw:if(e.children.length)break;case lw:case cw:case Cf:return e.return=e.return||e.value;case xf:return"";case hw:return e.return=e.value+"{"+In(e.children,i)+"}";case bf:if(!te(e.value=e.props.join(",")))return""}return te(r=In(e.children,i))?e.return=e.value+"{"+r+"}":""}var Sw=Vh(Object.keys,Object),Tw=Object.prototype,Bw=Tw.hasOwnProperty;function Lw(e){if(!_a(e))return Sw(e);var t=[];for(var r in Object(e))Bw.call(e,r)&&r!="constructor"&&t.push(r);return t}var Rn=je(ae,"DataView"),Pn=je(ae,"Promise"),Nn=je(ae,"Set"),zn=je(ae,"WeakMap"),Xo="[object Map]",Mw="[object Object]",Zo="[object Promise]",Ko="[object Set]",Qo="[object WeakMap]",Jo="[object DataView]",$w=He(Rn),Aw=He(Zr),Fw=He(Pn),Ew=He(Nn),Dw=He(zn),$e=pr;(Rn&&$e(new Rn(new ArrayBuffer(1)))!=Jo||Zr&&$e(new Zr)!=Xo||Pn&&$e(Pn.resolve())!=Zo||Nn&&$e(new Nn)!=Ko||zn&&$e(new zn)!=Qo)&&($e=function(e){var t=pr(e),r=t==Mw?e.constructor:void 0,i=r?He(r):"";if(i)switch(i){case $w:return Jo;case Aw:return Xo;case Fw:return Zo;case Ew:return Ko;case Dw:return Qo}return t});var Ow="[object Map]",Iw="[object Set]",Rw=Object.prototype,Pw=Rw.hasOwnProperty;function tl(e){if(e==null)return!0;if(Sa(e)&&(ta(e)||typeof e=="string"||typeof e.splice=="function"||gs(e)||ms(e)||Ji(e)))return!e.length;var t=$e(e);if(t==Ow||t==Iw)return!e.size;if(_a(e))return!Lw(e).length;for(var r in e)if(Pw.call(e,r))return!1;return!0}var _f="c4",Nw=p(e=>/^\s*C4Context|C4Container|C4Component|C4Dynamic|C4Deployment/.test(e),"detector"),zw=p(async()=>{const{diagram:e}=await it(async()=>{const{diagram:t}=await import("./c4Diagram-IC4MRINW-Cytx1q3b.js");return{diagram:t}},__vite__mapDeps([11,12,0,1,8]));return{id:_f,diagram:e}},"loader"),qw={id:_f,detector:Nw,loader:zw},Ww=qw,Sf="flowchart",Hw=p((e,t)=>{var r,i;return((r=t==null?void 0:t.flowchart)==null?void 0:r.defaultRenderer)==="dagre-wrapper"||((i=t==null?void 0:t.flowchart)==null?void 0:i.defaultRenderer)==="elk"?!1:/^\s*graph/.test(e)},"detector"),jw=p(async()=>{const{diagram:e}=await it(async()=>{const{diagram:t}=await import("./flowDiagram-PKNHOUZH-Ch97nABF.js");return{diagram:t}},__vite__mapDeps([13,14,12,15,16,0,1,17,8]));return{id:Sf,diagram:e}},"loader"),Yw={id:Sf,detector:Hw,loader:jw},Vw=Yw,Tf="flowchart-v2",Gw=p((e,t)=>{var r,i,a;return((r=t==null?void 0:t.flowchart)==null?void 0:r.defaultRenderer)==="dagre-d3"?!1:(((i=t==null?void 0:t.flowchart)==null?void 0:i.defaultRenderer)==="elk"&&(t.layout="elk"),/^\s*graph/.test(e)&&((a=t==null?void 0:t.flowchart)==null?void 0:a.defaultRenderer)==="dagre-wrapper"?!0:/^\s*flowchart/.test(e))},"detector"),Uw=p(async()=>{const{diagram:e}=await it(async()=>{const{diagram:t}=await import("./flowDiagram-PKNHOUZH-Ch97nABF.js");return{diagram:t}},__vite__mapDeps([13,14,12,15,16,0,1,17,8]));return{id:Tf,diagram:e}},"loader"),Xw={id:Tf,detector:Gw,loader:Uw},Zw=Xw,Bf="er",Kw=p(e=>/^\s*erDiagram/.test(e),"detector"),Qw=p(async()=>{const{diagram:e}=await it(async()=>{const{diagram:t}=await import("./erDiagram-INFDFZHY-NorKdTOF.js");return{diagram:t}},__vite__mapDeps([18,15,16,17,0,1,8]));return{id:Bf,diagram:e}},"loader"),Jw={id:Bf,detector:Kw,loader:Qw},tv=Jw,Lf="gitGraph",ev=p(e=>/^\s*gitGraph/.test(e),"detector"),rv=p(async()=>{const{diagram:e}=await it(async()=>{const{diagram:t}=await import("./gitGraphDiagram-K3NZZRJ6-bcvnBsD2.js");return{diagram:t}},__vite__mapDeps([19,20,21,22,0,1,4,6,7,8]));return{id:Lf,diagram:e}},"loader"),iv={id:Lf,detector:ev,loader:rv},av=iv,Mf="gantt",nv=p(e=>/^\s*gantt/.test(e),"detector"),sv=p(async()=>{const{diagram:e}=await it(async()=>{const{diagram:t}=await import("./ganttDiagram-A5KZAMGK-BQ2pLWsy.js");return{diagram:t}},__vite__mapDeps([23,0,1,24,25,8,26,27]));return{id:Mf,diagram:e}},"loader"),ov={id:Mf,detector:nv,loader:sv},lv=ov,$f="info",cv=p(e=>/^\s*info/.test(e),"detector"),hv=p(async()=>{const{diagram:e}=await it(async()=>{const{diagram:t}=await import("./infoDiagram-LFFYTUFH-CcsrFdj-.js");return{diagram:t}},__vite__mapDeps([28,22,0,1,4,6,7,8]));return{id:$f,diagram:e}},"loader"),uv={id:$f,detector:cv,loader:hv},Af="pie",dv=p(e=>/^\s*pie/.test(e),"detector"),fv=p(async()=>{const{diagram:e}=await it(async()=>{const{diagram:t}=await import("./pieDiagram-SKSYHLDU-DfiMSfWo.js");return{diagram:t}},__vite__mapDeps([29,20,22,0,1,4,6,7,30,8,31,26]));return{id:Af,diagram:e}},"loader"),pv={id:Af,detector:dv,loader:fv},Ff="quadrantChart",gv=p(e=>/^\s*quadrantChart/.test(e),"detector"),mv=p(async()=>{const{diagram:e}=await it(async()=>{const{diagram:t}=await import("./quadrantDiagram-337W2JSQ-wZxZOJxd.js");return{diagram:t}},__vite__mapDeps([32,25,8,26,27,0,1]));return{id:Ff,diagram:e}},"loader"),yv={id:Ff,detector:gv,loader:mv},xv=yv,Ef="xychart",bv=p(e=>/^\s*xychart(-beta)?/.test(e),"detector"),Cv=p(async()=>{const{diagram:e}=await it(async()=>{const{diagram:t}=await import("./xychartDiagram-JWTSCODW-DfYGPfNB.js");return{diagram:t}},__vite__mapDeps([33,34,26,31,25,8,27,0,1]));return{id:Ef,diagram:e}},"loader"),kv={id:Ef,detector:bv,loader:Cv},wv=kv,Df="requirement",vv=p(e=>/^\s*requirement(Diagram)?/.test(e),"detector"),_v=p(async()=>{const{diagram:e}=await it(async()=>{const{diagram:t}=await import("./requirementDiagram-Z7DCOOCP-BK4HHm17.js");return{diagram:t}},__vite__mapDeps([35,15,16,0,1,8]));return{id:Df,diagram:e}},"loader"),Sv={id:Df,detector:vv,loader:_v},Tv=Sv,Of="sequence",Bv=p(e=>/^\s*sequenceDiagram/.test(e),"detector"),Lv=p(async()=>{const{diagram:e}=await it(async()=>{const{diagram:t}=await import("./sequenceDiagram-2WXFIKYE-BPQlkbAa.js");return{diagram:t}},__vite__mapDeps([36,12,21,0,1,8]));return{id:Of,diagram:e}},"loader"),Mv={id:Of,detector:Bv,loader:Lv},$v=Mv,If="class",Av=p((e,t)=>{var r;return((r=t==null?void 0:t.class)==null?void 0:r.defaultRenderer)==="dagre-wrapper"?!1:/^\s*classDiagram/.test(e)},"detector"),Fv=p(async()=>{const{diagram:e}=await it(async()=>{const{diagram:t}=await import("./classDiagram-VBA2DB6C-DUUoMyaK.js");return{diagram:t}},__vite__mapDeps([37,38,14,12,15,16,0,1,8]));return{id:If,diagram:e}},"loader"),Ev={id:If,detector:Av,loader:Fv},Dv=Ev,Rf="classDiagram",Ov=p((e,t)=>{var r;return/^\s*classDiagram/.test(e)&&((r=t==null?void 0:t.class)==null?void 0:r.defaultRenderer)==="dagre-wrapper"?!0:/^\s*classDiagram-v2/.test(e)},"detector"),Iv=p(async()=>{const{diagram:e}=await it(async()=>{const{diagram:t}=await import("./classDiagram-v2-RAHNMMFH-DUUoMyaK.js");return{diagram:t}},__vite__mapDeps([39,38,14,12,15,16,0,1,8]));return{id:Rf,diagram:e}},"loader"),Rv={id:Rf,detector:Ov,loader:Iv},Pv=Rv,Pf="state",Nv=p((e,t)=>{var r;return((r=t==null?void 0:t.state)==null?void 0:r.defaultRenderer)==="dagre-wrapper"?!1:/^\s*stateDiagram/.test(e)},"detector"),zv=p(async()=>{const{diagram:e}=await it(async()=>{const{diagram:t}=await import("./stateDiagram-RAJIS63D-DxkV0Vwd.js");return{diagram:t}},__vite__mapDeps([40,41,15,16,3,4,5,6,8,0,1]));return{id:Pf,diagram:e}},"loader"),qv={id:Pf,detector:Nv,loader:zv},Wv=qv,Nf="stateDiagram",Hv=p((e,t)=>{var r;return!!(/^\s*stateDiagram-v2/.test(e)||/^\s*stateDiagram/.test(e)&&((r=t==null?void 0:t.state)==null?void 0:r.defaultRenderer)==="dagre-wrapper")},"detector"),jv=p(async()=>{const{diagram:e}=await it(async()=>{const{diagram:t}=await import("./stateDiagram-v2-FVOUBMTO-qLYoiOPe.js");return{diagram:t}},__vite__mapDeps([42,41,15,16,0,1,8]));return{id:Nf,diagram:e}},"loader"),Yv={id:Nf,detector:Hv,loader:jv},Vv=Yv,zf="journey",Gv=p(e=>/^\s*journey/.test(e),"detector"),Uv=p(async()=>{const{diagram:e}=await it(async()=>{const{diagram:t}=await import("./journeyDiagram-4ABVD52K-CKUi-V0c.js");return{diagram:t}},__vite__mapDeps([43,14,12,30,8,0,1]));return{id:zf,diagram:e}},"loader"),Xv={id:zf,detector:Gv,loader:Uv},Zv=Xv,Kv=p((e,t,r)=>{E.debug(`rendering svg for syntax error
|
|
244
|
+
`);const i=M0(t),a=i.append("g");i.attr("viewBox","0 0 2412 512"),Fl(i,100,512,!0),a.append("path").attr("class","error-icon").attr("d","m411.313,123.313c6.25-6.25 6.25-16.375 0-22.625s-16.375-6.25-22.625,0l-32,32-9.375,9.375-20.688-20.688c-12.484-12.5-32.766-12.5-45.25,0l-16,16c-1.261,1.261-2.304,2.648-3.31,4.051-21.739-8.561-45.324-13.426-70.065-13.426-105.867,0-192,86.133-192,192s86.133,192 192,192 192-86.133 192-192c0-24.741-4.864-48.327-13.426-70.065 1.402-1.007 2.79-2.049 4.051-3.31l16-16c12.5-12.492 12.5-32.758 0-45.25l-20.688-20.688 9.375-9.375 32.001-31.999zm-219.313,100.687c-52.938,0-96,43.063-96,96 0,8.836-7.164,16-16,16s-16-7.164-16-16c0-70.578 57.422-128 128-128 8.836,0 16,7.164 16,16s-7.164,16-16,16z"),a.append("path").attr("class","error-icon").attr("d","m459.02,148.98c-6.25-6.25-16.375-6.25-22.625,0s-6.25,16.375 0,22.625l16,16c3.125,3.125 7.219,4.688 11.313,4.688 4.094,0 8.188-1.563 11.313-4.688 6.25-6.25 6.25-16.375 0-22.625l-16.001-16z"),a.append("path").attr("class","error-icon").attr("d","m340.395,75.605c3.125,3.125 7.219,4.688 11.313,4.688 4.094,0 8.188-1.563 11.313-4.688 6.25-6.25 6.25-16.375 0-22.625l-16-16c-6.25-6.25-16.375-6.25-22.625,0s-6.25,16.375 0,22.625l15.999,16z"),a.append("path").attr("class","error-icon").attr("d","m400,64c8.844,0 16-7.164 16-16v-32c0-8.836-7.156-16-16-16-8.844,0-16,7.164-16,16v32c0,8.836 7.156,16 16,16z"),a.append("path").attr("class","error-icon").attr("d","m496,96.586h-32c-8.844,0-16,7.164-16,16 0,8.836 7.156,16 16,16h32c8.844,0 16-7.164 16-16 0-8.836-7.156-16-16-16z"),a.append("path").attr("class","error-icon").attr("d","m436.98,75.605c3.125,3.125 7.219,4.688 11.313,4.688 4.094,0 8.188-1.563 11.313-4.688l32-32c6.25-6.25 6.25-16.375 0-22.625s-16.375-6.25-22.625,0l-32,32c-6.251,6.25-6.251,16.375-0.001,22.625z"),a.append("text").attr("class","error-text").attr("x",1440).attr("y",250).attr("font-size","150px").style("text-anchor","middle").text("Syntax error in text"),a.append("text").attr("class","error-text").attr("x",1250).attr("y",400).attr("font-size","100px").style("text-anchor","middle").text(`mermaid version ${r}`)},"draw"),qf={draw:Kv},Qv=qf,Jv={db:{},renderer:qf,parser:{parse:p(()=>{},"parse")}},t_=Jv,Wf="flowchart-elk",e_=p((e,t={})=>{var r;return/^\s*flowchart-elk/.test(e)||/^\s*(flowchart|graph)/.test(e)&&((r=t==null?void 0:t.flowchart)==null?void 0:r.defaultRenderer)==="elk"?(t.layout="elk",!0):!1},"detector"),r_=p(async()=>{const{diagram:e}=await it(async()=>{const{diagram:t}=await import("./flowDiagram-PKNHOUZH-Ch97nABF.js");return{diagram:t}},__vite__mapDeps([13,14,12,15,16,0,1,17,8]));return{id:Wf,diagram:e}},"loader"),i_={id:Wf,detector:e_,loader:r_},a_=i_,Hf="timeline",n_=p(e=>/^\s*timeline/.test(e),"detector"),s_=p(async()=>{const{diagram:e}=await it(async()=>{const{diagram:t}=await import("./timeline-definition-YZTLITO2-kNp1DyFc.js");return{diagram:t}},__vite__mapDeps([44,30,8,0,1]));return{id:Hf,diagram:e}},"loader"),o_={id:Hf,detector:n_,loader:s_},l_=o_,jf="mindmap",c_=p(e=>/^\s*mindmap/.test(e),"detector"),h_=p(async()=>{const{diagram:e}=await it(async()=>{const{diagram:t}=await import("./mindmap-definition-YRQLILUH-BeAKHVWP.js");return{diagram:t}},__vite__mapDeps([45,15,16,0,1,8]));return{id:jf,diagram:e}},"loader"),u_={id:jf,detector:c_,loader:h_},d_=u_,Yf="kanban",f_=p(e=>/^\s*kanban/.test(e),"detector"),p_=p(async()=>{const{diagram:e}=await it(async()=>{const{diagram:t}=await import("./kanban-definition-K7BYSVSG-DOnQwXfL.js");return{diagram:t}},__vite__mapDeps([46,14,0,1,8]));return{id:Yf,diagram:e}},"loader"),g_={id:Yf,detector:f_,loader:p_},m_=g_,Vf="sankey",y_=p(e=>/^\s*sankey(-beta)?/.test(e),"detector"),x_=p(async()=>{const{diagram:e}=await it(async()=>{const{diagram:t}=await import("./sankeyDiagram-WA2Y5GQK-BX6t2avX.js");return{diagram:t}},__vite__mapDeps([47,31,26,0,1,8]));return{id:Vf,diagram:e}},"loader"),b_={id:Vf,detector:y_,loader:x_},C_=b_,Gf="packet",k_=p(e=>/^\s*packet(-beta)?/.test(e),"detector"),w_=p(async()=>{const{diagram:e}=await it(async()=>{const{diagram:t}=await import("./diagram-P4PSJMXO-BVyP7nwq.js");return{diagram:t}},__vite__mapDeps([48,20,22,0,1,4,6,7,8]));return{id:Gf,diagram:e}},"loader"),v_={id:Gf,detector:k_,loader:w_},Uf="radar",__=p(e=>/^\s*radar-beta/.test(e),"detector"),S_=p(async()=>{const{diagram:e}=await it(async()=>{const{diagram:t}=await import("./diagram-IFDJBPK2-B7Zhnp0b.js");return{diagram:t}},__vite__mapDeps([49,20,22,0,1,4,6,7,8]));return{id:Uf,diagram:e}},"loader"),T_={id:Uf,detector:__,loader:S_},Xf="block",B_=p(e=>/^\s*block(-beta)?/.test(e),"detector"),L_=p(async()=>{const{diagram:e}=await it(async()=>{const{diagram:t}=await import("./blockDiagram-WCTKOSBZ-B9pcqm3j.js");return{diagram:t}},__vite__mapDeps([50,14,7,4,3,17,8,0,1]));return{id:Xf,diagram:e}},"loader"),M_={id:Xf,detector:B_,loader:L_},$_=M_,Zf="architecture",A_=p(e=>/^\s*architecture/.test(e),"detector"),F_=p(async()=>{const{diagram:e}=await it(async()=>{const{diagram:t}=await import("./architectureDiagram-2XIMDMQ5-BLmzX1wr.js");return{diagram:t}},__vite__mapDeps([51,20,22,0,1,4,6,7,10,8]));return{id:Zf,diagram:e}},"loader"),E_={id:Zf,detector:A_,loader:F_},D_=E_,Kf="ishikawa",O_=p(e=>/^\s*ishikawa(-beta)?\b/i.test(e),"detector"),I_=p(async()=>{const{diagram:e}=await it(async()=>{const{diagram:t}=await import("./ishikawaDiagram-PHBUUO56-1upyMfHN.js");return{diagram:t}},__vite__mapDeps([52,0,1,8]));return{id:Kf,diagram:e}},"loader"),R_={id:Kf,detector:O_,loader:I_},Qf="venn",P_=p(e=>/^\s*venn-beta/.test(e),"detector"),N_=p(async()=>{const{diagram:e}=await it(async()=>{const{diagram:t}=await import("./vennDiagram-LZ73GAT5-CgdzEZz4.js");return{diagram:t}},__vite__mapDeps([53,0,1,8]));return{id:Qf,diagram:e}},"loader"),z_={id:Qf,detector:P_,loader:N_},q_=z_,Jf="treemap",W_=p(e=>/^\s*treemap/.test(e),"detector"),H_=p(async()=>{const{diagram:e}=await it(async()=>{const{diagram:t}=await import("./diagram-E7M64L7V-BFRnfTI2.js");return{diagram:t}},__vite__mapDeps([54,16,20,22,0,1,4,6,7,27,31,26,8]));return{id:Jf,diagram:e}},"loader"),j_={id:Jf,detector:W_,loader:H_},el=!1,Oa=p(()=>{el||(el=!0,Ni("error",t_,e=>e.toLowerCase().trim()==="error"),Ni("---",{db:{clear:p(()=>{},"clear")},styles:{},renderer:{draw:p(()=>{},"draw")},parser:{parse:p(()=>{throw new Error("Diagrams beginning with --- are not valid. If you were trying to use a YAML front-matter, please ensure that you've correctly opened and closed the YAML front-matter with un-indented `---` blocks")},"parse")},init:p(()=>null,"init")},e=>e.toLowerCase().trimStart().startsWith("---")),Za(a_,d_,D_),Za(Ww,m_,Pv,Dv,tv,lv,uv,pv,Tv,$v,Zw,Vw,l_,av,Vv,Wv,Zv,xv,C_,v_,wv,$_,T_,R_,j_,q_))},"addDiagrams"),Y_=p(async()=>{E.debug("Loading registered diagrams");const t=(await Promise.allSettled(Object.entries(Oe).map(async([r,{detector:i,loader:a}])=>{if(a)try{tn(r)}catch{try{const{diagram:n,id:o}=await a();Ni(o,n,i)}catch(n){throw E.error(`Failed to load external diagram with key ${r}. Removing from detectors.`),delete Oe[r],n}}}))).filter(r=>r.status==="rejected");if(t.length>0){E.error(`Failed to load ${t.length} external diagrams`);for(const r of t)E.error(r);throw new Error(`Failed to load ${t.length} external diagrams`)}},"loadRegisteredDiagrams"),V_="graphics-document document";function tp(e,t){e.attr("role",V_),t!==""&&e.attr("aria-roledescription",t)}p(tp,"setA11yDiagramInfo");function ep(e,t,r,i){if(e.insert!==void 0){if(r){const a=`chart-desc-${i}`;e.attr("aria-describedby",a),e.insert("desc",":first-child").attr("id",a).text(r)}if(t){const a=`chart-title-${i}`;e.attr("aria-labelledby",a),e.insert("title",":first-child").attr("id",a).text(t)}}}p(ep,"addSVGa11yTitleDescription");var De,qn=(De=class{constructor(t,r,i,a,n){this.type=t,this.text=r,this.db=i,this.parser=a,this.renderer=n}static async fromText(t,r={}){var l,h;const i=Lt(),a=jn(t,i);t=F2(t)+`
|
|
245
|
+
`;try{tn(a)}catch{const u=Dp(a);if(!u)throw new xl(`Diagram ${a} not found.`);const{id:f,diagram:d}=await u();Ni(f,d)}const{db:n,parser:o,renderer:s,init:c}=tn(a);return o.parser&&(o.parser.yy=n),(l=n.clear)==null||l.call(n),c==null||c(i),r.title&&((h=n.setDiagramTitle)==null||h.call(n,r.title)),await o.parse(t),new De(a,t,n,o,s)}async render(t,r){await this.renderer.draw(this.text,t,r,this)}getParser(){return this.parser}getType(){return this.type}},p(De,"Diagram"),De),rl=[],G_=p(()=>{rl.forEach(e=>{e()}),rl=[]},"attachFunctions"),U_=p(e=>e.replace(/^\s*%%(?!{)[^\n]+\n?/gm,"").trimStart(),"cleanupComments");function rp(e){const t=e.match(yl);if(!t)return{text:e,metadata:{}};let r=Ix(t[1],{schema:Ox})??{};r=typeof r=="object"&&!Array.isArray(r)?r:{};const i={};return r.displayMode&&(i.displayMode=r.displayMode.toString()),r.title&&(i.title=r.title.toString()),r.config&&(i.config=r.config),{text:e.slice(t[0].length),metadata:i}}p(rp,"extractFrontMatter");var X_=p(e=>e.replace(/\r\n?/g,`
|
|
246
|
+
`).replace(/<(\w+)([^>]*)>/g,(t,r,i)=>"<"+r+i.replace(/="([^"]*)"/g,"='$1'")+">"),"cleanupText"),Z_=p(e=>{const{text:t,metadata:r}=rp(e),{displayMode:i,title:a,config:n={}}=r;return i&&(n.gantt||(n.gantt={}),n.gantt.displayMode=i),{title:a,config:n,text:t}},"processFrontmatter"),K_=p(e=>{const t=Gt.detectInit(e)??{},r=Gt.detectDirective(e,"wrap");return Array.isArray(r)?t.wrap=r.some(({type:i})=>i==="wrap"):(r==null?void 0:r.type)==="wrap"&&(t.wrap=!0),{text:b2(e),directive:t}},"processDirectives");function zs(e){const t=X_(e),r=Z_(t),i=K_(r.text),a=ws(r.config,i.directive);return e=U_(i.text),{code:e,title:r.title,config:a}}p(zs,"preprocessDiagram");function ip(e){const t=new TextEncoder().encode(e),r=Array.from(t,i=>String.fromCodePoint(i)).join("");return btoa(r)}p(ip,"toBase64");var Q_=5e4,J_="graph TB;a[Maximum text size in diagram exceeded];style a fill:#faa",tS="sandbox",eS="loose",rS="http://www.w3.org/2000/svg",iS="http://www.w3.org/1999/xlink",aS="http://www.w3.org/1999/xhtml",nS="100%",sS="100%",oS="border:0;margin:0;",lS="margin:0",cS="allow-top-navigation-by-user-activation allow-popups",hS='The "iframe" tag is not supported by your browser.',uS=["foreignobject"],dS=["dominant-baseline"];function qs(e){const t=zs(e);return Ri(),Zp(t.config??{}),t}p(qs,"processAndSetConfigs");async function ap(e,t){Oa();try{const{code:r,config:i}=qs(e);return{diagramType:(await sp(r)).type,config:i}}catch(r){if(t!=null&&t.suppressErrors)return!1;throw r}}p(ap,"parse");var il=p((e,t,r=[])=>`
|
|
247
|
+
.${e} ${t} { ${r.join(" !important; ")} !important; }`,"cssImportantStyles"),fS=p((e,t=new Map)=>{let r="";if(e.themeCSS!==void 0&&(r+=`
|
|
248
|
+
${e.themeCSS}`),e.fontFamily!==void 0&&(r+=`
|
|
249
|
+
:root { --mermaid-font-family: ${e.fontFamily}}`),e.altFontFamily!==void 0&&(r+=`
|
|
250
|
+
:root { --mermaid-alt-font-family: ${e.altFontFamily}}`),t instanceof Map){const o=At(e)?["> *","span"]:["rect","polygon","ellipse","circle","path"];t.forEach(s=>{tl(s.styles)||o.forEach(c=>{r+=il(s.id,c,s.styles)}),tl(s.textStyles)||(r+=il(s.id,"tspan",((s==null?void 0:s.textStyles)||[]).map(c=>c.replace("color","fill"))))})}return r},"createCssStyles"),pS=p((e,t,r,i)=>{const a=fS(e,r),n=gg(t,a,e.themeVariables);return In(ww(`${i}{${n}}`),_w)},"createUserStyles"),gS=p((e="",t,r)=>{let i=e;return!r&&!t&&(i=i.replace(/marker-end="url\([\d+./:=?A-Za-z-]*?#/g,'marker-end="url(#')),i=mr(i),i=i.replace(/<br>/g,"<br/>"),i},"cleanUpSvgCode"),mS=p((e="",t)=>{var a,n;const r=(n=(a=t==null?void 0:t.viewBox)==null?void 0:a.baseVal)!=null&&n.height?t.viewBox.baseVal.height+"px":sS,i=ip(`<body style="${lS}">${e}</body>`);return`<iframe style="width:${nS};height:${r};${oS}" src="data:text/html;charset=UTF-8;base64,${i}" sandbox="${cS}">
|
|
251
|
+
${hS}
|
|
252
|
+
</iframe>`},"putIntoIFrame"),al=p((e,t,r,i,a)=>{const n=e.append("div");n.attr("id",r),i&&n.attr("style",i);const o=n.append("svg").attr("id",t).attr("width","100%").attr("xmlns",rS);return a&&o.attr("xmlns:xlink",a),o.append("g"),e},"appendDivSvgG");function Wn(e,t){return e.append("iframe").attr("id",t).attr("style","width: 100%; height: 100%;").attr("sandbox","")}p(Wn,"sandboxedIframe");var yS=p((e,t,r,i)=>{var a,n,o;(a=e.getElementById(t))==null||a.remove(),(n=e.getElementById(r))==null||n.remove(),(o=e.getElementById(i))==null||o.remove()},"removeExistingElements"),xS=p(async function(e,t,r){var z,D,M,L,T,$;Oa();const i=qs(t);t=i.code;const a=Lt();E.debug(a),t.length>((a==null?void 0:a.maxTextSize)??Q_)&&(t=J_);const n="#"+e,o="i"+e,s="#"+o,c="d"+e,l="#"+c,h=p(()=>{const P=tt(f?s:l).node();P&&"remove"in P&&P.remove()},"removeTempElements");let u=tt("body");const f=a.securityLevel===tS,d=a.securityLevel===eS,g=a.fontFamily;if(r!==void 0){if(r&&(r.innerHTML=""),f){const B=Wn(tt(r),o);u=tt(B.nodes()[0].contentDocument.body),u.node().style.margin=0}else u=tt(r);al(u,e,c,`font-family: ${g}`,iS)}else{if(yS(document,e,c,o),f){const B=Wn(tt("body"),o);u=tt(B.nodes()[0].contentDocument.body),u.node().style.margin=0}else u=tt("body");al(u,e,c)}let m,y;try{m=await qn.fromText(t,{title:i.title})}catch(B){if(a.suppressErrorRendering)throw h(),B;m=await qn.fromText("error"),y=B}const x=u.select(l).node(),b=m.type,k=x.firstChild,S=k.firstChild,v=(D=(z=m.renderer).getClasses)==null?void 0:D.call(z,t,m),C=pS(a,b,v,n),_=document.createElement("style");_.innerHTML=C,k.insertBefore(_,S);try{await m.renderer.draw(t,e,"11.13.0",m)}catch(B){throw a.suppressErrorRendering?h():Qv.draw(t,e,"11.13.0"),B}const A=u.select(`${l} svg`),I=(L=(M=m.db).getAccTitle)==null?void 0:L.call(M),O=($=(T=m.db).getAccDescription)==null?void 0:$.call(T);op(b,A,I,O),u.select(`[id="${e}"]`).selectAll("foreignobject > *").attr("xmlns",aS);let F=u.select(l).node().innerHTML;if(E.debug("config.arrowMarkerAbsolute",a.arrowMarkerAbsolute),F=gS(F,f,_e(a.arrowMarkerAbsolute)),f){const B=u.select(l+" svg").node();F=mS(F,B)}else d||(F=sr.sanitize(F,{ADD_TAGS:uS,ADD_ATTR:dS,HTML_INTEGRATION_POINTS:{foreignobject:!0}}));if(G_(),y)throw y;return h(),{diagramType:b,svg:F,bindFunctions:m.db.bindFunctions}},"render");function np(e={}){var i;const t=kt({},e);t!=null&&t.fontFamily&&!((i=t.themeVariables)!=null&&i.fontFamily)&&(t.themeVariables||(t.themeVariables={}),t.themeVariables.fontFamily=t.fontFamily),Up(t),t!=null&&t.theme&&t.theme in ce?t.themeVariables=ce[t.theme].getThemeVariables(t.themeVariables):t&&(t.themeVariables=ce.default.getThemeVariables(t.themeVariables));const r=typeof t=="object"?Gp(t):vl();Hn(r.logLevel),Oa()}p(np,"initialize");var sp=p((e,t={})=>{const{code:r}=zs(e);return qn.fromText(r,t)},"getDiagramFromText");function op(e,t,r,i){tp(t,e),ep(t,r,i,t.attr("id"))}p(op,"addA11yInfo");var qe=Object.freeze({render:xS,parse:ap,getDiagramFromText:sp,initialize:np,getConfig:Lt,setConfig:_l,getSiteConfig:vl,updateSiteConfig:Xp,reset:p(()=>{Ri()},"reset"),globalReset:p(()=>{Ri(or)},"globalReset"),defaultConfig:or});Hn(Lt().logLevel);Ri(Lt());var bS=p((e,t,r)=>{E.warn(e),ks(e)?(r&&r(e.str,e.hash),t.push({...e,message:e.str,error:e})):(r&&r(e),e instanceof Error&&t.push({str:e.message,message:e.message,hash:e.name,error:e}))},"handleError"),lp=p(async function(e={querySelector:".mermaid"}){try{await CS(e)}catch(t){if(ks(t)&&E.error(t.str),zt.parseError&&zt.parseError(t),!e.suppressErrors)throw E.error("Use the suppressErrors option to suppress these errors"),t}},"run"),CS=p(async function({postRenderCallback:e,querySelector:t,nodes:r}={querySelector:".mermaid"}){const i=qe.getConfig();E.debug(`${e?"":"No "}Callback function found`);let a;if(r)a=r;else if(t)a=document.querySelectorAll(t);else throw new Error("Nodes and querySelector are both undefined");E.debug(`Found ${a.length} diagrams`),(i==null?void 0:i.startOnLoad)!==void 0&&(E.debug("Start On Load: "+(i==null?void 0:i.startOnLoad)),qe.updateSiteConfig({startOnLoad:i==null?void 0:i.startOnLoad}));const n=new Gt.InitIDGenerator(i.deterministicIds,i.deterministicIDSeed);let o;const s=[];for(const c of Array.from(a)){if(E.info("Rendering diagram: "+c.id),c.getAttribute("data-processed"))continue;c.setAttribute("data-processed","true");const l=`mermaid-${n.next()}`;o=c.innerHTML,o=Tu(Gt.entityDecode(o)).trim().replace(/<br\s*\/?>/gi,"<br/>");const h=Gt.detectInit(o);h&&E.debug("Detected early reinit: ",h);try{const{svg:u,bindFunctions:f}=await dp(l,o,c);c.innerHTML=u,e&&await e(l),f&&f(c)}catch(u){bS(u,s,zt.parseError)}}if(s.length>0)throw s[0]},"runThrowsErrors"),cp=p(function(e){qe.initialize(e)},"initialize"),kS=p(async function(e,t,r){E.warn("mermaid.init is deprecated. Please use run instead."),e&&cp(e);const i={postRenderCallback:r,querySelector:".mermaid"};typeof t=="string"?i.querySelector=t:t&&(t instanceof HTMLElement?i.nodes=[t]:i.nodes=t),await lp(i)},"init"),wS=p(async(e,{lazyLoad:t=!0}={})=>{Oa(),Za(...e),t===!1&&await Y_()},"registerExternalDiagrams"),hp=p(function(){if(zt.startOnLoad){const{startOnLoad:e}=qe.getConfig();e&&zt.run().catch(t=>E.error("Mermaid failed to initialize",t))}},"contentLoaded");typeof document<"u"&&window.addEventListener("load",hp,!1);var vS=p(function(e){zt.parseError=e},"setParseErrorHandler"),ua=[],Ua=!1,up=p(async()=>{if(!Ua){for(Ua=!0;ua.length>0;){const e=ua.shift();if(e)try{await e()}catch(t){E.error("Error executing queue",t)}}Ua=!1}},"executeQueue"),_S=p(async(e,t)=>new Promise((r,i)=>{const a=p(()=>new Promise((n,o)=>{qe.parse(e,t).then(s=>{n(s),r(s)},s=>{var c;E.error("Error parsing",s),(c=zt.parseError)==null||c.call(zt,s),o(s),i(s)})}),"performCall");ua.push(a),up().catch(i)}),"parse"),dp=p((e,t,r)=>new Promise((i,a)=>{const n=p(()=>new Promise((o,s)=>{qe.render(e,t,r).then(c=>{o(c),i(c)},c=>{var l;E.error("Error parsing",c),(l=zt.parseError)==null||l.call(zt,c),s(c),a(c)})}),"performCall");ua.push(n),up().catch(a)}),"render"),SS=p(()=>Object.keys(Oe).map(e=>({id:e})),"getRegisteredDiagramsMetadata"),zt={startOnLoad:!0,mermaidAPI:qe,parse:_S,render:dp,init:kS,run:lp,registerExternalDiagrams:wS,registerLayoutLoaders:yf,initialize:cp,parseError:void 0,contentLoaded:hp,setParseErrorHandler:vS,detectType:jn,registerIconPacks:NC,getRegisteredDiagramsMetadata:SS},TS=zt;/*! Check if previously processed *//*!
|
|
253
|
+
* Wait for document loaded before starting the execution
|
|
254
|
+
*/const GS=Object.freeze(Object.defineProperty({__proto__:null,default:TS},Symbol.toStringTag,{value:"Module"}));export{ff as $,Pr as A,Sp as B,_g as C,ws as D,wl as E,Lt as F,_2 as G,M0 as H,zp as I,Ox as J,qC as K,Hr as L,AS as M,Ta as N,ag as O,Al as P,Us as Q,v2 as R,ei as S,dg as T,ti as U,q as V,U as W,El as X,dk as Y,g2 as Z,p as _,xg as a,gs as a$,HS as a0,Rx as a1,At as a2,pe as a3,wr as a4,vs as a5,lu as a6,mr as a7,du as a8,Q as a9,Sa as aA,ta as aB,ru as aC,Jh as aD,W1 as aE,j as aF,fu as aG,h2 as aH,i2 as aI,jb as aJ,ps as aK,P1 as aL,p2 as aM,si as aN,pr as aO,Ki as aP,X1 as aQ,Lw as aR,ni as aS,Ji as aT,H1 as aU,Gh as aV,Gb as aW,Ub as aX,$e as aY,Co as aZ,Xb as a_,ee as aa,W as ab,u2 as ac,i1 as ad,a2 as ae,fs as af,tl as ag,nw as ah,WS as ai,jS as aj,zS as ak,V as al,qS as am,qk as an,Ik as ao,Ok as ap,ml as aq,$S as ar,li as as,NC as at,PC as au,_p as av,We as aw,d2 as ax,tu as ay,ka as az,yg as b,Vb as b0,Qb as b1,gr as b2,Se as b3,go as b4,ms as b5,Xh as b6,Nn as b7,f2 as b8,_a as b9,GS as ba,st as c,tt as d,Fl as e,kt as f,Cg as g,de as h,Zt as i,zx as j,ri as k,E as l,hu as m,FS as n,VS as o,kg as p,wg as q,YS as r,bg as s,Ix as t,Gt as u,Ak as v,B2 as w,DS as x,mg as y,ES as z};
|